@font-face {
	font-family: 'Open Sans';
	src: url('OpenSans-Regular.woff2') format('woff2'),
		url('OpenSans-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  font-size: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/*#################### VARIABLES ####################*/
/*#################### MAIN ####################*/
html, body {
  background-color: #00213C;
  color: #fff;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

header img {
  width: 200px;
}

header .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: transparent !important;
}

header .button::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("../images/icons/home-solid.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 10px;
}

header .button:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

@media all and (max-width: 650px) {
  header img {
    width: 150px;
  }
}

.content-wrapper {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
}

.content-wrapper.legal h2.margin-bottom {
  margin-bottom: 13.33333px;
}

.content-wrapper.legal p {
  color: rgba(255, 255, 255, 0.6);
}

.content-wrapper.legal p.title {
  color: #ccd3d8;
}

.content-wrapper.privacy h2 {
  margin-top: 80px;
  margin-bottom: 40px;
}

.content-wrapper.privacy h3 {
  color: #ccd3d8;
  font-size: 19px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-wrapper.privacy p, .content-wrapper.privacy ul {
  margin-bottom: 20px;
}

.content-wrapper.privacy ul li {
  position: relative;
  display: block;
  padding-left: 20px;
  font-size: 19px;
  color: #ccd3d8;
  line-height: 1.6;
}

.content-wrapper.privacy ul li::before {
  content: "-";
  font-size: 19px;
  position: absolute;
  left: 0;
  top: 0;
}

@media all and (max-width: 425px) {
  .content-wrapper.privacy img {
    width: 100px;
  }
}

@media all and (max-width: 650px) {
  .content-wrapper {
    padding: 53.33333px 40px;
  }
}

.col-2-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.col-2-container > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}

.col-2-container > div > img {
  width: 100%;
}

@media all and (max-width: 800px) {
  .col-2-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .col-2-container > div {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
    width: 100%;
  }
  .col-2-container > div:last-child {
    margin-top: 53.33333px;
  }
  .col-2-container > div.img-wrapper {
    display: none;
  }
  .col-2-container.center-on-wrap > *:not(.align-left) {
    text-align: center;
  }
  .col-2-container.center-on-wrap .align-left {
    text-align: left;
  }
  .col-2-container.center-on-wrap .contact-list li {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

section {
  position: relative;
}

section .anchor {
  position: absolute;
  top: -80px;
}

@media all and (max-width: 650px) {
  section .anchor {
    top: -53.33333px;
  }
}

section.light {
  background-color: #fff;
}

section.light.content-section {
  padding-top: 160px;
}

@media all and (max-width: 1150px) {
  section.light.content-section {
    padding-top: 0;
  }
}

section.light h2 {
  color: rgba(0, 0, 0, 0.8);
}

section.light p {
  color: rgba(0, 0, 0, 0.5);
}

br {
  font-size: inherit;
}

.button {
  cursor: pointer;
  display: inline-block;
  background-color: #ecc601;
  color: #000;
  border-radius: 2px;
  padding: 12px 20px;
  font-size: 19px;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.button.fail {
  position: relative;
  cursor: default;
  pointer-events: none;
  background-color: #d32c43;
  color: #d32c43;
}

.button.fail::after {
  content: "Fehler";
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

h1 {
  font-size: 48px;
}

@media all and (max-width: 1200px) {
  h1 {
    font-size: 32px;
  }
}

h1.border {
  line-height: 1.8;
}

h1.border::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1883d7;
  margin: 0 auto;
}

h2 {
  color: #ccd3d8;
  font-size: 30px;
}

p {
  color: #ccd3d8;
  font-size: 19px;
  line-height: 1.6;
}

p.title {
  color: #fff;
  font-weight: 600;
}

p.title.contact-title {
  color: rgba(0, 0, 0, 0.8);
}

p a:hover {
  text-decoration: underline;
}

a {
  font-size: inherit;
  color: #1883d7;
}

.center {
  text-align: center;
}

.margin-bottom {
  margin-bottom: 80px;
}

@media all and (max-width: 650px) {
  .margin-bottom {
    margin-bottom: 53.33333px;
  }
}

.half-margin-bottom {
  margin-bottom: 40px;
}

.title, .small-margin-bottom {
  margin-bottom: 13.33333px;
}

@media all and (max-width: 1200px) {
  .home-banner h2 {
    font-size: 24px;
  }
}

.services {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 320px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: -240px;
}

.services .service {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 40px;
}

.services .service:not(:last-child) {
  border-right: 1px solid rgba(50, 50, 50, 0.1);
}

.services .service img {
  height: 60px;
  margin-bottom: 26.66667px;
}

.services .service .title {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.8);
}

.services .service p {
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 600;
}

@media all and (max-width: 1150px) {
  .services {
    height: auto;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services .service {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    height: auto;
    padding: 40px;
    border-right: none;
  }
  .services .service:not(:last-child) {
    border-bottom: 1px solid rgba(50, 50, 50, 0.1);
  }
  .services .service p {
    max-width: 600px;
  }
}

.separator {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 80px 0;
}

@media all and (max-width: 650px) {
  .separator {
    margin: 53.33333px 0;
  }
}

.separator.page-separator {
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
}

/*#################### CONTACT ####################*/
.contact-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-list li:not(:last-child) {
  margin-bottom: 13.33333px;
}

.contact-list li a {
  font-size: 19px;
  color: rgba(0, 0, 0, 0.5);
}

.contact-list li a:hover {
  color: rgba(0, 0, 0, 0.8);
}

.contact-list li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.contact-list li.phone::before {
  background-image: url("../images/icons/phone-solid.svg");
}

.contact-list li.email::before {
  background-image: url("../images/icons/envelope-solid.svg");
}

.input-wrapper[data-error] input, .input-wrapper[data-error] textarea {
  border-color: #ff3e1d;
}

.input-wrapper[data-error] input:focus, .input-wrapper[data-error] textarea:focus {
  -webkit-box-shadow: 0 0 3px #ff3e1d;
          box-shadow: 0 0 3px #ff3e1d;
}

.input-wrapper[data-error]::after {
  content: attr(data-error);
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #ff3e1d;
  text-align: left;
}

input, textarea {
  width: 100%;
  font-size: 19px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #1883d7;
  -webkit-box-shadow: 0 0 3px #1883d7;
          box-shadow: 0 0 3px #1883d7;
}

input {
  height: 46px;
  line-height: 46px;
}

textarea {
  height: 91px;
  resize: vertical;
  line-height: 1.5;
  padding: 12px;
}

.form-footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-footer .checkbox-wrapper {
  margin-right: 40px;
}

@media all and (max-width: 500px) {
  .form-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-footer .checkbox-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.checkbox-wrapper {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.checkbox-wrapper .checkbox {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: border-color 100ms ease;
  transition: border-color 100ms ease;
}

.checkbox-wrapper:hover .checkbox {
  border-color: #1883d7;
}

.checkbox-wrapper[data-error] .checkbox {
  border-color: #ff3e1d;
}

.checkbox-wrapper span {
  display: inline-block;
  width: calc(100% - 34px);
  vertical-align: middle;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  text-align: left;
}

.checkbox-wrapper span a:hover {
  text-decoration: underline;
}

.checkbox-wrapper.checked .checkbox {
  background-image: url("../images/icons/check-regular.svg");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1883d7;
}

.contact-center * {
  text-align: center;
}

.contact-center .contact-list li {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*#################### LOADING ANIMATION ####################*/
@-webkit-keyframes showLoadingWrapper {
  100% {
    opacity: 1;
  }
}
@keyframes showLoadingWrapper {
  100% {
    opacity: 1;
  }
}

#loading-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transition: background-color ease 800ms;
  transition: background-color ease 800ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: showLoadingWrapper 200ms forwards;
          animation: showLoadingWrapper 200ms forwards;
}

#loading-wrapper::after {
  content: attr(data-success-msg);
  font-size: 19px;
  text-align: center;
  color: transparent;
  -webkit-transition: color ease 800ms;
  transition: color ease 800ms;
  padding: 40px 40px 0 40px;
}

#loading-wrapper .loading-spinner {
  position: relative;
  height: 125px;
  width: 125px;
  display: inline-block;
  border: 2px solid rgba(24, 131, 215, 0.2);
  border-radius: 50%;
  border-left-color: #1883d7;
  -webkit-animation: rotate 1.2s linear infinite;
          animation: rotate 1.2s linear infinite;
}

#loading-wrapper .loading-spinner .check-icon {
  display: none;
}

#loading-wrapper .loading-spinner .check-icon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 28px;
  -webkit-transform: scaleX(-1) rotate(135deg);
          transform: scaleX(-1) rotate(135deg);
  height: 56px;
  width: 28px;
  border-top: 4px solid #5cb85c;
  border-right: 4px solid #5cb85c;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-animation: check-icon 0.8s ease;
          animation: check-icon 0.8s ease;
}

#loading-wrapper.success {
  background-color: #fff;
}

#loading-wrapper.success .loading-spinner {
  -webkit-animation: none;
          animation: none;
  border-color: #5cb85c;
  -webkit-transition: border 0.5s ease-out;
  transition: border 0.5s ease-out;
}

#loading-wrapper.success .loading-spinner .check-icon {
  display: block;
}

