
/* 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: 1;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

header .primary .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 8px 24px 18px;
}

header .logo a img {
  width: 160px;
}

header .logo .bs {
  flex: 1 1 0%;
  display: flex;
  justify-content: center;
}

header .logo .bs img {
  width: 80px;
}

header .langs {
  position: relative;
  margin-right: 18px;
  margin-top: 2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

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

header .langs .toggler.active {
  background-color: #edf0fc;
}

header .langs .items {
  position: absolute;
  top: 54px;
  right: 5px;
  padding: 8px;
  background-color: #edf0fc;
  box-shadow: 0 16px 40px 0 rgba(46, 66, 145, 0.24);
  border-radius: 12px;
  height: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  transition: all .2s ease;
}

header .langs .toggler.active ~ .items {
  height: 64px;
  width: 232px;
  opacity: 1;
}

header .langs .items > * {
  color: #4864e2;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #dae0f9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  flex: 0 0 auto;
}

header .langs .items > span {
  color: #edf0fc;
  background-color: #4864e2;
}

header .langs .items a,
header .langs .items a:hover,
header .langs .items a:active,
header .langs .items a:focus,
header .langs .items a:visited {
  text-decoration: none;
}

header .tagline {
  display: none;
}

header .tagline .tagline-text {
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  color: #2e4291;
  max-width: 1376px;
  margin: 0 auto;
}

html[lang=fr] header .tagline .tagline-text {
  font-size: 17px;
}

@media screen and (min-width: 769px) {
  
  header .logo a {
    margin: 30px 40px 34px 40px;
  }
  
  header .logo a img {
    width: 180px;
  }
  
  header .logo .bs img {
    width: 100px;
  }
  
  header .langs {
    margin-left: 44px;
    margin-right: 40px;
  }
  
  header .langs .toggler {
    display: none;
  }
  
  header .langs .items {
    position: static;
    top: 0;
    right: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    height: auto;
    width: auto;
    opacity: 1;
    overflow: visible;
    gap: 14px;
  }
  
  header .langs .items#header-langs a,
  header .langs .items#header-langs a:hover,
  header .langs .items#header-langs a:active,
  header .langs .items#header-langs a:focus,
  header .langs .items#header-langs a:visited,
  header .langs .items#header-langs span {
    color: #c8d1f6;
    font-size: 18px;
    font-weight: 400;
    width: auto;
    height: auto;
    line-height: 24px;
    border-radius: 0;
    background-color: transparent;
  }
  
  header .langs .items#header-langs span {
    color: #4864e2;
    font-weight: 700;
  }
  
  header .langs .items#header-langs a:hover {
    color: #4864e2;
  }
  
}

@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 .bs {
    margin-left: 56px;
  }
  
  header .logo .bs img {
    width: 133px;
  }
  
  header .langs {
    margin-left: 56px;
  }

  header .tagline {
    display: block;
    padding: 20px 18px 24px;
  }
  
}

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

  header .tagline .tagline-text {
    font-size: 22px;
  }

  html[lang=fr] header .tagline .tagline-text {
    font-size: 20px;
  }

}

@media screen and (min-width: 1281px) {
  
  header .primary .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  header .logo a {
    margin-left: 0;
  }
  
  header .langs {
    margin-left: 100px;
    margin-right: 0;
  }

  header .tagline .tagline-text {
    font-size: 24px;
  }

  html[lang=fr] header .tagline .tagline-text {
    font-size: 22px;
  }
  
}


/* Main */

.main {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
}

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

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

@media screen and (min-width: 769px) {
  
  main {
    margin-top: 82px;
  }
  
}

@media screen and (min-width: 993px) {
  
  main {
    margin-top: 180px;
  }
  
}

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

  main {
    margin-top: 190px;
  }

}

@media screen and (min-width: 1281px) {
  
  main {
    margin-top: 193px;
  }
  
}


