
/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300..700;1,14..32,300..700&family=Roboto:ital,wght@0,300..700;1,300..700&display=swap');

@font-face {
  font-family: "CornerDisplay";
  src: url("fonts/CornerDisplayWEB-Regular.woff2") format('woff2');
}

@font-face {
  font-family: "CornerDisplay";
  src: url("fonts/CornerDisplayWEB-Bold.woff2") format('woff2');
  font-weight: bold;
}


/* Generic rules */

:focus {
  outline: none;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  border: 0;
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-family: CornerDisplay, Inter, sans-serif, arial;
  color: #075da7;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #075da7;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

img.placeholder {
  background-color: #cddfed;
  object-fit: cover;
}


/* Header */

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

header .container {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 48px;
  padding: 8px 16px 0;
}

header img {
  display: block;
  max-width: 100%;
}

header .logo a {
  display: block;
  padding: 8px;
  transform: translateY(-3px);
}

header .logo img {
  width: 116px;
  height: auto;
}

header .menu {
  display: none;
}

header .langs,
#cc_popup .panel-header .langs {
  padding-right: 0;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

header .langs .toggler,
#cc_popup .panel-header .langs .toggler {
  height: 48px;
  width: 48px;
  border: 0 none;
  border-radius: 24px;
  background-color: transparent;
  background-image: url(img/icons/icon-globe.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: center;
  cursor: pointer;
  transition: all .15s linear;
}

header .langs .toggler.active,
#cc_popup .panel-header .langs .toggler.active {
  background-color: #085da7;
  background-image: url(img/icons/icon-globe-wt.svg);
}

header .langs .items,
#cc_popup .panel-header .langs .items {
  position: absolute;
  top: 54px;
  right: -8px;
  padding: 8px;
  background-color: #e6eff8;
  box-shadow: 0 16px 40px 0 rgba(7, 93, 167, 0.2);
  border-radius: 32px;
  height: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  gap: 8px;
  z-index: 10;
  transition: all .2s ease;
}

header .langs .toggler.active ~ .items,
#cc_popup .panel-header .langs .toggler.active ~ .items {
  height: 64px;
  width: 176px;
  opacity: 1;
}

header .langs.langs-4 .toggler.active ~ .items,
#cc_popup .panel-header .langs.langs-4 .toggler.active ~ .items {
  width: 232px;
}

header .langs .items > *,
#cc_popup .panel-header .langs .items > * {
  color: #075da7;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .langs .items > span,
#cc_popup .panel-header .langs .items > span {
  color: #fff;
  background-color: #075da7;
}

@media screen and (min-width: 768px) {

  header {
    position: sticky;
    top: 0;
    padding: 14px 40px 0;
  }

  header .container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 76px;
    padding: 0 28px 0 40px;
    background-color: #fff;
    border-radius: 80px;
    transition: box-shadow .2s ease;
  }

  header .container.scrolled {
    box-shadow: 0 8px 32px 0 rgba(7, 93, 167, 0.08);
  }

  header .logo {
    flex: 0 0 auto;
  }

  header .logo a {
    padding: 0;
  }

  header .langs {
    flex: 0 0 auto;
  }

}

@media screen and (min-width: 992px) {

  header .menu {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1 1 auto;
    justify-content: center;
    padding: 0 24px;
  }

  header .menu a {
    color: #002b4d;
    font-size: 16px;
    line-height: 1.13;
    text-transform: uppercase;
    transition: color .1s linear;
  }

  header .menu a:hover {
    color: #075da7;
  }

}

@media screen and (min-width: 1280px) {

  header {
    padding-left: 0;
    padding-right: 0;
  }

  header .menu {
    gap: 48px;
  }

}


/* Main */

main {
  flex: 1 0 auto;
  overflow: hidden;
  padding-top: 64px;
  position: relative;
}

main img {
  max-width: 100%;
  display: block;
}

@media screen and (min-width: 768px) {

  main {
    padding-top: 0;
  }

}


/* Button */

