
/* 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 */

:root {
  --scrollbar-width: 0;
}

: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;
  padding-right: var(--scrollbar-width);
  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, .cc-btn:visited {
  color: #fff;
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16px;
  padding: 2px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #822850;
  min-height: 54px;
  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: #731c42;
}


/* Header */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: var(--scrollbar-width);
  z-index: 0;
  background-color: #fff;
}

header .container {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

header img {
  display: block;
  max-width: 100%;
}

header .logo {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
}

header .logo a {
  display: block;
  margin: 24px 0 26px 18px;
}

header .logo a img {
  width: 120px;
}

header .logo .primary {
  position: relative;
}

header .logo .primary .partner {
  position: absolute;
  top: 48px;
  left: 18px;
  width: 84px;
}

header .logo .bs {
  flex: 1 1 0%;
  display: flex;
  justify-content: center;
}

header .logo .bs img {
  width: 73px;
}

header .langs {
  margin-right: 18px;
  margin-top: 2px;
  white-space: nowrap;
}

header .langs a,
header .langs a:hover,
header .langs span {
  color: #c8d1f6;
  font-size: 15px;
  margin-left: 7px;
}

header .langs > *:first-child {
  margin-left: 0 !important;
}

header .langs span {
  color: #4864e2;
  font-weight: 700;
}

@media screen and (min-width: 769px) {
  
  header .logo a {
    margin: 30px 0 34px 40px;
  }
  
  header .logo a img {
    width: 180px;
  }
  
  header .logo .primary .partner {
    top: 62px;
    left: 40px;
    width: 98px;
  }
  
  header .logo .bs img {
    width: 100px;
  }
  
  header .langs {
    margin-left: 44px;
    margin-right: 40px;
  }
  
  header .langs a, 
  header .langs a:hover, 
  header .langs span {
    font-size: 18px;
    margin-left: 10px;
  }
  
}

@media screen and (min-width: 993px) {
  
  header {
    position: absolute;
  }
  
  header .logo a {
    margin: 40px 0 44px 40px;
  }
  
  header .logo a img {
    width: 246px;
  }
  
  header .logo .primary .partner {
    top: 38px;
    left: 316px;
    width: 110px;
  }
  
  header .logo .bs {
    margin-left: 56px;
  }
  
  header .logo .bs img {
    width: 133px;
  }
  
  header .langs {
    margin-left: 56px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  header .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header .logo a {
    margin-left: 0;
  }
  
  header .logo .partner {
    width: 124px;
    margin-left: 24px;
  }
  
  header .logo .primary .partner {
    top: 36px;
    left: 280px;
    width: 120px;
    margin: 0;
  }
  
  header .langs {
    margin-left: 100px;
    margin-right: 0;
  }
  
}


/* Main */

.main {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 0%;
  overflow: hidden;
  position: relative;
  margin-top: 86px;
}

main img {
  max-width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  
  main {
    margin-top: 106px;
  }
  
}

@media screen and (min-width: 993px) {
  
  main {
    margin-top: 108px;
  }
  
}


/* Sections */

.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;
}

/* Section - Hero */

section.hero {
  color: #fff;
  z-index: 0;
}

section.hero::before {
  content: "";
  background-image: url(img/cc-hero.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 -25px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  position: fixed;
  top: 86px;
  left: 0;
  right: var(--scrollbar-width);
  bottom: 0;
  z-index: 1;
}

section.hero .video {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  position: fixed;
  top: 86px;
  left: 0;
  right: var(--scrollbar-width);
  bottom: 0;
  overflow: hidden;
  z-index: 2;
}

section.hero .video video {
  width: 110%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center top;
  z-index: 0;
  transition: opacity 1.25s linear;
}

section.hero .container {
  padding-top: 40vw;
  position: relative;
  z-index: 2;
}

section.hero .info {
  padding-top: 108px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

section.hero .info > div {
  padding: 0 18px 132px;
  position: relative;
  background: linear-gradient(transparent 160px, #2e4291 160px);
}

section.hero .info > div::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -30px;
  width: 1000px;
  height: 350px;
  background-color: #2e4291;
  border-top-right-radius: 48px;
  transform: rotate(-12deg);
  z-index: -1;
}

section.hero h1 {
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
  max-width: 500px;
}

section.hero h3 {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 16px;
}

section.hero .checklist {
  line-height: 1.2;
  list-style: none;
}

section.hero .checklist li {
  padding: 5px 0 5px 33px;
  background-image: url(img/icons/icon-check-wt.svg);
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: -2px 0;
}

section.hero .checklist li:nth-child(1) {
  background-image: url(img/icons/icon-plane-wt.svg);
}

section.hero .checklist li:nth-child(2) {
  background-image: url(img/icons/icon-lounge-wt.svg);
}

section.hero .checklist li:nth-child(3) {
  background-image: url(img/icons/icon-label.svg);
}

section.hero .checklist li span.hlight {
  color: #01f0c5;
}

section.hero .desc .note {
  font-size: 9px;
  font-weight: 300;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1.5;
  letter-spacing: 0.3px;
  margin-top: 24px;
  max-width: 400px;
  opacity: 0.8;
  display: none;
}

section.hero .cta {
  margin-bottom: 32px;
}

section.hero .cta .cc-btn span {
  padding-left: 8px;
}

section.hero .card {
  padding-bottom: 62px;
  background-color: #fff;
  position: relative;
}

section.hero .card.bundle {
  display: flex;
  justify-content: center;
}

section.hero .card.bundle .flip-container:last-child {
  position: relative;
  margin: -62px 0 0 0;
  transform-origin: left;
  transform: rotate(-12deg) translateX(-42px);
  z-index: 2;
}

section.hero .card.bundle .flip-container.primary {
  position: absolute;
  top: -28px;
  left: 50%;
  transform-origin: left;
  transform: translateX(calc(-50% - 6px)) rotate(-12deg);
  z-index: 3;
}

section.hero .card .flipper, 
section.hero .card .front, 
section.hero .card .back {
	width: 224px;
	height: 142px;
}

section.hero .card .flipper {
	transform-style: preserve-3d;
  transform-origin: 100% 50%;
	position: relative;
  opacity: 0;
}

section.hero .card .front, 
section.hero .card .back {
	position: absolute;
	top: 0;
	left: 0;
}

section.hero .card .front {
  background-color: #e60050;
  border-radius: 10px;
  opacity: 0.9;
	z-index: 2;
}

section.hero .card .back {
  transform: rotateX(-180deg);
  opacity: 0;
}

section.hero .offer {
  position: absolute;
  left: 218px;
  bottom: 244px;
  opacity: 0;
  z-index: 5;
}

section.hero .card.bundle + .offer {
  left: calc(50% + 20px);
  bottom: 26px;
}

section.hero .container > .card.bundle {
  display: none;
}

section.hero .offer > div {
  color: #002b4d;
  text-align: center;
  text-transform: uppercase;
  width: 144px;
  height: 144px;
  overflow: hidden;
  padding-top: 4px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e6c39e;
  transform: rotate(-12deg);
}

section.hero .offer strong {
  font-size: 35px;
  font-weight: 700;
  line-height: 0.8;
  display: block;
  margin: 6px 0;
}

section.hero .offer span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 0 4px;
}

html[lang=de] section.hero .offer strong + span {
  font-size: 14px;
}

html[lang=fr] section.hero .offer strong + span,
html[lang=it] section.hero .offer strong + span {
  font-size: 15px;
}

section.hero .img {
  opacity: 0;
  position: relative;
}

section.hero .img video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -80px;
  left: -210px;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  transition: opacity 1.25s linear;
  transform: rotate(12deg);
}

@media screen and (max-width: 520px) {
  
  html[lang=de] section.hero .cta .cc-btn,
  html[lang=fr] section.hero .cta .cc-btn {
    font-size: 20px;
  }
  
}

@media screen and (max-width: 1280px) {
  
  section.hero .cta .cc-btn > span > span {
    display: none;
  }
  
}

@media screen and (min-width: 512px) {
  
  section.hero .info {
    padding-top: 132px;
  }
  
  section.hero .info > div::before {
    top: -40px;
  }
  
}

@media screen and (min-width: 621px) {
  
  section.hero .info {
    padding-top: 162px;
  }
  
  section.hero .info > div::before {
    top: -70px;
  }
  
}

@media screen and (min-width: 769px) {
  
  section.hero::before {
    top: 106px;
    background-position: center 0;
  }
  
  section.hero .container {
    padding-top: 35vw;
  }
  
  section.hero .info > div {
    padding: 64px 40px 176px;
  }
  
  section.hero .info > div::before {
    border-top-right-radius: 90px;
    top: -50px;
    right: 0;
  }
  
  section.hero h1 {
    font-size: 48px;
    max-width: 90%;
    margin-bottom: 32px;
  }
  
  section.hero .card {
    padding-bottom: 62px;
  }
  
  section.hero .card.bundle .flip-container:last-child {
    margin-top: -90px;
    transform: rotate(-12deg) translateX(-62px);
  }
  
  section.hero .card.bundle .flip-container.primary {
    top: -36px;
    transform: translateX(calc(-50% + 6px)) rotate(-12deg);
  }
  
  section.hero .card .flipper, 
  section.hero .card .front, 
  section.hero .card .back {
    width: 360px;
    height: 229px;
  }
  
  section.hero .card.bundle + .offer {
    left: calc(50% + 116px);
    bottom: 130px;
  }
  
}

@media screen and (min-width: 881px) {
  
  section.hero .info {
    padding-top: 196px;
  }
  
  section.hero .info > div::before {
    top: -70px;
  }
  
}

@media screen and (min-width: 993px) {
  
  section.hero {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 162px;
  }
  
  section.hero::before {
    display: none;
  }
  
  section.hero .video {
    display: none;
  }
  
  section.hero .container {
    border-radius: 48px;
    padding: 0;
    background-color: #2e4291;
  }
  
  section.hero .content {
    position: relative;
    border-radius: 48px;
    overflow: hidden;
  }
  
  section.hero .info {
    padding: 92px 0 132px;
    max-width: 52%;
    min-height: 550px;
    display: flex;
    align-items: center;
  }
  
  section.hero .info > div {
    background: none;
    padding: 0 0 0 56px;
    flex: 1 1 100%;
  }
  
  section.hero .info > div::before {
    top: -36px;
    left: auto;
    right: -28px;
    width: 1400px;
    height: 1400px;
    transform: rotate(-12deg);
    border-top-left-radius: 0;
    border-top-right-radius: 90px;
  }
  
  section.hero h1 {
    max-width: 535px;
  }
  
  section.hero .desc {
    padding-right: 44px;
  }

  section.hero .content > .card.bundle {
    display: none;
  }

  section.hero .container > .card.bundle {
    display: flex;
  }
  
  section.hero .card {
    padding-bottom: 0;
    background-color: transparent;
    position: absolute;
    bottom: -72px;
    right: calc(50% - 276px);
    z-index: 3;
  }
  
  section.hero .card .flipper, 
  section.hero .card .front, 
  section.hero .card .back {
    width: 336px;
    height: 212px;
  }
  
  section.hero .offer,
  section.hero .card.bundle + .offer {
    left: calc(55% - 24px);
    right: auto;
    bottom: 220px;
  }
  
  section.hero .img {
    opacity: 1;
    position: absolute;
    top: -2px;
    left: 60%;
    width: 800px;
    height: 720px;
    transform: rotate(-12deg);
    border-top-left-radius: 100px;
    overflow: hidden;
    z-index: 1;
  }
  
  section.hero .img::before {
    content: "";
    background-image: url(img/cc-hero.jpg);
    background-repeat: no-repeat;
    background-position: calc(50% - 156px) center;
    background-size: cover;
    position: absolute;
    top: -32px;
    left: -80px;
    right: -40px;
    bottom: -12px;
    transform: rotate(12deg);
  }
  
  section.hero .desc .note {
    max-width: 300px;
    display: block;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section.hero {
    padding-left: 0;
    padding-right: 0;
  }
  
  section.hero .info {
    min-height: 600px;
    max-width: 48%;
    padding: 132px 0 72px;
    align-items: flex-start;
  }
  
  section.hero h1 {
    font-size: 48px;
    max-width: unset;
  }
  
  section.hero .offer {
    right: 44%;
    bottom: 215px;
  }
  
  section.hero .card {
    right: calc(50% - 254px);
  }
  
  section.hero .card .flipper, 
  section.hero .card .front, 
  section.hero .card .back {
    width: 340px;
    height: 215px;
  }
  
  section.hero .card.bundle + .offer {
    left: auto;
    right: 43%;
    bottom: 216px;
  }
  
  section.hero .img {
    height: 740px;
    top: 32px;
    left: 53%;
  }
  
  section.hero .img::before {
    top: -69px;
    right: -90px;
    bottom: 60px;
    background-position: calc(50% - 92px) center;
  }
  
}

@media screen and (min-width: 1440px) {
  
  section.hero .container {
    max-width: 1376px;
  }
  
  section.hero .info > div {
    padding-left: 88px;
  }
  
  section.hero .card.bundle + .offer {
    right: 44.5%;
    bottom: 220px;
  }
  
  section.hero .img {
    top: 32px;
    left: 52%;
  }
  
  section.hero .img video {
    left: -110px;
  }
  
}


/* Section - Disclaimer */

section.disclaimer {
  color: #002b4d;
  font-size: 9px;
  font-weight: 300;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.3px;
  background-color: #fff;
  padding: 0 18px;
  margin: 0 auto;
  max-width: 700px;
}

@media screen and (min-width: 993px) {
  
  section.disclaimer {
    display: none;
  }
  
}


/* Section - Silver */

section.silver {
  padding: 60px 18px 40px;
}

section.silver .container {
  border-radius: 24px;
  overflow: hidden;
  max-width: 995px;
  margin: 0 auto;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.5);
}

section.silver .container > div {
  border-radius: 24px;
  background-image: url(img/silver-bg-mobile.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(85deg, #999 -8%, #cbcbcb 35%, #656565 76%, #cacaca 96%);
  border-image-slice: 1;
}

section.silver .img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
}

section.silver .img img {
  width: 245px;
}

section.silver .info {
  color: #f4f4f4;
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  line-height: 1.3;
  padding: 0 24px 24px;
}

section.silver .info h3 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}

section.silver .info a {
  color: #f4f4f4;
  text-decoration: underline;
}

@media screen and (max-width: 540px) {
  
  html[lang=de] section.silver .info h3 {
    font-size: 30px;
  }
  
  html[lang=fr] section.silver .info h3 {
    font-size: 27px;
  }
  
}

@media screen and (min-width: 769px) {
  
  section.silver {
    padding: 80px 40px 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  section.silver {
    padding: 60px 40px 100px;
  }
  
  section.silver .container > div {
    background-image: url(img/silver-bg.jpg);
    display: flex;
  }
  
  section.silver .img {
    padding: 40px;
    flex: 0 0 325px;
  }
  
  section.silver .info {
    padding: 40px 40px 32px 0;
    flex: 1;
  }
  
  section.silver .info h3 {
    text-align: left;
  }
  
}


/* Section - Labels */

section.labels {
  padding-bottom: 56px;
}

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;
}


/* Section - USP Cards */

section.usp-cards {
  position: relative;
  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: 60px 18px 0;
}

section.usp-cards + section.usp-cards h2 {
  padding-top: 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(72, 100, 226, 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,
section.usp-cards .card:first-child:last-child > div {
  transform: rotate(-2deg);
}

section.usp-cards .card .primary,
section.usp-cards .card .secondary {
  background-color: #2e4291;
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

section.usp-cards .card .primary {
  position: absolute;
  top: 0;
  left: 0;
}

section.usp-cards .card h3 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 32px 24px 16px 32px;
}

section.usp-cards .card h3 span.strike {
  color: #91a0ee;
  text-decoration: line-through;
}

section.usp-cards .card .img {
  border-top-right-radius: 64px;
  width: 110%;
  height: 370px;
  overflow: hidden;
  transform: rotate(-12deg) translate(-32px, 10px);
}

section.usp-cards .card .img img {
  width: 100%; 
  height: 100%;
  transform: rotate(12deg);
  margin: -20px 0 0 24px;
}

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: 32px;
}

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.flipped > div {
  transform: rotateZ(2deg) rotateY(0.5turn);
  transition: all 1s ease-in-out;
}

section.usp-cards .card.flipped:first-child:last-child > div {
  transform: rotateZ(-2deg) rotateY(0.5turn);
}

section.usp-cards .card.flipped:nth-child(2) > div {
  transform: rotateZ(-2deg) rotateY(0.5turn);
}


/* 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;
}


/* Section - MultiUSP */

section.multiusp .container {
  padding-bottom: 24px;
}

section.multiusp h2 {
  font-size: 40px;
  font-weight: 700;
  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 .info {
  opacity: 1;
}

section.multiusp .item h3 {
  color: #2e4291;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}

section.multiusp .item .content {
  font-size: 18px;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1.35;
  letter-spacing: 0.36px;
  max-width: 540px;
}

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;
}


/* Section - App */

section.app {
  overflow: hidden;
}

section.app > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  bottom: -200px;
  width: 4000px;
  background-color: #2e4291;
  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;
}


/* Section - CC Cards */

section.cc-cards {
  padding: 110px 18px;
  background-image: url(img/floating-cards.png);
  background-repeat: no-repeat;
  background-position: -190px;
  background-size: auto 100%;
  z-index: 1;
}

section.cc-cards img {
  width: 639px;
  margin: 0 auto;
}


/* Section - MB Slider */

section[class*="slider"] .tns-outer {
  display: flex;
  flex-direction: column;
}

section[class*="slider"] .tns-nav {
  order: 2;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

section[class*="slider"] .tns-nav button {
  width: 16px;
  height: 16px;
  color: #eaecf4;
  background-color: #dae0f9;
  border: 0 none;
  border-radius: 8px;
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.2s linear;
}

section[class*="slider"] .tns-nav button.tns-nav-active {
  background-color: #2e4291;
}

section.mb-slider .items {
  padding: 0;
  outline: none;
  user-select: none;
}

section.mb-slider .tns-ovh {
  padding: 0 24px;
}

section.mb-slider .row {
  display: flex;
}

section.mb-slider .item.tns-item {
  display: inline-flex;
  padding: 5px 8px 0;
  margin: 0;
  max-width: unset;
}

section.mb-slider .item.tns-item > div {
  flex: 1 1 auto;
}


/* Section - Accordion */

section.accordion .container {
  padding: 56px 0 32px;
}

section.accordion h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding: 0 18px;
}

section.accordion .items {
  padding: 0 18px;
}

section.accordion .item {
  color: #1d2859;
  text-align: center;
  margin: 24px auto;
  max-width: 450px;
}

section.accordion .item > div {
  padding: 28px 16px 16px;
  background-color: #edf0fc;
  border-radius: 20px;
}

section.accordion .item .title {
  background-image: url(img/icons/icon-diamond.svg);
  background-repeat: no-repeat;
  background-size: 64px;
  background-position: center top;
  padding-top: 90px;
}

section.accordion .item h3 {
  color: #1d2859;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

section.accordion .item .intro {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1.2;
  letter-spacing: 0.36px;
  padding: 0 8px;
  margin-bottom: 24px;
}

section.accordion .item .desc {
  font-size: 18px;
  font-weight: 300;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1.2;
  padding: 0 8px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all .2s ease;
}

section.accordion .item .desc p:not(:first-child) {
  margin-top: 16px;
}

section.accordion .item .toggler {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dae0f9;
  border-radius: 10px;
  height: 52px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.accordion .item .toggler img {
  width: 48px;
  transform: rotate(-180deg);
  transition: transform .15s linear;
}

section.accordion .item.expanded .desc {
  opacity: 1;
  max-height: 500px;
  margin-bottom: 32px;
}

section.accordion .item.expanded .toggler img {
  transform: none;
}


/* Section - Overview */

section.overview {
  text-align: center;
}

section.overview .container {
  padding: 16px 18px;
}

section.overview h2 {
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
}

section.overview .desc {
  font-size: 18px;
  line-height: 1.2;
}

section.overview .img {
  position: relative;
  z-index: 1;
}

section.overview .img::before {
  content: "";
  background-color: #2e4291;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 75%;
  z-index: 0;
}

section.overview .img > div {
  padding: 0 18px;
  display: flex;
}

section.overview .img img {
  margin: 0 auto;
}

section.overview + section.accordion .container {
  padding-top: 0;
}


/* Section - USP Illustration */

section.usp-illustration .container {
  padding: 80px 0 40px;
}

section.usp-illustration + section.usp-illustration .container {
  padding-top: 0;
}

section.usp-illustration.mb-slider .container {
  padding-bottom: 110px;
}

section.usp-illustration h2 {
  color: #1d2859;
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding: 0 18px;
}

section.usp-illustration .items {
  padding: 0 18px;
}

section.usp-illustration.mb-slider .tns-ovh {
  padding: 0 10px;
}

section.usp-illustration .item {
  color: #1d2859;
  text-align: center;
  margin: 0 auto;
  max-width: 320px;
}

section.usp-illustration .item > div {
  background-color: #eaecf4;
  padding: 32px 18px 20px;
  border-radius: 18px;
}

section.usp-illustration:not(.mb-slider) .item > div {
  padding-bottom: 64px;
}

section.usp-illustration .item .img img {
  width: 160px;
  margin: 0 auto;
}

section.usp-illustration .item h3 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 16px 0 12px;
}

section.usp-illustration .item .desc {
  font-size: 16px;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1.2;
}

section.usp-illustration.quotes .container {
  padding: 80px 0 72px;
}

section.usp-illustration.quotes .item h3 {
  color: #2e4291;
  font-size: 150px;
  font-weight: 400;
  margin: 0 0 -66px;
}

section.usp-illustration.quotes .item > div {
  display: flex;
  flex-direction: column;
}

section.usp-illustration.quotes .item .desc {
  flex: 1 1 0%;
}

section.usp-illustration.quotes .item .author {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

section.usp-illustration.quotes .item .author .photo {
  height: 52px;
  width: 52px;
  border-radius: 26px;
  overflow: hidden;
  margin-right: 16px;
}

section.usp-illustration.quotes .item .author .info {
  font-size: 12px;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  text-align: left;
  line-height: 1.2;
  flex: 1 1 0%;
}

section.usp-illustration.quotes .item .author .info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}


/* Section - Business */

section.mmbanner {
  padding: 0 18px 80px;
}

section.mmbanner .container {
  max-width: 994px;
  margin: 0 auto;
}

section.mmbanner .item {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin: 0 auto;
  max-width: 450px;
  -webkit-tap-highlight-color: transparent;
}

section.mmbanner .item > div {
  background-color: #e60050;
  border-radius: 20px;
  overflow: hidden;
}

section.mmbanner .item .primary {
  padding: 32px 30px 80px;
  position: relative;
  z-index: 1;
}

section.mmbanner .item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

section.mmbanner .item .desc {
  font-size: 18px;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  font-weight: 300;
  line-height: 1.2;
}

section.mmbanner .item .desc p:not(:first-child) {
  margin-top: 16px;
}

section.mmbanner .item .desc a.more {
  color: #fff;
  font-size: 16px;
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  text-transform: uppercase;
  letter-spacing: 0.16px;
  display: inline-block;
  padding-left: 34px;
  background-image: url(img/icons/icon-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: left center;
}

section.mmbanner .item .secondary {
  display: flex;
  position: relative;
  margin-top: -24px;
  margin-bottom: -192px;
}

section.mmbanner .item .secondary .holder {
  min-height: 450px;
  flex: 1 1 100%;
}

section.mmbanner .item .secondary .img {
  position: absolute;
  top: 0;
  left: 94px;
  height: 1000px;
  width: 1000px;
  border-radius: 56px;
  box-shadow: 0 0 0 9999px #4864e2;
  transform: rotate(-10deg);
  z-index: 0;
}

section.mmbanner .item .img.cards img {
  width: 257px;
  position: absolute;
  top: -72px;
  left: 5%;
  transform: rotate(10deg);
}

@media screen and (min-width: 769px) {
  
  section.mmbanner {
    padding: 20px 18px 120px;
  }
  
  section.mmbanner .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -16px;
    margin-bottom: -16px;
  }
  
  section.mmbanner .item {
    display: flex;
    flex: 1 1 auto;
    max-width: unset;
  }
  
  section.mmbanner .item > div {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex: 1 1 auto;
  }
  
  section.mmbanner .item .primary {
    flex: 0 1 50%;
    padding: 40px 0 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  section.mmbanner .item .desc {
    font-size: 16px;
  }
  
  section.mmbanner .item .secondary {
    flex: 1 1 auto;
    margin-top: 0;
    margin-bottom: -164px;
  }
  
  section.mmbanner .item .secondary .holder {
    min-height: 420px;
  }
  
  section.mmbanner .item .secondary .img {
    top: 28px;
    left: 112px;
    transform: rotate(-12deg);
    border-radius: 52px;
  }
  
  section.mmbanner .item .img.cards img {
    top: -74px;
    left: 7%;
    transform: rotate(12deg);
  }

}

@media screen and (min-width: 993px) {
  
  section.mmbanner .item .primary {
    flex: 0 1 54%;
    padding: 56px 0 56px 56px;
  }
  
  section.mmbanner .item .secondary .img {
    top: 32px;
    left: 98px;
  }
  
  section.mmbanner .item .img.cards img {
    top: -70px;
    left: 10%;
    transform: rotate(12deg);
  }

}

@media screen and (min-width: 1281px) {
  
  section.mmbanner {
    padding: 0 0 140px;
  }
  
}


/* Section - Note */

section.note {
  margin-top: 80px;
}

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: #737fb1;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.28px;
  background-color: #eaecf4;
  padding: 56px 20px 0;
}

section.note .info a {
  color: #737fb1;
  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 {
    margin-top: 100px;
  }
  
  section.note .logo {
    width: 292px;
  }

  section.note h2 {
    font-size: 56px;
    padding: 32px 32px 100px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section.note {
    margin-top: 120px;
  }
  
  section.note .logo {
    width: 384px;
  }

  section.note h2 {
    font-size: 80px;
    padding: 40px 32px 144px;
  }
  
}


/* Section - Other */

section#partners {
  background-color: #2e4291;
}

section#partners .item:nth-child(1) {
  margin-top: 0;
}

section#partners .item:nth-child(1) .title {
  background-image: url(img/icons/icon-partners.svg);
  background-size: 86px;
}

section#partners .item .desc > div img:last-child {
  display: none;
}