/* 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,
section.hero::after {
  content: "";
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 -80px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  position: fixed;
  top: 64px;
  left: 0;
  right: var(--scrollbar-width);
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

section.hero::before {
  background-image: url(img/hero-mm.jpg);
  opacity: 1;
}

section.hero::after {
  background-image: url(img/hero-b2b.jpg);
  background-position: 0 -90px;
  opacity: 0;
}

section.hero.hero-bg-gc::before {
  opacity: 0;
}

section.hero.hero-bg-gc::after {
  opacity: 1;
}

section.hero .video {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  position: fixed;
  top: 64px;
  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-wrap {
  position: relative;
}

section.hero .info {
  padding-top: 108px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

section.hero .info .items {
  padding: 0 18px 192px;
  position: relative;
  background: linear-gradient(transparent 160px, #2e4291 160px);
}

section.hero .info .slider {
  display: flex;
  flex-direction: row;
  /* width set in JS: (slides + 2) * 100% for clone-based infinite loop */
  transition: transform 0.45s ease;
  will-change: transform;
}

section.hero .info .slider .item {
  /* flex-basis set in JS to 100/(slides+2)% of track (one viewport per panel) */
  box-sizing: border-box;
  transition: opacity 0.45s ease;
}

section.hero .info .slider.move-off .item {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  section.hero .info .slider {
    transition-duration: 0.01ms;
  }

  section.hero .info .slider .item {
    transition-duration: 0.01ms;
  }

  section.hero::before,
  section.hero::after,
  section.hero .img::before,
  section.hero .img::after {
    transition-duration: 0.01ms;
  }
}

section.hero .info .items::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;
  margin-bottom: 16px;
  max-width: 500px;
}

section.hero h3 {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 400;
}

section.hero .info h3 + h1 {
  margin-top: 0;
}

section.hero .checklist {
  line-height: 1.2;
  list-style: none;
}

section.hero .checklist li {
  padding: 6px 0 6px 33px;
  background-image: url(img/icons/icon-check-wt.svg);
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: -2px 1px;
}

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 .slider .item.gc .checklist li:nth-child(1) {
  background-image: url(img/icons/icon-money.svg);
}

section.hero .slider .item.gc .checklist li:nth-child(2) {
  background-image: url(img/icons/icon-pallete.svg);
}

section.hero .slider .item.gc .checklist li:nth-child(3) {
  background-image: url(img/icons/icon-vcs.svg);
}

section.hero .checklist li span.hlight {
  color: #01f0c5;
}

section.hero .info-wrap .arrows {
  position: absolute;
  left: 18px;
  bottom: 116px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.hero .info-wrap .arrows button {
  width: 56px;
  height: 56px;
  border: 0 none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #7e8ab9;
  transition: background-color .15s linear;
  -webkit-tap-highlight-color: transparent;
}

section.hero .info-wrap .arrows button:hover {
  background-color: #909bc7;
}

section.hero .info-wrap .arrows button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

section.hero .info-wrap .arrows img {
  width: 40px;
  height: 40px;
  display: block;
  pointer-events: none;
}

section.hero .info-wrap .arrows button.prev img {
  transform: rotate(-90deg);
}

section.hero .info-wrap .arrows button.next img {
  transform: rotate(90deg);
}

section.hero .cta {
  margin-bottom: 32px;
}

section.hero .cta .cc-btn span {
  display: none;
}

section.hero .card {
  padding-bottom: 92px;
  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:not(.primary):not(:last-child) {
  position: absolute;
  top: -28px;
  left: 50%;
  transform-origin: left;
  transform: translateX(calc(-50% - 6px)) rotate(-12deg);
  z-index: 3;
}

section.hero .card.bundle .flip-container.primary {
  position: absolute;
  top: 2px;
  left: 50%;
  transform-origin: left;
  transform: translateX(calc(-50% + 34px)) rotate(-12deg);
  z-index: 4;
}

section.hero .card.bundle.gc,
section.hero .container > .card.bundle.gc {
  display: none;
}

section.hero .card.bundle.gc .flip-container:not(.primary):not(:last-child) {
  top: -18px;
  left: calc(50% + 24px);
  z-index: 1;
}

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 .card.bundle + .offer.gc {
  left: calc(50% + 10px);
  bottom: 34px;
}

section.hero .container > .card.bundle {
  display: none;
}

section.hero .offer > div {
  color: #002b4d;
  text-align: center;
  text-transform: uppercase;
  width: 140px;
  height: 140px;
  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: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-top: 10px;
  margin-bottom: 4px;
}

html[lang=fr] section.hero .offer strong {
  font-size: 23px;
  margin-top: 14px;
}

html[lang=it] section.hero .offer strong {
  margin-top: 14px;
}

section.hero .offer span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  padding: 0 4px;
}

html[lang=fr] section.hero .offer strong + span {
  font-size: 14px;
}

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 .items::before {
    top: -40px;
  }
  
}

