body {
  background-color: #fff;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Krub", sans-serif;
  color: #043062;
}

body > .container {
  width: 1280px;
  margin: 0 auto;
  background-color: #fff;
}
@media only screen and (max-width: 640px) {
  body > .container {
    width: 100%;
  }
}

section {
  width: 1280px;
}
@media only screen and (max-width: 640px) {
  section {
    width: 100%;
  }
}

section.content {
  width: 870px;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  section.content {
    width: calc(100% - 66px);
    margin: 0 33px 0 33px;
  }
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

h1 {
  font-weight: bold;
  font-size: 40px;
}
@media only screen and (max-width: 640px) {
  h1 {
    font-size: 23px;
    text-align: left;
  }
}

a:link {
  text-decoration: none;
  color: inherit;
}

a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
  color: inherit;
}

a:active {
  text-decoration: none;
  color: inherit;
}

#header {
  position: relative;
  height: 800px;
}
@media only screen and (max-width: 640px) {
  #header {
    height: initial;
  }
}
#header .video-container {
  height: 600px;
  background-color: #032040;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 640px) {
  #header .video-container {
    height: 500px;
  }
}
#header .video-container video {
  width: 1280px;
}
@media only screen and (max-width: 640px) {
  #header .video-container video {
    width: 100%;
  }
}
#header .header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  #header .header-overlay {
    padding-top: 200px;
  }
}
#header .header-overlay .eyecatcher {
  position: absolute;
  right: 180px;
  top: 60px;
  color: #fff;
  background-color: red;
  transform: rotateZ(-11deg);
  padding: 15px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  #header .header-overlay .eyecatcher {
    right: 20px;
    top: 355px;
    transform: rotateZ(-11deg);
  }
}
#header .header-overlay .logo {
  align-self: center;
  margin-top: 75px;
  margin-bottom: 85px;
}
@media only screen and (max-width: 640px) {
  #header .header-overlay .logo {
    position: absolute;
    left: 33px;
    top: 40px;
    margin: 0;
  }
}
#header .header-overlay .text {
  text-align: center;
  font-size: 24px;
  margin-top: 15px;
}
@media only screen and (max-width: 640px) {
  #header .header-overlay .text {
    font-size: 18px;
  }
}
#header .header-overlay h1, #header .header-overlay h2, #header .header-overlay h3 {
  text-align: center;
  margin: 0;
  padding: 0;
}
#header .header-overlay h1 {
  font-size: 50px;
}
@media only screen and (max-width: 640px) {
  #header .header-overlay h1 {
    font-size: 25px;
  }
}
#header .header-overlay h1 .highlighted {
  color: #c42933;
}
#header .header-overlay h2 {
  font-size: 36px;
}
@media only screen and (max-width: 640px) {
  #header .header-overlay h2 {
    font-size: 23px;
  }
}
#header .header-overlay .nav-button {
  display: none;
}
@media only screen and (max-width: 640px) {
  #header .header-overlay .nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: #fff;
    position: absolute;
    top: 50px;
    right: 33px;
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
  }
  #header .header-overlay .nav-button img {
    width: 20px;
    height: 16px;
  }
}
#header .header-overlay .navbar {
  width: 775px;
  height: 95px;
  border-radius: 15px;
  background-color: #fff;
  position: absolute;
  top: 520px;
  left: 230px;
  display: flex;
  box-shadow: 3px 5px 32px 0px rgba(4, 48, 98, 0.1);
  padding-left: 20px;
  padding-right: 20px;
  justify-content: space-around;
  /*space-evenly;*/
  align-items: center;
}
@media only screen and (max-width: 640px) {
  #header .header-overlay .navbar {
    display: none;
    flex-direction: column;
    width: calc(100% - 32px);
    height: initial;
    left: initial;
    top: 120px;
    padding: 16px;
    border-radius: 0 0 15px 15px;
    background-color: #092c53;
  }
  #header .header-overlay .navbar a:hover {
    text-decoration: none;
    color: #718ea8;
  }
}
#header .header-overlay .navbar.visible {
  display: flex;
}
#header .header-overlay .navbar .nav-item {
  color: #043062;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  #header .header-overlay .navbar .nav-item {
    width: 100%;
    margin: 5px 0;
    color: #fff;
  }
}
@media only screen and (max-width: 640px) {
  #header .header-overlay .navbar .separator {
    height: 1px;
    background-color: #8496a9;
    width: 100%;
    margin: 10px 0;
  }
}
#header .header-overlay .navbar .separator::before {
  content: "|";
  color: #97c6d9;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  #header .header-overlay .navbar .separator::before {
    content: initial;
  }
}