.cc-btn, .cc-btn:visited, .cc-btn:active, .cc-btn:focus {
  color: #fff;
  font-family: CornerDisplay, Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding: 16px 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e30613;
  min-height: 54px;
  border: 0 none;
  border-radius: 56px;
  cursor: pointer;
  outline: none;
  transition: background-color .1s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cc-btn:hover {
  color: #fff;
  background-color: #c00510;
}


/* Hero */

section.hero {
  position: relative;
  padding: 0 8px 120px;
  overflow: hidden;
}

section.hero .hero-bg {
  position: absolute;
  z-index: 0;
  left: -200px;
  width: 200vw;
  top: 200px;
  bottom: -160px;
  background-color: #f3f7fb;
  transform: rotate(-12deg);
  transform-origin: center top;
  pointer-events: none;
}

section.hero .container {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 40px 80px 0 rgba(7, 93, 167, 0.16);
  overflow: hidden;
  padding-top: 32px;
}

section.hero .content {
  display: flex;
  flex-direction: column;
}

section.hero .info {
  padding: 0 24px;
}

section.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

section.hero .desc {
  color: #397db9;
  font-size: 18px;
  line-height: 1.3;
}

section.hero .visual {
  position: relative;
  margin-top: 16px;
  min-height: 600px;
}

section.hero .photos {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

section.hero .photos-inner {
  position: absolute;
  left: -130px;
  right: 36px;
  top: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #fff;
  transform: rotate(-12deg);
  transform-origin: top right;
}

section.hero .photos .row {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
}

section.hero .photos .row:last-child {
  gap: 14px;
}

section.hero .photos .tile {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  background-color: #fff;
}

section.hero .photos .row:first-child .tile {
  flex: 1 1 100%;
}

section.hero .photos .tile img {
  display: block;
  width: 110%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  transform: rotate(12deg) translate(16px, -40px);
  transform-origin: center center;
}

section.hero .photos .row:first-child .tile img {
  width: 120%;
  height: 200%;
  transform: rotate(12deg) translate(-70px, -8vw);
}

section.hero .photos .row:last-child .tile:last-child img {
  transform: rotate(12deg) translate(-32px, -36px);
}

section.hero .offer {
  position: absolute;
  top: 0;
  right: 18%;
  z-index: 2;
  transform: rotate(-12deg);
}

section.hero .offer > div {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ef6a71;
  padding: 6px 0 0;
}

section.hero .offer span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}

section.hero .offer strong {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin: 3px 0;
}

section.hero .offer span:last-child {
  font-size: 10px;
  line-height: 1.3;
}

section.hero .hero-bottom {
  display: none;
}

@media screen and (min-width: 768px) {

  section.hero {
    padding: 16px 40px 80px;
  }

  section.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  section.hero .content {
    min-height: 365px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 40px 80px 0 rgba(30, 98, 155, 0.08);
    overflow: hidden;
  }

  section.hero .info {
    padding: 56px 56px 0;
  }

  section.hero h1 {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
  }

  section.hero .desc {
    max-width: 360px;
    line-height: 1.33;
  }

  html[lang=de] section.hero .desc {
    max-width: 450px;
  }

  html[lang=fr] section.hero .desc {
    max-width: 400px;
  }

  section.hero .visual {
    margin-top: 0;
    min-height: 780px;
  }

  section.hero .photos .tile img {
    transform: rotate(12deg) translate(-18px, -48px);
  }

}

@media screen and (min-width: 992px) {

  section.hero {
    padding-bottom: 0;
  }

  section.hero .content {
    flex-direction: row;
    align-items: center;
  }

  section.hero .info {
    flex: 0 0 55%;
    padding: 56px 16px 56px 56px;
  }

  section.hero .visual {
    flex: 1 1 auto;
    min-height: 365px;
    align-self: stretch;
  }

  section.hero .offer {
    top: 42%;
    left: -18px;
    transform: rotate(-12deg);
  }

  section.hero .photos-inner {
    left: 0;
    right: 0;
    top: -16px;
    height: 150%;
    transform-origin: top left;
  }

  section.hero .photos .tile img {
    width: 130%;
    transform: rotate(12deg) translate(-40px, -40px);
  }

  section.hero .photos .row:first-child .tile img {
    width: 110%;
    transform: rotate(12deg) translate(-55px, 20px);
  }

  section.hero .photos .row:last-child .tile:last-child img {
    transform: rotate(12deg) translate(-30px, -24px);
    width: 100%;
    height: 85%;
  }

  section.hero .hero-bottom {
    display: block;
    position: relative;
    margin-top: 16px;
    padding-bottom: 32px;
  }

  section.hero .hero-bottom .calc,
  section.hero .hero-bottom .note {
    position: relative;
    z-index: 1;
  }

  section.hero .hero-bg {
    top: 200px;
    bottom: -200px;
  }

  section.hero .calc {
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 40px 80px 0 rgba(30, 98, 155, 0.08);
    padding: 32px 56px;
  }

  section.hero .calc-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
  }

  section.hero .calc .fields {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
  }

  section.hero .calc .field {
    flex: 0 0 200px;
    max-width: 200px;
  }

  section.hero .calc .field label,
  section.hero .calc .summary .label {
    color: #002b4d;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
  }

  section.hero .calc .summary .label {
    margin-bottom: 8px;
  }

  section.hero .calc .field .value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
  }

  section.hero .calc .slider {
    position: relative;
    height: 22px;
  }

  section.hero .calc .slider input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    margin: 7px 0;
    border-radius: 16px;
    background: linear-gradient(to right, #075da7 var(--progress, 18%), #cddfed var(--progress, 18%));
    outline: none;
    cursor: pointer;
  }

  section.hero .calc .slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border: 7px solid #075da7;
    border-radius: 50%;
    background-color: #cddfed;
    box-shadow: none;
    cursor: pointer;
  }

  section.hero .calc .slider input[type=range]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border: 7px solid #075da7;
    border-radius: 50%;
    background-color: #cddfed;
    box-shadow: none;
    cursor: pointer;
  }

  section.hero .calc .slider input[type=range]::-moz-range-track {
    height: 8px;
    border-radius: 16px;
    background: #cddfed;
  }

  section.hero .calc .summary {
    flex: 0 0 auto;
    min-width: 180px;
  }

  section.hero .calc .summary .value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
  }

  section.hero .calc .summary .value span {
    font-size: 40px;
    line-height: 1;
    display: block;
  }

  section.hero .calc .cta {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
  }

  section.hero .calc .cta .cc-btn {
    font-size: 22px;
    min-height: 62px;
    white-space: nowrap;
  }

  section.hero .hero-bottom .note {
    max-width: 800px;
    margin: 40px auto 8px;
  }

}