#loading-wrapper.success::after {
  color: rgba(0, 0, 0, 0.8);
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes check-icon {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 28px;
    opacity: 1;
  }
  40% {
    height: 56px;
    width: 28px;
    opacity: 1;
  }
  100% {
    height: 56px;
    width: 28px;
    opacity: 1;
  }
}

@keyframes check-icon {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 28px;
    opacity: 1;
  }
  40% {
    height: 56px;
    width: 28px;
    opacity: 1;
  }
  100% {
    height: 56px;
    width: 28px;
    opacity: 1;
  }
}

/*#################### FOOTER ####################*/
footer {
  background-color: #00213C;
}

footer .separator {
  background-color: rgba(255, 255, 255, 0.2);
}

footer .footer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer-links {
  margin-top: 40px;
}

footer .footer-links li {
  display: block;
  text-align: center;
}

footer .footer-links li a {
  display: inline-block;
  color: #ccd3d8;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 12px;
}

footer .footer-links li a:hover {
  color: #1883d7;
}

footer .logo-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .logo-wrapper a {
  display: block;
  width: 200px;
}

footer .logo-wrapper a img {
  width: 100%;
}

footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (max-width: 900px) {
  footer .copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .copyright p {
    text-align: center;
  }
  footer .copyright p:first-child {
    margin-bottom: 13.33333px;
  }
}

footer p {
  font-size: 16px;
}

footer p a {
  color: #f39200;
}

noscript {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
  color: #fff;
  font-size: 19px;
}
/*# sourceMappingURL=style.css.map */