#intro-text {
  text-align: center;
  padding-left: 90px;
  padding-right: 90px;
}
#intro-text h1 br {
  display: none;
}
@media only screen and (max-width: 640px) {
  #intro-text h1 br {
    display: inherit;
  }
}
@media only screen and (max-width: 640px) {
  #intro-text {
    padding: 0;
    text-align: left;
    font-size: 13px;
    margin-top: 60px;
  }
  #intro-text img {
    width: 116px;
  }
}
#intro-text .text {
  margin: 25px 0;
  font-size: 18px;
}
@media only screen and (max-width: 640px) {
  #intro-text .text {
    font-size: 13px;
  }
}

#section-about {
  position: relative;
  height: 1750px;
}
@media only screen and (max-width: 640px) {
  #section-about {
    height: initial;
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 640px) {
  #section-about #image-silke1 {
    display: none;
  }
}
#section-about #image-silke1-mobile {
  display: none;
  margin-top: 50px;
  margin-bottom: 35px;
  position: relative;
  left: -40px;
}
@media only screen and (max-width: 640px) {
  #section-about #image-silke1-mobile {
    display: block;
  }
}
#section-about .button-play {
  position: absolute;
  left: 500px;
  top: 315px;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  #section-about .button-play {
    left: 190px;
    top: 210px;
    width: 105px;
    height: 105px;
  }
}
#section-about .top-text {
  position: absolute;
  width: 410px;
  /*590px;*/
  top: 265px;
  left: 690px;
  padding: 0 15px 0 15px;
  font-size: 18px;
  color: #006786;
}
@media only screen and (max-width: 640px) {
  #section-about .top-text {
    position: static;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 13px;
    width: initial;
  }
}
#section-about .top-text h1 {
  font-size: 50px;
  color: #043062;
  margin: 0 0 15px 0;
  padding: 0;
}
@media only screen and (max-width: 640px) {
  #section-about .top-text h1 {
    font-size: 25px;
  }
}
#section-about .top-text .highlighted {
  color: #97c6d9;
}
#section-about .about-carousel {
  display: none;
  height: 290px;
}
@media only screen and (max-width: 640px) {
  #section-about .about-carousel {
    display: block;
  }
}
#section-about .about-carousel .glide__track {
  position: relative;
}
#section-about .about-carousel .glide_slide {
  display: flex;
  justify-content: center;
}
#section-about .about-carousel .carousel-buttons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#section-about .about-carousel .carousel-buttons .back-button {
  position: absolute;
  top: calc(290px / 2 - (17px + 30px) / 2);
  left: 15px;
  width: calc(11px + 30px);
  height: calc(17px + 30px);
  padding: 15px;
}
#section-about .about-carousel .carousel-buttons .forward-button {
  position: absolute;
  top: calc(290px / 2 - (17px + 30px) / 2);
  right: 15px;
  width: calc(11px + 30px);
  height: calc(17px + 30px);
  padding: 15px;
}
#section-about .about-carousel .about-box {
  position: relative;
  box-sizing: border-box;
  width: 255px;
  height: 240px;
  padding: 26px;
  box-shadow: 3px 6px 42px 5px rgba(4, 48, 98, 0.1);
  border-radius: 12px;
  background-color: #fff;
  font-size: 12px;
  color: #006786;
  white-space: normal;
  margin: 25px 0;
}
#section-about .about-carousel .about-box h1 {
  position: relative;
  margin: 0 0 10px 0;
  font-size: 23px;
  font-weight: normal;
  color: #043062;
  z-index: 10;
}
#section-about .about-carousel .about-box h1 .highlighted {
  font-weight: bold;
}
#section-about .about-carousel .about-box .bar {
  position: absolute;
  left: 24px;
  top: 26px;
  background-color: #cbe2ec;
  width: 11px;
  height: 57px;
  z-index: 5;
}
#section-about .about-boxes {
  position: relative;
}
@media only screen and (max-width: 640px) {
  #section-about .about-boxes {
    display: none;
  }
}
#section-about .about-boxes .about-box {
  box-sizing: border-box;
  width: 422px;
  height: 395px;
  padding: 50px;
  box-shadow: 3px 16px 32px 0px rgba(4, 48, 98, 0.1);
  border-radius: 12px;
  background-color: #fff;
  font-size: 18px;
  color: #006786;
}
#section-about .about-boxes .about-box h1 {
  position: relative;
  margin: 0 0 10px 0;
  font-size: 35px;
  font-weight: normal;
  color: #043062;
  z-index: 10;
}
#section-about .about-boxes .about-box h1 .highlighted {
  font-weight: bold;
}
#section-about .about-boxes .about-box .bar {
  position: absolute;
  left: 45px;
  top: 50px;
  background-color: #cbe2ec;
  width: 16px;
  height: 94px;
  z-index: 5;
}
#section-about .about-boxes .about-box:first-child {
  position: absolute;
  top: -170px;
  left: 207px;
}
#section-about .about-boxes .about-box:nth-child(2) {
  position: absolute;
  top: -170px;
  left: 650px;
}
#section-about .about-boxes .about-box:nth-child(3) {
  position: absolute;
  top: 247px;
  left: 207px;
}
#section-about .about-boxes .about-box:nth-child(4) {
  position: absolute;
  top: 247px;
  left: 650px;
}
#section-about .button-container {
  position: absolute;
  top: 1560px;
  width: 100%;
  display: flex;
  justify-content: center;
  /*.green-button {
      position: absolute;
      top: 730px;
      left: 473px;
  }*/
}
#section-about .button-container a {
  text-decoration: none;
}
@media only screen and (max-width: 640px) {
  #section-about .button-container {
    position: static;
    margin-top: 26px;
  }
}