section.fees {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
  padding: 80px 18px 40px;
  background-color: #2e4291;
}

section.fees h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 32px;
}

section.fees .items > div {
  margin-bottom: 32px;
}

section.fees .gold {
  color: #d3c096;
}

section.fees .classic {
  color: #c8c8c8;
}

section.fees .price {
  margin-top: 6px;
}

section.fees span {
  font-size: 32px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 6px;
}

section.fees span.old {
  text-decoration: line-through;
  opacity: 0.5;
}

section.fees .extra {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  
  section.usp-illustration.mb-slider .item.tns-item {
    opacity: 0;
    transition: opacity 0.2s linear;
  }
  
  section.usp-illustration.mb-slider .item.tns-item.tns-slide-active {
    opacity: 1;
  }
  
}

@media screen and (min-width: 769px) {
  
  section.labels {
    padding: 40px 0;
  }
  
  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;
  }
  
  section.usp-cards h2 {
    font-size: 56px;
    padding: 0 40px;
  }
  
  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;
  }
  
  section.multiusp h2 {
    font-size: 56px;
    text-align: center;
    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 130px;
    margin-top: 88px;
    border-radius: 56px;
  }
  
  section.multiusp .icons {
    margin-bottom: 24px;
  }
  
  section.multiusp .icons img {
    width: 64px;
    margin-right: 16px;
  }
  
  section.multiusp .item h3 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 24px;
  }
  
  section.multiusp .controls {
    padding-right: 88px;
    transform: translateY(-104px);
    max-width: 990px;
    margin: 0 auto;
  }
  
  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;
  }
  
  section.cc-cards {
    background-position: center;
  }
  
  section.accordion h2 {
    font-size: 40px;
    text-align: center;
  }
  
  section.accordion .items {
    padding: 0 40px;
  }
  
  section.accordion .item {
    text-align: left;
    max-width: unset;
    position: relative;
  }
  
  section.accordion .item > div {
    padding: 26px 40px 24px;
  }
  
  section.accordion .item .title {
    background-position: left 5px;
    padding: 0 0 0 96px;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
  }
  
  section.accordion .item h3 {
    padding-right: 64px;
    margin-top: 24px;
  }
  
  section.accordion .item .intro {
    font-size: 16px;
    letter-spacing: normal;
    padding: 0 64px 0 0;
    margin-bottom: 16px;
    transition: all .2s ease;
  }
  
  section.accordion .item .toggler {
    background-color: transparent;
    height: 48px;
    width: 48px;
    position: absolute;
    top: 38px;
    right: 40px;
  }
  
  section.accordion .item .desc {
    padding-left: 98px;
  }
  
  section.accordion .item.expanded .intro {
    border-bottom: 1px solid #c2caf0;
    padding-bottom: 22px;
  }
  
  section.accordion .item.expanded .desc {
    margin-top: 8px;
    margin-bottom: 16px;
  }
  
  section.overview .container {
    padding: 24px 24px 0;
  }
  
  section.overview h2 {
    font-size: 56px;
  }
  
  section.overview .desc {
    font-size: 20px;
    max-width: 580px;
    margin: 0 auto 12px;
  }
  
  section.overview .img::before {
    height: 73%;
  }
  
  section.overview .img > div {
    padding: 0 24px;
  }
  
  section.overview .img img {
    width: 902px;
  }
  
  section#partners .item .title {
    background-position: left -7px;
  }
  
  section#partners .item .desc {
    padding-left: 0;
  }
  
  section#partners .item .desc > div img:first-child {
    display: none;
  }
  
  section#partners .item .desc > div img:last-child {
    display: block;
  }
  
  section.usp-illustration.quotes .container {
    padding: 100px 0 68px;
  }
  
  section.usp-illustration h2 {
    font-size: 56px;
    margin-bottom: 32px;
  }
  
  section.usp-illustration:not(.mb-slider) .items {
    padding: 0 24px;
  }
  
  section.usp-illustration .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  section.usp-illustration .row .item {
    flex: 1 1 0%;
    display: flex;
  }
  
  section.usp-illustration .item > div {
    min-height: 190px;
    padding-left: 18px;
    padding-right: 18px;
    flex: 1 1 auto;
  }
  
  section.usp-illustration:not(.mb-slider) .item > div {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  section.usp-illustration.mb-slider .item.tns-item {
    margin: 32px 0;
    flex: 0 0 33.33%;
    display: flex;
  }
  
  section.usp-illustration.quotes .items {
    padding: 0 20px;
  }
  
  section.usp-illustration.quotes .item {
    padding: 0 12px;
  }
  
  section.fees {
    font-size: 20px;
    padding: 100px 20px 80px;
  }

  section.fees h3 {
    font-size: 40px;
  }
  
  section.fees .extra {
    font-size: 18px;
  }
  
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  
  section.usp-illustration .item .img img {
    width: 120px;
  }
  
  section.usp-illustration .item h3 {
    font-size: 18px;
  }
  
}