@media screen and (min-width: 1280px) {

  section.hero {
    padding-left: 0;
    padding-right: 0;
  }

  section.hero .info {
    flex: 0 0 50%;
  }

  section.hero .offer {
    top: 14px;
    left: 12px;
  }

  section.hero .photos-inner {
    left: 54px;
  }

  section.hero .calc {
    padding: 24px 56px;
  }

  section.hero .calc-form {
    flex-wrap: nowrap;
    align-items: center;
  }

  section.hero .calc .fields {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  section.hero .calc .cta {
    flex: 0 0 auto;
    justify-content: flex-end;
  }

}


/* Sections */

.section-group {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
}


/* Section - Labels */

section.labels {
  color: #1d2859;
  background-color: #f3f7fb;
  padding-bottom: 32px;
}

section.labels .title {
  font-size: 18px;
  font-weight: 700;
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  display: flex;
  justify-content: center;
}

section.labels .title > div {
  margin-bottom: 30px;
  position: relative;
  max-width: 340px;
  width: 85%;
  hyphens: manual;
}

html[lang="fr"] section.labels .title > div {
  max-width: 380px;
}

section.labels .title > div::before,
section.labels .title > div::after {
  content: "";
  background-image: url(img/gold-leaves.svg);
  background-repeat: no-repeat;
  background-size: 42px auto;
  height: 54px;
  width: 34px;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: all ease-out 1s, opacity ease-out .5s;
  transform-origin: bottom right;
}

section.labels .title > div::before {
  left: -32px;
  transform: rotate(-45deg);
}

section.labels .title > div::after {
  right: 2px;
  transform: scaleX(-1) rotate(-45deg);
}

section.labels .title > div span {
  display: block;
  opacity: 0;
  transform: translateY(25px);
  transition: transform ease-out .8s, opacity ease-out .5s;
}

section.labels .title.visible > div::before {
  opacity: 1;
  transform: none;
}

section.labels .title.visible > div::after {
  opacity: 1;
  transform: scaleX(-1);
}

section.labels .title.visible > div span {
  opacity: 1;
  transform: none;
}
section.labels .items {
  width: 100%;
  margin: 0 auto;
}

section.labels .items.is-static {
  display: flex;
  justify-content: center;
}

section.labels .items.is-draggable {
  display: block;
  cursor: grab;
}

section.labels .items.is-draggable:active {
  cursor: grabbing;
}

section.labels .items .holder {
  display: flex;
  outline: none;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: pan-y;
  will-change: transform;
  transition: none;
}

section.labels .items.is-static .holder {
  transform: none;
}

section.labels .item {
  flex: 0 0 auto;
  padding: 0 8px;
  display: flex;
}

section.labels .item > div {
  width: 171px;
  background-color: #fff;
  border-radius: 23px;
  border: 2px solid transparent;
  background:
    linear-gradient(to bottom, #fff, #fff),
    linear-gradient(83deg, #e6c39e 8%, #fff8f0 44%, #ffe2c3 84%);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  box-shadow: 0 0 50px 0 rgba(230, 195, 158, 0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: transform ease-out 0.8s, opacity ease-out 0.5s;
}

section.labels .item.visible > div {
  opacity: 1;
  transform: none;
}

section.labels .item .img img {
  width: 123px;
  margin: 16px auto;
}

section.labels .item .info {
  color: #e6c39e;
  text-align: center;
  padding: 0 16px 20px;
}

section.labels .item h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.36px;
  margin-bottom: 6px;
}

section.labels .desc {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.28px;
}

@media screen and (max-width: 500px) {

  html[lang="fr"] section.labels .title {
    font-size: 17px;
    letter-spacing: -0.3px;
  }

  html[lang="fr"] section.labels .title > div {
    max-width: 340px;
  }

}

@media screen and (min-width: 768px) {

  section.labels {
    padding: 40px 0;
  }

  section.labels .title {
    font-size: 24px;
  }

  section.labels .title > div {
    margin-bottom: 45px;
    max-width: 410px;
  }

  html[lang="de"] section.labels .title > div {
    max-width: 520px;
  }

  html[lang="fr"] section.labels .title > div {
    max-width: 480px;
  }

  section.labels .title > div::before,
  section.labels .title > div::after {
    background-size: 62px auto;
    height: 78px;
    width: 54px;
    top: 0;
  }

  section.labels .title > div::before {
    left: -65px;
  }

  section.labels .title > div::after {
    right: -15px;
  }

  section.labels .items {
    order: 1;
  }

}

@media screen and (min-width: 1281px) {

  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  section.labels {
    padding: 80px 0 40px;
  }

}


/* Section - Advantages */

section.advantages {
  padding: 80px 16px;
  background-color: #f3f7fb;
}

section.advantages .intro {
  margin-bottom: 40px;
  padding: 0 12px 0 16px;
}

section.advantages .intro .icon {
  width: 64px;
  height: auto;
  margin-bottom: 16px;
}

section.advantages .intro h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

section.advantages .intro p {
  color: #397db9;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

section.advantages .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

section.advantages .card {
  width: 100%;
  max-width: 358px;
  --reveal-shift: 120px;
}

section.advantages .card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 494px;
  overflow: hidden;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 30px 60px 0 rgba(7, 93, 167, 0.15);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: transform ease-out 0.8s, opacity ease-out 0.5s;
}

section.advantages .card.visible .card-inner {
  opacity: 1;
  transform: none;
}

section.advantages .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px 24px 0;
  flex: 0 0 auto;
}

section.advantages .head h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

section.advantages .hint {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0 none;
  border-radius: 50%;
  background-color: #e6eff6;
  color: #075da7;
  font-family: CornerDisplay, Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

section.advantages .panel {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  padding: 22px 16px 16px;
}

section.advantages .desc {
  position: absolute;
  top: 24px;
  right: 24px;
  left: 24px;
  z-index: 1;
  opacity: 0;
  color: #397db9;
  font-family: Inter, Roboto, sans-serif, arial, Helvetica;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  transition: opacity .35s ease;
  pointer-events: none;
}

section.advantages .img {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 16px;
  transition: transform .45s ease;
  will-change: transform;
}

section.advantages .img img {
  width: 100%;
  height: 382px;
  object-fit: cover;
}

section.advantages .card.active .desc {
  opacity: 1;
}

section.advantages .card.active .img {
  transform: translateY(var(--reveal-shift));
}

@media (hover: hover) and (pointer: fine) {

  section.advantages .card:hover .desc {
    opacity: 1;
  }

  section.advantages .card:hover .img {
    transform: translateY(var(--reveal-shift));
  }

}

@media screen and (min-width: 768px) and (max-width: 991px) {

  section.advantages {
    padding: 112px 40px 80px;
  }

  section.advantages .intro {
    max-width: none;
    margin-bottom: 64px;
    text-align: center;
  }

  section.advantages .intro .icon {
    width: 80px;
    margin: 0 auto 32px;
  }

  section.advantages .intro h2 {
    font-size: 44px;
  }

  section.advantages .intro h2 br {
    display: none;
  }

  section.advantages .intro p {
    max-width: 566px;
    margin: 0 auto;
    text-align: center;
  }

}

@media screen and (min-width: 992px) and (max-width: 1279px) {

  section.advantages {
    padding: 112px 40px 80px;
  }

  section.advantages .intro {
    max-width: none;
    margin-bottom: 64px;
    text-align: center;
  }

  section.advantages .intro .icon {
    width: 80px;
    margin: 0 auto 32px;
  }

  section.advantages .intro h2 {
    font-size: 44px;
  }

  section.advantages .intro h2 br {
    display: none;
  }

  section.advantages .intro p {
    max-width: 566px;
    margin: 0 auto;
    text-align: center;
  }

  section.advantages .cards {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 913px;
    margin: 0 auto;
  }

  section.advantages .card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: auto;
    --reveal-shift: 110px;
  }

  section.advantages .card-inner {
    min-height: 0;
    height: 100%;
    border-radius: 28px;
  }

  section.advantages .head {
    padding: 28px 24px 8px;
  }

  section.advantages .head h3 {
    font-size: 26px;
  }

  section.advantages .hint {
    display: none;
  }

  section.advantages .panel {
    padding: 16px 20px 20px;
  }

  section.advantages .desc {
    top: 12px;
    font-size: 16px;
    line-height: 1.25;
  }

  section.advantages .img {
    border-radius: 20px;
  }

  section.advantages .img img {
    height: 320px;
  }

}

@media screen and (min-width: 1280px) {

  section.advantages {
    padding: 112px 40px 80px;
  }

  section.advantages .intro {
    max-width: none;
    margin-bottom: 64px;
    text-align: center;
  }

  section.advantages .intro .icon {
    width: 80px;
    margin: 0 auto 32px;
  }

  section.advantages .intro h2 {
    font-size: 56px;
  }

  section.advantages .intro h2 br {
    display: none;
  }

  section.advantages .intro p {
    max-width: 566px;
    margin: 0 auto;
    text-align: center;
  }

  section.advantages .cards {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
  }

  section.advantages .card {
    max-width: none;
    flex: 0 0 380px;
    width: 380px;
    --reveal-shift: 126px;
  }

  section.advantages .card-inner {
    border-radius: 32px;
  }

  section.advantages .head {
    padding: 40px 40px 12px;
  }

  section.advantages .head h3 {
    font-size: 32px;
  }

  section.advantages .hint {
    display: none;
  }

  section.advantages .panel {
    padding: 24px;
  }

  section.advantages .desc {
    top: 16px;
    right: 40px;
    left: 40px;
    font-size: 18px;
    line-height: 1.22;
  }

  section.advantages .img {
    border-radius: 24px;
  }

  section.advantages .img img {
    height: 390px;
  }

}


/* Section - App */

section.app .container {
  padding: 80px 32px 60px;
}

section.app .intro .icon {
  width: 64px;
  height: auto;
  margin: 0 0 12px -10px;
}

section.app .intro h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

section.app .intro p {
  color: #397db9;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

section.app .visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin: 32px -32px 0;
}

section.app .visual::before {
  content: "";
  background-color: #e6eff6;
  border-radius: 24px;
  position: absolute;
  width: calc(100% - 64px);
  max-width: 722px;
  margin: 0 auto;
  bottom: 0;
  height: 70%;
  z-index: 0;
}

section.app .visual img {
  display: block;
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

section.app .stores {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

section.app .stores img {
  width: 152px;
  height: auto;
}

@media screen and (max-width: 767px) {

  section.app .intro {
    display: flex;
    flex-direction: column;
  }

  section.app .intro h2 {
    order: 1;
  }

  section.app .intro .stores {
    order: 2;
    margin-bottom: 24px;
  }

  section.app .intro p {
    order: 3;
  }

}

@media screen and (min-width: 768px) {

  section.app .intro {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  section.app .intro .icon {
    margin: 0 auto 16px;
  }

  section.app .intro h2 {
    font-size: 44px;
  }

  section.app .intro .stores {
    margin-top: 32px;
    justify-content: center;
  }

  section.app .visual {
    max-width: 722px;
    margin: 40px auto 0;
  }

  section.app .visual::before {
    height: 284px;
    width: 100%;
  }

}

@media screen and (min-width: 992px) {

  section.app::before {
    content: " ";
    display: block;
    width: 100%;
    aspect-ratio: 1185 / 252;
    height: auto;
    max-height: 300px;
    background: linear-gradient(to bottom right, #f3f7fb 0%, #f3f7fb 50%, #fff 50%, #fff 100%);
    margin-bottom: -24px;
  }

  section.app .container {
    padding: 0 40px 80px;
  }

  section.app .intro {
    max-width: unset;
  }

  section.app .intro .icon {
    width: 80px;
    margin: 0 auto 32px;
  }

  section.app .intro h2 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 24px;
  }

  section.app .intro p {
    max-width: 600px;
    margin: 0 auto;
  }

  section.app .intro .stores {
    position: relative;
    z-index: 2;
    margin-top: 32px;
  }

  section.app .intro .stores img {
    width: 158px;
  }

  section.app .visual {
    margin-top: 80px;
  }

}

@media screen and (min-width: 1280px) {

  section.app .container {
    padding: 0 0 80px;
  }

}


/* Disclaimer */

section.hero .hero-bottom .note,
#cc_popup .note {
  color: #075da7;
  font-family: Inter, Roboto, sans-serif, arial, Helvetica;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
}

section.hero .hero-bottom .note p + p,
#cc_popup .note p + p {
  margin-top: 8px;
}

#cc_popup .note {
  margin-top: 32px;
}


/* Sticky bar */

#sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 12px 16px;
  background-color: #fff;
  box-shadow: 0 0px 32px 0 rgba(7, 93, 167, 0.08);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  transform-origin: top;
  transform: translateY(0);
}