#section-history {
  position: relative;
  background-color: #f4f9fb;
}
@media only screen and (max-width: 640px) {
  #section-history {
    background: url(/static/img/section-history-bottom.png) bottom center no-repeat;
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 640px) {
  #section-history #image-silke2 {
    display: none;
  }
}
#section-history #image-silke2-mobile {
  display: none;
  margin-top: 65px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 640px) {
  #section-history #image-silke2-mobile {
    display: block;
    position: relative;
    left: -20px;
  }
}
#section-history .button-play-2 {
  position: absolute;
  top: 320px;
  left: 666px;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  #section-history .button-play-2 {
    top: 240px;
    left: 50px;
    width: 105px;
    height: 105px;
  }
}
#section-history .text {
  position: absolute;
  top: 327px;
  left: 211px;
  width: 390px;
  color: #006786;
  font-size: 18px;
}
@media only screen and (max-width: 640px) {
  #section-history .text {
    position: static;
    width: initial;
    padding: 0 33px 60px 33px;
    font-size: 13px;
  }
}
#section-history .text h1 {
  font-size: 50px;
  font-weight: bold;
  color: #043062;
  margin-bottom: 15px;
}
@media only screen and (max-width: 640px) {
  #section-history .text h1 {
    font-size: 25px;
    margin-top: 15px;
  }
}
#section-history .text h1 .highlighted {
  color: #fee472;
}

