
/* Fonts */

@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;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/fonts/HelveticaNeue-Light.eot');
    src: local('fonts/HelveticaNeue-Light'),
        url('fonts/HelveticaNeue-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/HelveticaNeue-Light.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Light.woff') format('woff'),
        url('fonts/HelveticaNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Roman.eot');
    src: local('fonts/HelveticaNeue-Roman'),
        url('fonts/HelveticaNeue-Roman.eot?#iefix') format('embedded-opentype'),
        url('fonts/HelveticaNeue-Roman.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Roman.woff') format('woff'),
        url('fonts/HelveticaNeue-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Bold.eot');
    src: local('fonts/HelveticaNeue-Bold'),
        url('fonts/HelveticaNeue-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/HelveticaNeue-Bold.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Bold.woff') format('woff'),
        url('fonts/HelveticaNeue-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}


/* Generic rules */

:focus {
  outline: none;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  border: 0;
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  color: #fff;
  background-color: #4864e2;
  display: flex;
  flex-direction: column;
  transition: background-color .2s ease;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  word-wrap: break-word;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-weight: 700;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #fff;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}


/* Button */

.cc-btn, .cc-btn:visited {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding: 4px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e60050;
  min-height: 56px;
  border: 0 none;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  transition: all .1s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cc-btn:hover {
  background-color: #c50145;
}


/* Header */

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

header .container {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

header .logo a {
  display: block;
  padding: 24px 18px 26px;
}

header .logo img {
  display: block;
  width: 141px;
  max-width: 100%;
}

header .langs {
  padding-right: 18px;
  margin-top: 2px;
  white-space: nowrap;
}

header .langs a,
header .langs a:hover,
header .langs span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-left: 10px;
  transition: color .1s linear;
}
header .langs span,
header .langs a:hover {
  color: #fff;
}

header .langs > *:first-child {
  margin-left: 0;
}

header .langs span {
  font-weight: 700;
  opacity: 1;
}

@media screen and (min-width: 769px) {
  
  header .logo {
    flex: 0 0 auto;
  }
  
  header .primary .logo img {
    width: 251px;
  }
  
  header .primary .logo a {
    padding: 34px 0 40px 40px;
  }
  
  header .langs {
    padding-right: 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  header .primary .logo a {
    padding: 34px 0 40px 40px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  header .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header .primary .logo a {
    padding-left: 0;
  }
  
  header .logo img {
    width: 202px;
  }
  
  header .langs {
    padding-right: 0;
  }
  
}


/* Main */

main {
  flex: 1 0 auto;
  overflow: hidden;
  position: relative;
}

main img {
  max-width: 100%;
  display: block;
}


/* Sections */

section {
  position: relative;
  background-color: #4864e2;
}

section.intro {
  color: #fff;
}

section.intro .container {
  padding-top: 90px;
  padding-bottom: 68px;
}

section.intro .container > .info {
  padding: 0 16px;
}

section.intro .item {
  text-align: center;
  padding: 32px 16px;
  margin: 0 auto 32px;
  max-width: 525px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.15);
}

section.intro .title {
  display: flex;
  justify-content: center;
}
section.intro h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin-top: 6px;
}

section.intro h3 {
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

section.intro h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: right;
  padding-right: 12px;
}

section.intro h4 br {
  display: none;
}

section.intro .item .img {
  padding: 16px 24px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.intro .item .img img {
  width: 320px;
  filter: drop-shadow(16px 16px 32px rgba(1, 10, 50, 0.3));
}

section.hero {
  min-height: 100vh;
  overflow: hidden;
  z-index: 0;
}

section.hero .primary {
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

section.hero .primary .container {
  padding-top: 90px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  min-height: 40vh;
}

section.hero h1 {
  font-size: 36px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.72px;
  max-width: 450px;
  margin: 20px 0 16px;
}

section.hero h3 {
  font-size: 14px;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  line-height: 1.25;
}

section.hero .desc {
  font-size: 18px;
  line-height: 1.2;
  max-width: 500px;
}

section.hero .cta {
  margin: 32px 0 48px;
}

section.hero .cta .msg {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12px;
  background-image: url(img/icons/icon-corner.svg);
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: left 1px;
  padding-left: 26px;
  margin-top: 14px;
}

section.hero .partner img {
  width: 100px;
}

section.hero .secondary {
  display: flex;
  position: relative;
  min-height: 50vh;
  margin-top: 8px;
  margin-bottom: -92px;
}

section.hero .secondary .container {
  background-image: url(img/hero-bg-mb.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: -200px center;
  min-height: 680px;
  flex: 1 1 100%;
}

section.hero .secondary .cards {
  position: absolute;
  top: 16px;
  left: 38px;
  z-index: 1;
  max-width: 70%;
}

section.hero .secondary .cards .card1 {
  width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-16deg);
  filter: drop-shadow(18px 16px 32px rgba(1, 10, 50, 0.3));
  z-index: 1;
}

section.hero .secondary .cards .card2 {
  width: 284px;
  transform: rotate(-9deg) translate(40px, 46px);
  filter: drop-shadow(18px 16px 46px rgba(2, 23, 79, 0.5));
}

section.hero .secondary .offer {
  position: absolute;
  bottom: -36px;
  left: -44px;
  z-index: 2;
}

section.hero .secondary .img {
  position: absolute;
  top: 58px;
  left: 140px;
  height: 1200px;
  width: 1200px;
  border-radius: 70px;
  box-shadow: 0 0 0 9999px #4864e2;
  transform: rotate(-14deg);
  z-index: 0;
}

.no-hero-cards section.hero .secondary {
  margin-top: -140px;
}

.no-hero-cards section.hero .secondary .cards {
  display: none;
}

.no-hero-cards section.hero .secondary .img {
  left: 122px;
  transform: rotate(-12deg);
}

section.usp .container {
  padding: 80px 0 0;
}

section:not(.theme-white) + section.usp:not(.theme-white) .container {
  padding-top: 0;
}

section.usp h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 58px;
  padding: 0 18px;
}

section.usp .items {
  padding: 0 18px;
}

section.usp .item {
  color: #1d2859;
  text-align: center;
  margin: 24px auto;
  max-width: 440px;
}

section.usp .item > div {
  background-color: #edf0fc;
  border-radius: 20px;
  padding: 24px 24px 32px;
  min-height: 220px;
}

section.usp .item .icon img {
  width: 64px;
  margin: 0 auto;
}

section.usp .item h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 16px 0 12px;
}

section.usp .item .desc {
  font-size: 16px;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  font-weight: 300;
  line-height: 1.2;
}

section.usp .offer {
  font-weight: 700;
  padding: 40px 24px;
}

section.usp .offer h4 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 16px 0;
}

section.usp .offer h5 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 4px 0;
}

section.usp .offer span {
  color: #ff4b00;
  font-size: 18px;
  margin: 0 8px;
}

section.usp .offer span.old {
  text-decoration: line-through;
  opacity: 0.3;
}

section.usp-cards .container {
  padding: 80px 0;
}

section.usp-cards h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 58px;
  padding: 0 18px;
}

