
/* 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, sans-serif, arial, Helvetica;
  color: #1d2859;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transition: background-color .2s ease;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  word-wrap: break-word;
}

h1 {
  font-size: 28px;
  font-weight: 700;
}

h2 {
  font-weight: 700;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #1d2859;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}


/* Button */

.cc-btn, .cc-btn:visited, .cc-btn:active, .cc-btn:focus {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding: 4px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e60050;
  min-height: 56px;
  border: 0 none;
  border-radius: 10px;
  box-shadow: 0 8px 30px 0 rgba(230, 0, 80, 0.3);
  cursor: pointer;
  outline: none;
  transition: all .1s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cc-btn:hover {
  color: #fff;
  background-color: #c50145;
}


/* Header */

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

header img {
  display: block;
  max-width: 100%;
}

header .logo a {
  display: block;
  padding: 24px 14px 26px;
}

header .logo img {
  width: 141px;
}

header .partner {
  width: 93px;
  position: absolute;
  top: 48px;
  left: 18px;
}

header .langs {
  padding-right: 18px;
  margin-top: 2px;
  white-space: nowrap;
}

header .langs a,
header .langs a:hover,
header .langs span {
  color: #4864e2;
  font-size: 18px;
  margin-left: 10px;
  opacity: 0.5;
}

header .langs > *:first-child {
  margin-left: 0;
}

header .langs span {
  font-weight: 700;
  opacity: 1;
}

@media screen and (min-width: 769px) {
  
  header .logo {
    flex: 0 0 auto;
  }
  
  header .logo img {
    width: 243px;
  }
  
  header .logo a {
    padding: 34px 0 40px 40px;
  }
  
  header .partner {
    width: 124px;
    top: 29px;
    left: 318px;
  }
  
  header .langs {
    padding-right: 40px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  header .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header .logo a {
    padding-left: 0;
  }
  
  header .partner {
    left: 280px;
  }
  
  header .langs {
    padding-right: 0;
  }
  
}


/* Main */

.main {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 0%;
  overflow: hidden;
  position: relative;
}

main img {
  max-width: 100%;
  display: block;
}

.section-group {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

section {
  position: relative;
}

section .icon.reveal {
  opacity: 0;
  transform: translateX(0px) translateY(50px) perspective(1200px);
  scale: 0.5;
}

@media screen and (min-width: 1281px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
}


/* Section - Hero */

section.hero h1 {
  color: #4864e2;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  padding: 26px 18px 32px;
}

section.hero .items {
  padding: 0 18px 16px;
}

section.hero .item {
  display: block;
  max-width: 386px;
  margin: 0 auto 24px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.hero .item > div {
  color: #4864e2;
  display: block;
  border-radius: 32px;
  background-color: #edf0fc;
  position: relative;
  overflow: hidden;
}

section.hero .item > div::before {
  content: "";
  border-radius: 32px;
  background-color: #dae0f9;
  position: absolute;
  bottom: -52px;
  left: calc(50% - 40px);
  height: 300px;
  width: 100%;
  transform: rotate(-12deg);
  z-index: 1;
}

section.hero .item .info {
  padding: 32px 24px 72px;
  position: relative;
  z-index: 2;
}

section.hero .item h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin: 4px 0 20px;
}

section.hero .item h3 {
  font-size: 14px;
}

section.hero .item .miles {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

section.hero .item .miles > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

section.hero .item .miles strong {
  font-size: 78px;
  font-weight: 700;
  line-height: 0.8;
}

section.hero .item .miles span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  margin-left: auto;
  margin-right: 4px;
}

section.hero .checklist {
  margin: 32px 0 24px;
}

section.hero .checklist ul {
  line-height: 1.2;
  list-style: none;
}

section.hero .checklist li {
  padding: 7px 0 7px 32px;
  background-image: url(img/icons/icon-check.svg);
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: -2px 2px;
}

section.hero .checklist li:nth-child(1) {
  background-image: url(img/icons/icon-lounge.svg);
}

section.hero .checklist li:nth-child(2) {
  background-image: url(img/icons/icon-shield.svg);
}

section.hero .checklist li:nth-child(3) {
  background-image: url(img/icons/icon-plane.svg);
}

section.hero .checklist li:nth-child(4) {
  background-image: url(img/icons/icon-concierge.svg);
}

section.hero .item .img {
  position: relative;
  margin: 0 0 36px 36px;
  z-index: 2;
}

section.hero .item .img img {
  width: 220px;
  max-width: 100%;
  opacity: 0;
}

section.hero .item .badge {
  color: #1d2859;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  position: absolute;
  top: 56px;
  left: -20px;
  width: 64px;
  height: 64px;
  background-color: #00dcb4;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-12deg);
  opacity: 0;
  z-index: 1;
}

section.hero .item .badge span {
  transform: rotate(-12deg);
}

html[lang=it] section.hero .item .badge {
  font-size: 14px;
  width: 68px;
  height: 68px;
}

html[lang=fr] section.hero .item .badge {
  font-size: 11px;
  width: 68px;
  height: 68px;
}

section.hero .item.primary > div {
  color: #fff;
  background-color: #4864e2;
}

section.hero .item.primary > div::before {
  background-color: transparent;
  border: 100px solid #4864e2;
  border-radius: 132px;
  bottom: -152px;
  left: calc(50% - 140px);
  z-index: 2;
}

section.hero .item.primary > div::after {
  content: "";
  border-radius: 32px;
  background-color: #91a0ee;
  background-image: url(img/cc-hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: -36px;
  left: calc(50% - 64px);
  height: 300px;
  width: 100%;
  z-index: 1;
}

section.hero .item.primary .info,
section.hero .item.primary .img {
  z-index: 3;
}

section.hero .item.primary .checklist li {
  background-image: url(img/icons/icon-check-wt.svg);
}

section.hero .item.primary .checklist li:nth-child(1) {
  background-image: url(img/icons/icon-lounge-wt.svg);
}

section.hero .item.primary .checklist li:nth-child(2) {
  background-image: url(img/icons/icon-shield-wt.svg);
}

section.hero .item.primary .checklist li:nth-child(3) {
  background-image: url(img/icons/icon-plane-wt.svg);
}

section.hero .item.primary .checklist li:nth-child(4) {
  background-image: url(img/icons/icon-concierge-wt.svg);
}

section.hero .item.primary .video {
  border-top-left-radius: 32px;
  position: absolute;
  left: calc(50% - 40px);
  bottom: -58px;
  height: 300px;
  width: 280px;
  overflow: hidden;
  transform: rotate(-12deg);
  z-index: 2;
}

section.hero .item.primary .video video {
  width: 110%;
  height: 100%;
  position: absolute;
  top: -32px;
  left: -32px;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  transition: opacity 1.25s linear;
  transform: rotate(12deg);
}

@media screen and (max-width: 1280px) {
  
  section.hero .item .cta .cc-btn > span > span {
    display: none;
  }
  
}

@media screen and (min-width: 512px) {
  
  section.hero .item.primary h3 {
    font-size: 16px;
  }
  
}

@media screen and (min-width: 769px) {
  
  section.hero h1 {
    font-size: 40px;
    font-weight: 700;
    padding: 20px 24px 40px;
  }
  
  section.hero .items {
    display: flex;
    flex-wrap: wrap;
    max-width: 754px;
    margin: 0 auto;
    padding: 0 40px 60px;
    gap: 24px;
  }
  
  section.hero .item {
    max-width: unset;
    margin-bottom: 0;
    overflow: hidden;
  }
  
  section.hero .item:not(.primary) {
    flex: 1 1 0%;
  }
  
  section.hero .item .miles strong {
    font-size: 74px;
  }
  
  section.hero .item.primary {
    flex: 0 0 100%;
  }
  
  section.hero .item.primary > div {
    border-radius: 48px;
  }
  
  section.hero .item.primary > div::before {
    border: 140px solid #4864e2;
    border-radius: 188px;
    bottom: -140px;
    left: calc(50% - 180px);
    width: 1200px;
    height: 500px;
  }
  
  section.hero .item.primary > div::after {
    bottom: -68px;
    left: calc(50% - 116px);
    height: 560px;
  }
  
  section.hero .item.primary .miles strong {
    font-size: 124px;
  }
  
  section.hero .item.primary .miles span {
    font-size: 14px;
  }
  
  section.hero .item.primary .img {
    margin: 0 0 52px 90px;
  }
  
  section.hero .item.primary .img img {
    width: 386px;
  }
  
  section.hero .item .badge {
    font-size: 32px;
    top: 96px;
    left: -36px;
    width: 106px;
    height: 106px;
  }
  
  section.hero .item.primary .video {
    border-top-left-radius: 48px;
    left: calc(50% - 34px);
    bottom: -57px;
    height: 486px;
    width: 520px;
  }
  
  section.hero .item.primary .video video {
    top: -50px;
    left: -92px;
  }
  
  html[lang=it] section.hero .item .badge {
    font-size: 22px;
    width: 110px;
    height: 110px;
  }
  
  html[lang=fr] section.hero .item .badge {
    font-size: 17px;
    width: 110px;
    height: 110px;
  }
  
}

@media screen and (min-width: 993px) {
  
  section.hero .items {
    max-width: 980px;
    gap: 32px;
  }
  
  section.hero .item > div::before {
    height: 380px;
    border-radius: 60px;
    bottom: -56px;
    left: calc(50% - 70px);
  }
  
  section.hero .item .info {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  section.hero .item h3 {
    font-size: 16px;
  }
  
  section.hero .item .miles strong {
    font-size: 98px;
  }
  
  section.hero .item .miles span {
    font-size: 14px;
    margin-right: 5px;
  }
  
  section.hero .item .img img {
    width: 300px;
  }
  
  section.hero .item.primary .img {
    margin-left: 225px;
  }
  
  section.hero .item.primary .info {
    padding: 56px;
  }
  
  section.hero .item.primary .video {
    left: calc(50% - 33px);
    bottom: -65px;
    height: 500px;
    width: 580px;
  }
  
  section.hero .item.primary .video video {
    height: 110%;
    top: -72px;
    left: -92px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section.hero .items {
    padding: 0 0 120px;
    max-width: unset;
    gap: 40px;
  }
  
  section.hero .item > div {
    border-radius: 48px;
  }
  
  section.hero .item > div::before {
    bottom: -224px;
    left: -38px;
  }
  
  section.hero .item .info {
    padding: 40px 48px 16px;
  }
  
  section.hero .item .miles strong {
    font-size: 124px;
  }
  
  section.hero .item .img {
    margin: 0 0 32px 48px;
  }
  
  section.hero .item.primary > div {
    display: flex;
  }
  
  section.hero .item.primary > div::before {
    border: 0 none;
    border-top: 400px solid #4864e2;
    border-left: 400px solid #4864e2;
    border-radius: 0;
    border-top-left-radius: 480px;
    bottom: auto;
    top: -394px;
    left: 304px;
    height: 600px;
  }
  
  section.hero .item.primary > div::after {
    bottom: -6px;
    left: 460px;
    height: 590px;
  }
  
  section.hero .item.primary .img {
    margin: 0;
    position: absolute;
    left: 600px;
    bottom: 56px;
  }
  
  section.hero .item.primary .video {
    border-top-left-radius: 80px;
    left: auto;
    right: -227px;
    bottom: -33px;
    height: 600px;
    width: 680px;
  }
  
  section.hero .item.primary .video video {
    left: -164px;
  }
  
}

@media screen and (min-width: 1440px) {
  
  section.hero .item.primary {
    overflow: visible;
  }
  
  section.hero .item.primary > div {
    margin: 0 -80px;
  }
  
  section.hero .item.primary > div::before {
    left: 350px;
  }
  
  section.hero .item.primary .info {
    padding-left: 80px;
  }
  
  section.hero .item.primary .img {
    left: 630px;
  }
  
  section.hero .item.primary .img img {
    width: 400px;
  }
  
  section.hero .item .badge {
    top: 98px;
    width: 108px;
    height: 108px;
  }
  
  section.hero .item.primary .video {
    right: -113px;
    bottom: -34px;
  }
  
}


/* Section - Labels */

section.labels {
  padding: 40px 0;
}

section.labels .title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  display: flex;
  justify-content: center;
}

section.labels .title > div {
  margin-bottom: 30px;
  position: relative;
}

section.labels .title > div::before,
section.labels .title > div::after {
  content: "";
  background-image: url(img/gold-leaves.svg);
  background-repeat: no-repeat;
  background-size: 36px auto;
  height: 48px;
  width: 34px;
  position: absolute;
  top: -5px;
  opacity: 0;
  transition: all ease-out 1s, opacity ease-out .5s;
  transform-origin: bottom right;
}

section.labels .title > div::before {
  left: -34px;
  transform: rotate(-45deg);
}

section.labels .title > div::after {
  right: 0;
  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 {
  max-width: 581px;
  margin: 0 auto;
}

section.labels .items .holder {
  display: flex;
  outline: none;
  user-select: none;
  will-change: transform;
}

section.labels .items.visible .holder {
  transition: transform 0.3s ease-out;
}

section.labels .item {
  padding: 0 8px;
  opacity: 0;
  transition: transform ease-out .8s, opacity ease-out .5s;
}

section.labels .item:first-child {
  padding-left: 18px;
}

section.labels .item:last-child {
  padding-right: 18px;
}

section.labels .item:first-child:last-child,
section.labels .item:not(:first-child):not(:last-child) {
  transform: translateY(25px);
}

section.labels .item:first-child:not(:last-child) {
  transform: translateX(-25px);
}

section.labels .item:last-child:not(:first-child) {
  transform: translateX(25px);
}

section.labels .items.visible .item {
  opacity: 1;
  transform: none;
  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);
}

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;
  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 (min-width: 769px) {
  
  section.labels .title {
    font-size: 24px;
  }
  
  section.labels .title > div {
    margin-bottom: 45px;
  }
  
  section.labels .title > div::before, 
  section.labels .title > div::after {
    background-size: 62px auto;
    height: 78px;
    width: 54px;
    top: -14px;
  }
  
  section.labels .title > div::before {
    left: -98px;
  }
  
  section.labels .title > div::after {
    right: -48px;
  }
  
  section.labels .items {
    order: 1;
  }
  
}

@media screen and (min-width: 993px) {
  
  section.labels,
  section.hero + section.labels {
    padding: 40px 0 80px;
  }
  
}


/* Section - USB Cards */

section.usp-cards {
  z-index: 1;
}

section.usp-cards .cards {
  color: #fff;
  padding: 24px 24px 80px;
}

section.usp-cards h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  padding: 40px 18px 0;
}

section.usp-cards .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.usp-cards .card {
  opacity: 0;
  perspective: 2000px;
  transition: transform .8s cubic-bezier(0.18, 0.62, 0.2, 1);
  transform: translateX(64px) translateY(250px) rotate(12deg);
  --mobile: 1;
}

section.usp-cards .card:not(.visible):nth-child(2) {
  transform: translateX(-64px) translateY(250px) rotate(-12deg);
}

section.usp-cards .card.visible {
  opacity: 1;
  transform: none;
}

section.usp-cards .card > div {
  margin: 24px 0;
  height: 460px;
  max-width: 350px;
  border-radius: 32px;
  box-shadow: 0 50px 100px 0 rgba(29, 40, 89, 0.5);
  position: relative;
  transition: all 1s ease-in-out .2s;
  transform-style: preserve-3d;
  transform: rotate(2deg);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.usp-cards .card:nth-child(2) > div {
  transform: rotate(-2deg);
}

section.usp-cards .card .primary,
section.usp-cards .card .secondary {
  background-color: #4864e2;
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

section.usp-cards .card .primary {
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

section.usp-cards .card:nth-child(1) .primary {
  background-image: url(img/usp/usp1.jpg);
}

section.usp-cards .card:nth-child(2) .primary {
  background-image: url(img/usp/usp2.jpg);
}

section.usp-cards .card:nth-child(3) .primary {
  background-image: url(img/usp/usp3.jpg);
}

section.usp-cards .card h3 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 32px 20px 16px 32px;
}

html[lang=de] section.usp-cards .card h3 {
  font-size: 28px;
}

section.usp-cards .card .img {
  width: 120%;
  height: 450px;
  overflow: hidden;
  transform: rotate(-12deg) translate(-64px, 12px);
  border-radius: 60px;
  border: solid 8px #fff;
}

section.usp-cards .card:nth-child(1) .img {
  transform: rotate(-12deg) translate(56px, 8px);
}

section.usp-cards .card:nth-child(2) .img {
  transform: rotate(-12deg) translate(34px, -200px);
}

section.usp-cards .card .img img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
}

section.usp-cards .card .more {
  font-size: 14px;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1;
  letter-spacing: 0.14px;
  text-shadow: 0 0 10px #000;
  position: absolute;
  bottom: 32px;
  right: 32px;
}

section.usp-cards .card .secondary {
  display: flex;
  align-items: center;
  transform: rotateY(180deg);
}

section.usp-cards .card .desc {
  font-size: 18px;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.18px;
  padding: 24px;
}

section.usp-cards .card .desc a {
  color: #fff;
  text-decoration: underline;
}

section.usp-cards .card .desc p:not(:first-child) {
  margin-top: 12px;
}

section.usp-cards .card .desc strong {
  font-weight: 600;
}

section.usp-cards .card.flipped > div {
  transform: rotateZ(2deg) rotateY(0.5turn);
  transition: all 1s ease-in-out;
}

section.usp-cards .card.flipped:nth-child(2) > div {
  transform: rotateZ(-2deg) rotateY(0.5turn);
}

section.usp-cards.combi .container {
  padding-bottom: 80px;
}

section.usp-cards.combi h2 {
  padding-top: 0;
}

section.usp-cards.combi .cards {
  padding-bottom: 64px;
}

section.usp-cards.combi .card:not(:first-child) {
  display: none;
}

section.usp-cards.combi .card > div {
  box-shadow: 0 50px 100px 0 rgba(72, 100, 226, 0.5);
}

section.usp-cards.combi .card:not(.flipped) > div {
  transform: rotate(-2deg);
}

section.usp-cards.combi .card.flipped > div {
  transform: rotateZ(-2deg) rotateY(0.5turn);
}

section.usp-cards.combi .card .img {
  border: 0 none;
  border-radius: 0;
  border-top-right-radius: 64px;
  width: 110%;
  height: 360px;
  overflow: hidden;
  transform: rotate(-12deg) translate(-32px, 10px);
}

section.usp-cards.combi .card:nth-child(1) .primary {
  background-image: none;
}

section.usp-cards.combi .calc {
  padding: 0 18px;
  max-width: 500px;
  margin: 0 auto;
}

section.usp-cards.combi .calc h3 {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 -4px 0 0;
}

section.usp-cards.combi .calc .slider {
  user-select: none;
  margin-bottom: 40px;
  -webkit-tap-highlight-color: transparent;
}

section.usp-cards.combi .calc .slider label {
  color: #4864e2;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.32px;
  line-height: 1.3;
  display: block;
  margin: 8px 0 12px;
}

section.usp-cards.combi .calc .slider input {
  --bg: #edf0fc;
  --pbar: #4864e2;
  width: 100%;
  height: 12px;
  background-color: #edf0fc;
  border-radius: 24px;
  outline: none;
  transition: background 450ms ease-in;
}

section.usp-cards.combi .calc .slider input, 
section.usp-cards.combi .calc .slider input:focus {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  outline: none;
}

section.usp-cards.combi .calc .slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 38px;
  height: 38px;
  background-color: #a2a9ef;
  background-image: url(img/icons/icon-plane-cursor.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  border-radius: 50%;
  cursor: pointer;
}

section.usp-cards.combi .calc .slider input::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 38px;
  height: 38px;
  background-color: #a2a9ef;
  background-image: url(img/icons/icon-plane-cursor.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  border-radius: 50%;
  cursor: pointer;
}

section.usp-cards.combi .calc .slider .range {
  color: #000;
  display: flex;
  justify-content: space-between;
}

section.usp-cards.combi .calc .cashback {
  display: flex;
  flex-direction: column;
}

section.usp-cards.combi .calc h4 {
  color: #4864e2;
  font-size: 56px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.56px;
  margin: 8px 0 24px;
}

section.usp-cards.combi .calc .checklist {
  color: #4864e2;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.36px;
  list-style: none;
}

section.usp-cards.combi .calc .checklist li {
  padding: 4px 0 4px 25px;
  background-image: url(img/icons/icon-check-blue.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: -8px -3px;
  -webkit-transition: color .2s linear, background-image .2s ease-in-out;
  transition: color .2s linear, background-image 0.2s ease-in-out;
}

section.usp-cards.combi .calc .checklist li.disabled {
  color: #c8d1f6;
  background-image: url(img/icons/icon-check-disabled.svg);
}

@media screen and (min-width: 769px) {
  
  section.usp-cards h2 {
    font-size: 56px;
    padding: 60px 40px 0;
  }
  
  section.usp-cards.combi .calc {
    padding: 0 40px;
    max-width: unset;
    width: 750px;
  }
  
  section.usp-cards.combi .calc h3 {
    font-size: 24px;
    text-align: left;
    margin: 0;
  }
  
  section.usp-cards.combi .calc .slider label {
    font-size: 40px;
  }
  
  section.usp-cards.combi .calc h4 {
    font-size: 80px;
  }
  
}

@media screen and (min-width: 769px) and (max-width: 1280px), screen and (min-width: 1440px) {
  
  section.usp-cards .card > div {
    margin: 32px 0;
    height: 540px;
    max-width: 400px;
  }
  
  section.usp-cards .card .desc {
    font-size: 20px;
    line-height: 1.25;
    padding: 32px;
  }
  
  section.usp-cards .card .img {
    height: 500px;
  }
  
  section.usp-cards .card:nth-child(1) .img {
    transform: rotate(-12deg) translate(64px, 24px);
  }

  section.usp-cards .card:nth-child(2) .img {
    transform: rotate(-12deg) translate(34px, -220px);
  }
  
  section.usp-cards .card:nth-child(3) .img {
    transform: rotate(-12deg) translate(-80px, 12px);
  }
  
  section.usp-cards.combi .card .img {
    border-top-right-radius: 80px;
    height: 440px;
    transform: rotate(-12deg) translate(-40px, 10px);
  }
  
}

@media screen and (min-width: 993px) {
  
  section.usp-cards h2 {
    padding: 24px 40px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section.usp-cards h2 {
    font-size: 80px;
    padding: 40px 40px 80px;
  }
  
  section.usp-cards .cards {
    flex-direction: row;
    justify-content: center;
  }
  
  section.usp-cards .card {
    --mobile: 0;
  }
  
  section.usp-cards .card > div {
    margin: 0 24px;
  }
  
  section.usp-cards .card:first-child {
    transform: translateX(-64px) translateY(250px) rotate(-12deg);
  }
  
  section.usp-cards .card.visible:first-child {
    transform: rotate(-4deg) translateY(30px);
  }
  
  section.usp-cards .card:not(:first-child):not(:last-child) {
    transform: rotate(2deg) translateY(90px);
  }
  
  section.usp-cards .card.visible:not(:first-child):not(:last-child) {
    transform: rotate(2deg) translateY(-30px);
  }
  
  section.usp-cards .card:last-child {
    transform: translateX(64px) translateY(250px) rotate(12deg);
  }
  
  section.usp-cards .card.visible:last-child {
    transform: translateY(30px);
  }
  
  section.usp-cards .card:first-child + .card:last-child {
    transform: rotate(4deg) translateY(-12px);
  }
  
  section.usp-cards .card .secondary {
    transition: background-color 0s linear .5s;
  }

  section.usp-cards .card .desc {
    transition: opacity 0s linear .5s;
  }
  
  section.usp-cards .card .more {
    display: none;
  }
  
  section.usp-cards.combi .container {
    padding-top: 120px;
  }
  
  section.usp-cards.combi .container > .content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  section.usp-cards.combi .cards {
    padding: 0 0 64px;
  }
  
  section.usp-cards.combi .calc {
    margin: 0;
    padding: 0 0 24px 80px;
  }
  
}

@media screen and (min-width: 1440px) {
  
  section.usp-cards .container {
    max-width: 1400px;
  }
  
  section.usp-cards .card:first-child + .card:last-child {
    padding-left: 32px;
  }
  
  section.usp-cards .card > div {
    margin: 0 20px;
  }
  
  section.usp-cards .card h3 {
    font-size: 40px;
  }
  
  html[lang=de] section.usp-cards .card h3 {
    font-size: 35px;
  }
  
  section.usp-cards.combi .calc {
    padding: 0 0 24px 120px;
    width: 790px;
  }
  
}


/* Section - MultiUSP */

section.multiusp .container {
  padding-bottom: 24px;
}

section.multiusp h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 18px;
  margin-bottom: 40px;
}

section.multiusp .items .holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

section.multiusp .item {
  padding: 0 18px;
  display: flex;
  min-height: 480px;
  width: 100%;
  flex-shrink: 0;
  margin-left: -100%;
  position: relative;
  left: 100%;
}

section.multiusp .item > div {
  padding: 32px 32px 100px;
  margin-top: 50px;
  flex: 1 1 0%;
}

section.multiusp .item:first-child > div {
  border-radius: 24px;
  background-color: #edf0fc;
  margin-top: 0;
}

section.multiusp .icons {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 18px -4px;
}

section.multiusp .icons img {
  width: 32px;
  margin-right: 12px;
  opacity: 0.25;
  transition: opacity .6s ease;
}

section.multiusp .icons img.active {
  opacity: 1;
  transition: opacity .4s ease;
}

section.multiusp .item .info {
  opacity: 0;
  transition: opacity .3s linear;
}

section.multiusp .item.current {
  z-index: 1;
}

section.multiusp .item.current .info {
  opacity: 1;
}

section.multiusp .item h3 {
  color: #4864e2;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}

section.multiusp .item .content {
  font-size: 16px;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1.35;
  letter-spacing: 0.36px;
  max-width: 680px;
}

section.multiusp .item .content.rich {
  font-weight: 500;
}

section.multiusp .item .content.rich p.detail {
  font-weight: 300;
  margin-bottom: 24px;
}

section.multiusp .item .content.rich p.detail strong {
  font-weight: 500;
}

section.multiusp .item .content.rich ul.cards {
  font-weight: 400;
  text-transform: uppercase;
  margin: 16px 0;
}

section.multiusp .item .content.rich ul.cards li {
  font-size: 15px;
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  line-height: 1.3;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

section.multiusp .item .content.rich ul.cards li img {
  width: 36px;
  margin-right: 12px;
}

section.multiusp .controls {
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
  transform: translateY(-80px);
  position: relative;
  z-index: 1;
}

section.multiusp .controls > div {
  width: 56px;
  height: 56px;
  background-color: #dae0f9;
  border-radius: 50%;
  margin: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.multiusp .controls img {
  width: 40px;
}

section.multiusp .controls .left img {
  transform: rotate(-90deg);
  margin-right: 2px;
}

section.multiusp .controls .right img {
  transform: rotate(90deg);
  margin-left: 2px;
}

@media screen and (max-width: 540px) {
  
  section.multiusp .icons img {
    margin-right: 4px;
  }
  
}

@media screen and (min-width: 769px) {
  
  section.multiusp h2 {
    font-size: 56px;
    padding: 0 40px;
    margin-bottom: 64px;
  }
  
  section.multiusp .items {
    max-width: 990px;
    margin: 0 auto;
  }
  
  section.multiusp .item {
    padding: 0 40px;
    min-height: 460px;
  }
  
  section.multiusp .item > div {
    padding: 56px 56px 120px;
    margin-top: 88px;
    border-radius: 56px;
  }
  
  section.multiusp .icons {
    margin-bottom: 24px;
  }
  
  section.multiusp .icons img {
    width: 64px;
  }
  
  section.multiusp .item h3 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 24px;
  }
  
  html[lang=de] section.multiusp .item h3 {
    font-size: 38px;
  }
  
  section.multiusp .item .content,
  section.multiusp .item .content.rich ul.cards li {
    font-size: 18px;
  }
  
  section.multiusp .controls {
    padding-right: 88px;
    transform: translateY(-104px);
    max-width: 990px;
    margin: 0 auto;
  }
  
}

@media screen and (min-width: 993px) {
  
  section.multiusp .item > div {
    padding: 56px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section.multiusp .container {
    padding: 60px 0 0;
  }
  
  section.multiusp h2 {
    font-size: 80px;
  }
  
}


/* Section - Package */

section.package .info {
  padding: 0 18px;
}

section.package h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

section.package h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

section.package .desc {
  font-size: 18px;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  font-weight: 300;
  line-height: 1.35;
}

section.package .desc strong {
  font-weight: 500;
}

section.package .imgs {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}

section.package .imgs .primary {
  position: relative;
  padding: 48px 20px 20px 50px;
}

section.package .imgs .primary .offer {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-18px);
  z-index: 1;
}

section.package .imgs .primary .offer > div {
  color: #1d2859;
  text-align: center;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #00dcb4;
  transform: rotate(-12deg);
}

section.package .imgs .primary .offer strong {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.8;
  display: block;
  margin: 1px 0 4px;
}

section.package .imgs .primary .offer span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

html[lang=de] section.package .imgs .primary .offer span {
  font-size: 14px;
  margin-top: 6px;
}

section.package .imgs .primary img {
  width: 400px;
}

section.package .imgs .add {
  font-size: 58px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

section.package .imgs .secondary {
  display: flex;
  max-width: 520px;
  padding: 24px 48px;
  margin: 0 auto;
  flex-flow: row-reverse;
}

section.package .imgs .secondary > div {
  margin: 0 -30px;
  transform: rotate(-12deg);
}

section.package .items {
  padding: 0 18px;
}

section.package .item {
  margin: 24px auto;
  padding: 32px 22px 32px 30px;
  border-radius: 24px;
  background-color: #edf0fc;
  max-width: 386px;
}

section.package .item h4 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 4px 0;
}

section.package .item h5 {
  font-size: 14px;
}

section.package .item .pcards {
  margin-bottom: 32px;
}

section.package .item .pcards img {
  width: 200px;
}

section.package .item .scards {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

section.package .item .scards .cards {
  flex: 0 0 72px;
  display: flex;
  flex-flow: row-reverse;
  justify-content: flex-end;
  margin-right: 12px;
}

section.package .item .scards .cards img {
  width: 32px;
  transform: rotate(-12deg);
  margin-right: -12px;
}

section.package .item .scards .extra {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  flex: 1 1 0%;
}

section.package .item .price {
  color: #4864e2;
  white-space: nowrap;
}

section.package .item .price .label {
  font-size: 14px;
  margin-bottom: 6px;
}

section.package .item .price .amount > span {
  font-size: 32px;
  font-weight: 700;
}

section.package .item .price .amount .old {
  color: #c8d1f6;
  text-decoration: line-through;
  margin-left: 12px;
}

section.package .item.primary {
  color: #fff;
  background-color: #4864e2;
}

section.package .item.primary .price {
  color: #fff;
}

@media screen and (min-width: 769px) {
  
  section.package .info {
    text-align: center;
    padding: 0 40px;
    max-width: 880px;
    margin: 0 auto;
  }
  
  section.package h2 {
    font-size: 56px;
  }
  
  section.package h3 {
    font-size: 32px;
  }
  
  section.package .imgs .primary img {
    width: 460px;
  }
  
  section.package .imgs .primary .offer > div {
    width: 120px;
    height: 120px;
  }
  
  section.package .imgs .primary .offer strong {
    font-size: 38px;
  }
  
  section.package .imgs .primary .offer span {
    font-size: 24px;
  }
  
  html[lang=de] section.package .imgs .primary .offer span {
    font-size: 16px;
  }
  
  section.package .items {
    padding: 0 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  section.package .imgs {
    flex-direction: row;
    justify-content: center;
    margin: 80px 0;
  }
  
  section.package .imgs .primary {
    padding: 0;
    margin-left: 40px;
  }
  
  section.package .imgs .primary .offer {
    left: -40px;
    transform: translateY(-40px);
  }
  
  section.package .imgs .primary img {
    width: 400px;
  }
  
  section.package .imgs .add {
    font-size: 80px;
    margin: 0 24px;
  }
  
  section.package .imgs .secondary {
    flex-flow: unset;
    display: block;
    max-width: 148px;
    padding: 0;
    margin: 16px 70px 42px 8px;
  }
  
  section.package .imgs .secondary > div {
    margin: 0 0 -40px;
  }
  
  section.package .imgs .secondary > div:nth-child(2) {
    transform: rotate(-12deg) translateX(32px);
  }
  
  section.package .imgs .secondary > div:nth-child(3) {
    transform: rotate(-12deg) translateX(64px);
  }
  
  section.package .item {
    position: relative;
    max-width: 995px;
    padding: 24px 200px 24px 218px;
  }
  
  section.package .item h4 {
    font-size: 40px;
    margin: 8px 0 12px;
  }
  
  section.package .item h5 {
    font-size: 16px;
  }
  
  section.package .item .pcards {
    margin: 0;
    position: absolute;
    top: 12px;
    left: 32px;
  }
  
  section.package .item.primary .pcards {
    top: 16px;
  }
  
  section.package .item .pcards img {
    width: 150px;
  }
  
  section.package .item .scards {
    margin-bottom: 4px;
  }
  
  section.package .item .price {
    position: absolute;
    top: 21px;
    right: 36px;
  }
  
  section.package .item .price .label {
    font-size: 16px;
    text-align: right;
    margin-bottom: 15px;
  }
  
  section.package .item .price .amount {
    display: flex;
    flex-flow: row-reverse;
  }
  
  section.package .item .price .amount > span {
    font-size: 40px;
  }
  
  section.package .item .price .amount .old {
    margin: 0 18px 0 0;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section.package {
    margin-top: 64px;
  }
  
  section.package .info {
    padding: 0;
    max-width: 1000px;
  }
  
  section.package h2 {
    font-size: 80px;
    margin-bottom: 24px;
  }
  
  section.package h3 {
    font-size: 40px;
  }
  
  section.package .desc {
    max-width: 850px;
    margin: 0 auto;
  }
  
  section.package .imgs {
    margin: 64px 0 100px;
  }
  
  section.package .imgs .primary {
    margin-left: 24px;
  }
  
  section.package .imgs .primary img {
    width: 540px;
  }
  
  section.package .imgs .primary .offer {
    left: -50px;
    transform: translateY(-54px);
  }
  
  section.package .imgs .primary .offer > div {
    width: 164px;
    height: 164px;
  }
  
  section.package .imgs .primary .offer strong {
    font-size: 52px;
    margin-bottom: 6px;
  }
  
  section.package .imgs .primary .offer span {
    font-size: 32px;
  }
  
  html[lang=de] section.package .imgs .primary .offer span {
    font-size: 22px;
  }
  
  section.package .imgs .secondary {
    max-width: 188px;
    padding: 0;
    margin: 44px 104px 44px 10px;
  }
  
  section.package .imgs .secondary > div {
    margin-bottom: -44px;
  }
  
  section.package .imgs .secondary > div:nth-child(2) {
    transform: rotate(-12deg) translateX(46px);
  }
  
  section.package .imgs .secondary > div:nth-child(3) {
    transform: rotate(-12deg) translateX(96px);
  }
  
  section.package .imgs .add {
    margin: 64px 20px 0;
  }
  
}


/* Section - App */

section.app {
  overflow: hidden;
}

section.app > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  bottom: -200px;
  width: 4000px;
  background-color: #4864e2;
  border-top-left-radius: 48px;
  transform-origin: top left;
  transform: rotate(12deg);
  z-index: 0;
}

section.app .container {
  color: #fff;
  padding: 140px 0 40px;
  position: relative;
  z-index: 1;
}

section.app .title .icon {
  width: 74px;
  margin: 0 auto 32px;
}

section.app h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 18px;
  margin-bottom: 24px;
}

section.app .desc {
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  font-size: 18px;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.36px;
  padding: 0 18px 230px;
  background-image: url(img/app/app-en.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 480px;
  min-height: 450px;
  max-width: 650px;
  margin: 0 auto;
}

html[lang=de] section.app .desc {
  background-image: url(img/app/app-de.jpg);
}

html[lang=fr] section.app .desc {
  background-image: url(img/app/app-fr.jpg);
}

html[lang=it] section.app .desc {
  background-image: url(img/app/app-it.jpg);
}

section.app .stores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  margin: -70px 0 80px;
  position: relative;
  z-index: 1;
}

section.app .stores img {
  width: 178px;
}

section.app .icons {
  max-width: 650px;
  margin: 0 auto;
}

section.app .icons .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 18px;
}

section.app .icons .item {
  flex: 0 1 50%;
  max-width: 192px;
}

section.app .icons .item > div {
  padding: 0 4px 48px;
}

section.app .icons .icon {
  display: flex;
  justify-content: center;
}

section.app .icons .icon img {
  width: 32px;
}

section.app .icons .item h3 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.32px;
  margin: 12px 0;
}

section.app .icons .item .desc {
  font-size: 16px;
  font-weight: 300;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1.2;
}

@media screen and (min-width: 769px) {
  
  section.app .container {
    padding-top: 240px;
  }
  
  section.app > div::before {
    top: 40px;
    left: 60px;
    border-top-left-radius: 90px;
  }
  
  section.app .title .icon {
    margin-bottom: 48px;
  }
  
  section.app h2 {
    font-size: 56px;
    padding: 0 40px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
  
  section.app .desc {
    padding-bottom: 380px;
    background-size: 620px;
    min-height: 450px;
  }
  
  section.app .stores {
    margin: -92px 0 92px;
  }
  
}

@media screen and (min-width: 993px) {
  
  section.app .container {
    padding-top: 300px;
  }
  
  section.app .icons {
    max-width: 800px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section.app h2 {
    font-size: 80px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.app .container {
    padding-top: 340px;
  }
  
  section.app > div::before {
    left: 92px;
  }
  
  section.app .desc {
    padding: 28px 106px 0;
    min-height: 670px;
    max-width: 850px;
    background-size: 884px;
  }
  
  section.app .stores {
    gap: 16px;
    margin: -150px 0 100px;
  }
  
  section.app .icons {
    max-width: 1060px;
  }
  
  section.app .icons .item > div {
    padding-bottom: 72px;
  }
  
}

@media screen and (min-width: 1600px) {
  
  section.app .container {
    padding-top: 420px;
  }
  
  section.app > div::before {
    left: 240px;
  }
  
}


/* Section - Reviews */

section.reviews .container {
  padding: 80px 0;
}

section.reviews h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 18px;
}

section.reviews .g-rating {
  display: flex;
  align-items: flex-start;
  margin: 32px 0 32px 18px;
}

section.reviews .g-rating .logo {
  flex: 0 0 76px;
  margin-right: 18px;
}

section.reviews .g-rating .info {
  flex: 0 1 auto;
}

section.reviews .g-rating h3 {
  color: #6a6a6a;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.48px;
  white-space: nowrap;
  margin-bottom: 6px;
}

section.reviews .g-rating .stars {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

section.reviews .g-rating .stars > span {
  color: #ffa800;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
  margin-right: 16px;
}

section.reviews .items {
  position: relative;
}

section.reviews .items .holder {
  display: flex;
  padding: 0 5px;
  transition: transform 0.1s linear;
  outline: none;
  user-select: none;
}

section.reviews .item {
  padding: 0 5px;
}

section.reviews .item:nth-child(5n + 1) {
  transform: rotate(2deg);
}

section.reviews .item:nth-child(5n + 3) {
  transform: rotate(1deg);
}

section.reviews .item:nth-child(5n + 4) {
  transform: rotate(-2deg);
}

section.reviews .item > div {
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  width: 171px;
  min-height: 226px;
  background-color: #edf0fc;
  border-radius: 24px;
  padding: 10px;
  will-change: transform;
}

section.reviews .item img.icon {
  width: 57px;
}

section.reviews .item .avatar {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  width: 37px;
  height: 37px;
  background-color: #4864e2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.reviews .item h4 {
  font-size: 12px;
  font-weight: 700;
  margin: 10px 0 6px;
}

section.reviews .item .review {
  color: #1d2859;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.24px;
}

@media screen and (min-width: 769px) {
  
  section.reviews .container {
    padding: 80px 0 120px;
  }
  
  section.reviews h2 {
    font-size: 56px;
    text-align: center;
    padding: 0 40px;
  }
  
  section.reviews .g-rating {
    margin: 40px 0;
    justify-content: center;
  }
  
  section.reviews .items .holder,
  section.reviews .item {
    padding: 0 8px;
  }
  
  section.reviews .item > div {
    width: 380px;
    min-height: 530px;
    border-radius: 32px;
    padding: 24px;
  }
  
  section.reviews .item .avatar {
    font-size: 24px;
    width: 56px;
    height: 56px;
  }
  
  section.reviews .item h4 {
    font-size: 18px;
    margin: 20px 0 10px;
  }
  
  section.reviews .item .review {
    font-size: 18px;
    line-height: 1.33;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section.reviews .container {
    padding: 120px 0;
    max-width: unset;
  }
  
  section.reviews h2 {
    font-size: 80px;
  }
  
}

@media screen and (min-width: 1600px) {
  
  section.reviews .container {
    max-width: 1600px;
    overflow: hidden;
  }
  
  section.reviews .items {
    position: relative;
  }
  
  section.reviews .items::before {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: -10px;
    width: 400px;
    background-image: linear-gradient(to right, #fff 25%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
  }
  
  section.reviews .items::after {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -10px;
    right: -10px;
    width: 400px;
    background-image: linear-gradient(to left, #fff 25%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
  }
  
}

/* Section - Note */

section.note {
  margin-top: 24px;
}

section.note .logo {
  width: 220px;
  margin: 0 auto;
}

section.note h2 {
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  padding: 24px 18px 80px;
}

section.note .info {
  color: #7e8ab9;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.28px;
  background-color: #edf0fc;
  padding: 56px 20px 0;
}

section.note .info a {
  color: #7e8ab9;
  text-decoration: underline;
}

section.note .info > div {
  max-width: 634px;
  margin: 0 auto;
}

section.note .info p:not(:first-child) {
  margin-top: 12px;
}

section.note .info ol {
  list-style: decimal;
  padding-left: 20px;
  margin: 12px 0 0 0;
}

section.note .info ul {
  padding-left: 24px;
  margin: 12px 0 0 0;
}

@media screen and (min-width: 769px) {
  
  section.note .logo {
    width: 292px;
  }

  section.note h2 {
    font-size: 56px;
    padding: 32px 32px 120px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section.note {
    margin-top: 40px;
  }
  
  section.note .logo {
    width: 384px;
  }

  section.note h2 {
    font-size: 80px;
    padding: 40px 32px 144px;
  }
  
}


/* Info tooltip */

.iinfo {
  color: #4864e2;
  text-transform: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #dae0f9;
  margin: -4px 0 -4px 2px;
  position: relative;
  z-index: 0;
  transition: all .15s linear;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.iinfo::before {
  content: "i";
  font-size: 18px;
  transition: all .15s linear;
}

.iinfo .msg {
  position: absolute;
  top: 22px;
  right: -54px;
  opacity: 0;
  max-height: 0;
  z-index: -1;
  transition: all .1s linear;
  pointer-events: none;
}

.iinfo .msg > div {
  color: #1d2859;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  font-size: 12px;
  line-height: 1.2;
  padding: 16px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 40px 0 rgba(72, 100, 226, 0.24);
  width: 326px;
}

.iinfo .msg p:not(:last-child) {
  padding-bottom: 12px;
}

.iinfo .msg a {
  color: #000;
  text-decoration: underline;
}

.iinfo:hover {
  background-color: #cbd3f3;
}

.iinfo:hover .msg {
  opacity: 1;
  padding-top: 8px;
  max-height: 350px;
  z-index: 5;
}

@media screen and (max-width: 560px) {
  
  html[lang=it] .iinfo .msg,
  html[lang=de] .iinfo .msg,
  html[lang=fr] .iinfo .msg {
    right: -18px;
  }
  
}

@media screen and (min-width: 769px) {
  
  .iinfo {
    margin-left: 4px;
  }
  
  .iinfo .msg {
    left: calc(100% - 40px);
    right: auto;
  }
  
}


/* Sticky bar */

.sticky {
  padding: 12px 12px 12px 16px;
	background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 40px 0 rgba(72, 100, 226, 0.24);
  display: flex;
  align-items: center;
  max-width: 560px;
  margin: 0 auto;
  position: fixed;
  bottom: 40px;
  left: 18px;
  right: 18px;
  z-index: 10;
  transform: translateY(calc(100% + 64px));
  transition: transform .25s ease;
}

.sticky .msg {
  color: #1d2859;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.1px;  
  text-transform: uppercase;
  margin-right: 16px;
  flex: 1 1 auto;
}

.sticky .cta:first-child {
  margin: 4px auto;
}

.sticky .cta .cc-btn {
  font-size: 10px;
  white-space: nowrap;
  min-height: 36px;
  padding: 2px 16px;
}

.sticky .cta .cc-btn span {
  padding-right: 8px;
}

.sticky.mm {
  color: #1d2859;
  max-width: 364px;
  padding: 7px 16px;
  justify-content: space-between;
  transform: translateY(calc(100% + 110px));
}

.sticky.mm .offer {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.15px;
  position: relative;
  flex: 1 1 auto;
}

.sticky.mm .offer > div:first-child > span {
  color: #4864e2;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.4px;
  display: block;
  margin-top: -2px;
  margin-bottom: -1px;
}

.sticky.mm .offer > div:first-child > span > span {
  color: #4864e2;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.2px;
  display: block;
  margin-top: -1px;
}

.sticky.mm .cta .cc-btn {
  font-size: 14px;
  min-height: 40px;
}

.sticky.show {
  transform: none;
}

.sticky.disabled {
  display: none !important;
}

@media screen and (max-width: 768px) {
  
  .sticky .cta .cc-btn span {
    display: none;
  }
  
  html[lang=de] .sticky.mm .offer > div:first-child > span > span,
  html[lang=fr] .sticky.mm .offer > div:first-child > span > span {
    font-size: 13px;
  }
  
}

@media screen and (min-width: 769px) {
  
  .sticky {
    bottom: 60px;
  }
  
  .sticky:not(.mm) {
    background-image: url(img/mm-cards.png);
    background-repeat: no-repeat;
    background-size: 56px;
    background-position: 10px center;
    padding-left: 84px;
  }
  
  .sticky .msg {
    font-size: 14px;
    letter-spacing: 0.14px;
    padding-top: 2px;
    margin-right: 24px;
  }
  
  .sticky .cta:first-child {
    margin: 6px auto;
  }

  .sticky .cta .cc-btn {
    font-size: 18px;
    min-height: 48px;
    padding-left: 18px;
    padding-right: 18px;
  }
  
  .sticky.mm {
    padding: 6px 18px;
    max-width: 420px;
  }
  
  html[lang=it] .sticky.mm {
    padding: 6px 18px;
    max-width: 460px;
  }
  
  html[lang=de] .sticky.mm,
  html[lang=fr] .sticky.mm {
    padding: 6px 18px;
    max-width: 480px;
  }
  
  .sticky.mm .offer {
    font-size: 20px;
  }
  
  .sticky.mm .offer > div:first-child > span {
    font-size: 38px;
    margin-bottom: 0;
  }
  
  .sticky.mm .offer > div:first-child > span > span {
    font-size: 20px;
    margin-top: 0;
  }
  
  .sticky.mm .cta .cc-btn {
    font-size: 18px;
    min-height: 48px;
  }
  
}

@media screen and (min-width: 993px) {
  
  .sticky {
    bottom: 40px;
  }
  
}


/* Footer */

footer {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1.4;
  background-color: #4864e2;
  position: relative;
  z-index: 1;
}

footer::before {
  content: "";
  display: block;
  height: 56px;
  width: 100%;
  background-color: #edf0fc;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

footer .container {
  text-align: center;
  padding: 24px 24px 140px;
}

footer .menu a {
  color: #fff;
  display: inline-block;
}

footer .menu a:not(:last-child) {
  margin-right: 20px;
}

footer .menu a:hover {
  text-decoration: underline;
}
 
footer .copyright {
  font-size: 13px;
  font-weight: 300;
  padding-top: 8px;
}

@media screen and (min-width: 769px) {
  
  footer .container {
    padding: 24px 40px 200px;
  }
  
}

@media screen and (min-width: 993px) {
  
  footer .container {
    text-align: left;
    padding: 40px 40px 160px;
  }

  footer .menu {
    float: left;
    position: relative;
    z-index: 1;
  }

  footer .copyright {
    font-size: 14px;
    text-align: right;
    padding-top: 0;
  }
  
}

@media screen and (min-width: 1281px) {
  
  footer, footer .copyright {
    font-size: 16px;
    font-weight: 300;
  }
  
}

@media screen and (min-width: 1440px) {
  
  footer .container {
    max-width: 1200px;
    padding: 40px 0 160px;
    margin: 0 auto;
  }
  
}


/* Browser specific rules */

_:-ms-fullscreen, :root body { 
  min-height: 100vh;
}


/* Animation */

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes hero-anim1 {
  from { transform: translateY(200px); }
  to   { transform: translateY(0px); }
}

@keyframes hero-anim2 {
  from { transform: rotate(0deg) translateX(50px); }
  to   { transform: rotate(-12deg) translateX(0px); }
}

@keyframes hero-anim3 {
  from { transform: rotate(0deg) translateX(-20px) }
  to   { transform: rotate(-12deg) translateX(0px) }
}

@keyframes hero-anim4 {
  from { opacity: 0; transform: perspective(1200px) scale(0.3); }
  to   { opacity: 1; transform: perspective(1200px) scale(1); }
}

@keyframes hero-anim5 {
  from { opacity: 0; transform: rotateX(0deg); }
  to   { opacity: 1; transform: rotateX(180deg); }
}

@keyframes hero-anim6 {
  from { opacity: 0.9; }
  to   { opacity: 0; }
}

@keyframes hero-anim7 {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes icon-anim {
  0% {
    opacity: 0;
    transform: translateX(0px) translateY(50px) perspective(1200px);
    scale: 0.5;
  }
  50% {
    transform: translateX(0px) translateY(-5px) perspective(1200px);
    scale: 1.05;
  }
  75% {
    transform: translateX(0px) translateY(1px) perspective(1200px);
    scale: 0.99;
  }
  100% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) perspective(1200px);
    scale: 1;
  }
}

body {
  animation: fadein 1.4s;
}

section.hero::before,
section.hero .container {
  transform-origin: top;
  transform: translateY(0px);
  animation: hero-anim1 .5s ease-out;
}

section.hero .info > div::before {
  animation: hero-anim2 .5s ease-out;
}

section.hero .item .img img {
  animation: hero-anim4 .5s ease-out .25s forwards;
}

section.hero .item .badge {
  animation: hero-anim4 .3s ease-out .5s forwards;
}

section.hero .card .flip-container .flipper {
  animation: hero-anim5 .7s ease-out .25s forwards;
}

section.hero .card .flip-container .front {
  animation: hero-anim6 .7s ease-out .25s forwards;
}

section.hero .card .flip-container .back {
  animation: hero-anim7 .7s ease-out .25s forwards;
}

@media screen and (min-width: 993px) {
  
  section.hero::before,
  section.hero .container {
    animation: hero-anim1 .4s ease-out;
  }

  section.hero .info > div::before {
    animation: hero-anim3 .5s ease;
  }
  
  section.hero .card .flip-container .flipper {
    animation: hero-anim5 .7s ease-out .2s forwards;
  }

  section.hero .card .flip-container .front {
    animation: hero-anim6 .7s ease-out .2s forwards;
  }

  section.hero .card .flip-container .back {
    animation: hero-anim7 .7s ease-out .2s forwards;
  }
  
}

@media screen and (min-width: 1440px) {
  
  section.hero .card .flip-container .flipper {
    animation: hero-anim5 .7s ease-out .4s forwards;
  }

  section.hero .card .flip-container .front {
    animation: hero-anim6 .7s ease-out .4s forwards;
  }

  section.hero .card .flip-container .back {
    animation: hero-anim7 .7s ease-out .4s forwards;
  }
  
}