#section-package {
  position: relative;
  background-color: #f2f9fb;
}
@media only screen and (max-width: 640px) {
  #section-package {
    padding-bottom: 80px;
    background: linear-gradient(to bottom, #f2f9fb 80%, #fff 100%);
  }
}
#section-package h1 {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  padding-top: 150px;
  padding-bottom: 75px;
}
@media only screen and (max-width: 640px) {
  #section-package h1 {
    font-size: 23px;
    padding: 30px 50px 25px;
  }
}
#section-package h1 img {
  vertical-align: middle;
}
@media only screen and (max-width: 640px) {
  #section-package h1 img {
    width: 25px;
    height: 25px;
  }
}
#section-package .box-container {
  display: flex;
  margin: 0 auto;
  width: 957px;
  height: 413px;
  border-radius: 15px;
  border: 10px solid #fff;
  box-shadow: 0px 25px 75px 0px rgba(4, 48, 98, 0.1);
}
@media only screen and (max-width: 640px) {
  #section-package .box-container {
    flex-direction: column;
    width: calc(100% - 30px);
    height: initial;
    margin: 0 15px;
    box-sizing: border-box;
  }
}
#section-package .box-container .left-box {
  width: 422px;
  background-color: #fff;
  padding: 50px 0 0 30px;
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .left-box {
    width: 100%;
    height: initial;
    box-sizing: border-box;
    padding: 40px 40px 20px 40px;
  }
}
#section-package .box-container .left-box .bulletpoint {
  display: flex;
  margin-bottom: 25px;
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .left-box .bulletpoint {
    flex-direction: column;
  }
}
#section-package .box-container .left-box .bulletpoint .bullet img {
  width: 27px;
  height: 27px;
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .left-box .bulletpoint .bullet {
    text-align: center;
  }
}
#section-package .box-container .left-box .bulletpoint .text {
  margin-left: 10px;
  margin-right: 25px;
  line-height: 1.6;
  color: #006786;
  font-size: 18px;
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .left-box .bulletpoint .text {
    text-align: center;
    font-size: 13px;
  }
}
#section-package .box-container .left-box .bulletpoint .text h3 {
  text-align: left;
  font-size: 18px;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .left-box .bulletpoint .text h3 {
    text-align: center;
  }
}
#section-package .box-container .right-box {
  width: 535px;
  background-color: #fff;
  padding: 42px 39px 0 67px;
  font-size: 28px;
  box-shadow: inset 0px -7px 75px 0px rgba(4, 48, 98, 0.04);
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .right-box {
    width: 100%;
    height: initial;
    box-sizing: border-box;
    padding: 40px 40px 10px 40px;
    text-align: center;
  }
}
#section-package .box-container .right-box .big-text {
  margin-bottom: 15px;
}
#section-package .box-container .right-box .big-text .price {
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .right-box .big-text .price {
    font-size: 23px;
  }
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .right-box .big-text {
    font-size: 18px;
  }
}
#section-package .box-container .right-box .small-text {
  font-size: 18px;
  color: #006786;
  margin-top: 5px;
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .right-box .small-text {
    font-size: 13px;
  }
}
#section-package .box-container .right-box .payment-methods {
  display: flex;
  width: 420px;
  height: 55px;
  margin-top: 18px;
  border-radius: 15px;
  border: 1px solid #fff;
  box-shadow: 10px 50px 75px 0px rgba(4, 48, 98, 0.1);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .right-box .payment-methods {
    width: 255px;
    height: 43px;
  }
}
@media only screen and (max-width: 640px) {
  #section-package .box-container .right-box .payment-methods img {
    width: 240px;
  }
}
#section-package .separator {
  padding-top: 220px;
}
@media only screen and (max-width: 640px) {
  #section-package .separator {
    display: none;
  }
}
#section-package .separator img {
  display: block;
}