@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: 22px;
    padding: 32px 40px;
  }
  
  section.usp-cards .card .img {
    border-top-right-radius: 80px;
    height: 450px;
    transform: rotate(-12deg) translate(-40px, 10px);
  }
  
}

@media screen and (min-width: 993px) {
  
  section.app .container {
    padding-top: 300px;
  }
  
  section.app .icons {
    max-width: 800px;
  }
  
  section.usp-cards h2 {
    padding: 32px 40px 24px;
  }
  
  section.accordion .container {
    padding-top: 96px;
    padding-bottom: 44px;
  }
  
  section.accordion h2 {
    font-size: 60px;
    margin-bottom: 60px;
  }
  
  section.accordion .item {
    max-width: 960px;
  }
  
  section.accordion .item > div {
    padding-bottom: 20px;
  }
  
  section.accordion .item .title {
    min-height: 74px;
  }
  
  section.accordion .item h3 {
    margin: 10px 0;
  }
  
  section.overview .container {
    padding: 40px 40px 0;
  }
  
  section.overview .desc {
    font-size: 24px;
    max-width: 780px;
  }
  
  section.overview .img > div {
    padding: 0 40px;
    max-width: 1080px;
    margin: 0 auto;
  }
  
  section.overview + section.accordion .container {
    padding-bottom: 76px;
  }
  
  section.usp-illustration .container {
    padding: 92px 0 68px;
  }
  
  section.usp-illustration .item {
    max-width: unset;
  }
  
  section.usp-illustration .item > div {
    padding: 24px;
  }
  
  section.usp-illustration:not(.mb-slider) .item > div {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  section.usp-illustration.quotes .item > div {
    padding: 32px 20px 20px;
  }

  section.fees .items {
    display: flex;
    justify-content: center;
    gap: 64px;
  }

  section.fees h3 {
    font-size: 40px;
  }
  
  section.fees span {
    font-size: 32px;
  }
  
  section.fees .extra {
    font-size: 20px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.labels {
    padding: 80px 0 40px;
  }
  
  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:first-child:last-child > div {
    transform: rotate(2deg);
  }  
  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:not(:first-child) {
    transform: translateX(64px) translateY(250px) rotate(12deg);
  }
  
  section.usp-cards .card.visible:last-child:not(:first-child) {
    transform: translateY(30px);
  }
  
  section.usp-cards .card:first-child + .card:last-child {
    transform: rotate(4deg) translateY(-12px);
  }
  
  section.usp-cards .card.flipped:first-child:last-child > div {
    transform: rotateZ(2deg) rotateY(0.5turn);
  }
  
  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.multiusp .container {
    padding: 0;
    padding: 120px 0 0;
  }
  
  section.reviews .container {
    padding: 120px 0;
    max-width: unset;
  }
  
  section.reviews h2,
  section.multiusp h2 {
    font-size: 80px;
  }
  
  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;
  }
  
  section.cc-cards {
    padding: 160px 0;
    margin: 32px 0 -120px;
  }
  
  section.overview .container {
    padding: 120px 0 0;
  }
  
  section.overview h2 {
    font-size: 80px;
  }
  
  section.usp-illustration.quotes .container {
    padding: 120px 0 88px;
  }
  
  section.usp-illustration h2 {
    font-size: 80px;
  }
  
  section.usp-illustration .items {
    padding: 0;
    margin: 0 -16px;
  }
  
  section.usp-illustration .item > div {
    padding: 32px;
  }
  
  section.usp-illustration.quotes .items {
    padding: 0;
    margin: 0 -30px;
  }
  
  section.usp-illustration.quotes .item {
    padding: 0 20px;
  }
  
  section.usp-illustration.quotes .item > div {
    padding: 32px 24px 24px;
  }
  
  section.fees {
    font-size: 24px;
  }

  section.fees .items {
    gap: 80px;
  }
  
  section.fees span {
    font-size: 40px;
    line-height: 1.3;
  }
  
}

@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: 39px;
  }
  
}