section.usp-cards .items {
  padding: 1px 18px;
}

section.usp-cards .item {
  color: #1d2859;
  margin: 24px auto;
  max-width: 440px;
  -webkit-tap-highlight-color: transparent;
}

section.usp-cards .item > div {
  background-color: #edf0fc;
  border-radius: 20px;
  overflow: hidden;
}

section.usp-cards .item .primary {
  padding: 32px 30px 0;
  position: relative;
  z-index: 1;
}

section.usp-cards .item h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

section.usp-cards .item .desc {
  font-size: 18px;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  font-weight: 300;
  line-height: 1.2;
}

section.usp-cards .item .desc p:not(:first-child) {
  margin-top: 16px;
}

section.usp-cards .item .secondary {
  display: flex;
  position: relative;
  margin-top: -24px;
  margin-bottom: -168px;
}

section.usp-cards .item .secondary .holder {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  flex: 1 1 100%;
}

section.usp-cards .item:first-child .secondary .holder {
  background-image: url(img/cc-b2c2.jpg);
}

section.usp-cards .item:last-child .secondary .holder {
  background-image: url(img/cc-b2c2.jpg);
}

section.usp-cards .item .secondary .img {
  position: absolute;
  top: 0;
  left: 94px;
  height: 1000px;
  width: 1000px;
  border-radius: 70px;
  box-shadow: 0 0 0 9999px #edf0fc;
  transform: rotate(-10deg);
  z-index: 0;
}

section.usp-illustration {
  background-color: #fff;
}

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: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 52px;
  padding: 0 18px;
}