#section-contact {
  position: relative;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 58%, #f2f9fb 58%, #f2f9fb 100%);
}
@media only screen and (max-width: 640px) {
  #section-contact {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 51%, #043062 51%, #043062 62%, #f2f9fb 62%, #f2f9fb 100%);
  }
}
#section-contact a[name=contact] {
  position: absolute;
  top: -650px;
}
@media only screen and (max-width: 640px) {
  #section-contact a[name=contact] {
    position: static;
    top: initial;
  }
}
#section-contact .blue-area {
  height: 600px;
  background-color: #ccc;
}
#section-contact .contact-form {
  position: absolute;
  top: -650px;
  left: 210px;
  width: 867px;
  height: 880px;
  border-radius: 10px;
  box-shadow: 0px 0px 75px 0px rgba(4, 48, 98, 0.1);
  z-index: 10;
  background-color: #fff;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form {
    width: calc(100% - 30px);
    height: initial;
    margin: 0 15px;
    position: relative;
    top: 0;
    left: 0;
  }
}
#section-contact .contact-form .form-header {
  background-color: #043062;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding: 55px 0;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .form-header {
    font-size: 18px;
    padding: 28px 0;
  }
}
#section-contact .contact-form .form-body {
  position: relative;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 45px 45px 100px 45px;
  display: flex;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .form-body {
    flex-direction: column;
    padding: 34px 17px 0 17px;
  }
}
#section-contact .contact-form .form-body input[type=text] {
  height: 50px;
  font-size: 18px;
  padding-left: 18px;
  padding-right: 18px;
  margin-right: 18px;
  background-color: #f4f9fb;
  border-radius: 10px;
  border: 0;
  font-family: "Krub", sans-serif;
  color: #043062;
  outline: none;
  display: block;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .form-body input[type=text] {
    font-size: 13px;
    height: 32px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
#section-contact .contact-form .form-body input[type=text].invalid {
  background-color: #ffcbcb;
}
#section-contact .contact-form .form-body select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  height: 50px;
  font-size: 18px;
  padding: 0 60px 0 18px;
  background: #f4f9fb url(/static/img/expand-button.png) no-repeat center right;
  border-radius: 10px;
  border: 0;
  font-family: "Krub", sans-serif;
  color: #006786;
  outline: none;
  display: block;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .form-body select {
    font-size: 13px;
    height: 32px;
    padding-left: 12px;
    background: #f4f9fb url(/static/img/expand-button-mobile.png) no-repeat center right;
  }
}
#section-contact .contact-form .form-body select::-ms-expand {
  display: none;
}
#section-contact .contact-form .form-body textarea {
  font-size: 18px;
  background: #f4f9fb;
  border-radius: 10px;
  border: 0;
  resize: none;
  height: 150px;
  width: 320px;
  outline: none;
  padding: 18px;
  font-family: "Krub", sans-serif;
  color: #006786;
  box-sizing: border-box;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .form-body textarea {
    padding: 12px;
    font-size: 13px;
  }
}
#section-contact .contact-form .form-body label {
  display: block;
  padding-left: 18px;
  padding-bottom: 10px;
  padding-top: 20px;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .form-body label {
    padding-left: 12px;
    font-size: 13px;
  }
}
#section-contact .contact-form .form-body .left-column input[type=text] {
  width: 400px;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .form-body .left-column input[type=text] {
    width: calc(100% - 34px);
  }
}
#section-contact .contact-form .form-body .left-column select {
  width: 200px;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .form-body .left-column select {
    width: 120px;
  }
}
#section-contact .contact-form .form-body .right-column select {
  width: calc(100%);
}
#section-contact .contact-form .form-body .right-column .further {
  padding-left: 18px;
  color: #006786;
  font-size: 18px;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .form-body .right-column .further {
    font-size: 13px;
  }
}
#section-contact .contact-form .button-container {
  position: relative;
  top: -64px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .button-container {
    top: 39px;
  }
}
#section-contact .contact-form .button-container .button-submit {
  box-sizing: content-box;
  width: 365px;
  height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background-color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .button-container .button-submit {
    width: 270px;
    height: 78px;
    border-radius: 16px;
  }
}
#section-contact .contact-form .button-container .button-submit .inner-box {
  width: 325px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 2px solid #6fac17;
  box-shadow: inset 0px 0px 7px 3px rgba(152, 219, 51, 0.5);
  background-color: #6fac17;
  font-size: 18px;
  color: #fff;
}
#section-contact .contact-form .button-container .button-submit .inner-box:hover {
  border-color: #518901;
  background-color: #518901;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .button-container .button-submit .inner-box {
    width: 255px;
    height: 65px;
    font-size: 13px;
  }
}
#section-contact .contact-form .button-container .button-submit .large-text {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  #section-contact .contact-form .button-container .button-submit .large-text {
    font-size: 18px;
  }
}
#section-contact .blue-box {
  background-color: #043062;
  width: 1160px;
  height: 828px;
  margin: 0 auto;
  border-radius: 10px 200px 10px 200px;
  margin-top: 230px;
  z-index: 5;
}
@media only screen and (max-width: 640px) {
  #section-contact .blue-box {
    position: relative;
    /*top: -340px;*/
    margin-top: initial;
    height: 660px;
    width: 100%;
    border-radius: 0 0 0 200px;
  }
}
#section-contact .blue-box .contact-headlines {
  color: #fff;
  padding-top: 400px;
  padding-bottom: 65px;
}
@media only screen and (max-width: 640px) {
  #section-contact .blue-box .contact-headlines {
    padding-top: 100px;
    padding-bottom: 23px;
  }
}
#section-contact .blue-box .contact-headlines h1 {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  #section-contact .blue-box .contact-headlines h1 {
    font-size: 18px;
  }
}
#section-contact .blue-box .contact-headlines h2 {
  font-size: 36px;
  padding-top: 18px;
  font-weight: normal;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  #section-contact .blue-box .contact-headlines h2 {
    font-size: 13px;
    padding-top: 8px;
  }
}
#section-contact .blue-box .contact-infos {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  #section-contact .blue-box .contact-infos {
    flex-direction: column;
  }
}
#section-contact .blue-box .contact-infos .contact-box {
  display: flex;
  color: #fff;
  width: 435px;
  line-height: 1.6;
}
@media only screen and (max-width: 640px) {
  #section-contact .blue-box .contact-infos .contact-box {
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
    font-size: 13px;
  }
}
@media only screen and (max-width: 640px) {
  #section-contact .blue-box .contact-infos .contact-box .contact-text {
    margin: 20px 0;
  }
}
#section-contact .blue-box .contact-infos .contact-box .contact-icon {
  padding-right: 40px;
  padding-left: 40px;
}
@media only screen and (max-width: 640px) {
  #section-contact .blue-box .contact-infos .contact-box .contact-icon img {
    width: 75px;
    height: 75px;
  }
}
#section-contact .blue-box .contact-infos .contact-box .phone-number {
  font-size: 25px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  #section-contact .blue-box .contact-infos .contact-box .phone-number {
    font-size: 18px;
  }
}
#section-contact .blue-box .contact-infos .contact-box .mailaddress {
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  #section-contact .blue-box .contact-infos .contact-box .mailaddress {
    font-size: 13px;
  }
}