@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.app .container {
    padding-top: 420px;
  }
  
  section.app > div::before {
    left: 240px;
  }
  
}


/* Popup */

#cc_popup {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  display: flex;
  overflow-x: hidden;
  overflow-y: scroll;
  outline: 0;
  align-items: flex-start;
  justify-content: center;
  z-index: 101;
  opacity: 0;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(0, 0, 0.35, 1), opacity .25s linear;
  box-shadow: 0 32px 200px 0 #4864e2;
}

#cc_popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cc_popup .dialog {
  flex: 1 1 auto;
}

#cc_popup .content {
  padding: 100px 18px 16px;
  position: relative;
}

#cc_popup .close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  border: 4px solid #edf0fc;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 3;
}

#cc_popup .item {
  display: block;
  max-width: 386px;
  margin: 0 auto 16px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#cc_popup .item > label {
  flex: 1 1 0%;
  cursor: pointer;
}

#cc_popup .item > label > input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

#cc_popup .item > label > div {
  color: #2e4291;
  display: block;
  border-radius: 32px;
  border: solid 4px #bac0d7;
  background-color: #eaecf4;
  box-shadow: 0 40px 80px 0 rgba(46, 66, 145, 0.16);
  position: relative;
}

#cc_popup .item .info {
  padding: 96px 24px 28px;
  position: relative;
  z-index: 2;
}