section.usp-illustration .items {
  padding: 0 18px;
}

section.usp-illustration .item {
  color: #1d2859;
  text-align: center;
  margin: 0 auto;
  max-width: 320px;
}

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: 'Helvetica Neue', sans-serif, arial, Helvetica;
  line-height: 1.2;
}

section.usp-icon .container {
  padding: 80px 0 40px;
}

section:not(.theme-white) + section.usp-icon:not(.theme-white) .container {
  padding-top: 0;
}

section.usp-icon.mb-slider .container {
  padding-bottom: 110px;
}

section.usp-icon h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 48px;
  padding: 0 18px;
}

section.usp-icon .items {
  padding: 0 18px;
}

section.usp-icon .item {
  text-align: center;
  margin: 0 auto;
  max-width: 320px;
}

section.usp-icon:not(.mb-slider) .item > div {
  padding-bottom: 64px;
}

section.usp-icon .item .icon img {
  width: 64px;
  margin: 0 auto;
}

section.usp-icon .item h3 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 24px 0 12px;
}

section.usp-icon .item .desc {
  font-size: 16px;
  font-weight: 300;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  line-height: 1.2;
}

section.shape-text {
  display: flex;
  flex-flow: column-reverse;
  overflow: hidden;
  z-index: 0;
}

section.shape-text .primary {
  padding: 0 18px;
  margin-top: -18px;
  position: relative;
  z-index: 1;
}

section.shape-text .primary .container {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

section.shape-text h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

section.shape-text .desc {
  font-size: 18px;
  font-weight: 300;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

section.shape-text .desc p:not(:first-child) {
  margin-top: 16px;
}

section.shape-text .secondary {
  display: flex;
  position: relative;
}

section.shape-text .secondary .container {
  background-image: url(img/cc-b2c1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 440px;
  flex: 1 1 100%;
}

section.shape-text .secondary .img {
  position: absolute;
  bottom: 22px;
  left: 124px;
  height: 1200px;
  width: 1200px;
  border-radius: 70px;
  box-shadow: 0 0 0 9999px #4864e2;
  transform: rotate(12deg);
  z-index: 0;
}

section.shape-text.reverse .secondary .img {
  left: auto;
  right: 124px;
  transform: rotate(-12deg);
}

section.sticker .container {
  padding: 80px 16px;
}

section.sticker .container > div {
  padding: 40px 0;
  border-radius: 18px;
  background-color: #2e46d5;
  max-width: 400px;
  margin: 0 auto;
}

section.sticker .img img {
  margin: 0 auto;
}

section.sticker .img:first-child img {
  width: 154px;
}

section.sticker .img:last-child img {
  width: 160px;
}

section.sticker .info {
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  padding: 0 32px;
  margin: 30px auto 24px;
  max-width: 500px;
}

section.accordion .container {
  padding: 80px 0 64px;
}

section:not(.theme-white) + section.accordion:not(.theme-white) .container {
  padding-top: 0;
}

section.accordion h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 52px;
  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-repeat: no-repeat;
  background-size: 64px;
  background-position: center top;
  padding-top: 90px;
}

section.accordion .item:nth-child(1) .title {
  background-image: url(img/icons/07-ass-viaggi.svg);
}

section.accordion .item:nth-child(2) .title {
  background-image: url(img/icons/08-ass-protezione-acquisti.svg);
}

section.accordion .item:nth-child(3) .title {
  background-image: url(img/icons/09-ass-protezione-giuridica.svg);
}

section.accordion .item:nth-child(4) .title {
  background-image: url(img/icons/10-ass-garanzia-miglior-prezzo.svg);
}

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: 'Helvetica Neue', sans-serif, arial, Helvetica;
  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: 'Helvetica Neue', sans-serif, arial, Helvetica;
  line-height: 1.2;
  padding: 0 8px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all .2s ease;
}

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[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: #edf0fc;
  background-color: #8d9eea;
  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: #edf0fc;
}

section.mb-slider.usp-illustration .tns-nav button {
  background-color: #dae0f9;
}

section.mb-slider.usp-illustration .tns-nav button.tns-nav-active {
  background-color: #4864e2;
}

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;
}