@media screen and (min-width: 621px) {
  
  section.hero .info {
    padding-top: 162px;
  }
  
  section.hero .info .items::before {
    top: -70px;
  }
  
}

@media screen and (min-width: 769px) {
  
  section.hero::before,
  section.hero::after {
    top: 82px;
  }

  section.hero::after {
    background-position: 0 -180px;
  }
  
  section.hero .video {
    top: 82px;
  }
  
  section.hero .container {
    padding-top: 35vw;
  }
  
  section.hero .info .items {
    padding: 64px 40px 230px;
  }

  section.hero .info .items::before {
    border-top-right-radius: 90px;
    top: -50px;
    right: 0;
  }
  
  section.hero h1 {
    font-size: 48px;
    max-width: 90%;
    margin-bottom: 24px;
  }
  
  section.hero .card {
    padding-bottom: 100px;
  }
  
  section.hero .card.bundle .flip-container:last-child {
    margin-top: -90px;
    transform: rotate(-12deg) translateX(-62px);
  }
  
  section.hero .card.bundle .flip-container:not(.primary):not(:last-child) {
    top: -36px;
    transform: translateX(calc(-50% + 6px)) rotate(-12deg);
  }

  section.hero .card.bundle.gc .flip-container:not(.primary):not(:last-child) {
    top: -24px;
  }
  
  section.hero .card.bundle .flip-container.primary {
    top: 8px;
    transform: translateX(calc(-50% + 83px)) 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: 182px;
  }

  section.hero .card.bundle + .offer.gc {
    left: calc(50% + 76px);
    bottom: 224px;
  }

  section.hero .info-wrap .arrows {
    left: 40px;
    bottom: 134px;
  }
  
}

@media screen and (min-width: 881px) {
  
  section.hero .info {
    padding-top: 196px;
  }
  
  section.hero .info .items::before {
    top: -70px;
  }
  
}

