@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1140px;
  }
}
body {
  font-family: 'Raleway', sans-serif;
}
#header .header_top {
  background-color: #ffffff;
}
#header .header_top a {
  padding-top: 40px;
  padding-bottom: 40px;
  display: block;
  margin: auto;
}
#header .header_top a img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
@media (min-width: 576px) {
  #header .header_top a img {
    width: 480px;
  }
}
#header .header_bottom {
  background-color: #1199ff;
}
#header .header_bottom ul {
  list-style-type: none;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
@media (min-width: 576px) {
  #header .header_bottom ul {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  #header .header_bottom ul {
    display: flex !important;
  }
}
#header .header_bottom ul li a {
  color: white;
  text-decoration: none;
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  padding-top: 7px;
  padding-bottom: 7px;
  display: inline-block;
  letter-spacing: 0.2px;
  position: relative;
}
@media (min-width: 576px) {
  #header .header_bottom ul li a {
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
#header .header_bottom ul li a:after {
  content: '';
  position: absolute;
  width: 0%;
  left: 50%;
  height: 3px;
  background-color: white;
  bottom: 4px;
  transition: left 0.35s ease-in-out, width 0.35s ease-in-out;
}
@media (min-width: 576px) {
  #header .header_bottom ul li a:after {
    bottom: 14px;
  }
}
#header .header_bottom ul li a:hover:after, #header .header_bottom ul li a.active:after {
  width: 100%;
  left: 0%;
}
#content {
  padding-top: 100px;
  padding-bottom: 100px;
}
#content h1 {
  font-family: 'EB Garamond', serif;
  font-size: 45px;
  margin-bottom: 30px;
  width: fit-content;
  position: relative;
}
#content h1:after {
  content: '';
  background-color: #1199ff;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -2px;
}
#content h2 {
  font-family: 'EB Garamond', serif;
  font-size: 30px;
  margin-bottom: 22px;
  width: fit-content;
  position: relative;
}
#content p {
  line-height: 1.7;
  font-size: 19px;
  font-weight: 400;
}
#content p.lead {
  font-weight: 500;
}
#content .cta-btn {
  font-size: 19px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  margin-top: 50px;
  display: block;
  transition: color 0.35s ease-in-out;
}
#content .cta-btn svg {
  position: relative;
  left: 1px;
  top: -1px;
  transition: left 0.35s ease-in-out;
}
#content .cta-btn svg path {
  stroke: black;
  transition: stroke 0.35s ease-in-out;
}
#content .cta-btn:hover {
  color: #1199ff;
}
#content .cta-btn:hover svg {
  left: 6px;
}
#content .cta-btn:hover svg path {
  stroke: #1199ff;
}
#content .flags {
  margin-top: 100px;
  margin-bottom: 100px;
}
#content .flags .container {
  padding: 0;
}
#content .flags .filters {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 15px;
}
#content .flags .filters p {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 10px;
  margin-left: 0;
  margin-right: 0;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid #1199ff;
  color: black;
  transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
}
#content .flags .filters p:first-of-type {
  margin-left: 0;
}
#content .flags .filters p:last-of-type {
  margin-right: 0;
}
#content .flags .filters p:hover, #content .flags .filters p.active {
  color: white;
  background-color: #1199ff;
}
#content .flags .flag {
  border: 2px solid #1199ff;
  background-color: white;
  transition: background-color 0.35s ease-in-out;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 30px;
  border-radius: 6px;
  cursor: pointer;
}
#content .flags .flag h3 {
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 20px;
  color: black;
  transition: color 0.35s ease-in-out;
}
#content .flags .flag:hover {
  background-color: #1199ff;
}
#content .flags .flag:hover h3 {
  color: white;
}
#content .kurse {
  margin-top: 50px;
}
#content .kurse p {
  margin-bottom: 40px;
}
#content img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
#content .detail {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  cursor: default;
}
#content .detail .detail-inner {
  width: 100%;
  max-width: 600px;
  background-color: white;
  left: 50%;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  border-radius: 6px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: auto;
  cursor: default;
}
#content .detail .detail-inner span {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
#content .detail .detail-inner > svg {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #content .detail .detail-inner > svg {
    width: 50%;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