#sticky .cta .cc-btn {
  min-height: 56px;
  min-width: 213px;
}

@media screen and (min-width: 768px) {

  #sticky {
    min-height: 66px;
    padding: 8px 40px;
  }

  #sticky .cta .cc-btn {
    font-size: 16px;
    letter-spacing: 0.16px;
    min-height: 50px;
  }

}

@media screen and (min-width: 992px) {

  #sticky {
    opacity: 0;
    transform: translateY(calc(100% + 80px));
    transition: opacity .35s ease, transform .25s ease;
    pointer-events: none;
  }

  #sticky.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

}

@media screen and (max-width: 992px) {

  body {
    padding-bottom: 80px;
  }

}


/* Popup */

#cc_popup {
  position: fixed;
  inset: 0;
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#cc_popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#cc_popup .panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transform: translateY(100%);
  transition: transform .35s ease;
}

#cc_popup.show .panel {
  transform: translateY(0);
  box-shadow: 0 0px 32px 0 rgba(7, 93, 167, 0.08);
}

#cc_popup .panel-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 8px 16px;
  background-color: #fff;
  opacity: 0;
}

#cc_popup.show .panel-header {
  opacity: 1;
  transition: opacity .35s ease;
}

#cc_popup .panel-header .logo a {
  display: block;
  padding: 8px;
  transform: translateY(-3px);
}