@media screen and (min-width: 993px) {
  
  section.hero {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 162px;
  }
  
  section.hero::before,
  section.hero::after {
    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: 88px 0 160px;
    max-width: 52%;
    min-height: 550px;
  }
  
  section.hero .info .items {
    background: none;
    padding: 0 0 0 56px;
  }
  
  section.hero .info .items::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 .info-wrap .arrows {
    left: 56px;
    bottom: 52px;
  }

  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: -56px;
    right: calc(50% - 276px);
    z-index: 3;
  }

  section.hero .card.bundle.gc {
    bottom: -56px;
    right: calc(50% - 318px);
  }
  
  section.hero .card.bundle .flip-container.primary {
    top: 6px;
    transform: translateX(calc(-50% + 79px)) rotate(-12deg);
  }

  section.hero .card.bundle.gc .flip-container:not(.primary):not(:last-child) {
    top: -30px;
    left: calc(50% + 10px);
  }
  
  section.hero .card .flipper, 
  section.hero .card .front, 
  section.hero .card .back {
    width: 336px;
    height: 212px;
  }
  
  section.hero .offer,
  section.hero .card.bundle + .offer,
  section.hero .card.bundle + .offer.gc {
    left: calc(55% - 32px);
    right: auto;
    bottom: 240px;
  }

  html[lang=en] section.hero .offer strong {
    font-size: 40px;
  }
  
  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,
  section.hero .img::after {
    content: "";
    background-repeat: no-repeat;
    background-position: calc(50% - 180px) center;
    background-size: cover;
    position: absolute;
    top: -32px;
    left: -80px;
    right: -40px;
    bottom: -12px;
    transform: rotate(12deg);
    pointer-events: none;
    transition: opacity 1s ease;
  }

  section.hero .img::before {
    background-image: url(img/hero-mm.jpg);
    opacity: 1;
  }

  section.hero .img::after {
    background-image: url(img/hero-b2b.jpg);
    background-position: calc(50% - 240px) 75%;
    opacity: 0;
  }

  section.hero.hero-bg-gc .img::before {
    opacity: 0;
  }

  section.hero.hero-bg-gc .img::after {
    opacity: 1;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section.hero {
    padding-left: 0;
    padding-right: 0;
  }
  
  section.hero .info {
    min-height: 600px;
    max-width: 48%;
    padding: 88px 0 152px;
  }
  
  section.hero h1 {
    font-size: 48px;
    max-width: unset;
  }

  section.hero .info-wrap .arrows {
    bottom: 44px;
  }
  
  section.hero .offer {
    right: 44%;
    bottom: 215px;
  }
  
  section.hero .card {
    right: 26%;
    bottom: -36px;
  }
  
  section.hero .card .flipper, 
  section.hero .card .front, 
  section.hero .card .back {
    width: 340px;
    height: 215px;
  }
  
  section.hero .card.bundle + .offer,
  section.hero .card.bundle + .offer.gc {
    left: auto;
    right: 43%;
    bottom: 242px;
  }
  
  section.hero .img {
    height: 740px;
    top: 32px;
    left: 53%;
  }
  
  section.hero .img::before,
  section.hero .img::after {
    top: -40px;
    right: -100px;
    bottom: 120px;
    background-position: calc(50% - 80px) center;
  }
  
}

@media screen and (min-width: 1440px) {
  
  section.hero .container {
    max-width: 1376px;
  }

  section.hero .info {
    max-width: 45%;
  }
  
  section.hero .info .items {
    padding-left: 88px;
  }

  section.hero .cta .cc-btn span {
    margin-left: 8px;
    display: inline;
  }

  section.hero .info-wrap .arrows {
    left: 88px;
    bottom: 48px;
  }

  section.hero .card.bundle + .offer,
  section.hero .card.bundle + .offer.gc {
    right: 47.5%;
    bottom: 234px;
  }
  
  section.hero .img {
    top: 32px;
    left: 49%;
  }

  section.hero .img::before,
  section.hero .img::after {
    right: -120px;
  }
  
  section.hero .img video {
    left: -110px;
  }

  section.hero .card,
  section.hero .card.bundle.gc {
    right: 33%;
  }
  
}


/* Section - Dataconn */

section.dataconn {
  padding: 40px 0 72px;
}

section.dataconn .intro .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}

section.dataconn .intro h2 {
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 auto 18px;
}

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

section.dataconn .intro .desc {
  font-size: 20px;
  line-height: 1.4;
  max-width: 1080px;
  margin: 0 auto;
}

section.dataconn .items {
  margin-top: 120px;
  padding: 0 18px 8px;
}

section.dataconn .items .container {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 110px;
}

section.dataconn .items .item {
  flex: 1 1 100%;
}

section.dataconn .items .card-shell {
  background-color: #eaecf4;
  border-radius: 24px;
  padding: 8px 20px 32px;
  height: 100%;
  overflow: visible;
}

