
/* 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: #1d2859;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transition: background-color .2s ease;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  animation: fadein 2s;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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: #1d2859;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.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);
}


/* 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(29, 40, 89, 0.3);
  font-size: 18px;
  margin-left: 10px;
  transition: color .1s linear;
}
header .langs span,
header .langs a:hover {
  color: #1d2859;
}

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;
}

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: 32px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.72px;
  max-width: 500px;
  margin: 20px 0 16px;
}

section.hero h1 span.hlight {
  color: #4864e2;
}

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 36px;
}

section.hero .cta .msg {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.2;
  background-image: url(img/icons/icon-fast.svg);
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: left -3px;
  padding-left: 26px;
  margin-top: 18px;
}

section.hero .partner img {
  width: 220px;
}

section.hero .secondary {
  display: flex;
  position: relative;
  min-height: 50vh;
  margin-top: 32px;
  margin-bottom: -92px;
}

section.hero .secondary .container {
  background-image: url(img/img-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 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: 350px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-10deg);
  filter: drop-shadow(18px 16px 32px rgba(1, 10, 50, 0.2));
  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.4));
}

section.hero .secondary .offer {
  position: absolute;
  bottom: -36px;
  left: -44px;
  z-index: 2;
}

section.hero .secondary div.offer {
  bottom: -12px;
  left: -18px;
}

section.hero .secondary div.offer > div {
  color: #1d2859;
  text-align: center;
  text-transform: uppercase;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #00dcb4;
  box-shadow: 15px -3px 17px 0 rgba(29, 40, 89, 0.31);
  transform: rotate(-16deg);
}

section.hero .secondary div.offer span:first-child {
  font-size: 27px;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 6px;
}

section.hero .secondary div.offer span:last-child {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

html[lang=fr] section.hero .secondary div.offer span:first-child {
  font-size: 20px;
  margin-top: 20px;
}

html[lang=fr] section.hero .secondary div.offer span:last-child {
  font-size: 16px;
}

html[lang=it] section.hero .secondary div.offer span:first-child {
  margin-top: 12px;
}

html[lang=en] section.hero .secondary div.offer span:last-child {
  font-size: 15px;
}

section.hero .secondary .img {
  position: absolute;
  top: 58px;
  left: 140px;
  height: 1200px;
  width: 1200px;
  border-radius: 98px;
  box-shadow: 0 0 0 9999px #fff;
  transform: rotate(-14deg);
  z-index: 0;
}

section.hero .dcdyntext {
  display: none;
  position: relative;
}

section.hero .dcdyntext .items {
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  position: relative;
  left: -200px;
  transition: all 0.75s ease-out;
}

section.hero .dcdyntext .items > div {
  flex: 1 0 100%;
  opacity: 0;
  transition: all .3s linear;
}

section.hero .dcdyntext .items > div.active {
  opacity: 1;
  transition: all 1s ease-in;
}

section.hero .dcdyntext h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

section.hero .dcdyntext .items span {
  display: block;
}

.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;
}

section.usp.themed {
  background-color: #f6f6f6;
}

section:not(.themed) + section.usp:not(.themed) .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: 18px;
  padding: 24px 24px 32px;
  min-height: 220px;
}

section.usp.themed .item > div {
  background-color: #fff;
}

section.usp .item .icon img {
  width: 44px;
  margin: 0 auto;
}

section.usp .item h3 {
  font-size: 24px;
  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 .item .icon + .desc {
  margin-top: 24px;
}

section.usp .offer {
  font-weight: 700;
  text-align: center;
  padding: 40px 24px;
}

section.usp .offer h4 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 16px 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;
  box-shadow: 0 30px 100px 0 #c6cade;
}

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 h4 {
  color: #4864e2;
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.12px;
  margin-bottom: 16px;
}

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 .imgs {
  margin: 16px 0;
}

section.usp-cards .item .desc .imgs > div:first-child {
  margin-bottom: -32px;
}

section.usp-cards .item .secondary {
  display: flex;
  position: relative;
  margin-top: -24px;
  margin-bottom: -60px;
}

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 .secondary .holder {
  background-image: url(img/img-2.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 #fff;
  transform: rotate(-10deg);
  z-index: 0;
}

section.usp-cards .item.reverse .secondary .img {
  left: auto;
  right: 94px;
  transform: rotate(10deg);
}

section.usp-illustration {
  background-color: #edf0fc;
}

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(.themed) + section.usp-icon:not(.themed) .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: 44px;
  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/st.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 56px;
}

section:not(.themed) + section.accordion:not(.themed) .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: #fff;
  box-shadow: 0 10px 100px 0 #c6cade;
  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/06-assig-protezione-acquisti.svg);
}

section.accordion .item:nth-child(2) .title {
  background-image: url(img/icons/07-assig-garanzia-miglior-prezzo.svg);
}

section.accordion .item:nth-child(3) .title {
  background-image: url(img/icons/08-assig-protezione-giuridica.svg);
}

section.accordion .item:first-child:last-child .title {
  background-image: url(img/icons/icon-paper.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 .desc p {
  text-align: left;
}

section.accordion .item .desc p:not(:last-child) {
  margin-bottom: 12px;
}

section.accordion .item .desc p.hlight {
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

section.accordion .item .desc p.hlight strong {
  font-size: 18px;
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

section.accordion .item .desc ul {
  text-align: left;
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

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: #d9def5;
  border: 0 none;
  border-radius: 8px;
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.2s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section[class*="slider"] .tns-nav button.tns-nav-active {
  background-color: #8d9eea;
}

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;
}

@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(-10deg);
  }
  25% {
    transform: translate(0px, 8px) rotate(-10deg);
  }
  50% {
    transform: translate(0px, -4px) rotate(-10deg);
  }
  75% {
    transform: translate(0px, 8px)  rotate(-10deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(-10deg);
  }
}

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;
  }
}

@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 .img {
    transform: rotate(10deg);
    left: auto;
    right: 94px;
  }
  
}

@media screen and (min-width: 769px) {
  
  section.hero .primary {
    padding: 0 40px;
    text-align: left;
  }
  
  section.hero .primary .container {
    padding-top: 140px;
  }
  
  section.hero .primary h1 {
    font-size: 40px;
    line-height: 1.05;
  }
  
  section.hero h1 span {
    white-space: nowrap;
  }
  
  section.hero .desc {
    font-size: 22px;
  }
  
  section.hero .cta {
    margin-bottom: 56px;
  }
  
  section.hero .partner img {
    width: 300px;
  }
  
  section.hero .secondary {
    margin-top: -100px;
    margin-bottom: 0;
  }
  
  section.hero .secondary .container {
    background-position: 244px top;
    min-height: 760px;
  }
  
  section.hero .secondary .img {
    top: 24px;
    left: 368px;
  }
  
  section.hero .secondary .cards {
    top: 340px;
    left: 124px;
  }
  
  section.hero .secondary .cards .card1 {
    width: 350px;
    left: -36px;
    filter: drop-shadow(24px 32px 32px rgba(1, 10, 50, 0.4));
  }
  
  section.hero .secondary .cards .card2 {
    width: 335px;
    filter: drop-shadow(16px 24px 24px rgba(2, 23, 79, 0.3));
  }
  
  section.hero .secondary img.offer {
    bottom: -48px;
    left: -64px;
  }
  
  section.hero .secondary div.offer {
    bottom: -28px;
    left: -90px;
  }
  
  .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.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 {
    order: 2;
    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: -40px;
  }
  
  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;
  }
  
  .themed section.usp-cards .item:not(:first-child:last-child) .secondary,
  section.themed.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.mb-slider .container {
    padding-bottom: 52px;
  }
  
  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.accordion .item .desc p.hlight {
    text-align: left;
  }

  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.hero {
    display: flex;
    justify-content: space-between;
    min-height: unset;
  }
  
  section.hero .primary {
    flex: 1 1 50%;
    padding-right: 28px;
    padding-bottom: 100px;
  }
  
  section.hero .partner img {
    width: auto;
  }
  
  section.hero .secondary {
    flex: 1 1 50%;
    min-height: unset;
    margin: 0;
  }
  
  section.hero .secondary .container {
    background-position: -110px 60px;
    min-height: unset;
  }
  
  section.hero .secondary .cards {
    top: auto;
    bottom: 120px;
    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-bottom: 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: 56px;
  }
  
  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 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 (max-width: 1280px) {
  
  section.hero .secondary .img {
    box-shadow: 0 0 234px 90px #e0e5f9, 0 0 0 9999px #fff;
  }

}

@media screen and (min-width: 1281px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.hero {
    display: block;
    overflow: visible;
  }
  
  section.hero .primary {
    padding: 0 0 94px;
  }
  
  section.hero .primary .container > * {
    max-width: 470px;
  }
  
  section.hero .secondary {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  
  section.hero .secondary .container {
    background-position: left top;
  }
  
  section.hero .secondary .cards {
    left: -15px;
  }
  
  section.hero .dcdyntext {
    display: block;
  }
  
  .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: 55%;
  }
  
  .v2 section.hero .secondary .cards,
  section.hero.v2 .secondary .cards {
    left: 290px;
  }
  
  .v2 section.hero .secondary .img,
  section.hero.v2 .secondary .img {
    top: auto;
    bottom: 260px;
    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 .primary {
    flex: 0 1 40%;
  }
  
  section.usp-cards .item.reverse .primary {
    flex: 0 1 45%;
  }
  
  section.usp-cards .item .secondary {
    margin-top: -18px;
    margin-bottom: -120px;
  }
  
  section.usp-cards .item .secondary .holder {
    min-height: 632px;
    background-position: center -100px;
  }
  
  section.usp-cards .item .desc {
    max-width: 370px;
  }
  
  section.usp-cards .item.reverse .desc {
    max-width: 420px;
  }
  
  section.usp-cards .item .desc .imgs {
    margin: 32px 0 16px -6px;
    display: flex;
    align-items: center;
  }
  
  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: 1401px) {
  
  .v2 section.hero .secondary .cards,
  section.hero.v2 .secondary .cards {
    max-width: 300px;
    left: 240px;
    bottom: 114px;
  }
  
  section.hero .secondary .cards .card1 {
    max-width: unset;
    width: 350px;
    top: -88px;
    left: 122px;
    transform: rotate(-9deg);
  }
  
  @keyframes hero-card1-float {
    0% {
      transform: translate(0px, 0px) rotate(-9deg);
    }
    25% {
      transform: translate(0px, 8px) rotate(-9deg);
    }
    50% {
      transform: translate(0px, -4px) rotate(-9deg);
    }
    75% {
      transform: translate(0px, 8px)  rotate(-9deg);
    }
    100% {
      transform: translate(0px, 0px) rotate(-9deg);
    }
  }
  
  section.hero .secondary .cards .card2 {
    transform: rotate(-13deg) translate(40px, 46px);
  }
  
  @keyframes hero-card2-float {
    0% {
      transform: translate(40px, 46px) rotate(-13deg);
    }
    25% {
      transform: translate(40px, 43px) rotate(-12deg);
    }
    50% {
      transform: translate(40px, 49px) rotate(-13deg);
    }
    75% {
      transform: translate(40px, 43px) rotate(-14deg);
    }
    100% {
      transform: translate(40px, 46px) rotate(-13deg);
    }
  }
  
}


/* Sticky bar */