#cc_popup .panel-header .logo img {
  display: block;
  width: 116px;
  height: auto;
}

#cc_popup .panel-body {
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 16px 32px 32px;
  background-color: #e6eff6;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  -webkit-overflow-scrolling: touch;
}

#cc_popup .fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#cc_popup .field-card {
  padding: 32px clamp(24px, 12vw, 63px);
  border-radius: 24px;
  background-color: #fff;
  width: 350px;
  max-width: 100%;
  margin: 0 auto;
}

#cc_popup .calc .field label {
  color: #002b4d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

#cc_popup .calc .field .value {
  color: #075da7;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

#cc_popup .calc .slider {
  position: relative;
  height: 22px;
}

#cc_popup .calc .slider input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  margin: 7px 0;
  border-radius: 16px;
  background: linear-gradient(to right, #075da7 var(--progress, 18%), #cddfed var(--progress, 18%));
  outline: none;
  cursor: pointer;
}

#cc_popup .calc .slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 7px solid #075da7;
  border-radius: 50%;
  background-color: #cddfed;
  box-shadow: none;
  cursor: pointer;
}

#cc_popup .calc .slider input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 7px solid #075da7;
  border-radius: 50%;
  background-color: #cddfed;
  box-shadow: none;
  cursor: pointer;
}