section.dataconn .items .card-shell > div {
  max-width: 350px;
  margin: 0 auto;
}

section.dataconn .items h3 {
  color: #002b4d;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 24px 0 -8px;
}

section.dataconn .card-shell .card-img {
  position: relative;
  margin-top: -100px;
  min-height: clamp(194px, 32vw, 300px);
  pointer-events: none;
}

section.dataconn .card-shell .card-img img {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: clamp(180px, 32vw, 300px);
  height: auto;
}

section.dataconn .card-shell .triple img:nth-child(1) {
  z-index: 1;
  transform: translate(-34%, 60px) rotate(-12deg);
}

section.dataconn .card-shell .triple img:nth-child(2) {
  z-index: 2;
  transform: translate(-50%, 40px) rotate(-12deg);
}

section.dataconn .card-shell .triple img:nth-child(3) {
  z-index: 3;
  transform: translate(-66%, 18px) rotate(-12deg);
}

section.dataconn .card-shell .double img:nth-child(1) {
  z-index: 1;
  transform: translate(-38%, 60px) rotate(-12deg);
}

section.dataconn .card-shell .double img:nth-child(2) {
  z-index: 2;
  transform: translate(-62%, 32px) rotate(-12deg);
}

section.dataconn .list {
  margin-top: 6px;
}

section.dataconn .list:first-of-type .panel-dark {
  margin-top: 0;
}

section.dataconn .panel {
  border-radius: 16px;
  padding: 18px 12px 16px 16px;
}

section.dataconn .panel-dark {
  background-color: #2e4291;
  color: #fff;
}

section.dataconn .list > h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: #2e4291;
  margin: 32px 0 12px;
}

section.dataconn .panel-light {
  background-color: #d5d9e9;
}

section.dataconn .panel ul {
  list-style: none;
}

section.dataconn .panel li {
  position: relative;
  padding: 8px 0 8px 26px;
  line-height: 1.2;
  font-size: 15px;
}

section.dataconn .panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background: url(img/icons/icon-check.svg) no-repeat center;
  background-size: 28px;
}

section.dataconn .panel-dark li::before {
  background-image: url(img/icons/icon-check-light.svg);
}

section.dataconn .panel li .iinfo {
  color: #fff;
  background-color: #7e8ab9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  margin: -2px 0 -2px 3px;
  vertical-align: middle;
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.15s linear, background-color 0.15s linear;
}

section.dataconn .panel li .iinfo.dataconn-tip-open {
  z-index: 20;
}