.sticky {
  padding: 12px 12px 12px 16px;
	background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 40px 0 rgba(72, 100, 226, 0.24);
  display: flex;
  align-items: center;
  max-width: 560px;
  margin: 0 auto;
  position: fixed;
  bottom: 40px;
  left: 18px;
  right: 18px;
  z-index: 10;
  transform: translateY(calc(100% + 64px));
  transition: transform .25s ease;
}

.sticky .msg {
  color: #1d2859;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.1px;  
  text-transform: uppercase;
  margin-right: 16px;
  flex: 1 1 auto;
}

.sticky .msg .hlight {
  color: #4864e2;
}

.sticky .cta .cc-btn {
  font-size: 10px;
  white-space: nowrap;
  min-height: 36px;
  padding: 2px 16px;
}

.sticky .cta .cc-btn span {
  padding-right: 8px;
}

.sticky.countdown {
  color: #1d2859;
  max-width: 340px;
  padding: 7px 16px;
  justify-content: space-between;
  transform: translateY(calc(100% + 110px));
}

.sticky.countdown .offer {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.15px;
}

.sticky.countdown .offer > span {
  color: #4864e2;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.4px;
  display: block;
  margin-bottom: -1px;
}

.sticky.countdown .timer {
  position: absolute;
  top: -66px;
  left: 30px;
  right: 30px;
  padding: 8px 8px 7px;
  background-color: rgb(218 224 249 / 97%);
  border-radius: 11px;
  display: flex;
  align-items: center;
}