#cc_popup .item h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin: 4px 0 8px;
}

#cc_popup .item h3 {
  font-size: 15px;
}

#cc_popup .item .miles {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}

#cc_popup .item .miles > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#cc_popup .item .miles strong {
  font-size: 80px;
  font-weight: 700;
  line-height: 0.8;
}

#cc_popup .item .miles span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  margin-left: 2px;
  margin-right: auto;
}

#cc_popup .item .miles span:last-child {
  margin-left: auto;
  margin-right: 4px;
}

#cc_popup .item .price .label {
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 4px;
}

#cc_popup .item .price .amount {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

#cc_popup .item .price .old {
  color: #bac0d7;
  text-decoration: line-through;
  margin-left: 10px;
}

#cc_popup .item .img {
  margin: 0;
  position: absolute;
  top: -70px;
  left: 30px;
  right: 18px;
  display: flex;
  z-index: 2;
}

#cc_popup .item .img img {
  width: 220px;
  max-width: 100%;
}

#cc_popup .content > .note {
  font-size: 9px;
  font-weight: 300;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.3px;
  padding: 0 24px;
  margin: 32px auto;
  max-width: 640px;
  opacity: 0.8;
}

#cc_popup .cta {
  text-align: center;
  margin-top: 32px;
}

#cc_popup .cta button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