section.dataconn .panel li .iinfo::before {
  content: "i";
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

section.dataconn .panel li .iinfo .msg {
  position: fixed;
  left: 0;
  top: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 300px;
  max-width: calc(100vw - 32px);
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease-out,
    transform 0.22s ease-out,
    visibility 0.22s;
  z-index: 10050;
  border: 0 none;
  outline: none;
}

section.dataconn .panel li .iinfo.dataconn-tip-open .msg {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

section.dataconn .panel li .iinfo .msg > div {
  color: #002b4d;
  font-family: Inter, Roboto, sans-serif, arial, Helvetica;
  font-size: 12px;
  line-height: 1.45;
  padding: 14px 16px;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 12px 40px rgb(0 42 84 / 14%);
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

section.dataconn .panel li .iinfo .msg p:not(:last-child) {
  padding-bottom: 10px;
}

section.dataconn .panel li .iinfo:hover,
section.dataconn .panel li .iinfo:focus-visible {
  opacity: 0.92;
}

section.dataconn .panel-dark li .iinfo:hover,
section.dataconn .panel-dark li .iinfo:focus-visible {
  opacity: 1;
}

section.dataconn .panel-dark li .iinfo:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

section.dataconn .panel-light li .iinfo:focus-visible {
  outline: 2px solid #2e4291;
  outline-offset: 2px;
}


section.dataconn .fees-block {
  margin-top: 32px;
}

section.dataconn .fees-heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: #2e4291;
  margin-bottom: 18px;
}

section.dataconn .fee-row {
  color: #002b4d;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
}

section.dataconn .fee-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

section.dataconn .fee-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

section.dataconn .fee-price {
  display: block;
  width: 100%;
}

section.dataconn .fee-price strong {
  font-weight: 700;
  margin-right: 10px;
}

section.dataconn .fee-price s {
  opacity: 0.5;
}

section.dataconn .fee-note {
  font-family: Inter, Roboto, sans-serif, arial, Helvetica;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  margin-top: 6px;
}

section.dataconn .col-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

section.dataconn .item .more {
  color: #2e4291;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

section.dataconn .item .more:hover {
  text-decoration: underline;
}

section.dataconn .item .more img {
  width: 24px;
  height: auto;
  flex-shrink: 0;
}

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

  html[lang=de] section.dataconn .intro h2 {
    font-size: 30px;
  }

  html[lang=de] section.dataconn .intro .desc {
    font-size: 18px;
  }

}

@media screen and (min-width: 769px) {
  
  section.dataconn {
    padding: 80px 0 40px;
  }

  section.dataconn .items {
    margin-top: 124px;
    padding: 0 24px 32px;
  }

  section.dataconn .items .container {
    max-width: 1344px;
    flex-wrap: nowrap;
    gap: 24px;
  }

  section.dataconn .items .item {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
  }

  section.dataconn .intro h2 {
    font-size: 48px;
    margin-bottom: 22px;
  }

  section.dataconn .intro h2 br {
    display: inline;
  }

  section.dataconn .items .card-shell {
    padding: 16px 24px 44px;
  }

  section.dataconn .card-shell .card-img {
    margin-top: -110px;
    min-height: clamp(220px, 26vw, 300px);
  }

  section.dataconn .card-shell .card-img img {
    width: clamp(180px, 26vw, 300px);
  }

  section.dataconn .card-shell .triple img:nth-child(1) {
    transform: translate(-34%, 72px) rotate(-12deg);
  }
  
  section.dataconn .card-shell .triple img:nth-child(2) {
    transform: translate(-50%, 44px) rotate(-12deg);
  }
  
  section.dataconn .card-shell .triple img:nth-child(3) {
    transform: translate(-66%, 14px) rotate(-12deg);
  }

  section.dataconn .panel {
    display: flex;
    align-items: center;
  }

}

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

  section.dataconn .intro h2 {
    font-size: 60px;
    margin-bottom: 24px;
  }

  section.dataconn .intro .desc {
    font-size: 22px;
  }

  section.dataconn .items {
    padding: 0 40px 32px;
    margin-top: 170px;
  }

  section.dataconn .items .container {
    gap: 32px;
  }

  section.dataconn .items .item {
    flex: 1 1 calc(50% - 16px);
  }

  section.dataconn .items .card-shell {
    padding: 8px 36px 46px;
  }

  section.dataconn .items .card-shell > div {
    max-width: 500px;
  }

  section.dataconn .card-shell .card-img {
    margin-top: -120px;
  }

  section.dataconn .card-shell .triple img:nth-child(1) {
    transform: translate(-34%, 70px) rotate(-12deg);
  }
  
  section.dataconn .card-shell .triple img:nth-child(2) {
    transform: translate(-50%, 38px) rotate(-12deg);
  }
  
  section.dataconn .card-shell .triple img:nth-child(3) {
    transform: translate(-66%, 6px) rotate(-12deg);
  }

  section.dataconn .card-shell .double img:nth-child(2) {
    transform: translate(-62%, 20px) rotate(-12deg);
  }

  section.dataconn .items h3 {
    font-size: 24px;
    line-height: 1.1;
  }

  section.dataconn .fee-name,
  section.dataconn .fee-price {
    font-size: 24px;
    line-height: 1.1;
  }

  section.dataconn .list > h4 {
    font-size: 18px;
  }

  section.dataconn .fees-heading {
    font-size: 18px;
  }

  section.dataconn .panel {
    border-radius: 24px;
    padding: 32px;
  }

  section.dataconn .panel li {
    font-size: 16px;
    line-height: 1.3;
    padding: 6px 0 6px 32px;
  }

  section.dataconn .panel li::before {
    top: 5px;
  }

  section.dataconn .item .more {
    font-size: 18px;
    gap: 10px;
  }

  section.dataconn .item .more img {
    width: 32px;
  }

}

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

  section.dataconn {
    padding-bottom: 0;
  }

  section.dataconn .intro h2 {
    font-size: 80px;
  }

  section.dataconn .intro .desc {
    font-size: 24px;
  }

  section.dataconn .items {
    margin-top: 210px;
  }

  section.dataconn .items .container {
    gap: 40px;
  }

  section.dataconn .items h3 {
    font-size: 32px;
    line-height: 1;
  }

  section.dataconn .fee-name,
  section.dataconn .fee-price {
    font-size: 32px;
    line-height: 1;
  }

  section.dataconn .card-shell .card-img {
    min-height: 340px;
    margin-top: -160px;
  }

  section.dataconn .card-shell .card-img img {
    width: 320px;
  }

  section.dataconn .card-shell .triple img:nth-child(1) {
    transform: translate(-31%, 100px) rotate(-12deg);
  }
  
  section.dataconn .card-shell .triple img:nth-child(2) {
    transform: translate(-50%, 60px) rotate(-12deg);
  }
  
  section.dataconn .card-shell .triple img:nth-child(3) {
    transform: translate(-69%, 20px) rotate(-12deg);
  }

  section.dataconn .card-shell .double img:nth-child(1) {
    transform: translate(-40%, 80px) rotate(-12deg);
  }

  section.dataconn .card-shell .double img:nth-child(2) {
    transform: translate(-62%, 34px) rotate(-12deg);
  }

  section.dataconn .list > h4 {
    margin: 44px 0 14px;
    display: flex;
    align-items: flex-end;
  }

  section.dataconn .fees-block {
    margin-top: 44px;
  }

  section.dataconn .fees-heading {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-end;
  }

  section.dataconn .col-footer {
    margin-top: 56px;
    flex-direction: row;
    justify-content: space-between;
  }

}

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

  section.dataconn .items .container {
    gap: 64px;
  }

  section.dataconn .items .card-shell {
    padding: 8px 72px 48px;
  }

}