#section-faq {
  height: 1000px;
  padding-top: 40px;
  /*background-color: $color-lightblue-background;*/
  background: linear-gradient(to bottom, #f2f9fb 0%, #fff 100%);
}
@media only screen and (max-width: 640px) {
  #section-faq {
    height: initial;
    padding-bottom: 75px;
  }
}
#section-faq h1 {
  font-size: 36px;
  text-align: center;
  color: #97c6d9;
  margin-bottom: 50px;
}
@media only screen and (max-width: 640px) {
  #section-faq h1 {
    font-size: 23px;
    margin-bottom: 23px;
  }
}
#section-faq .faq-item {
  margin: 12px auto;
  width: 920px;
}
@media only screen and (max-width: 640px) {
  #section-faq .faq-item {
    width: calc(100% - 66px);
  }
}
#section-faq .faq-item .faq-header {
  position: relative;
  box-sizing: border-box;
  width: 920px;
  height: 50px;
  padding: 10px 0 10px 62px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #fff url(/static/img/collapse-button.png) no-repeat center right;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  #section-faq .faq-item .faq-header {
    width: 100%;
    padding: 10px 58px 10px 12px;
  }
}
#section-faq .faq-item .faq-header h1 {
  position: relative;
  z-index: 10;
  font-size: 20px;
  text-align: left;
  font-weight: normal;
  color: #043062;
}
@media only screen and (max-width: 640px) {
  #section-faq .faq-item .faq-header h1 {
    font-size: 13px;
  }
}
#section-faq .faq-item .faq-header h1 .highlighted {
  font-weight: bold;
  color: #043062;
}
#section-faq .faq-item .faq-header .bar {
  position: absolute;
  left: 58px;
  top: 10px;
  width: 12px;
  height: 31px;
  background-color: #cbe2ec;
  z-index: 5;
}
@media only screen and (max-width: 640px) {
  #section-faq .faq-item .faq-header .bar {
    width: 6px;
    height: 16px;
    left: 10px;
  }
}
#section-faq .faq-item .faq-body {
  box-sizing: border-box;
  width: 920px;
  margin-top: 2px;
  background-color: #fff;
  font-size: 18px;
  padding: 32px 123px 32px 62px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 3px 5px 32px 0px rgba(4, 48, 98, 0.1);
}
@media only screen and (max-width: 640px) {
  #section-faq .faq-item .faq-body {
    width: 100%;
    font-size: 13px;
    padding: 15px 12px 15px 12px;
  }
}
#section-faq .faq-item .faq-body .youtube {
  display: flex;
  padding: 15px;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  #section-faq .faq-item .faq-body .youtube {
    padding: 15px 0 0 0;
  }
}
#section-faq .faq-item .faq-body .youtube iframe {
  width: 560px;
  height: 315px;
}
@media only screen and (max-width: 640px) {
  #section-faq .faq-item .faq-body .youtube iframe {
    width: 100%;
    height: initial;
  }
}
#section-faq .faq-item.collapsed .faq-body {
  display: none;
}
#section-faq .faq-item.collapsed .faq-header {
  background: #fff url(/static/img/expand-button.png) no-repeat center right;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