#cc_popup .calc .slider input[type=range]::-moz-range-track {
  height: 8px;
  border-radius: 16px;
  background: #cddfed;
}

#cc_popup .summary {
  max-width: 228px;
  margin: 32px auto 0;
}

#cc_popup .summary .label {
  color: #002b4d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 8px;
}

#cc_popup .summary .value {
  color: #075da7;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

#cc_popup .summary .value span {
  font-size: 40px;
  line-height: 1;
  display: block;
}

#cc_popup .calc .cta {
  margin-top: 32px;
  text-align: center;
}

#cc_popup .calc .cta .cc-btn {
  min-height: 56px;
  min-width: 260px;
}

#cc_popup .panel-footer {
  position: relative;
  flex: 0 0 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
  background-color: #e6eff6;
}

#cc_popup .panel-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #cddfed;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

#cc_popup .close {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0 none;
  border-radius: 50%;
  cursor: pointer;
}

#cc_popup .close img {
  width: 100%;
  height: 100%;
}

body.popup-open {
  overflow: hidden;
}

body.popup-open #sticky {
  visibility: hidden;
}

@media screen and (min-width: 992px) {

  #cc_popup {
    display: none;
  }

}


/* Section - Steps */

section.steps {
  padding: 40px 16px;
  background-color: #fff;
}

section.steps .container {
  max-width: 1200px;
  margin: 0 auto;
}

section.steps .intro {
  padding: 0 16px;
  margin-bottom: 40px;
}

section.steps .intro .icon {
  width: 64px;
  height: auto;
  margin-bottom: 12px;
}

section.steps .intro h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