/* Section - Labels */

section.labels {
  padding-bottom: 60px;
}

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 {
    padding: 40px 0 100px;
  }
  
  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: 1281px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.labels {
    padding: 100px 0;
  }
  
}


/* 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 24px;
  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 .lead {
  margin: 0 auto 32px;
  padding: 0 16px;
  max-width: 760px;
  text-align: center;
}

#cc_popup .lead .title {
  font-size: clamp(30px, 4.2vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

#cc_popup .lead p {
  font-size: clamp(18px, 3.2vw, 20px);
}

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

#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: 10px;
  min-height: 80px;
  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;
  }
  
}


/* Footer */

footer {
  font-size: 14px;
  font-weight: 400;
  font-family: 'Inter', 'Roboto', sans-serif, arial;
  line-height: 1.4;
  background-color: #d5d9e9;
  position: relative;
  z-index: 1;
}

footer::before {
  content: "";
  display: block;
  height: 56px;
  width: 100%;
  background-color: #fff;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

footer .container {
  text-align: center;
  padding: 24px;
}

footer .menu a {
  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;
  }
  
}

@media screen and (min-width: 993px) {
  
  footer .container {
    text-align: left;
    padding: 40px;
  }

  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;
    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::after,
section.hero .video,
section.hero .container {
  transform-origin: top;
  transform: translateY(0px);
  animation: hero-anim1 .5s ease-out;
}

section.hero .info .items::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 .items::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;
  }
  
}