@media screen and (max-width: 768px) {
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) > div {
    min-height: 420px;
    position: relative;
    cursor: pointer;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) .primary {
    flex: 1 1 auto;
    padding: 32px;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) .desc {
    opacity: 0;
    transition: opacity 0.25s linear;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #edf0fc;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary .holder {
    transition: transform 0.25s ease-in-out, opacity 0.25s linear;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary .img {
    top: 54px;
    left: 100px;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) > div:hover .secondary .holder {
    transform: translate(100%, 100%);
    opacity: 0;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) > div:hover .desc {
    opacity: 1;
  }
  
  section.usp-illustration.mb-slider .item.tns-item,
  section.usp-icon.mb-slider .item.tns-item {
    opacity: 0;
    transition: opacity 0.2s linear;
  }
  
  section.usp-illustration.mb-slider .item.tns-item.tns-slide-active,
  section.usp-icon.mb-slider .item.tns-item.tns-slide-active {
    opacity: 1;
  }
  
  section.usp-cards .item:nth-child(2) .secondary {
    transform: scale(-1, 1);
  }
  
}

@media screen and (min-width: 769px) {
  
  section.intro {
    position: relative;
  }
  
  section.intro .container {
    padding-top: 120px;
  }
  
  section.intro .items {
    display: flex;
  }
  
  section.intro .item {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
  }
  
  section.intro .item:first-child {
    margin-right: 32px;
  }
  
  section.intro h3 {
    padding: 0 16px;
  }
  
  section.intro .item .img {
    flex: 1 1 0%;
    align-items: flex-start;
  }
  
  section.hero .primary {
    padding: 0 40px;
    text-align: left;
  }
  
  section.hero .primary .container {
    padding-top: 140px;
  }
  
  section.hero .primary h1 {
    font-size: 48px;
    line-height: 1.05;
  }
  
  section.hero h1 span {
    white-space: nowrap;
  }
  
  section.hero .cta {
    margin-bottom: 56px;
  }
  
  section.hero .partner img {
    width: 160px;
  }
  
  section.hero .secondary {
    margin-top: -100px;
    margin-bottom: 0;
  }
  
  section.hero .secondary .container {
    background-position: 200px center;
    min-height: 760px;
  }
  
  section.hero .secondary .img {
    top: 24px;
    left: 368px;
  }
  
  section.hero .secondary .cards {
    top: 340px;
    left: 92px;
  }
  
  section.hero .secondary .cards .card1 {
    width: 335px;
    left: -36px;
    filter: drop-shadow(24px 32px 32px rgba(1, 10, 50, 0.6));
  }
  
  section.hero .secondary .cards .card2 {
    width: 335px;
    filter: drop-shadow(18px 16px 46px rgba(2, 23, 79, 0.75));
  }
  
  section.hero .secondary .offer {
    bottom: -48px;
    left: -64px;
  }
  
  .no-hero-cards section.hero .secondary {
    margin-top: -110px;
  }
  
  .no-hero-cards section.hero .secondary .container {
    min-height: 760px;
    background-position: 92px center;
  }
  
  .no-hero-cards section.hero .secondary .img {
    top: 50px;
    left: 220px;
  }
  
  section.usp:not(.extended-wrap) .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  section.usp .row .item {
    flex: 1 1 0%;
    padding: 16px;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
  }
  
  section.usp .item > div {
    min-height: 190px;
    padding-left: 18px;
    padding-right: 18px;
    flex: 1 1 auto;
  }
  
  section.usp h2 {
    margin-bottom: 40px;
  }
  
  section.usp .offer {
    text-align: center;
  }
  
  section.usp.mb-slider.extended-wrap .row {
    display: block;
  }
  
  section.usp.mb-slider .item.tns-item {
    padding: 16px;
    margin: 0 auto;
    display: flex;
    max-width: 440px;
  }
  
  section.usp-cards .items {
    padding: 1px 24px;
  }
  
  section.usp-cards .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -16px;
    margin-bottom: -16px;
  }
  
  section.usp-cards .item {
    padding: 0 16px;
    margin: 16px 0;
    display: flex;
    flex: 1 1 auto;
    max-width: 834px;
  }
  
  section.usp-cards .item > div {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 380px;
    flex: 1 1 auto;
  }
  
  section.usp-cards .item .primary {
    flex: 0 1 45%;
    padding: 40px;
  }
  
  section.usp-cards .item h3 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  section.usp-cards .item .secondary {
    flex: 1 1 auto;
    margin-top: 0;
    margin-bottom: -120px;
  }
  
  section.usp-cards .item .secondary .img {
    transform: rotate(-12deg);
  }
  
  section.usp-cards .item:not(:first-child:last-child) {
    flex: 1 1 33.33%;
    max-width: 50%;
  }
  
  section.usp-cards .item:not(:first-child:last-child) > div {
    min-height: 513px;
    cursor: pointer;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .primary {
    flex: 1 1 auto;
    padding: 32px;
    max-width: 100%;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .desc {
    opacity: 0;
    transition: opacity .25s linear;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .secondary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #edf0fc;
  }
  
  .theme-white section.usp-cards .item:not(:first-child:last-child) .secondary,
  section.theme-white.usp-cards .item:not(:first-child:last-child) .secondary {
    background-color: #4864e2;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .secondary .holder {
    transition: transform 0.25s ease-in-out, opacity 0.25s linear;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .secondary .img {
    top: 32px;
    left: 112px;
  }
  
  section.usp-cards .item:not(:first-child:last-child) > div:hover .secondary .holder {
    transform: translate(100%, 100%);
    opacity: 0;
  }
  
  section.usp-cards .item:not(:first-child:last-child) > div:hover .desc {
    opacity: 1;
  }
  
  section.usp-illustration h2 {
    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-icon:not(.mb-slider) .items {
    padding: 0 16px;
  }
  
  section.usp-icon .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  section.usp-icon .row .item {
    flex: 0 0 33.33%;
    display: flex;
    margin: 24px 0;
  }
  
  section.usp-icon .item > div {
    min-height: 190px;
    padding: 24px;
    flex: 1 1 auto;
  }
  
  section.usp-icon .item .icon img {
    width: 48px;
  }
  
  section.usp-icon.mb-slider .container {
    padding-bottom: 72px;
  }
  
  section.usp-icon.mb-slider .item > div {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  section.usp-icon.mb-slider .item.tns-item {
    margin: 32px 0;
    flex: 0 0 33.33%;
    display: flex;
  }
  
  section.shape-text {
    flex-flow: row;
  }
  
  section.shape-text.reverse {
    flex-flow: row-reverse;
  }
  
  section.shape-text .primary {
    flex: 1 1 50%;
    padding: 40px;
    margin: 0;
    display: flex;
    align-items: center;
  }
  
  section.shape-text .primary .container {
    padding-bottom: 64px;
  }
  
  section.shape-text .secondary {
    flex: 1 1 50%;
  }
  
  section.shape-text .secondary .container {
    min-height: 540px;
  }
  
  section.sticker .container {
    padding: 80px 40px;
  }
  
  section.sticker .container > div {
    padding: 32px;
    display: flex;
    align-items: center;
    max-width: 802px;
  }
  
  section.sticker .img:first-child {
    flex: 0 0 154px;
  }
  
  section.sticker .img:last-child {
    flex: 0 0 101px;
    margin-left: auto;
  }
  
  section.sticker .info {
    text-align: left;
    flex: 0 1 500px;
    margin: 0;
  }
  
  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 {
    font-size: 16px;
    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.tb-slider .items {
    padding: 0;
    outline: none;
    user-select: none;
  }

  section.tb-slider .row {
    display: flex;
    margin: 0;
  }

  section.tb-slider .item.tns-item {
    display: inline-flex;
    padding: 0 16px;
    margin: 0;
    max-width: unset;
  }

  section.tb-slider .item.tns-item > div {
    flex: 1 1 auto;
  }

}

@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;
  }
  
  section.usp-icon .item h3 {
    font-size: 18px;
  }
  
  section.tb-slider .item:not(:first-child:last-child) .primary {
    flex: 0 1 45%;
    padding: 40px;
  }
  
  section.tb-slider .item:not(:first-child:last-child) .secondary {
    position: relative;
  }
  
  section.tb-slider .item:not(:first-child:last-child) .desc {
    opacity: 1;
  }
  
  section.tb-slider .item:not(:first-child:last-child) > div {
    cursor: default;
  }
  
  section.tb-slider .item:not(:first-child:last-child) > div:hover .secondary .img {
    transform: rotate(-12deg);
  }
  
}

@media screen and (min-width: 993px) {
  
  section.intro .container {
    padding-top: 140px;
    padding-bottom: 120px;
  }
  
  section.intro .item {
    padding-top: 40px;
  }
  
  section.intro h1 {
    font-size: 100px;
    margin-top: 12px;
  }
  
  section.intro h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
  }
  
  section.intro h4 {
    margin-top: -6px;
  }
  
  section.intro .item .img {
    padding-bottom: 24px;
    margin-top: -24px;
    justify-content: flex-start;
  }
  
  section.hero {
    display: flex;
    justify-content: space-between;
    min-height: unset;
  }
  
  section.hero .primary {
    flex: 1 1 50%;
    padding-right: 28px;
    padding-bottom: 94px;
  }
  
  section.hero .secondary {
    flex: 1 1 50%;
    min-height: unset;
    margin: 0;
  }
  
  section.hero .secondary .container {
    background-image: url(img/hero-bg.jpg);
    background-position: left center;
    min-height: unset;
  }
  
  section.hero .secondary .cards {
    top: auto;
    bottom: 130px;
    left: 50px;
    max-width: 60%;
  }
  
  section.hero .secondary .img {
    top: 40px;
    left: 174px;
    transform: rotate(-12deg);
  }
  
  .no-hero-cards section.hero .secondary {
    margin-top: 0;
  }
  
  .no-hero-cards section.hero .secondary .container {
    background-position: center;
    min-height: unset;
  }
  
  .no-hero-cards section.hero .secondary .img {
    left: 100px;
  }
  
  section.usp .container {
    padding: 104px 0 68px;
  }
  
  section.usp h2 {
    font-size: 48px;
    margin-bottom: 80px;
  }
  
  section.usp.extended-wrap .row,
  section.usp.mb-slider.extended-wrap .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  section.usp .item {
    max-width: unset;
  }
  
  section.usp .item > div {
    padding: 32px 24px;
  }
  
  section.usp-cards .container {
    padding-bottom: 120px;
  }
  
  section.usp-cards h2 {
    font-size: 48px;
    margin-bottom: 80px;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .primary {
    padding: 40px;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .secondary .img {
    top: 80px;
  }
  
  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-icon .container {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  
  section.usp-icon h2 {
    font-size: 48px;
    padding-bottom: 16px;
  }
  
  section.usp-icon .item {
    max-width: unset;
  }
  
  section.usp-icon:not(.mb-slider) .item > div {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  section.shape-text.reverse {
    padding-bottom: 40px;
  }
  
  section.shape-text .primary {
    padding-left: 40px;
    padding-right: 60px;
    flex: 1 1 55%;
  }
  
  section.shape-text.reverse .primary {
    padding-left: 60px;
    padding-right: 40px;
  }
  
  section.shape-text .secondary {
    flex: 1 1 45%;
  }
  
  section.shape-text .primary .container {
    margin-left: 0;
  }
  
  section.sticker .container > div {
    padding: 24px;
    max-width: 832px;
  }
  
  section.accordion .container {
    padding-bottom: 96px;
  }
  
  section.accordion h2 {
    font-size: 48px;
    margin-bottom: 80px;
  }
  
  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;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.intro .container > .info {
    padding: 0;
  }
  
  section.intro .item {
    max-width: unset;
    padding-bottom: 48px;
    background-color: #8d9eea;
    position: relative;
    overflow: hidden;
  }
  
  section.intro .item .info,
  section.intro .item .img,
  section.intro .item .cta {
    position: relative;
    z-index: 1;
  }
  
  section.intro .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top-left-radius: 56px;
    border-bottom-left-radius: 56px;
    opacity: 0.32;
    background-color: #4864e2;
    z-index: 0;
    transform: rotate(-12deg) translate(44px, 120px);
  }
  
  section.intro .item:first-child {
    margin-right: 48px;
  }
  
  section.intro .item:last-child h4 {
    margin-right: -44px;
  }
  
  section.intro .item .img {
    margin-top: -78px;
  }
  
  section.intro h1 {
    font-size: 140px;
    margin-top: 6px;
  }
  
  section.intro h4 br {
    display: inline;
  }
  
  section.hero {
    display: block;
  }
  
  section.hero .primary {
    padding: 0 0 94px;
  }
  
  section.hero .primary .container > * {
    max-width: 500px;
  }
  
  section.hero .primary .container > h1 {
    max-width: 450px;
  }
  
  section.hero .secondary {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  
  section.hero .secondary .container {
    background-position: left -100px;
  }
  
  section.hero .secondary .cards {
    left: -15px;
  }
  
  .no-hero-cards section.hero .secondary {
    width: 54%;
  }
  
  .no-hero-cards section.hero .secondary .img {
    top: 0;
  }
  
  .v2 section.hero .secondary,
  section.hero.v2 .secondary {
    width: 58%;
  }
  
  .v2 section.hero .secondary .cards,
  section.hero.v2 .secondary .cards {
    left: 350px;
  }
  
  .v2 section.hero .secondary .img,
  section.hero.v2 .secondary .img {
    top: auto;
    bottom: 195px;
    left: 0;
  }
  
  section.usp .items {
    padding: 0;
    margin: 0 -16px;
  }
  
  section.usp .item > div {
    padding: 32px;
  }
  
  section.usp-cards .items {
    padding: 1px 0;
    margin: 0 -16px;
  }
  
  section.usp-cards .item {
    max-width: unset;
    padding: 0 16px;
  }
  
  section.usp-cards .item .secondary {
    margin-top: -18px;
  }
  
  section.usp-cards .item .secondary .holder {
    min-height: 632px;
  }
  
  section.usp-cards .item .desc {
    max-width: 470px;
  }
  
  section.usp-illustration .items {
    padding: 0;
    margin: 0 -16px;
  }
  
  section.usp-illustration .item > div {
    padding: 32px;
  }
  
  section.usp-icon .items {
    padding: 0;
    margin: 0 -16px;
  }
  
  section.shape-text:not(.reverse) .primary {
    padding: 0;
  }
  
  section.shape-text.reverse .primary {
    padding-left: 100px;
  }
  
  section.shape-text:not(.reverse) .primary .container {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 620px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.shape-text.reverse .primary .container {
    padding-bottom: 92px;
    max-width: 580px;
  }
  
  section.shape-text h2 {
    font-size: 48px;
  }
  
  section.shape-text:not(.reverse) h2 {
    max-width: 600px;
  }
  
  section.shape-text .desc {
    max-width: 480px;
  }
  
  section.shape-text .secondary .container {
    min-height: 640px;
  }
  
  section.shape-text .secondary .img {
    bottom: 80px;
  }
  
  section.shape-text:not(.reverse) .secondary {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  
}

@media screen and (min-width: 1451px) {
  
  section .container {
    max-width: 1320px;
  }
  
  section.intro .item:first-child {
    margin-left: 72px;
  }
  
}


/* 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: 20px;
  left: 18px;
  right: 18px;
  z-index: 10;
  transform: translateY(calc(100% + 40px));
  transition: transform .25s ease;
}

#sticky.show {
  transform: none;
}

#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 .cc-btn {
  font-size: 10px;
  white-space: nowrap;
  min-height: 36px;
  padding: 2px 16px;
}

#sticky .cta .cc-btn span {
  padding-right: 8px;
}


@media screen and (max-width: 768px) {
  
  #sticky .cta .cc-btn span {
    display: none;
  }
  
}

@media screen and (min-width: 769px) {
  
  #sticky {
    background-image: url(img/mm-cards.png);
    background-repeat: no-repeat;
    background-size: 56px;
    background-position: 10px center;
    padding-left: 84px;
    bottom: 40px;
  }
  
  #sticky .msg {
    font-size: 14px;
    letter-spacing: 0.14px;
    padding-top: 2px;
    margin-right: 24px;
  }

  #sticky .cta .cc-btn {
    font-size: 18px;
    min-height: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
}


/* Footer */

footer {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  line-height: 1.4;
}

footer .container {
  text-align: center;
  padding: 24px 24px 124px;
}

footer.no-sticky .container {
  padding-bottom: 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;
  padding-top: 8px;
}

@media screen and (min-width: 769px) {
  
  footer .container {
    padding: 24px 40px 164px;
  }
  
}

@media screen and (min-width: 993px) {
  
  footer .container {
    text-align: left;
    padding-bottom: 140px;
  }

  footer .menu {
    float: left;
    position: relative;
    z-index: 1;
  }

  footer .copyright {
    text-align: right;
    padding-top: 0;
  }
  
}

@media screen and (min-width: 1281px) {
  
  footer {
    font-size: 16px;
    font-weight: 300;
  }
  
  footer .container {
    max-width: 1200px;
    padding: 24px 0 140px;
    margin: 0 auto;
  }
  
  footer .copyright {
    font-size: 16px;
  }
  
}


/* IE11/Edge specific rules */

_:-ms-fullscreen, :root body { 
  min-height: 100vh;
}


/* White theme */

.theme-white {
  color: #1d2859;
  background-color: #fff;
}

.theme-white a:not(.cc-btn) {
  color: #4864e2;
}

.theme-white header .langs a, .theme-white header .langs span,
header.theme-white .langs a, header.theme-white .langs span {
  color: #4864e2;
}

.theme-white section.hero .secondary .img,
section.theme-white.hero .secondary .img,
.theme-white section.shape-text .secondary .img,
section.theme-white.shape-text .secondary .img {
  box-shadow: 0 0 0 9999px #fff;
}

.theme-white section.hero .cta .msg,
section.theme-white.hero .cta .msg {
  color: #1d2859;
}

.theme-white section + section.usp .container,
section.theme-white + section.theme-white .container {
  padding-top: 0;
}

.theme-white section.usp-cards .item,
section.theme-white.usp-cards .item {
  color: #fff;
}

.theme-white section.usp-cards .item .secondary .img,
section.theme-white.usp-cards .item .secondary .img {
  box-shadow: 0 0 0 9999px #4864e2;
}

.theme-white section.sticker .container > div,
section.sticker.theme-white .container > div {
  color: #4864e2;
  background-color: #edf0fc;
}

.theme-white section[class*="slider"] .tns-nav button,
section.theme-white[class*="slider"] .tns-nav button {
  color: transparent;
  background-color: #dae0f9;
}

.theme-white section[class*="slider"] .tns-nav button.tns-nav-active,
section.theme-white[class*="slider"] .tns-nav button.tns-nav-active {
  background-color: #4864e2;
}

.theme-white footer a:not(.cc-btn),
footer.theme-white a:not(.cc-btn) {
  color: #1d2859;
}

@media screen and (max-width: 768px) {
  
  .theme-white section.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary,
  section.theme-white.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary {
    background-color: #4864e2;
  }
  
}

@media screen and (min-width: 1281px) {
  
  .theme-white.no-hero-cards header .langs a, 
  .theme-white.no-hero-cards header .langs span, 
  .no-hero-cards header.theme-white .langs a, 
  .no-hero-cards header.theme-white .langs span,
  .v2.theme-white header .langs a, 
  .v2.theme-white header .langs span,
  .v2 header.theme-white .langs a, 
  .v2 header.theme-white .langs span,
  header.v2.theme-white .langs a, 
  header.v2.theme-white .langs span {
    color: #fff;
  }
  
}


/* Animation */

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  animation: fadein 2s;
}

@keyframes hero-offer-float {
  0% {
    transform: translate(0px, 0px) rotate(0);
  }
  25% {
    transform: translate(0px, 8px) rotate(0);
  }
  50% {
    transform: translate(0px, -4px) rotate(0);
  }
  75% {
    transform: translate(0px, 8px) rotate(0);
  }
  100% {
    transform: translate(0px, 0px) rotate(0);
  }
}

section.hero .secondary .cards.animated .offer {
  animation: 10s ease-in-out infinite hero-offer-float;
}

@keyframes hero-card1-float {
  0% {
    transform: translate(0px, 0px) rotate(-16deg);
  }
  25% {
    transform: translate(0px, 8px) rotate(-16deg);
  }
  50% {
    transform: translate(0px, -4px) rotate(-16deg);
  }
  75% {
    transform: translate(0px, 8px)  rotate(-16deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(-16deg);
  }
}

section.hero .secondary .cards.animated .card1 {
  animation: 10s ease-in-out infinite hero-card1-float;
}

@keyframes hero-card2-float {
  0% {
    transform: translate(40px, 46px) rotate(-9deg);
  }
  25% {
    transform: translate(40px, 43px) rotate(-8deg);
  }
  50% {
    transform: translate(40px, 49px) rotate(-9deg);
  }
  75% {
    transform: translate(40px, 43px) rotate(-10deg);
  }
  100% {
    transform: translate(40px, 46px) rotate(-9deg);
  }
}

section.hero .secondary .cards.animated .card2 {
  animation: 10s ease-in-out infinite hero-card2-float;
}

@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;
  }
}

.icon.reveal {
  opacity: 0;
  transform: translateX(0px) translateY(50px) perspective(1200px);
  scale: 0.5;
}

.icon.revealed {
  opacity: 1;
  transform: translateX(0px) translateY(0px) perspective(1200px);
}