section.steps .intro p {
  color: #397db9;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

section.steps .items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

section.steps .item {
  background-color: #e6eff8;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  max-width: 380px;
  min-height: 248px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: transform ease-out 0.8s, opacity ease-out 0.5s;
}

section.steps .item.visible {
  opacity: 1;
  transform: none;
}

section.steps .step-number {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #075da7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

section.steps .item h3 {
  color: #075da7;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
}

section.steps .item p {
  color: #397db9;
  font-family: Inter, Roboto, sans-serif, arial, Helvetica;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
}

@media screen and (min-width: 768px) {

  section.steps {
    padding: 60px 40px 100px;
  }

  section.steps .intro {
    margin: 0 auto 56px;
    text-align: center;
  }
  
  section.steps .intro .icon {
    width: 80px;
    margin: 0 auto 16px;
    transform: rotate(-12deg);
  }

  section.steps .intro h2 {
    font-size: 44px;
    margin-bottom: 16px;
  }

  section.steps .intro p {
    max-width: 520px;
    margin: 0 auto;
  }

  section.steps .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  section.steps .item {
    flex: 1 1 calc(50% - 16px);
    margin: 0;
  }

  section.steps .step-number {
    font-size: 16px;
    margin-bottom: 14px;
  }

  section.steps .item h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

}

@media screen and (min-width: 992px) {

  section.steps .intro h2 {
    font-size: 56px;
  }

  section.steps .items {
    gap: 40px;
  }

  section.steps .item {
    padding: 32px 40px;
  }

}

@media screen and (min-width: 1280px) {

  section.steps {
    padding: 80px 0 160px;
  }

  section.steps .intro .icon {
    margin-bottom: 24px;
  }

}


/* Section - Insurance */

section.insurance {
  background-color: #f3f7fb;
}

section.insurance::before {
  content: " ";
  display: block;
  width: 100%;
  aspect-ratio: 1185 / 252;
  height: auto;
  background: linear-gradient(to bottom right, #fff 0%, #fff 50%, #f3f7fb 50%, #f3f7fb 100%);
}

section.insurance .container {
  padding: 56px 16px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

section.insurance .intro {
  padding: 0 16px;
  margin-bottom: 40px;
}

section.insurance .intro .icon {
  width: 64px;
  height: auto;
  margin-bottom: 12px;
}

section.insurance .intro h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

section.insurance .intro p {
  color: #397db9;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

section.insurance .items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;;
}

section.insurance .item {
  background-color: #fff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  max-width: 380px;
  flex: 1 1 calc(50% - 16px);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: transform ease-out 0.8s, opacity ease-out 0.5s;
}

section.insurance .item.visible {
  opacity: 1;
  transform: none;
}

section.insurance .item .icon {
  background-color: #e6eff6;
  border-radius: 12px;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

section.insurance .item .icon img {
  width: 40px;
  height: auto;
}

section.insurance .item h3 {
  color: #075da7;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}

section.insurance .item p {
    color: #397db9;
    font-family: Inter, Roboto, sans-serif, arial, Helvetica;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.22;
}

@media screen and (min-width: 768px) {

  section.insurance::before {
    display: none;
  }

  section.insurance .container {
    padding: 100px 40px;
  }

  section.insurance .intro {
    margin-bottom: 56px;
    text-align: center;
  }

  section.insurance .intro .icon {
    width: 80px;
    margin: 0 auto 16px;
  }

  section.insurance .intro h2 {
    font-size: 44px;
    max-width: 890px;
    margin: 0 auto 16px;
  }

  html[lang=de] section.insurance .intro h2,
  html[lang=de] section.insurance .intro p {
    max-width: none;
  }

  section.insurance .intro p {
    max-width: 580px;
    margin: 0 auto;
  }

  section.insurance .items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }

  section.insurance .item h3 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

}

@media screen and (min-width: 992px) {

  section.insurance .intro h2 {
    font-size: 56px;
  }

}

@media screen and (min-width: 1280px) {

  section.insurance .container {
    padding: 120px 0 80px;
  }

  section.insurance .intro {
    margin-bottom: 64px;
  }

  section.insurance .intro .icon {
    margin-bottom: 24px;
  }

  section.insurance .intro h2 {
    font-size: 56px;
  }

  section.insurance .items {
    flex-wrap: nowrap;
    gap: 40px;
  }

  section.insurance .item {
    flex: 1 1 calc(33.333% - 21px);
    min-height: unset;
  }

}

/* Section - USP Cards */

section.usp-cards {
  padding: 20px 16px 80px;
  background-color: #f3f7fb;
}

section.usp-cards .container {
  max-width: 1200px;
  margin: 0 auto;
}

section.usp-cards .intro {
  padding: 0 16px;
  margin-bottom: 40px;
}

section.usp-cards .intro .icon {
  width: 64px;
  height: auto;
  margin-bottom: 12px;
}

section.usp-cards .intro h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

section.usp-cards .intro p {
  color: #397db9;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

section.usp-cards .carousel-wrapper {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

section.usp-cards .carousel-container {
  display: flex;
  gap: 24px;
}

section.usp-cards .carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

section.usp-cards .card {
  padding: 16px;
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  box-shadow: 0 20px 60px 0 rgba(7, 93, 167, 0.16);
  transition: opacity 0.3s ease-out;
  opacity: 0;
}

section.usp-cards .carousel-slide.active .card {
  opacity: 1;
}

section.usp-cards .card .info {
  padding: 32px 16px;
  flex: 1;
}

section.usp-cards .card h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

section.usp-cards .card p {
  color: #397db9;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.22;
  font-family: Inter, Roboto, sans-serif, arial, Helvetica;
}

section.usp-cards .card .img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

section.usp-cards .card .img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

section.usp-cards .carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

section.usp-cards .carousel-controls > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: #fff;
  border: 6px solid #fff;
  border-radius: 24px;
}

section.usp-cards .carousel-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0 none;
  color: #075da7;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  font-size: 20px;
}

section.usp-cards .carousel-button:hover {
  background-color: #f3f7fb;
}

section.usp-cards .carousel-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

section.usp-cards .carousel-prev::before {
  content: "‹";
  font-size: 28px;
  line-height: 1;
  transform: translateY(-2px);
}

section.usp-cards .carousel-next::before {
  content: "›";
  font-size: 28px;
  line-height: 1;
  transform: translate(1px, -2px);
}

section.usp-cards .carousel-dots {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

section.usp-cards .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cddfed;
  border: 0;
  cursor: pointer;
  transition: all .2s ease;
  padding: 0;
}

section.usp-cards .carousel-dot.active {
  background-color: #075da7;
}

@media screen and (min-width: 768px) {

  section.usp-cards {
    padding: 20px 40px 100px;
  }

  section.usp-cards .intro {
    text-align: center;
    padding: 0;
  }

  section.usp-cards .intro .icon {
    width: 80px;
    margin: 0 auto 16px;
  }

  section.usp-cards .intro h2 {
    font-size: 44px;
    max-width: 950px;
    margin: 0 auto 16px;
  }

  section.usp-cards .intro p {
    max-width: 720px;
    margin: 0 auto;
  }

  html[lang=de] section.usp-cards .intro h2 {
    max-width: none;
  }

  html[lang=de] section.usp-cards .intro p {
    max-width: 800px;
  }

  section.usp-cards .carousel {
    overflow: hidden;
  }

  section.usp-cards .carousel-wrapper {
    max-width: 917px;
  }

  section.usp-cards .card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-radius: 32px;
    opacity: 1;
    box-shadow: none;
  }

  section.usp-cards .card .info {
    padding: 32px 40px 32px 24px;
    max-width: 500px;
  }

  section.usp-cards .card .img {
    width: 280px;
    height: 329px;
    border-radius: 24px;
    flex: 0 0 280px;
    overflow: hidden;
  }

  section.usp-cards .card .img img {
    height: 100%;
  }

  section.usp-cards .carousel-controls {
    margin-top: 32px;
  }

}

@media screen and (min-width: 992px) {

  section.usp-cards .card h3 {
    font-size: 32px;
    line-height: 1;
  }

  section.usp-cards .intro h2 {
    font-size: 56px;
  }

}

@media screen and (min-width: 1280px) {

  section.usp-cards {
    padding: 80px 0 100px;
  }

  section.usp-cards .intro {
    margin-bottom: 64px;
  }

  section.usp-cards .intro .icon {
    margin-bottom: 24px;
  }

  section.usp-cards .intro h2 {
    font-size: 56px;
  }

  section.usp-cards .card .info {
    padding: 32px 40px 32px 32px;
  }

}


/* Section - FAQ */

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

section.faq .container {
  padding: 80px 16px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

section.faq .intro {
  padding: 0 16px;
  margin-bottom: 40px;
}

section.faq .intro .icon {
  width: 64px;
  height: auto;
  margin-bottom: 12px;
}

section.faq .intro h2 {
  color: #075da7;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

section.faq .items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}

section.faq .item {
  background-color: #e6eff6;
  border: 2px solid #e6eff6;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.25s ease;
}

section.faq .item.expanded {
  background-color: #fff;
}

section.faq .question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 16px 24px 24px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.faq .question h3 {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

section.faq .arrow {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cddfed;
  border-radius: 50%;
}

section.faq .arrow img {
  width: 30px;
  height: auto;
  transform: rotate(180deg) translateY(-1px);
  transition: transform 0.25s ease;
}

section.faq .item.expanded .arrow img {
  transform: rotate(0deg) translateY(-1px);
}

section.faq .answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

section.faq .item.expanded .answer {
  opacity: 1;
}

section.faq .answer-inner {
  padding: 0 24px 24px;
}

section.faq .answer p {
  color: #075da7;
  font-family: Inter, Roboto, sans-serif, arial, Helvetica;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.33;
  letter-spacing: 0.4px;
}

@media screen and (min-width: 768px) {

  section.faq .container {
    padding: 80px 40px 120px;
  }

  section.faq .intro {
    margin: 0 auto 40px;
    padding: 0;
    text-align: center;
  }

  section.faq .intro .icon {
    width: 80px;
    margin: 0 auto 16px;
  }

  section.faq .intro h2 {
    font-size: 44px;
  }

  section.faq .items {
    max-width: 1080px;
    gap: 24px;
  }

  section.faq .item {
    border-radius: 40px;
  }

  section.faq .item:not(.expanded) {
    background-color: #f2f7fa;
    border-color: #f2f7fa;
  }

  section.faq .item.expanded {
    border-color: #e6eff6;
    border-radius: 32px;
  }

  section.faq .question {
    padding: 20px 16px 20px 40px;
  }

  section.faq .arrow {
    margin: -8px 0;
    background-color: transparent;
  }

  section.faq .arrow img {
    width: 32px;
  }

  section.faq .answer-inner {
    padding: 0 40px 24px;
  }

}

@media screen and (min-width: 992px) {

  section.faq .intro h2 {
    font-size: 56px;
  }

}

@media screen and (min-width: 1280px) {

  section.faq .container {
    padding: 80px 0 120px;
  }

  section.faq .intro {
    margin-bottom: 64px;
  }

  section.faq .intro .icon {
    margin-bottom: 24px;
  }

  section.faq .intro h2 {
    font-size: 56px;
  }

}


/* Footer */

footer {
  color: #fff;
  background-color: #075da7;
  background-image: url(img/footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: Inter, Roboto, sans-serif, arial, Helvetica;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

footer .container {
  padding: 34px 32px 120px;
  text-align: center;
}

footer .logo img {
  display: block;
  width: 138px;
  height: auto;
  margin: 0 auto 40px;
}

footer .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

footer .menu a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer .menu a:hover {
  text-decoration: underline;
}

footer .menu a.privacy {
  flex: 0 0 100%;
}

@media screen and (min-width: 768px) {

  footer .menu a.legal {
    order: 1;
  }

  footer .menu a.privacy {
    order: 2;
    flex: unset;
  }

  footer .menu a.cookie {
    order: 3;
  }

}

@media screen and (min-width: 993px) {

  footer {
    font-size: 16px;
  }

  footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    min-height: 80px;
    padding: 32px 0;
    text-align: left;
  }

  footer .logo {
    display: none;
  }

  footer .menu {
    flex-wrap: nowrap;
    align-items: center;
    margin: 0;
  }

  footer .menu a {
    text-decoration: none;
  }

}

@media screen and (min-width: 1280px) {

  footer .container {
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

}