#section-footer .logo-container {
  margin: 0 auto;
  text-align: center;
}
#section-footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 640px) {
  #section-footer .footer-links {
    flex-direction: column;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 640px) {
  #section-footer .footer-links .item {
    padding: 8px 0;
    font-size: 13px;
  }
}
#section-footer .footer-links .item.copyright {
  color: #006786;
}
@media only screen and (max-width: 640px) {
  #section-footer .footer-links .item.copyright {
    order: 5;
  }
}
#section-footer .footer-links .item.social-media img {
  margin: 0 11px;
}
@media only screen and (max-width: 640px) {
  #section-footer .footer-links .item.social-media {
    order: 1;
  }
}
@media only screen and (max-width: 640px) {
  #section-footer .footer-links .item.payment {
    order: 2;
  }
}
@media only screen and (max-width: 640px) {
  #section-footer .footer-links .item.data-protection {
    order: 3;
  }
}
@media only screen and (max-width: 640px) {
  #section-footer .footer-links .item.imprint {
    order: 4;
  }
}
#section-footer .footer-links .separator::before {
  content: "|";
}
#section-footer .footer-links .separator {
  margin-left: 25px;
  margin-right: 25px;
}
@media only screen and (max-width: 640px) {
  #section-footer .footer-links .separator {
    display: none;
  }
}

.popup-background, .spinner-background {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 50;
}

.spinner-background {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-shadow: 0px 0px 15px #000000;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .spinner-background {
    font-size: 23px;
  }
}

.popup {
  position: relative;
  width: 870px;
  height: 595px;
  background-color: #fff;
  border-radius: 10px;
  padding: 17px;
  box-sizing: border-box;
}
@media only screen and (max-width: 640px) {
  .popup {
    width: calc(100% - 30px);
    height: initial;
  }
}
.popup .button-close {
  position: absolute;
  left: 800px;
  top: -20px;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  .popup .button-close {
    width: 40px;
    height: 40px;
    left: calc(100% - 25px);
  }
}
.popup .upper-part {
  text-align: center;
  padding: 33px;
  color: #006786;
  font-size: 18px;
}
@media only screen and (max-width: 640px) {
  .popup .upper-part {
    font-size: 13px;
  }
}
.popup .upper-part h1 {
  padding-bottom: 10px;
  font-size: 50px;
  font-weight: normal;
  color: #043062;
}
@media only screen and (max-width: 640px) {
  .popup .upper-part h1 {
    font-size: 23px;
    text-align: center;
  }
}
.popup .lower-part {
  text-align: center;
  background-color: #f2f9fb;
  padding: 20px 33px 20px 33px;
  color: #006786;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
@media only screen and (max-width: 640px) {
  .popup .lower-part {
    font-size: 13px;
  }
}
.popup .lower-part h1 {
  color: #043062;
  padding-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .popup .lower-part h1 {
    text-align: center;
  }
}
.popup .lower-part .green-button {
  margin: 20px auto 0 auto;
}
.popup .text-scrollable {
  overflow-y: scroll;
  height: 550px;
}
@media only screen and (max-width: 640px) {
  .popup .text-scrollable {
    font-size: 13px;
    height: 450px;
  }
}
.popup .youtube {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .youtube iframe {
  width: 825px;
  height: 550px;
}
@media only screen and (max-width: 640px) {
  .popup .youtube iframe {
    width: 100%;
    height: initial;
  }
}
.popup .paypal-container {
  display: none;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  height: 100%;
}
.popup .payment-ok, .popup .payment-fail {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.green-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 328px;
  height: 91px;
  color: #fff;
  box-shadow: 0px 0px 95px 0px rgba(0, 0, 0, 0.08);
  border: 5px #fff solid;
  border-radius: 15px;
  font-size: 18px;
  cursor: pointer;
}
.green-button a {
  text-decoration: none;
}
@media only screen and (max-width: 640px) {
  .green-button {
    width: 256px;
    height: 72px;
    font-size: 13px;
  }
}
.green-button .inner-box {
  box-shadow: inset 0px 0px 7px 3px rgba(152, 219, 51, 0.5);
  display: flex;
  width: 325px;
  height: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px #6fac17 solid;
  border-radius: 12px;
  background-color: #6fac17;
}
.green-button .inner-box:hover {
  border-color: #518901;
  background-color: #518901;
}
@media only screen and (max-width: 640px) {
  .green-button .inner-box {
    width: 253px;
  }
}
.green-button .highlighted {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .green-button .highlighted {
    font-size: 23px;
  }
}

.pseudo-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

#popup-imprint, #popup-submitform, #popup-payment, #popup-data-protection, #popup-payment-info, #popup-video1, #popup-video2, #spinner {
  display: none;
}

/*# sourceMappingURL=style.css.map */