#content .alink {
  font-size: 19px;
  color: black;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 0.35s ease-in-out;
}
#content .alink:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 2px;
  left: 0%;
  background-color: black;
  transition: background-color 0.35s ease-in-out;
}
#content .alink:hover {
  color: #1199ff;
}
#content .alink:hover:after {
  width: 100%;
  left: 0%;
  background-color: #1199ff;
}
#content .alink:last-of-type {
  margin-bottom: 30px;
}
#content .formw {
  margin-top: 50px;
}
#content .formw .form-row {
  margin-bottom: 15px;
}
#content .formw .form-row label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 3px;
}
#content .formw .form-row input {
  display: block;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 3px;
  border: 1px solid black;
}
#content .formw .form-row input[type="submit"] {
  width: auto;
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30px;
  font-weight: 500;
  background-color: #1199ff;
  border: none;
  color: white;
  font-weight: 700;
  transition: background-color 0.35s ease-in-out;
}
#content .formw .form-row input[type="submit"]:hover {
  background-color: #007edd;
}
#content .formw .form-row textarea {
  display: block;
  width: 100%;
  height: 180px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 3px;
  border: 1px solid black;
}
#content .formw .form-row:first-of-type {
  width: calc(50% - 10px);
  float: left;
  margin-right: 10px;
}
#content .formw .form-row:nth-of-type(2) {
  width: calc(50% - 10px);
  float: left;
  margin-left: 10px;
}
#content .formw .form-row:nth-of-type(3) {
  width: calc(50% - 10px);
  float: left;
  margin-right: 10px;
}
#content .formw .form-row:nth-of-type(4) {
  width: calc(50% - 10px);
  float: left;
  margin-left: 10px;
}
#footer {
  border-top: 40px solid #303030;
  background-color: #222;
  position: relative;
  overflow: hidden;
}
#footer address {
  font-family: 'Raleway', sans-serif;
  color: white;
  padding-top: 40px;
  padding-bottom: 40px;
  font-weight: 300;
  font-size: 18px;
}
#footer address span {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}
#footer address span:first-of-type, #footer address span:nth-of-type(4) {
  color: #1199ff;
}
#footer address span:nth-of-type(3), #footer address span:nth-of-type(6) {
  color: #ff0000;
}
#footer address span:nth-of-type(7) {
  display: block;
  margin-bottom: 7px;
}
#footer address a {
  font-family: 'Raleway', sans-serif;
  color: white;
  text-decoration: none;
  display: block;
  font-weight: 500;
  width: fit-content;
  position: relative;
}
#footer address a:after {
  content: '';
  position: absolute;
  width: 0%;
  left: 50%;
  height: 2px;
  background-color: white;
  bottom: -1px;
  transition: left 0.35s ease-in-out, width 0.35s ease-in-out;
}
#footer address a:hover:after, #footer address a.active:after {
  width: 100%;
  left: 0%;
}
#footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#footer ul li {
  margin-bottom: 20px;
}
#footer ul li a {
  font-family: 'Raleway', sans-serif;
  color: white;
  text-decoration: none;
  font-size: 23px;
  position: relative;
}
#footer ul li a:after {
  content: '';
  position: absolute;
  width: 0%;
  left: 50%;
  height: 2px;
  background-color: white;
  bottom: -2px;
  transition: left 0.35s ease-in-out, width 0.35s ease-in-out;
}
#footer ul li a:hover:after, #footer ul li a.active:after {
  width: 100%;
  left: 0%;
}
#footer .watermark {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  position: absolute;
  color: white;
  z-index: 99;
  top: 14px;
  font-size: 150px;
  right: 0;
  transform: rotate(-30deg);
  opacity: 0.2;
}
.map {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .map {
    width: 46%;
    float: right;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.mob-trigger p {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.mob-trigger p svg:first-of-type {
  display: block;
}
.mob-trigger p svg:last-of-type {
  display: none;
}
.mob-trigger p.active svg:first-of-type {
  display: none;
}
.mob-trigger p.active svg:last-of-type {
  display: block;
}
@media (min-width: 992px) {
  .mob-trigger {
    display: none;
  }
}