#cc_popup .item > label > input:checked ~ div {
  border-color: #2e4291;
}
#cc_popup .card .item:first-child {
  margin-bottom: 88px;
}

#cc_popup .customer {
  margin-top: 32px;
}

#cc_popup .customer .item > label > div {
  border-radius: 16px;
}

#cc_popup .customer .rbtn {
  font-size: 18px;
  padding: 16px 6px;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cc_popup .customer .item > label > div::before {
  display: none;
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  
  #cc_popup .item .miles strong {
    font-size: 78px;
    letter-spacing: -1px;
  }
  
}

@media screen and (min-width: 769px) {
  
  #cc_popup .dialog {
    padding: 0 24px;
  }
  
  #cc_popup .content {
    padding: 134px 0 32px;
    position: static;
  }
  
  #cc_popup .items {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  
  #cc_popup .item {
    flex: 0 1 386px;
    display: flex;
    margin: 0;
  }
  
  #cc_popup .item > label > div {
    display: flex;
    flex-direction: column;
  }
  
  #cc_popup .item .info {
    flex: 1 1 0%;
  }
  
  #cc_popup .item h2 {
    margin-bottom: 16px;
  }
  
  #cc_popup .item .miles {
    margin-bottom: 24px;
  }
  
  #cc_popup .item .img {
    top: -78px;
  }
  
  #cc_popup .card .item:first-child {
    margin-bottom: 0;
  }
  
  #cc_popup .customer .item:first-child {
    justify-content: flex-end;
  }
  
  #cc_popup .customer .item > label {
    max-width: 350px;
  }
  
  #cc_popup .cta {
    margin-top: 36px;
  }
  
}

