/* Fonts
======================================================== */
@font-face {
  font-family: 'AsapCondensed';
  src: url('../fonts/AsapCondensed.woff2') format('woff2'),
      url('../fonts/AsapCondensed.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
    font-family: 'AsapCondensed-Bold';
    src: url('../fonts/AsapCondensed-Bold.woff2') format('woff2'),
        url('../fonts/AsapCondensed-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: 'TradeGothicLTPro-Cn';
  src: url('../fonts/TradeGothicLTPro-Cn.woff2') format('woff2'),
      url('../fonts/TradeGothicLTPro-Cn.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TradeGothicLTPro-Cn';
  src: url('../fonts/TradeGothicLTPro-BdCn.woff2') format('woff2'),
      url('../fonts/TradeGothicLTPro-BdCn.woff') format('woff');
  font-weight: 700;
  font-style: bold;
  font-display: swap;
}

/* Base
======================================================== */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: 'TradeGothicLTPro-Cn', sans-serif;
  font-size: 20px;
  line-height: 150%;
  text-align: left;
  position: relative;
  min-height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  text-rendering: optimizeLegibility;
  text-rendering: geometricPrecision;
  font-smooth: always;
  font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

::-moz-selection {
  background: #9BC650;
  color: #000000;
}

::selection {
  background: #9BC650;
  color: #000000;
}

:focus {
  outline: 0px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

optgroup {
  font-weight: bold;
}

input, button {
  border: 0;
  border-radius: 0;
}

input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input:focus, button:focus, textarea:focus {
  outline: 0;
}

button {
  overflow: visible;
  text-transform: none;
}

select {
  text-transform: none;
}

textarea {
  overflow: auto;
  border: 0px;
}

a[href^="tel"],
a[href^="sms"] {
  text-decoration: none;
  cursor: default;
}

a[href^="tel"]:before,
a[href^="sms"]:before {
  display: none;
}

/* Text */
h1, h2, h3, h4, h5, h6, p {
  font-size: 20px;
  line-height: 150%;
  font-weight: normal;
  color: #4F4F4F;
  padding: 0;
  margin: 0;
}

b, .b, strong, .strong {
  font-weight: bold;
}

em, .em {
  font-style: italic;
}

u, .u {
  text-decoration: underline;
}

a, .a {
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover, .a:hover {
  text-decoration: none;
}


/* Custom styles
======================================================== */
/* container */
.container {
  width: 100%;
  padding: 0 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 414px) {
  .container {
    max-width: 414px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}

@media (min-width: 1120px) {
  .container {
    max-width: 1120px;
  }
}

@media (min-width: 1280px) {
  .container--wide {
    max-width: 1280px;
  }
}

/* header */
.header {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  background: #FFFFFF;
  height: 65px;
  user-select: none;
  z-index: 10;
}

.header__info {
  font-family: 'AsapCondensed-Bold', sans-serif;
  font-size: 18px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 65px;
  text-decoration: none;
  color: #2A73B5;
  font-weight: 700;
}

.header__nav {
  display: none;
  position: absolute;
  top: 55px;
  z-index: 2;
  background: #FFFFFF;
  width: 100%;
  padding: 0px 20px 10px;
  max-width: 1340px;
  margin: 0 auto;
}
.header__nav--active {
  display: grid;
}

.header__link {
  font-family: 'AsapCondensed', sans-serif;
  font-size: 18px;
  padding: 10px;
  display: block;
  text-decoration: none;
  color: #2A73B5;
}
.header__link--active,
.header__link:hover {
  font-family: 'AsapCondensed-Bold', sans-serif;
  font-weight: 700;
}

@media (min-width: 992px) {
  .header__info {
    display: none;
  }
  .header__nav {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    gap: 50px;
    height: 65px;
    padding: 0 10px;
  }
}

/* nav-control */
.nav-control {
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.nav-control__text {
  font-size: 18px;
  color: #2A73B5;
  margin-right: 10px;
}

@media (min-width: 992px) {
  .nav-control {
    display: none;
  }
}

/* footer */
.footer {
  padding: 10px 0;
}

.footer__box {
  padding: 30px 0;
  border-bottom: 1px solid #4F4F4F;
}

.footer__box--noborder {
  border-bottom: 0px solid #4F4F4F;  
}

.footer__img {
  margin-bottom: 20px;
}
.footer__img-accessibility {
  margin-right: 20px;
  width: 100px;
  display: none;
}

@media (min-width: 1120px) {
  .footer__box {
    padding: 50px 0;
  }
}

.footer__info {
  padding: 30px 0;
  display: grid;
  gap: 30px;
  border-top: 1px solid #828282;
}

@media (min-width: 1120px) {
  .footer__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1120px) {
  .footer {
    padding: 50px 0;
  }
  .footer__imgtext {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .footer__imgtext--gap50 {
    gap: 50px;
  }
  .footer__imgtext--rev {
    flex-direction: row-reverse;
    align-items: end;
  }
}

@media (min-width: 1300px) {
  .footer__info__right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer__img-accessibility {
    display: inline;
  }
}

/* hero */
.hero {
  position: relative;
  height: 600px;
  margin-top: 65px;
}
.hero--p1 {
  background: url(../images/hero_1m.jpg) center center no-repeat;
  background-size:  540px 600px;
}
.hero--p2 {
  background: url(../images/hero_2m.jpg) center center no-repeat;
  background-size:  540px 600px;
}
.hero--p3 {
  background: url(../images/hero_3m.jpg) center center no-repeat;
  background-size:  540px 600px;
}
.hero--p4 {
  background: url(../images/hero_4m.jpg) center center no-repeat;
  background-size:  540px 600px;
}

.hero__section {
  position: relative;
}

.hero__headline {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  padding-top: 15%;
  text-align: center;
}

@media (min-width: 540px) {
  .hero {
    height: 470px;
  }
  .hero--p1 {
    background: url(../images/hero_1.jpg) center center no-repeat #FFF2BD;
  }
  .hero--p2 {
    background: url(../images/hero_2.jpg) center center no-repeat #FFF2BD;
  }
  .hero--p3 {
    background: url(../images/hero_3.jpg) center center no-repeat #FFF2BD;
  }
  .hero--p4 {
    background: url(../images/hero_4.jpg) center center no-repeat #FFF2BD;
  }
  .hero__section {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }
  .hero__headline {
    position: relative;
    top: 0;
    right: 0;
    padding-top: 20px;
    margin-top: 120px;
    max-width: 280px;
    text-align: left;
  }
}

@media (min-width: 1120px) {
  .hero__headline {
    max-width: 540px;
  }
}

/* ibox */
.ibox {
  padding: 45px 50px 50px;
  position: relative;
  border-radius: 30px;
  background: #FFFFFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
  text-align: center;
}
.ibox--logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}
.ibox--icon {
  padding-top: 60px;
  margin-top: 80px;
}

.ibox__img {
 height: 120px;
 margin-bottom: 20px;
}

.ibox__boximg {
  display: none;
}

.ibox__collapsed-content {
  margin-top: 20px;
}

.ibox__collapsed-content--mt {
  margin-top: 40px;
}

.ibox__text--expander,
.ibox__collapsed-content {
  display: none;
  user-select: none;
}
.ibox__text--active,
.ibox__collapsed-content--active {
  display: block;
}

.ibox__icon {
  position: absolute;
  top: -80px;
  left: 0px;
  width: 100%;
  height: 120px;
}

.ibox__headline {
  margin-bottom: 20px;
}
.ibox__headline--collapsed {
  margin-bottom: 0px;
  padding-right: 50px;
}

.ibox__opener {
  position: absolute;
  top: 45px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.ibox__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.ibox__flex__text {
  padding-top: 20px;
}

.ibox__flex__img {
  display: none;
}

.ibox__flex__imgv {
  display: none;
}

@media (min-width: 992px) {
  .ibox--logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ibox__flex__img {
    display: inline-block;
    height: 160px;
    margin-right: 20px;
  }
}

@media (min-width: 1120px) {
  .ibox--tal {
    text-align: left;
  }
  .ibox--info {
    margin-right: 140px;
  }
  .ibox--info-first {
    margin-bottom: 120px;
    padding-right: 200px;
  }
  .ibox--info-sec {
    margin-left: 140px;
    margin-right: 0px;
    margin-bottom: 150px;
    padding-left: 200px;
  }
  .ibox--info-th {
    padding-right: 200px;
    margin-bottom: 20px;
  }
  .ibox--imgaside {
    position: absolute;
    top: 50px;
    right: 0;
    width: 750px;
  }
  .ibox--icon {
    padding-top: 100px;
    margin-top: 80px;
  }
  .ibox__img {
    height: auto;
    margin-bottom: 0px;
  }
  .ibox__img--info1 {
    position: absolute;
    top: -50px;
    right: -200px;
  }
  .ibox__img--info2 {
    position: absolute;
    top: -100px;
    left: -200px;
  }
  .ibox__img--info3 {
    position: absolute;
    top: -50px;
    right: -150px;
  }
  .ibox__boximg {
    display: block;
    position: absolute;
    bottom: -60px;
    right: 80px;
  }

  .ibox__flex--jsb {
    justify-content: space-between;
  }
  .ibox__flex__imgv {
    display: inline-block;
  }

  .ibox--dial {
    text-align: left;
    margin-left: 140px;
    padding-top: 55px;
    padding-left: 200px;
    margin-top: 20px;
  }
  .ibox--diar {
    text-align: left;
    margin-right: 175px;
    padding-top: 55px;
    padding-right: 110px;
    margin-top: 20px;
  }

  .ibox__icon {
    top: -80px;
    left: 0px;
    width: 100%;
    height: 160px;
  }
  .ibox__icon--dial {
    width: auto;
    top: 50px;
    left: -140px;
    height: 260px;
  }
  .ibox__icon--diala {
    top: 70px;
  }
  .ibox__icon--dialb {
    top: -10px;
  }
  .ibox__icon--dialc {
    top: 15px;
  }
  .ibox__icon--diar {
    width: auto;
    top: 35px;
    left: auto;
    right: -175px;
    height: 260px;
  }
  .ibox__icon--diara {
    top: 50px;
  }
  .ibox__icon--diarb {
    top: 5px;
  }

  .ibox__headline--collapsed {
    padding-right: 60px;
  }
}

/* imgaside */
.imgaside__img {
  display: none;
}

@media (min-width: 1120px) {
  .imgaside {
    position: relative;
    height: 870px;
  }
  .imgaside__img {
    display: block;
    position: absolute;
    top: 0px;
    left: -120px;
    z-index: 2;
  }
}

/* section */
.section {
  padding: 50px 0;
}
.section--nopt {
  padding-top: 0px;
}
.section--nopb {
  padding-bottom: 0px;
}
.section--smallpt {
  padding-top: 0px;
}

@media (min-width: 1120px) {
  .section {
    padding: 100px 0;
  }
  .section--nopt {
    padding-top: 0px;
  }
  .section--nopb {
    padding-bottom: 0px;
  }
  .section--smallpt {
    padding-top: 50px;
  }
}

/* gapset */
.gapset {
  display: grid;
  gap: 30px;
}

@media (min-width: 1120px) {
  .gapsetd50 {
    gap: 50px;
  }
}

/* grid2col */
@media (min-width: 1120px) {
  .grid2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
  }
}

/* flexend */
@media (min-width: 1120px) {
  .flexend {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
}

/* pninfo */
.pninfo__img {
  height: 100px;
  display: block;
  margin: 0 auto 20px auto;
}

.pninfo__img2 {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.pninfo__bigtext {
  text-align: center;
  margin-bottom: 30px;
}

@media (min-width: 1120px) {
  .pninfo {
    display: flex;
    align-items: center;
    margin-bottom: 75px;
  }
  .pninfo__bigtext {
    text-align: left;
    margin-bottom: 0px;
  }
  .pninfo__img {
    height: auto;
    margin-right: 75px;
  }
  .pninfo__img2 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

/* dose */
.dose {
  text-align: center;
  padding-top: 30px;
}
.dose__img {
  margin-bottom: 20px;
}
.dose__img--sec {
  margin-bottom: 30px;
}
.dose__headline {
  margin-bottom: 10px;
}

/* sup */
sup {
  line-height: 0;
}

/* button */
.button {
  color: #2A73B5;
  background: #FED829;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  padding: 25px 30px 17px;
  text-decoration: none;
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
}

/* button windows debug */
.windows .button {
  padding: 15px 30px;
}

.button--sec {
  color: #FED829;
  background: #2A73B5;
  border: 4px solid #FED829;
}
.button--info {
  cursor: default;
  display: block;
  padding-bottom: 20px;
}
.button:hover {
  background: #F0C500;
}
.button--sec:hover {
  background: #2668a2;
}

.button__close {
  position: relative;
  top: -2px;
  margin-left: 10px;
}

@media (min-width: 1120px) {
  .button {
    font-size: 30px;
  }
}

/* expander */
.button__expander {
  margin-top: 20px;
  display: inline-flex;
}

/* cite */
.cite {
  border-left: 10px solid #FED829;
  padding-left: 20px;
}

/* headline */
.headline {
  font-family: 'AsapCondensed-Bold', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  color: #2A73B5;
}

.headline--xl {
  font-size: 32px;
}

.headline--hero {
  font-size: 48px;
}

.headline--home {
  font-size: 64px;
}

.headline--modal {
  font-size: 24px;
  line-height: 125%;
}

.headline--nouc {
  text-transform: none;
}

.headline--pb20 {
  padding-bottom: 20px;
}

@media (min-width: 576px) {
  .headline--hero,
  .headline--home  {
    font-size: 48px;
  }
}

@media (min-width: 992px) {
  .headline {
    font-size: 32px;
  }
  .headline--xl,
  .headline--hero,
  .headline--home  {
    font-size: 48px;
  }
  .headline--modal {
    font-size: 48px;
  }
}

@media (min-width: 1120px) {
  .headline--xl,
  .headline--hero,
  .headline--home  {
    font-size: 70px;
  }

  .headline--l {
    font-size: 48px;
  }

  .headline--m {
    font-size: 40px;
    line-height: 48px;
  }
  .headline--s {
    font-size: 32px;
  }
  .headline--xs {
    font-size: 30px;
  }
}

/* bigtext */
.bigtext {
  font-size: 20px;
}
@media (min-width: 1120px) {
  .bigtext {
    font-size: 32px;
  }
}

/* largertext */
.largertext {
  font-size: 20px;
}
.largertext--mt {
  margin-top: 7px;
}

@media (min-width: 1120px) {
  .largertext {
    font-size: 24px;
  }
}

/* ul */
ul {
  list-style-type: disc;
  padding-top: 20px;
  padding-left: 20px;
  line-height: 150%;
}
ul li {
  padding-left: 0px;
  padding-bottom: 20px;
}
ul li span {
  color: #4F4F4F;
}
ul li.li--nopb {
  padding-bottom: 0px;
}

ul.blue-dot li::marker {
  color: #2A73B5;
}

/* modal */
.modal {
  position: fixed;
  bottom: 0px;
  right: 0px;
  left: 0px;
  overflow: hidden;
  z-index: 10;
}
.modal__in {
  position: relative;
  background: #2A73B5;
  padding: 55px 60px;
}
.modal__content {
  display: grid;
  row-gap: 20px;
}
.modal__headline {
  padding-right: 40px;
}
.modal__button {
  width: 100%;
}

.modal__button-set {
  display: grid;
  gap: 10px;
}

.modal__img {
  display: none;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: #FED829;
  cursor: pointer;  
}
.modal__close:hover {
  background: #F0C500;
}
.modal__close__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;  
}
@media (min-width: 576px) {
  .modal__button--set {
    width: 100%;
    max-width: 200px;
  }
  .modal__button-set {
    display: flex;
    gap: 40px;
  }
}

@media (min-width: 1120px) {
  .modal {
    top: 0px;
    background: #FFFFFF80;
    height: 100%;
  }
  .modal__flex {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  .modal__in {
    position: relative;
    background: #2A73B5;
    padding: 50px 70px 50px 200px;
    border-radius: 30px;
    max-width: 880px;
  }
  .modal__button {
    width: auto;
  }
  .modal__button--set {
    width: 100%;
    max-width: 200px;
  }
  .modal__close {
    top: -35px;
    right: -35px;
  }
  .modal__img {
    position: absolute;
    display: block;
    top: -40px;
    left: -220px;
  }
}

/* helpers */
.tac {
  text-align: center;
}
.tal {
  text-align: left;
}
.bgyellow {
  background: #FEF2BD;
}
.bggreen {
  background: #C7E2CE;
}
.bgblue {
  background: #B3DBED;
}
.bgbluesec {
  background: #2A73B5;
}
.js-toggle-collapse-headline {
  cursor: pointer;
  user-select: none;
}

@media (min-width: 1120px) {
  .bgshapes {
    display: block;
    width: 1150px;
    height: 154px;
    background: url('../images/bg_shapes.svg') no-repeat #FEF2BD;
    margin: 0 auto;
  }
}

.cwhite {
  color: white;
}
.cblue {
  color: #2A73B5;
}
.cblack {
  color: #4F4F4F;
}
.brdesktoponly {
  display: none;
}
.underline {
  text-decoration: underline;
}
.brmobileonly {
  display: inline-block;
}

@media (min-width: 768px) {
  .brmobileonly {
    display: none;
  }
}

@media (min-width: 1120px) {
  .brdesktoponly {
    display: inline-block;
  }
}

.hidden {
  display: none;
}

.footer__text #ot-sdk-btn.ot-sdk-show-settings {
  color: #000000;
  border: 0px;
  text-decoration: underline;
  font-size: 20px;
  padding: 0px;
}
.footer__text #ot-sdk-btn.ot-sdk-show-settings:hover {
  color: #000000;
  border: 0px;
  background: none;
  text-decoration: none;
}

#onetrust-consent-sdk {
  font-family: sans-serif;
}
