* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: DIN Pro Regular;
  src: url("/assets/styles/fonts/FontFont - DINPro.otf") format("opentype");
  src: url("/assets/styles/fonts/FontFont-DINPro.ttf") format("truetype");
  src: url("/assets/styles/fonts/FontFont-DINPro.woff") format("woff");
  src: url("/assets/styles/fonts/FontFont-DINPro.woff2") format("woff2");
}
@font-face {
  font-family: DIN Pro Bold;
  src: url("/assets/styles/fonts/FFDINWebProBold.woff") format("woff");
  src: url("/assets/styles/fonts/FFDINWebProBold.woff2") format("woff2");
}
@font-face {
  font-family: DIN Pro Medium;
  src: url("/assets/styles/fonts/FontFont-DINPro-Medium.woff") format("woff");
  src: url("/assets/styles/fonts/FontFont-DINPro-Medium.woff2") format("woff2");
}
.headline {
  font: normal normal bold 58px/60px DIN Pro Bold;
  text-transform: uppercase;
  letter-spacing: -0.1px;
}
.headline span {
  color: #009D9E;
}
.headline.white {
  color: white;
}
.headline.blue {
  color: #1D3661;
}
@media (max-width: 1280px) {
  .headline {
    font-size: 48px;
  }
}
@media (max-width: 499px) {
  .headline {
    font-size: 36px;
    line-height: 42px;
  }
}
.text-big {
  font: normal normal bold 48px/60px DIN Pro Bold;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .text-big {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 499px) {
  .text-big {
    font-size: 24px;
    line-height: 30px;
  }
}
.text-big.white {
  color: white;
  text-align: start;
  text-transform: uppercase;
  margin-bottom: 45px;
}
.subline {
  font: normal normal normal 24px/32px DIN Pro Regular;
  letter-spacing: -0.24px;
  text-transform: lowercase;
}
.subline.white {
  color: white;
}
.subline.white:before {
  color: white;
}
.subline.mint {
  color: #009D9E;
}
.subline.mint:before {
  color: #009D9E;
  margin-bottom: 5px;
}
.subline:before {
  content: "//\00a0";
  position: relative;
  display: inline-block;
}
@media (max-width: 1280px) {
  .subline {
    font-size: 20px;
    letter-spacing: -0.2px;
  }
}
@media (max-width: 499px) {
  .subline {
    font-size: 18px;
    letter-spacing: -0.18px;
  }
}
.subline-medium {
  font: normal normal normal 24px/32px DIN Pro Medium;
  text-transform: uppercase;
  letter-spacing: -0.24px;
}
.subline-medium.white {
  color: white;
}
.subline-medium.blue {
  color: #1D3661;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .subline-medium {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
  }
}
@media (max-width: 499px) {
  .subline-medium {
    font-size: 16px;
    line-height: 24px;
  }
}
.button {
  font: bold 18px/1em DIN Pro Bold;
  letter-spacing: -0.18px;
  text-transform: lowercase;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 260px;
  width: 100%;
  min-height: 55px;
  border-radius: 0 10px 0 0;
  padding: 15px;
  transition: .3s;
}
.button.white {
  border: 3px solid #FFFFFF;
  color: #FFFFFF;
}
.button.white:hover {
  background: white;
  color: #1D3661;
}
.button.blue {
  border: 3px solid #1D3661;
  color: #1D3661;
}
.button.blue:hover {
  background: #1D3661;
  color: white;
}
@media (max-width: 499px) {
  .button {
    max-width: 160px;
  }
}
.icon {
  margin-bottom: 20px;
}
a {
  text-decoration: none;
  transition: .3s;
  color: white;
  cursor: pointer;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,102,153,0.46);
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .3s, z-index 0s .3s;
  padding: 0 9.4vw;
}
.popup .success-container {
  text-align: center;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 6px 6px 6px rgba(0,0,0,0.2);
  border-radius: 0px 25px 0px 0px;
  opacity: 0.95;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 812px;
  min-height: 400px;
  padding: 40px 7vw;
}
.popup .success-container .subline {
  font: normal normal normal 20px/28px DIN Pro Regular;
  text-transform: inherit;
  margin-top: 20px;
  margin-bottom: 20px;
}
.popup .success-container .text {
  font: normal normal bold 36px/42px DIN Pro Bold;
  margin-bottom: 30px;
}
.popup .success-container .text-small {
  margin-bottom: 40px;
}
.popup.visible {
  opacity: 1;
  z-index: 100;
}
@media (max-width: 1280px) {
  .popup .success-container {
    padding: 40px 9.4vw;
  }
}
@media (max-width: 1280px) {
  .popup {
    padding: 0 7.3vw;
  }
}
@media (max-width: 599px) {
  .popup {
    padding: 0 20px;
  }
}
.standard-content {
  max-width: 536px;
}
.standard-content .headline {
  margin-bottom: 20px;
}
.standard-content .text {
  margin-bottom: 50px;
}
.text-block {
  padding: 130px 7.3vw 50px;
  word-break: break-word;
}
.text-block h1 {
  margin-bottom: 15px;
}
.text-block h2 {
  margin-bottom: 10px;
}
.text-block li {
  margin-left: 20px;
}
.text-block a {
  color: #1D3661;
}
@media (max-width: 1280px) {
  .text-block {
    padding: 130px 9.4vw 50px;
  }
}
@media (max-width: 749px) {
  .text-block {
    padding: 130px 20px 50px;
  }
}
html body {
  color: #1D3661;
  font: 18px/25px DIN Pro Regular;
}
html body nav {
  position: fixed;
  transition: .6s;
  width: 100%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 7.3vw;
  z-index: 99;
}
html body nav .centered {
  display: flex;
  align-items: center;
}
html body nav .nav-logo {
  width: 122px;
}
html body nav .right-container {
  display: flex;
  align-items: center;
}
html body nav .right-container .nav-menu {
  width: 35px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  transition: .3s;
}
html body nav .right-container .nav-menu .menu-bar {
  width: 100%;
  height: 3px;
  background-color: white;
  transition: .3s;
}
html body nav .right-container .nav-menu.fold-out {
  justify-content: center;
}
html body nav .right-container .nav-menu.fold-out .menu-bar {
  position: absolute;
}
html body nav .right-container .nav-menu.fold-out .menu-bar:first-child {
  transform: rotate(45deg);
}
html body nav .right-container .nav-menu.fold-out .menu-bar:last-child {
  transform: rotate(-45deg);
}
@media (min-width: 499px) {
  html body nav .right-container .nav-menu:hover {
    opacity: .7;
  }
}
html body nav .right-container .nav-login-wrap {
  margin-right: 87px;
  display: inline;
}
html body nav .right-container .nav-login-wrap .nav-login {
  position: relative;
  min-width: unset;
  text-transform: uppercase;
  min-height: unset;
  padding: 11px 17px 11px 64px;
}
html body nav .right-container .nav-login-wrap .nav-login:before,
html body nav .right-container .nav-login-wrap .nav-login:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 23px;
  left: 21px;
  top: 9px;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: .3;
}
html body nav .right-container .nav-login-wrap .nav-login:before {
  background-image: url(/assets/images/icon-sign-in.svg);
}
html body nav .right-container .nav-login-wrap .nav-login:after {
  background-image: url(/assets/images/icon-sign-in-blue.svg);
  opacity: 0;
}
html body nav .right-container .nav-login-wrap .nav-login:hover:before {
  opacity: 0;
}
html body nav .right-container .nav-login-wrap .nav-login:hover:after {
  opacity: 1;
}
html body nav .right-container .nav-login-wrap .nav-login-mobile {
  display: none;
}
html body nav.scrolled {
  background: transparent linear-gradient(90deg,#009D9E 0%,#1D3661 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
}
html body nav.fold-out {
  background: transparent linear-gradient(90deg,#009D9E 0%,#1D3661 100%) 0% 0% no-repeat padding-box;
}
@media (max-width: 1280px) {
  html body nav {
    padding: 10px 9.4vw;
  }
  html body nav .right-container .nav-login-wrap {
    margin-right: 36px;
  }
  html body nav .right-container .nav-login-wrap .nav-login {
    padding: 7px 15px 7px 62px;
  }
  html body nav .right-container .nav-login-wrap .nav-login:before {
    left: 23px;
    top: 4px;
  }
}
@media (max-width: 749px) {
  html body nav {
    padding: 25px 20px;
  }
  html body nav .nav-logo {
    width: 103px;
  }
}
@media (max-width: 499px) {
  html body nav .right-container .nav-login-wrap .nav-login {
    display: none;
  }
  html body nav .right-container .nav-login-wrap .nav-login-mobile {
    display: block;
  }
}
@media (max-height: 699px) {
  html body nav {
    padding: 15px 20px;
  }
}
html body .menu {
  visibility: hidden;
  opacity: 0;
  transition: visibility .45s, opacity 0.45s;
  position: fixed;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(90deg,#009D9E 0%,#1D3661 100%) 0% 0% no-repeat padding-box;
  top: 0;
  left: 0;
  z-index: 98;
  color: white;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
html body .menu .menu-container {
  position: relative;
  height: 100%;
  overflow: scroll;
}
html body .menu .menu-container .menu-content-wrap .menu-content {
  position: relative;
  padding-top: 100px;
  padding-bottom: 20px;
  margin: 0 auto;
  width: 185px;
}
@media (max-width: 499px) {
  html body .menu .menu-container .menu-content-wrap .menu-content {
    width: 120px;
  }
}
html body .menu .menu-container .menu-content-wrap .menu-content .menu-headline {
  font: normal normal bold 68px/82px DIN Pro Bold;
  letter-spacing: -0.68px;
  text-transform: uppercase;
  margin-bottom: 76px;
}
@media (max-width: 499px) {
  html body .menu .menu-container .menu-content-wrap .menu-content .menu-headline {
    font: normal normal bold 36px/38px DIN Pro Bold;
    margin-bottom: 30px;
  }
}
html body .menu .menu-container .menu-content-wrap .menu-content ul {
  display: inline-block;
}
html body .menu .menu-container .menu-content-wrap .menu-content ul li {
  list-style: none;
  margin-bottom: 40px;
}
@media (max-width: 499px) {
  html body .menu .menu-container .menu-content-wrap .menu-content ul li {
    margin-bottom: 30px;
  }
}
html body .menu .menu-container .menu-content-wrap .menu-content ul li a {
  cursor: pointer;
  font: 26px/28px DIN Pro Medium;
  letter-spacing: -0.26px;
  text-transform: uppercase;
  transition: 0.3s;
}
html body .menu .menu-container .menu-content-wrap .menu-content ul li a:before {
  content: "//\00a0";
  position: relative;
  display: inline-block;
}
@media (max-width: 1600px) {
  html body .menu .menu-container .menu-content-wrap .menu-content ul li a {
    font: 20px/24px DIN Pro Medium;
  }
}
@media (min-width: 499px) {
  html body .menu .menu-container .menu-content-wrap .menu-content ul li a:hover {
    opacity: .7;
  }
}
@media (max-width: 499px) {
  html body .menu .menu-container .menu-content-wrap .menu-content ul li a {
    font: 18px/20px DIN Pro Regular;
  }
}
html body .menu .menu-container .menu-content-wrap .menu-content ul li.small {
  margin-bottom: 20px;
  padding-left: 25px;
}
html body .menu .menu-container .menu-content-wrap .menu-content ul li.small a {
  font: normal normal normal 16px/18px DIN Pro Regular;
  letter-spacing: -0.16px;
  text-transform: none;
}
html body .menu .menu-container .menu-content-wrap .menu-content ul li.small a:before {
  display: none;
}
@media (max-width: 1600px) {
  html body .menu .menu-container .menu-content-wrap .menu-content ul li.small {
    padding-left: 20px;
  }
}
@media (max-width: 499px) {
  html body .menu .menu-container .menu-content-wrap .menu-content ul li.small {
    padding-left: 17px;
  }
}
html body .menu .menu-container .menu-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #1D3661;
  min-height: 45px;
  font: normal normal medium 16px/82px DIN Pro;
  letter-spacing: -0.16px;
  text-align: center;
  position: absolute;
  bottom: 0;
}
@media (max-width: 549px) {
  html body .menu .menu-container .menu-footer {
    padding: 10px 20px;
    position: relative;
  }
}
html body .menu.fold-out {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 549px) {
  html body .menu {
    background: #1D3661;
  }
  html body .menu .menu-content-wrap {
    background: transparent linear-gradient(90deg,#009D9E 0%,#1D3661 100%) 0% 0% no-repeat padding-box;
    padding-bottom: 100px;
  }
}
html body header {
  position: relative;
  min-height: 100vh;
  background-image: url(/assets/images/maske-header.svg), linear-gradient(57deg,#269C9D 0%,#1D3661 100%);
  background-position: left bottom -1px, center;
  background-size: 100% auto, auto;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 15vw;
  opacity: 1;
  transition: .7s;
}
html body header .header-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  opacity: 1;
  transition: .7s .6s;
}
html body header .content-wrap {
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: .7s .6s;
}
html body header .content-wrap .headline-container {
  max-width: 800px;
}
html body header .content-wrap .headline-container .subline {
  margin-bottom: 20px;
}
html body header .content-wrap .headline-container .headline {
  font-size: 68px;
  line-height: 82px;
  letter-spacing: -0.68px;
}
@media (max-width: 1599px) {
  html body header .content-wrap .headline-container {
    max-width: 600px;
  }
  html body header .content-wrap .headline-container .headline {
    font-size: 48px;
    line-height: 60px;
  }
}
@media (max-width: 1599px) and (min-height: 1200px) {
  html body header .content-wrap .headline-container {
    max-width: 800px;
  }
  html body header .content-wrap .headline-container .headline {
    font-size: 68px;
    line-height: 82px;
  }
}
@media (max-width: 499px) {
  html body header .content-wrap .headline-container {
    margin-top: 12.3vh;
  }
  html body header .content-wrap .headline-container .headline {
    font-size: 36px;
    line-height: 42px;
  }
  html body header .content-wrap .headline-container .subline {
    line-height: 20px;
    position: relative;
    padding-left: 17px;
  }
  html body header .content-wrap .headline-container .subline:before {
    position: absolute;
    left: 0;
  }
}
html body header .content-wrap .button {
  margin-top: 13vh;
  width: 100%;
}
@media (max-width: 499px) {
  html body header .content-wrap .button {
    margin-top: 6vh;
  }
}
@media (max-height: 699px) {
  html body header .content-wrap .button {
    margin-top: 4vh;
  }
}
@media (max-width: 1280px) {
  html body header {
    background-image: url(/assets/images/Mask-Header-1280.svg), linear-gradient(57deg,#269C9D 0%,#1D3661 100%);
  }
}
@media (max-width: 999px) {
  html body header {
    font-size: 48px;
    line-height: 60px;
  }
}
@media (max-width: 749px) {
  html body header {
    padding: 0 20px;
  }
}
@media (max-width: 499px) {
  html body header {
    justify-content: flex-start;
    background-image: url(/assets/images/Mask-Header-Mobile.svg), linear-gradient(57deg,#269C9D 0%,#1D3661 100%);
  }
  html body header .button {
    margin-top: 6vh;
    max-width: 152px;
    max-height: 48px;
  }
}
html body header.anim {
  opacity: 0;
}
html body header.anim .header-image,
html body header.anim .content-wrap {
  opacity: 0;
}
html body header #go {
  position: absolute;
  bottom: 0;
}
html body main .text_centered {
  padding: 150px 7.3vw 170px;
  opacity: 1;
  transition: .7s .6s;
  text-align: center;
}
html body main .text_centered .subline {
  text-align: center;
  margin-bottom: 10px;
}
html body main .text_centered .text-big {
  max-width: 1005px;
  margin-bottom: 21px;
}
html body main .text_centered p {
  margin: 0 auto;
}
html body main .text_centered.anim {
  opacity: 0;
}
@media (max-width: 1280px) {
  html body main .text_centered {
    padding: 90px 9.4vw 150px;
  }
}
@media (max-width: 969px) {
  html body main .text_centered {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
@media (max-width: 749px) {
  html body main .text_centered {
    padding-left: 20px;
    padding-right: 20px;
  }
}
html body main .icons-parallax {
  color: white;
  padding: 260px 20px 620px;
  position: relative;
  margin: -300px 0 -470px;
  z-index: -1;
}
html body main .icons-parallax .background-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(57deg,#269C9D 0%,#1D3661 100%);
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 1;
  transition: .7s .3s;
}
html body main .icons-parallax .background-parallax img {
  width: 100%;
}
html body main .icons-parallax .background-parallax .mask-1 {
  margin-top: -1px;
}
html body main .icons-parallax .background-parallax .mask-2 {
  margin-bottom: -1px;
}
html body main .icons-parallax .subline {
  text-align: center;
  margin-bottom: 10px;
  opacity: 1;
  transition: .7s .6s;
}
html body main .icons-parallax .text-big {
  max-width: 816px;
  margin-bottom: 110px;
  text-transform: uppercase;
  opacity: 1;
  transition: .7s .6s;
}
html body main .icons-parallax .benefits-wrap {
  max-width: 1185px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}
html body main .icons-parallax .benefits-wrap .benefit {
  max-width: 280px;
  text-align: center;
  box-sizing: content-box;
}
html body main .icons-parallax .benefits-wrap .benefit .icon {
  margin-bottom: 34px;
}
@media (max-width: 749px) {
  html body main .icons-parallax .benefits-wrap .benefit .icon {
    margin-bottom: 10px;
  }
}
html body main .icons-parallax .benefits-wrap .benefit .subline-medium {
  font-size: 22px;
  line-height: 30px;
}
html body main .icons-parallax .benefits-wrap .benefit:nth-child(1) {
  opacity: 1;
  transition: .7s .3s;
}
html body main .icons-parallax .benefits-wrap .benefit:nth-child(2) {
  opacity: 1;
  transition: .7s .6s;
}
html body main .icons-parallax .benefits-wrap .benefit:nth-child(3) {
  opacity: 1;
  transition: .7s .9s;
}
html body main .icons-parallax .benefits-wrap .benefit:nth-child(4) {
  opacity: 1;
  transition: .7s 1.2s;
}
html body main .icons-parallax .benefits-wrap .benefit:nth-child(5) {
  opacity: 1;
  transition: .7s 1.5s;
}
@media (max-width: 1440px) {
  html body main .icons-parallax {
    padding: 255px 20px 530px;
    margin: -240px 0 -320px;
  }
}
@media (max-width: 1280px) {
  html body main .icons-parallax .text-big {
    max-width: 600px;
  }
  html body main .icons-parallax .benefits-wrap {
    max-width: 880px;
  }
  html body main .icons-parallax .benefits-wrap .benefit {
    flex-basis: 280px;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 999px) {
  html body main .icons-parallax {
    padding: 210px 20px 430px;
    margin: -50px 0 -240px;
  }
}
@media (max-width: 879px) {
  html body main .icons-parallax .benefits-wrap {
    flex-wrap: wrap;
  }
  html body main .icons-parallax .benefits-wrap .benefit {
    flex-basis: unset;
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }
  html body main .icons-parallax .benefits-wrap .benefit:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 879px) {
  html body main .icons-parallax .text-big {
    margin-bottom: 50px;
  }
}
@media (max-width: 749px) {
  html body main .icons-parallax {
    padding: 190px 20px 300px;
    margin: 0 0 -230px;
  }
}
@media (max-width: 499px) {
  html body main .icons-parallax {
    padding: 190px 20px 280px;
    margin: -75px 0 -110px;
  }
}
html body main .icons-parallax.anim .background-parallax,
html body main .icons-parallax.anim .subline,
html body main .icons-parallax.anim .text-big {
  opacity: 0;
}
html body main .icons-parallax.anim .benefits-wrap .benefit {
  opacity: 0;
}
html body main .text-image {
  display: flex;
  max-width: 1365px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
html body main .text-image .side-by-side {
  width: 50%;
}
html body main .text-image .side-by-side.text-wrap {
  padding: 200px 0;
  transition: .7s .3s;
  opacity: 1;
}
html body main .text-image .side-by-side.image-wrap {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: .7s .6s;
  opacity: 1;
}
html body main .text-image.text-left .text-wrap {
  order: 1;
}
html body main .text-image.text-left .image-wrap {
  order: 2;
}
html body main .text-image.text-right .text-wrap {
  order: 2;
}
html body main .text-image.text-right .image-wrap {
  order: 1;
}
@media (max-width: 1650px) {
  html body main .text-image {
    max-width: 1040px;
  }
}
@media (max-width: 999px) {
  html body main .text-image {
    max-width: 100%;
    box-sizing: border-box;
    flex-direction: column;
  }
  html body main .text-image .side-by-side {
    width: 100%;
  }
  html body main .text-image .side-by-side.text-wrap {
    order: 2;
    padding-top: 0;
    padding-bottom: 100px;
  }
  html body main .text-image .side-by-side.text-wrap .standard-content {
    margin: 0 auto;
  }
  html body main .text-image .side-by-side.image-wrap {
    order: 1;
    height: 50vh;
  }
}
html body main .text-image.anim .text-wrap,
html body main .text-image.anim .image-wrap {
  opacity: 0;
}
html body footer {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
html body footer .footer-anchor {
  position: relative;
  top: -200px;
}
html body footer #asam {
  background-color: #F4F4F4;
  padding-top: 150px;
  padding-bottom: 45px;
}
html body footer #asam .content-wrap {
  max-width: 1365px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
html body footer #asam .content-wrap .logo-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
}
html body footer #asam .content-wrap .logo-wrap .asam-logo {
  width: 100%;
}
html body footer #asam .content-wrap .text-wrap {
  max-width: 536px;
}
html body footer #asam .content-wrap .text-wrap .subline {
  text-transform: none;
}
html body footer #asam .content-wrap .text-wrap .headline {
  margin-bottom: 20px;
}
@media (max-width: 1499px) {
  html body footer #asam .content-wrap {
    max-width: 536px;
  }
  html body footer #asam .content-wrap .logo-wrap {
    margin-bottom: 50px;
  }
}
@media (max-width: 899px) {
  html body footer #asam {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
html body footer .gray-bg-centered-content {
  background-color: #F4F4F4;
  padding-top: 106px;
  padding-left: 20px;
  padding-right: 20px;
}
html body footer .gray-bg-centered-content .content-wrap {
  text-align: center;
}
html body footer .gray-bg-centered-content .content-wrap .subline {
  margin-bottom: 50px;
  text-transform: uppercase;
  font-family: DIN Pro Medium;
}
html body footer .gray-bg-centered-content .content-wrap .content-image {
  margin-bottom: 50px;
}
html body footer .gray-bg-centered-content .content-wrap .button {
  margin: 0 auto;
}
@media (max-width: 1280px) {
  html body footer .gray-bg-centered-content {
    padding-bottom: 40px;
  }
}
@media (max-width: 999px) {
  html body footer .gray-bg-centered-content {
    padding-bottom: 60px;
  }
}
@media (max-width: 599px) {
  html body footer .gray-bg-centered-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  html body footer .gray-bg-centered-content .content-wrap .subline {
    margin-bottom: 35px;
  }
  html body footer .gray-bg-centered-content .content-wrap .content-image {
    margin-bottom: 35px;
  }
}
html body footer .bg-wrap {
  padding: 300px 0 100px;
  background-image: url(/assets/images/Mask-4-1920-gray.svg), linear-gradient(57deg,#269C9D 0%,#1D3661 100%);
  background-position: left top -1px, center;
  background-size: 100% auto, auto;
  background-repeat: no-repeat;
}
html body footer .bg-wrap .footer-form {
  max-width: 1185px;
  margin: 0 auto;
  box-sizing: content-box;
  opacity: 1;
  transition: .7s .3s;
}
html body footer .bg-wrap .footer-form .headline-container {
  max-width: 540px;
  width: 100%;
}
html body footer .bg-wrap .footer-form .headline-container .subline-medium {
  text-transform: inherit;
  margin-top: 20px;
}
html body footer .bg-wrap .footer-form form {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
html body footer .bg-wrap .footer-form form .form-container {
  width: 45%;
}
html body footer .bg-wrap .footer-form form label {
  width: 100%;
}
html body footer .bg-wrap .footer-form form label span {
  font: normal normal normal 16px/28px DIN Pro Regular;
  text-transform: uppercase;
  color: white;
}
html body footer .bg-wrap .footer-form form label span.required {
  color: red;
}
html body footer .bg-wrap .footer-form form label input {
  font: 14px/28px DIN Pro Regular;
  border: 3px solid white;
  border-radius: 10px;
  background: transparent;
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  padding-left: 36px;
  color: white;
  outline: 0;
  margin-bottom: 15px;
  margin-top: 5px;
}
html body footer .bg-wrap .footer-form form label input::placeholder {
  color: red;
  text-transform: uppercase;
}
html body footer .bg-wrap .footer-form form label input.required {
  background: rgba(229,229,229,0.58);
}
html body footer .bg-wrap .footer-form form .required-fields-note {
  font: normal normal normal 16px/28px DIN Pro Regular;
  text-transform: uppercase;
  color: white;
  margin-top: 25px;
}
html body footer .bg-wrap .footer-form form .privacy-policiy-check-container label {
  display: flex;
  align-items: baseline;
}
html body footer .bg-wrap .footer-form form .privacy-policiy-check-container label input {
  position: relative;
  top: 10px;
  border: 3px solid white;
  -webkit-appearance: none;
  width: 23px;
  height: 23px;
  max-width: 23px;
  max-height: 23px;
  min-width: 23px;
  min-height: 23px;
  margin-top: 0;
  padding-left: 0;
  border-radius: 50%;
}
html body footer .bg-wrap .footer-form form .privacy-policiy-check-container label input:checked::before {
  content: "";
  position: absolute;
  background-color: white;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
html body footer .bg-wrap .footer-form form .privacy-policiy-check-container label input.required {
  border-color: red;
}
html body footer .bg-wrap .footer-form form .privacy-policiy-check-container label input.required:checked::before {
  background-color: red;
}
html body footer .bg-wrap .footer-form form .privacy-policiy-check-container label span {
  font: normal normal normal 14px/18px DIN Pro Regular;
  margin-left: 10px;
}
html body footer .bg-wrap .footer-form form .privacy-policiy-check-container label.required {
  background: rgba(229,229,229,0.58);
}
html body footer .bg-wrap .footer-form form .button {
  margin-top: 20px;
  width: 100%;
  border: 3px solid white;
}
html body footer .bg-wrap .footer-form form .button.submit {
  -webkit-appearance: none;
  background: transparent;
}
html body footer .bg-wrap .footer-form form .button.submit:hover {
  background: white;
}
html body footer .bg-wrap .footer-form form .required-text {
  color: red;
  text-transform: uppercase;
  align-items: flex-start;
  padding-left: 40px;
}
html body footer .bg-wrap .footer-form form .message {
  font: normal normal normal 14px/28px DIN Pro Regular;
  transition: .3s;
  border: 3px solid white;
  border-radius: 10px;
  background: transparent;
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  padding: 5px 40px;
  color: white;
  resize: none;
  outline: 0;
  margin-top: 3px;
}
html body footer .bg-wrap .footer-form form .message:focus {
  height: 150px;
}
html body footer .bg-wrap .footer-form.anim {
  opacity: 0;
}
@media (max-width: 1280px) {
  html body footer .bg-wrap .footer-form {
    max-width: 630px;
  }
  html body footer .bg-wrap .footer-form .headline-container .headline {
    max-width: 400px;
  }
  html body footer .bg-wrap .footer-form .headline-container .text {
    font: normal normal normal 24px/28px DIN Pro Regular;
  }
  html body footer .bg-wrap .footer-form form {
    flex-direction: column;
    margin-top: 50px;
  }
  html body footer .bg-wrap .footer-form form .form-container {
    width: 100%;
  }
  html body footer .bg-wrap .footer-form form .form-container .button {
    margin-top: 40px;
  }
  html body footer .bg-wrap .footer-form form .required-fields-note {
    font: normal normal normal 14px/28px DIN Pro Regular;
  }
}
@media (max-width: 699px) {
  html body footer .bg-wrap {
    padding: 200px 20px 100px;
  }
}
@media (max-width: 499px) {
  html body footer .bg-wrap .footer-form .headline-container .headline {
    max-width: 300px;
  }
}
html body footer .footer-contact-banner {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 7.3vw;
  opacity: 1;
  transition: .7s .3s;
}
html body footer .footer-contact-banner .subline {
  font-family: DIN Pro Bold;
  text-transform: uppercase;
  justify-content: center;
  margin-bottom: 17px;
}
html body footer .footer-contact-banner .subline:before {
  display: none;
}
html body footer .footer-contact-banner >div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
html body footer .footer-contact-banner >div a {
  margin-right: 20px;
  width: 100%;
}
html body footer .footer-contact-banner >div a .button {
  text-transform: initial;
}
html body footer .footer-contact-banner >div a:last-child {
  margin-right: 0;
}
html body footer .footer-contact-banner .button-container {
  max-width: 530px;
  width: 100%;
}
@media (max-width: 1280px) {
  html body footer .footer-contact-banner .subline {
    margin-bottom: 37px;
  }
}
@media (max-width: 599px) {
  html body footer .footer-contact-banner {
    padding: 99px 20px 80px;
  }
  html body footer .footer-contact-banner .subline {
    margin-bottom: 50px;
    text-align: center;
    max-width: 260px;
  }
  html body footer .footer-contact-banner >div a {
    margin-right: 0;
  }
  html body footer .footer-contact-banner >div a .button {
    margin: 0 auto 27px;
    max-width: 260px;
  }
  html body footer .footer-contact-banner .button-container {
    flex-direction: column;
  }
}
html body footer .footer-contact-banner.anim {
  opacity: 0;
}
html body footer .footer-nav-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(0deg,#1D3661 0%,#009D9E 100%);
}
html body footer .footer-nav-banner .footer-nav {
  display: flex;
  flex-direction: row;
  max-width: 1185px;
  width: 100%;
  box-sizing: content-box;
  justify-content: space-between;
  margin: 85px auto;
  opacity: 1;
  transition: .7s .3s;
}
html body footer .footer-nav-banner .footer-nav a {
  font: normal normal normal 18px/32px DIN Pro Bold;
  letter-spacing: -0.18px;
  text-transform: uppercase;
  color: white;
  margin-right: 45px;
}
html body footer .footer-nav-banner .footer-nav a:last-child {
  margin-right: 0;
}
html body footer .footer-nav-banner .footer-nav a:hover {
  opacity: 0.7;
}
html body footer .footer-nav-banner .nav-logo {
  max-width: 186px;
  width: 100%;
  opacity: 1;
  transition: .7s .4s;
}
html body footer .footer-nav-banner .privacy-copyright-container {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  width: 100%;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 90px 7.3vw 0;
  opacity: 1;
  transition: .7s .5s;
}
html body footer .footer-nav-banner .privacy-copyright-container .privacy-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  width: 100%;
}
html body footer .footer-nav-banner .privacy-copyright-container .privacy-container .asam-logo {
  vertical-align: bottom;
}
html body footer .footer-nav-banner .privacy-copyright-container .privacy-container a {
  text-transform: lowercase;
}
html body footer .footer-nav-banner .privacy-copyright-container .copyright {
  width: auto;
}
@media (max-width: 1410px) {
  html body footer .footer-nav-banner .footer-nav {
    box-sizing: border-box;
    max-width: 100%;
    padding: 0 7.3vw;
  }
}
@media (max-width: 1280px) {
  html body footer .footer-nav-banner .footer-nav {
    padding: 0 9.4vw;
  }
  html body footer .footer-nav-banner .footer-nav a {
    font-size: 16px;
    line-height: 31px;
    letter-spacing: -0.16px;
  }
  html body footer .footer-nav-banner .privacy-copyright-container {
    padding: 90px 9.4vw 15px;
  }
}
@media (max-width: 999px) {
  html body footer .footer-nav-banner .footer-nav {
    flex-direction: column;
    text-align: center;
    margin: 56px auto;
  }
  html body footer .footer-nav-banner .footer-nav a {
    margin-right: 0;
    margin-bottom: 30px;
  }
  html body footer .footer-nav-banner .footer-nav a:last-child {
    margin-bottom: 0;
  }
  html body footer .footer-nav-banner .privacy-copyright-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 46px 20px 19px;
  }
  html body footer .footer-nav-banner .privacy-copyright-container .privacy-container {
    flex-direction: column;
  }
  html body footer .footer-nav-banner .privacy-copyright-container .privacy-container a {
    margin-bottom: 36px;
  }
  html body footer .footer-nav-banner .privacy-copyright-container .privacy-container a:last-child {
    margin-bottom: 0;
  }
  html body footer .footer-nav-banner .privacy-copyright-container .copyright {
    margin-top: 57px;
  }
}
html body footer .footer-nav-banner.anim .footer-nav,
html body footer .footer-nav-banner.anim .nav-logo,
html body footer .footer-nav-banner.anim .privacy-copyright-container {
  opacity: 0;
}
html body.nav_colored nav {
  background: transparent linear-gradient(90deg,#009D9E 0%,#1D3661 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
}
html body .dmp_cookiebox-wrap {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 9999;
}
html body .dmp_cookiebox-wrap.dmp_active {
  display: block;
}
html body .dmp_cookiebox-wrap * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay {
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.75);
  padding: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox {
  max-width: 400px;
  max-height: 100%;
  background-color: white;
  padding: 15px;
  overflow-y: auto;
  transition: .3s;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content {
  font-size: 14px;
  color: #555555;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--headline {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--text {
  margin-bottom: 15px;
  line-height: 1.3em;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons {
  margin-bottom: 15px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-button {
  background-color: #f2f2f2;
  font-size: 20px;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-button:hover {
  background-color: #dddcdc;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-button.dmp_cookie-accept-all {
  background-color: #555555;
  color: #f2f2f2;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-button.dmp_cookie-accept-all:hover {
  background-color: #1D3661;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content .dmp_cookiebox__content--buttons .dmp_cookiebox-button.dmp_cookie-accept-essential {
  font-size: 14px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection {
  margin-bottom: 15px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item {
  margin-bottom: 10px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox {
  display: none;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:checked + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display {
  position: relative;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:checked + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display::before,
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:checked + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display::after {
  content: '';
  position: absolute;
  background-color: #1D3661;
  height: 2px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:checked + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display::before {
  top: 7px;
  left: 2px;
  width: 5px;
  transform: rotate(50deg);
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:checked + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display::after {
  top: 6px;
  left: 4px;
  width: 10px;
  transform: rotate(-50deg);
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--checkbox:disabled + .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display {
  background-color: white;
  border-color: #f2f2f2;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--label {
  cursor: pointer;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__item .dmp_cookie-selection__item--label .dmp_cookie-selection__item--display {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-bottom: -3px;
  background-color: #f2f2f2;
  border: 1px solid grey;
  margin-right: 10px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--buttons .dmp_cookiebox-button {
  margin-bottom: 10px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--buttons .dmp_cookiebox-button:last-child {
  margin-bottom: 0;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--links .dmp_cookiebox-links-wrap {
  text-align: center;
  margin-bottom: 10px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--links .dmp_cookiebox-links-wrap:last-child {
  margin-bottom: 0;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-simple .dmp_cookiebox__content--links .dmp_cookiebox-links-wrap .dmp_cookiebox-link {
  display: inline;
  color: #555555;
  text-decoration: none;
  cursor: pointer;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced {
  display: none;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons {
  display: flex;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_cookiebox-button {
  margin-right: 7px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_cookiebox-button:last-child {
  margin-right: 0;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_toggle-advanced {
  display: flex;
  align-items: center;
  margin-left: auto;
  cursor: pointer;
}
@media (max-width: 699px) {
  html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }
  html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_cookiebox-button {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    max-width: 370px;
  }
  html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_cookiebox-button:last-child {
    margin-bottom: 0;
  }
  html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--buttons .dmp_toggle-advanced {
    margin-left: 0;
    padding: 10px 10px 0 10px;
  }
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section {
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  margin-bottom: 7px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section:last-child {
  margin-bottom: 0;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_switch-button-input {
  display: none;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_switch-button-input:checked + .dmp_switch-button {
  background-color: #1D3661;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_switch-button-input:checked + .dmp_switch-button::before {
  left: auto;
  right: 4px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_switch-button {
  position: relative;
  display: block;
  width: 40px;
  height: 21px;
  background-color: #555555;
  border-radius: 50px;
  float: right;
  margin-left: auto;
  cursor: pointer;
  transition: .3s;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_switch-button::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: 3px;
  left: 4px;
  background-color: #f2f2f2;
  border-radius: 50px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-section-header {
  display: flex;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-section-header .dmp_cookie-section-name {
  font-size: 18px;
  margin-bottom: 15px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-section-header .dmp_switch-button {
  margin-right: 5px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-section-description {
  margin-bottom: 15px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_toggle-cookie-information-wrap {
  margin-bottom: 15px;
  text-align: center;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_toggle-cookie-information-wrap .dmp_toggle-cookie-information {
  font-weight: bold;
  cursor: pointer;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content {
  height: 0;
  overflow: hidden;
  transition: .3s;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table {
  width: 100%;
  margin-bottom: 5px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table:last-child {
  margin-bottom: 0;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr {
  background-color: white;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr th,
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr td {
  padding: 3px 5px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr th {
  text-align: left;
  font-weight: bold;
  padding-right: 10px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr td {
  padding-left: 10px;
  width: 100%;
  word-break: break-word;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr td a {
  color: #555555;
  text-decoration: none;
  transition: .3s;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox .dmp_cookiebox-content.dmp_cookiebox-advanced .dmp_cookiebox__content--cookie-selection .dmp_cookie-selection__section .dmp_cookie-information .dmp_cookie-information-content table tr td a:hover {
  color: #1D3661;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox.dmp_cookiebox-advanced {
  max-width: 800px;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox.dmp_cookiebox-advanced .dmp_cookiebox-simple {
  display: none;
}
html body .dmp_cookiebox-wrap .dmp_cookiebox-overlay .dmp_cookiebox.dmp_cookiebox-advanced .dmp_cookiebox-advanced {
  display: block;
}
@media (max-width: 499px) {
  html body {
    font-size: 16px;
    line-height: 24px;
  }
}
html body header .header-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(/assets/images/Curve-header-company-01.svg);
  background-size: 67.4%;
  background-position: right bottom 20vh;
  background-repeat: no-repeat;
  opacity: 1;
  transition: .7s .6s;
}
@media (max-height: 949px) {
  html body header .header-image {
    background-position: right bottom 12vh;
  }
}
@media (max-width: 1600px) {
  html body header .header-image {
    background-size: 60%;
  }
}
@media (max-width: 1200px) {
  html body header .header-image {
    background-size: 50%;
  }
}
@media (max-width: 1200px) and (min-height: 1000px) {
  html body header .header-image {
    background-size: 140%;
    background-position: right -100px bottom 30px;
  }
}
@media (max-width: 799px) {
  html body header .header-image {
    background-size: 70%;
    background-position: right bottom 61px;
  }
}
@media (max-width: 799px) and (min-height: 1000px) {
  html body header .header-image {
    background-size: 140%;
    background-position: right -100px bottom 30px;
  }
}
@media (max-width: 499px) {
  html body header .header-image {
    background-size: 210%;
    background-position: right -100px bottom 30px;
  }
}
@media (max-width: 499px) and (min-height: 700px) {
  html body header .content-wrap .headline-container {
    margin-top: 180px;
  }
  html body header .content-wrap .button {
    margin-top: 70px;
  }
}
html body main .text_centered.text-centered-top {
  padding-bottom: 90px;
}
html body main .text_centered.text-centered-top p {
  max-width: 812px;
}
html body main .text-half {
  opacity: 1;
  transition: .7s .6s;
}
html body main .text-half .container-wrap {
  display: flex;
  width: 100%;
}
html body main .text-half .container-wrap .container {
  padding: 110px 0;
  width: 50%;
}
html body main .text-half .container-wrap .container .content-wrap {
  max-width: 585px;
  width: 100%;
}
@media (max-width: 1599px) {
  html body main .text-half .container-wrap .container .content-wrap .text-big {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
  }
}
html body main .text-half .container-wrap .container .content-wrap .list-headline {
  margin-bottom: 34px;
  color: white;
  font-family: DIN Pro Medium;
  font-size: 24px;
  line-height: 34px;
}
@media (max-width: 499px) {
  html body main .text-half .container-wrap .container .content-wrap .list-headline {
    font-size: 16px;
    line-height: 20px;
  }
}
html body main .text-half .container-wrap .container .content-wrap ul {
  text-transform: inherit;
  list-style: none;
}
html body main .text-half .container-wrap .container .content-wrap ul li {
  position: relative;
  font-size: 24px;
  line-height: 32px;
  color: white;
  padding-left: 30px;
}
@media (max-width: 499px) {
  html body main .text-half .container-wrap .container .content-wrap ul li {
    font-size: 16px;
    line-height: 20px;
  }
}
html body main .text-half .container-wrap .container .content-wrap ul li:before {
  content: "//\00a0";
  position: absolute;
  display: block;
  left: 0;
}
@media (max-width: 1599px) {
  html body main .text-half .container-wrap .container .content-wrap ul {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 1919px) {
  html body main .text-half .container-wrap .container .content-wrap {
    margin: 0 auto !important;
  }
}
@media (max-width: 1599px) {
  html body main .text-half .container-wrap .container .content-wrap {
    max-width: 445px;
  }
}
@media (max-width: 499px) {
  html body main .text-half .container-wrap .container .content-wrap {
    padding: 0 20px;
  }
}
html body main .text-half .container-wrap .container.left-container {
  background-color: #009D9E;
  display: flex;
  justify-content: flex-end;
}
html body main .text-half .container-wrap .container.left-container .content-wrap {
  margin-right: 155px;
}
html body main .text-half .container-wrap .container.right-container {
  background-color: #1D3661;
  border-radius: 0px 40px 0px 0px;
}
html body main .text-half .container-wrap .container.right-container .content-wrap {
  margin-left: 155px;
}
@media (max-width: 1280px) {
  html body main .text-half .container-wrap .container {
    padding: 50px 0;
    width: 100%;
    border-radius: 0 !important;
  }
}
@media (max-width: 1280px) {
  html body main .text-half .container-wrap {
    flex-direction: column;
  }
}
html body main .text-half.anim {
  opacity: 0;
}
html body main .text-image .side-by-side.text-wrap {
  order: 1;
  margin-top: 80px;
}
@media (max-width: 999px) {
  html body main .text-image .side-by-side.text-wrap {
    padding-bottom: 0;
  }
}
html body main .text-image .side-by-side.image-wrap {
  order: 2;
  background-image: url(/assets/images/RAWLAB-Company-Logo-3d-min.png);
  background-size: 150%;
  background-position: center top 100px;
}
@media (max-width: 1600px) {
  html body main .text-image .side-by-side.image-wrap {
    background-size: 100%;
    background-position: center top 235px;
  }
}
@media (max-width: 999px) {
  html body main .text-image .side-by-side.image-wrap {
    background-size: 100%;
    background-position: center;
  }
}
@media (max-width: 499px) {
  html body main .text-image .side-by-side.image-wrap {
    background-size: 100%;
    margin: -50px 0 -120px;
  }
}
html body main .icons-parallax {
  margin: -400px 0 0;
  padding: 465px 20px 610px;
  margin-bottom: -370px;
}
@media (max-width: 1280px) {
  html body main .icons-parallax {
    margin: -325px 0 0;
    padding: 390px 20px 310px;
    margin-bottom: -240px;
  }
}
@media (max-width: 899px) {
  html body main .icons-parallax {
    margin: -400px 0 0;
    padding: 390px 20px 300px;
    margin-bottom: -220px;
  }
}
@media (max-width: 499px) {
  html body main .icons-parallax {
    margin: -200px 0 0;
    padding: 380px 20px 280px;
    margin-bottom: -70px;
  }
}
html body main .icons-parallax .background-parallax {
  background: transparent linear-gradient(22deg,#1D3661 0%,#5BAEAF 100%) 0% 0% no-repeat padding-box;
}
html body main .icons-parallax .benefits-wrap {
  flex-wrap: wrap;
  max-width: 1365px;
  padding: 0 30px;
}
@media (max-width: 1499px) {
  html body main .icons-parallax .benefits-wrap {
    max-width: 900px;
  }
}
@media (max-width: 1280px) {
  html body main .icons-parallax .benefits-wrap {
    max-width: 800px;
  }
}
@media (max-width: 899px) {
  html body main .icons-parallax .benefits-wrap {
    max-width: 600px;
    align-items: center;
    flex-direction: column;
  }
}
html body main .icons-parallax .benefits-wrap .icon-wrap {
  height: 90px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
}
@media (max-width: 899px) {
  html body main .icons-parallax .benefits-wrap .icon-wrap {
    justify-content: center;
    margin-bottom: 15px;
  }
}
html body main .icons-parallax .benefits-wrap .icon-wrap img {
  margin: 0;
}
html body main .icons-parallax .benefits-wrap .benefit {
  max-width: none;
  width: 33%;
  text-align: left;
  margin-bottom: 175px;
  max-width: 400px;
}
@media (max-width: 1499px) {
  html body main .icons-parallax .benefits-wrap .benefit {
    width: 50%;
  }
}
@media (max-width: 1280px) {
  html body main .icons-parallax .benefits-wrap .benefit {
    flex-basis: auto;
  }
}
@media (max-width: 899px) {
  html body main .icons-parallax .benefits-wrap .benefit {
    width: auto;
    align-items: center;
    margin-bottom: 50px;
  }
}
html body main .icons-parallax .benefits-wrap .benefit .text {
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 899px) {
  html body main .icons-parallax .benefits-wrap .benefit .text {
    max-width: 388px;
    text-align: center;
  }
}
html body main .icons-parallax .benefits-wrap .benefit:nth-child(2) .text,
html body main .icons-parallax .benefits-wrap .benefit:nth-child(5) .text {
  max-width: 300px;
}
@media (max-width: 899px) {
  html body main .icons-parallax .benefits-wrap .benefit:nth-child(2) .text,
  html body main .icons-parallax .benefits-wrap .benefit:nth-child(5) .text {
    max-width: 254px;
  }
}
html body main .icons-parallax .benefits-wrap .benefit:nth-child(3) .text,
html body main .icons-parallax .benefits-wrap .benefit:nth-child(6) .text {
  max-width: 355px;
}
@media (max-width: 899px) {
  html body main .icons-parallax .benefits-wrap .benefit:nth-child(3) .text,
  html body main .icons-parallax .benefits-wrap .benefit:nth-child(6) .text {
    max-width: 318px;
  }
}
html body main .text_centered {
  padding: 40px 7.3vw 90px;
}
html body main .text_centered .icon {
  width: 55px;
  height: 66px;
}
html body main .text_centered .button {
  margin: 40px auto;
}