@media screen and (min-width: 993px) {
  
  #cc_popup .item h3 {
    font-size: 16px;
  }
  
}

@media screen and (min-width: 1201px) {
  
  #cc_popup {
    overflow: hidden;
    border-radius: 48px;
  }
  
  #cc_popup.show {
    transform: translateY(120px);
    overflow: auto;
  }
  
  #cc_popup .content {
    padding: 108px 0;
  }
  
  #cc_popup .close {
    top: 32px;
    right: 32px;
  }
  
  #cc_popup .items {
    gap: 32px;
  }
  
  #cc_popup .item .info {
    display: flex;
    flex-direction: column;
    padding: 110px 32px 32px;
  }
  
  #cc_popup .item .info > div:first-child {
    flex: 1 1 0%;
  }
  
  #cc_popup .item .img {
    top: -82px;
  }
  
  #cc_popup .item .img img {
    width: 250px;
  }
  
}

@media screen and (min-width: 993px) and (max-height: 720px) {
  
  #cc_popup .content {
    padding-top: 90px;
  }
  
  #cc_popup .close {
    top: 34px;
    right: 34px;
    width: 24px;
  }
  
}

@media screen and (min-width: 1201px) and (max-height: 800px) {
  
  #cc_popup.show {
    transform: translateY(0);
    border-radius: 0;
  }
  
  #cc_popup .content {
    padding-bottom: 24px;
  }
  
}


/* 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: 8px;
  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: 340px;
  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: #2e4291;
  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: #2e4291;
  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;
  }
  
}

@media screen and (min-width: 769px) {
  
  .sticky {
    bottom: 16px;
  }
  
  .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: 400px;
  }
  
  .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: 32px;
  }
  
}


/* Footer */

footer {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1.4;
  background-color: #2e4291;
  position: relative;
  z-index: 1;
}

footer::before {
  content: "";
  display: block;
  height: 56px;
  width: 100%;
  background-color: #eaecf4;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

footer .container {
  text-align: center;
  padding: 24px 24px 116px;
}

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 140px;
  }
  
}

@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 1s;
}

section.hero::before,
section.hero .video,
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 .offer {
  animation: hero-anim4 .7s ease-out .25s 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 .offer {
    animation: hero-anim4 .7s ease-out .2s forwards;
  }
  
  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 .offer {
    animation: hero-anim4 .3s ease-out .75s forwards;
  }
  
  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;
  }
  
}