.sticky.countdown .timer .title {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  flex: 1 1 0%;
}

.sticky.countdown .timer .items {
  display: flex;
  align-items: center;
}

.sticky.countdown .timer .item {
  font-size: 6px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06px;
  text-align: center;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.sticky.countdown .timer .item span {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.18px;
  width: 32px;
  height: 32px;
  margin: 0 2px 4px;
  padding: 4px 0 3px 5px;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.sticky.countdown .cta .cc-btn {
  font-size: 14px;
  min-height: 40px;
}

.sticky.show {
  transform: none;
}

.sticky.disabled {
  display: none !important;
}


@media screen and (max-width: 768px) {
  
  .sticky .cta .cc-btn span {
    display: none;
  }
  
}

@media screen and (min-width: 769px) {
  
  .sticky {
    bottom: 60px;
  }
  
  .sticky:not(.countdown) {
    background-image: url(img/cc-olympics.png);
    background-repeat: no-repeat;
    background-size: 56px;
    background-position: 10px center;
    padding-left: 84px;
  }
  
  .sticky .msg {
    font-size: 14px;
    letter-spacing: 0.14px;
    padding-top: 2px;
    margin-right: 24px;
  }

  .sticky .cta .cc-btn {
    font-size: 18px;
    min-height: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .sticky.countdown {
    padding: 6px 18px;
    max-width: 637px;
  }
  
  .sticky.countdown .offer {
    font-size: 20px;
  }
  
  .sticky.countdown .offer > span {
    font-size: 56px;
    margin-bottom: -3px;
  }
  
  .sticky.countdown .cta .cc-btn {
    font-size: 18px;
    min-height: 48px;
  }
  
  .sticky.countdown .timer {
    position: static;
    flex-direction: column;
    flex: 1 1 0%;
    background-color: transparent;
  }
  
  .sticky.countdown .timer .item {
    font-size: 7px;
  }
  
  .sticky.countdown .timer .item span {
    width: 40px;
    height: 40px;
    padding-left: 9px;
    margin: 5px 4px 4px;
    background-color: #edf0fc;
  }
  
}

@media screen and (min-width: 993px) {
  
  .sticky {
    bottom: 40px;
  }
  
}


/* Footer */

footer {
  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 136px;
}

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;
  }
  
  footer .container {
    max-width: 1200px;
    padding: 24px 0 172px;
    margin: 0 auto;
  }
  
  footer .copyright {
    font-size: 16px;
  }
  
}


/* IE11/Edge specific rules */

_:-ms-fullscreen, :root body { 
  min-height: 100vh;
}


/* Themed */

.themed header,
header.themed {
  background-color: transparent;
}

.themed a:not(.cc-btn) {
  color: rgba(29, 40, 89, 0.3);
}

.themed header .langs span,
header.themed .langs span {
  color: #1d2859;
}

.themed section.hero .secondary .img,
section.themed.hero .secondary .img,
.themed section.shape-text .secondary .img,
section.themed.shape-text .secondary .img {
  box-shadow: 0 0 0 9999px #fff;
}

.themed section.hero .cta .msg,
section.themed.hero .cta .msg {
  color: #1d2859;
}

.themed section.usp + section.usp .container,
section.usp.themed + section.usp.themed .container {
  padding-top: 0;
}

section.hero.themed + section.usp-cards.themed .container {
  padding-top: 40px;
}

.themed section.usp-cards .item,
section.themed.usp-cards .item {
  color: #fff;
}

.themed section.usp-cards .item .secondary .img,
section.themed.usp-cards .item .secondary .img {
  box-shadow: 0 0 0 9999px #4864e2;
}

section.themed.usp-cards + section.accordion.themed .container {
  padding-top: 1px;
  padding-bottom: 1px;
  margin-top: -105px;
  margin-bottom: -24px;
}

.themed section.sticker .container > div,
section.sticker.themed .container > div {
  color: #4864e2;
  background-color: #edf0fc;
}

.themed section[class*="slider"] .tns-nav button,
section.themed[class*="slider"] .tns-nav button {
  color: transparent;
  background-color: #dae0f9;
}

.themed section[class*="slider"] .tns-nav button.tns-nav-active,
section.themed[class*="slider"] .tns-nav button.tns-nav-active {
  background-color: #4864e2;
}

.themed footer a:not(.cc-btn),
footer.themed a:not(.cc-btn) {
  color: #1d2859;
}

@media screen and (max-width: 768px) {
  
  .themed section.hero .secondary .img,
  section.themed.hero .secondary .img {
    box-shadow: 0 0 234px 90px #e0e5f9, 0 0 0 9999px #fff;
  }
  
  .themed section.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary,
  section.themed.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary {
    background-color: #4864e2;
  }
  
}
