
/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

@font-face {
  font-family: "CornerDisplay";
  src: url("fonts/CornerDisplayWEB-Regular.woff2") format('woff2');
}

@font-face {
  font-family: "CornerDisplay";
  src: url("fonts/CornerDisplayWEB-Bold.woff2") format('woff2');
  font-weight: bold;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('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: #232323;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transition: background-color .2s ease;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  word-wrap: break-word;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-weight: 700;
}

a, a:hover, a:active, a:focus, a:visited {
  color: #232323;
  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: #d13a15;
  min-height: 56px;
  border: 0 none;
  border-radius: 10px;
  box-shadow: 0 8px 30px 0 rgba(230, 0, 80, 0.3);
  cursor: pointer;
  outline: none;
  transition: all .15s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cc-btn:hover {
  color: #fff;
  background-color: #b32f0e;
}


/* Popup */

#popup {
  color: #1d2859;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: #f8f2ec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  overflow-x: hidden;
  outline: 0;
  cursor: pointer;
  min-height: 100vh;
  z-index: 1001;
  transform: translateY(-100%);
  transition: transform .2s linear, opacity .2s linear;
}

#popup .dialog {
  padding: 64px 16px 110px;
  position: relative;
  width: 100%;
}

#popup .dialog-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  padding: 24px;
  border-radius: 16px;
  outline: 0;
  cursor: default;
}

#popup .close {
  height: 70px;
  width: 70px;
  background-color: #fff;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-35px);
  cursor: pointer;
  z-index: 1;
}

.popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #f8f2ec;
  opacity: 0;
  transform: translateY(-100%);
  z-index: 1000;
  transition: opacity .2s linear, transform .1s linear .2s;
}

#popup.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .2s linear, transform .2s linear;
}

#popup.show + .popup-overlay {
  opacity: 1;
  transform: translateY(0);
  z-index: 1000;
  transition: opacity .15s linear;
}

@media screen and (min-width: 769px) {
  
  #popup .dialog {
    min-height: auto;
    max-height: 100vh;
  }
  
  #popup .dialog {
    width: 600px;
  }
  
  #popup .dialog-content {
    border-radius: 15px;
    box-shadow: 0 30px 80px 0 rgba(0, 0, 0, 0.15);
    min-height: unset;
  }
  
}


/* 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: 18px 18px 34px;
}

header .logo img {
  display: block;
  width: 132px;
  max-width: 100%;
}

header .langs {
  padding-right: 18px;
  margin-top: 2px;
  white-space: nowrap;
}

header .langs a,
header .langs a:hover,
header .langs span {
  font-size: 18px;
  margin-left: 10px;
  opacity: 0.6;
}

header .langs > *:first-child {
  margin-left: 0;
}

header .langs span {
  font-weight: 700;
  opacity: 1;
}

@media screen and (min-width: 769px) {
  
  header .logo {
    flex: 0 0 auto;
  }
  
  header .logo img {
    width: 169px;
  }
  
  header .primary .logo a {
    padding: 24px 0 44px 40px;
  }
  
  header .langs {
    padding-right: 40px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  header .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  header .primary .logo a {
    padding-left: 0;
  }
  
  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: #f8f2ec;
}

section .checklist {
  list-style: none;
  font-weight: 400;
}

section .checklist li {
  padding: 12px 0 12px 30px;
  background-image: url(img/icons/icon-check.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: -2px 9px;
}

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 {
  text-align: center;
  padding-top: 90px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

section.hero h1 {
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.72px;
  margin: 16px 0;
}

section.hero h1 strong {
  font-size: 70px;
  display: block;
}

section.hero h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}

section.hero h3 span {
  color: #d13a15;
}

section.hero h4 {
  font-size: 16px;
  font-family: 'Helvetica Neue', Roboto, sans-serif, arial;
  margin-top: 32px;
}

section.hero .desc {
  font-size: 18px;
  line-height: 1.2;
  max-width: 500px;
}

section.hero .cta {
  margin: 24px 0 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.hero .secondary {
  display: flex;
  position: relative;
  margin-bottom: -64px;
}

section.hero .secondary .container {
  background-image: url(img/bc-simply-hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  min-height: 660px;
  margin-bottom: -140px;
  flex: 1 1 100%;
}

section.hero .secondary .cards {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

section.hero .secondary .cards .card1 {
  width: 370px;
  max-width: 74vw;
}

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

section.usp .container {
  padding: 80px 0 56px;
}

section:not(.theme-light) + section.usp:not(.theme-light) .container {
  padding-top: 0;
}

section.usp h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 0 18px;
}

section.usp .items {
  padding: 0 18px;
}

section.usp .item {
  text-align: center;
  margin: 24px auto;
  max-width: 440px;
}

section.usp .item > div {
  background-color: #f8f2ec;
  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', Roboto, sans-serif, arial;
  font-weight: 300;
  line-height: 1.2;
}

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

section.usp .offer h4 {
  color: #ff4b00;
  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-top: 56px;
  padding-bottom: 56px;
}

section.usp-cards h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 0 18px;
}

section.usp-cards .items {
  padding: 1px 18px;
}

section.usp-cards .item {
  margin: 24px auto;
  max-width: 440px;
  -webkit-tap-highlight-color: transparent;
}

section.usp-cards .item:first-child:last-child {
  max-width: unset;
}

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-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

section.usp-cards .item .desc {
  font-size: 18px;
  font-family: 'Helvetica Neue', Roboto, sans-serif, arial;
  font-weight: 300;
  line-height: 1.2;
  max-width: 580px;
}

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: -120px;
}

section.usp-cards .item .secondary .holder {
  min-height: 500px;
  flex: 1 1 100%;
}

section.usp-cards .item .secondary .holder:not(.nobgimg) {
  background-image: url(img/bc-simply-travel.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: -32px center;
}

section.usp-cards .item .secondary .img {
  position: absolute;
  top: 30px;
  left: 134px;
  height: 1000px;
  width: 1000px;
  border-radius: 70px;
  box-shadow: 0 0 0 9999px #edf0fc;
  transform: rotate(-10deg);
  z-index: 0;
}

section.usp-cards .item .secondary .holder.nobgimg .img {
  background-color: #f1e4d7;
}

section.usp-cards .item .secondary .img img {
  transform: rotate(10deg);
  width: 580px;
  position: absolute;
  left: -68px;
  top: -44px;
}

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', Roboto, sans-serif, arial;
  line-height: 1.2;
}

section.usp-icon .container {
  padding: 80px 0 40px;
}

section:not(.theme-light) + section.usp-icon:not(.theme-light) .container {
  padding-top: 0;
}

section.usp-icon.mb-slider .container {
  padding-bottom: 80px;
}

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', Roboto, sans-serif, arial;
  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', Roboto, sans-serif, arial;
  line-height: 1.2;
  letter-spacing: 0.36px;
}

section.shape-text .desc p:not(:first-child) {
  margin-top: 12px;
}

section.shape-text .desc a {
  font-weight: 400;
  text-decoration: underline;
}

section.shape-text .secondary {
  display: flex;
  position: relative;
}

section.shape-text .secondary .container {
  background-image: url(img/bc-simply-travel.png);
  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 #f8f2ec;
  transform: rotate(12deg);
  z-index: 0;
}

section.shape-text.reverse .secondary .img {
  left: auto;
  right: 124px;
  transform: rotate(-12deg);
}

section.shape-text .iinfo-ref {
  white-space: nowrap;
  position: relative;
  display: inline-block;
}

section.shape-text .iinfo {
  color: #fff;
  font-weight: 400;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background-color: #d13a15;
  margin: -4px 0;
  transition: all .15s linear;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

section.shape-text .iinfo::before {
  content: "i";
  font-size: 14px;
  transition: all .15s linear;
}

section.shape-text .iinfo .msg {
  white-space: normal;
  position: absolute;
  display: block;
  bottom: 16px;
  left: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  z-index: -1;
  transition: all .1s linear;
}

section.shape-text .iinfo .msg > span {
  color: #000;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  font-size: 13px;
  line-height: 1.2;
  padding: 18px;
  border-radius: 16px;
  background-color: #f1e4d7;
  width: 450px;
  max-width: 90vw;
  display: block;
}

section.shape-text .iinfo .msg .list {
  display: block;
  margin-top: 8px;
}

section.shape-text .iinfo .msg .list > span {
  display: block;
  padding-left: 12px;
  position: relative;
}

section.shape-text .iinfo .msg .list > span::before {
  content: "•";
  font-size: 10px;
  position: absolute;
  top: 2px;
  left: 0;
}

section.shape-text .iinfo .msg p:not(:last-child) {
  padding-bottom: 12px;
}

section.shape-text .iinfo .msg a {
  color: #000;
  text-decoration: underline;
}

section.shape-text .iinfo:hover,
section.shape-text .iinfo:focus {
  background-color: #b32f0e;
}

section.shape-text .iinfo:hover::before,
section.shape-text .iinfo:focus::before {
  color: #fff;
}

section.shape-text .iinfo:hover .msg,
section.shape-text .iinfo:focus .msg {
  opacity: 1;
  padding-bottom: 16px;
  max-height: 380px;
  z-index: 5;
}

section#protection.shape-text .primary .container {
  padding-bottom: 40px;
}

section#protection.shape-text .secondary .container {
  background-image: url(img/bc-simply-protection.png);
}

section#bonus.shape-text .secondary .container {
  background-image: url(img/bc-simply-bonus.jpg);
  background-position: center;
}

section#mosapp.shape-text.reverse .primary .container {
  max-width: 450px;
}

section#mosapp.shape-text .secondary .container {
  background-image: none;
}

section#mosapp.shape-text .secondary .img {
  background-color: #e8d0bb;
}

section#mosapp.shape-text .secondary .img img {
  transform: rotate(-12deg);
  width: 580px;
  position: absolute;
  top: 0;
  right: -16px;
}

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: 1px 0 56px;
}

section:not(.theme-light) + section.accordion:not(.theme-light) .container {
  padding-top: 0;
}

section.accordion h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 0 18px;
}

section.accordion .items {
  padding: 0 18px;
}

section.accordion .item {
  text-align: center;
  margin: 32px auto;
  max-width: 450px;
}

section.accordion .item > div {
  padding: 28px 16px 16px;
  background-color: #fff;
  border-radius: 20px;
}

section.accordion .item .title {
  background-image: url(img/icons/icon-check.svg);
  background-repeat: no-repeat;
  background-size: 64px;
  background-position: center top;
  padding-top: 90px;
}

section#insurance.accordion .item:nth-child(1) .title {
  background-image: url(img/icons/icon-travel-insurance.svg);
}

section#insurance.accordion .item:nth-child(2) .title {
  background-image: url(img/icons/icon-luggage.svg);
}

section#insurance.accordion .item:nth-child(3) .title {
  background-image: url(img/icons/icon-warranty.svg);
}

section.accordion .item h3 {
  color: #232323;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

section.accordion .item .intro {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Helvetica Neue', Roboto, sans-serif, arial;
  line-height: 1.2;
  letter-spacing: 0.36px;
  padding: 0 8px;
  margin-bottom: 24px;
}

section.accordion .item .desc {
  font-size: 18px;
  font-weight: 300;
  font-family: 'Helvetica Neue', Roboto, sans-serif, arial;
  line-height: 1.2;
  padding: 0 8px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all .2s ease;
}

section.accordion .item .desc p:not(:first-child) {
  margin-top: 6px;
}

section.accordion .item .toggler {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f2ec;
  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.accordion .note {
  font-family: 'Helvetica Neue', Roboto, sans-serif, arial;
  line-height: 1.2;
  text-align: center;
  padding: 0 18px;
}

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: #f1e4d7;
}

section.mb-slider.usp-illustration .tns-nav button.tns-nav-active {
  background-color: #f8f2ec;
}

section.mb-slider .items {
  padding: 0;
  outline: none;
  user-select: none;
}

section.mb-slider .tns-ovh {
  padding: 0 24px;
}

section.mb-slider .row {
  display: flex;
}

section.mb-slider .item.tns-item {
  display: inline-flex;
  padding: 5px 8px 0;
  margin: 0;
  max-width: unset;
}

section.mb-slider .item.tns-item > div {
  flex: 1 1 auto;
}

.section-group.sand {
  background-color: #f8f2ec;
}

.section-group section.theme-light.sand {
  background-color: transparent;
}

@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.shape-text.btm-img {
    flex-flow: column;
  }
  
  section.shape-text.btm-img .primary {
    padding-top: 80px;
    margin-top: 0;
  }
  
  section.shape-text.btm-img .primary .container {
    padding-bottom: 0;
  }
  
  section.shape-text.btm-img .secondary {
    margin-top: -16px;
  }
  
  section.shape-text.btm-img .secondary .container {
    background-position: left 0;
  }
  
  section#mosapp.shape-text h2 {
    font-size: 30px;
  }
  
}

@media screen and (min-width: 769px) {
  
  section.hero .primary {
    padding: 0 40px;
    text-align: left;
  }
  
  section.hero .primary .container {
    padding-top: 140px;
  }
  
  section.hero h1 {
    font-size: 60px;
    line-height: 1.05;
  }
  
  section.hero h3 {
    font-size: 24px;
  }
  
  section.hero h4 {
    font-size: 18px;
  }
  
  section.hero .secondary {
    margin-top: -100px;
    margin-bottom: 0;
  }
  
  section.hero .secondary .container {
    background-position: 64px top;
    min-height: 760px;
  }
  
  section.hero .secondary .img {
    top: 24px;
    left: 368px;
  }
  
  section.hero .secondary .cards {
    top: 300px;
    left: 80px;
    transform: none;
  }
  
  section:not(.theme-light) + section.usp:not(.theme-light) .container {
    padding-top: 40px;
  }
  
  section.usp:not(.extended-wrap) .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  section.usp .row .item {
    flex: 1 1 0%;
    padding: 12px;
    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 {
    font-size: 40px;
    padding: 0 40px;
    margin-bottom: 32px;
  }
  
  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 h2 {
    font-size: 40px;
    padding: 0 40px;
    margin-bottom: 40px;
  }
  
  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: 400px;
    flex: 1 1 auto;
  }
  
  section.usp-cards .item .primary {
    flex: 0 1 45%;
    padding: 40px 16px 40px 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 .holder {
    background-position: -44px -50px;
  }
  
  section.usp-cards .item .secondary .img {
    transform: rotate(-12deg);
  }
  
  section.usp-cards .item .secondary .img 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-light section.usp-cards .item:not(:first-child:last-child) .secondary,
  section.theme-light.usp-cards .item:not(:first-child:last-child) .secondary {
    background-color: #f8f2ec;
  }
  
  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: 32px;
  }
  
  section.usp-icon.mb-slider .item > div {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  section.usp-icon h2 {
    font-size: 40px;
    padding: 0 40px;
  }
  
  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: 80px 40px;
    margin: 0;
    display: flex;
    align-items: center;
  }
  
  section.shape-text .primary .container {
    padding-bottom: 64px;
  }
  
  section.shape-text h2 {
    font-size: 40px;
  }
  
  section.shape-text .secondary {
    flex: 1 1 50%;
  }
  
  section.shape-text .secondary .container {
    min-height: 540px;
    background-position: calc(50% + 56px) -40px;
  }
  
  section.shape-text .iinfo .msg {
    right: -40px;
    left: auto;
  }
  
  section.shape-text.reverse.btm-img .secondary .container {
    min-height: 540px;
    background-position: center;
  }

  section.shape-text.reverse.btm-img .secondary .img {
    transform: rotate(12deg);
    bottom: auto;
    top: -36px;
  }
  
  section#mosapp.shape-text h2 {
    font-size: 32px;
  }
  
  section#mosapp.shape-text .secondary .img img {
    width: 660px;
    top: 50px;
    right: -72px;
  }
  
  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 .container {
    padding-top: 32px;
    padding-bottom: 68px;
  }
  
  section.accordion h2 {
    font-size: 40px;
    padding: 0 40px;
    margin-bottom: 40px;
  }
  
  section.accordion .items {
    padding: 0 40px;
  }
  
  section.accordion .item {
    text-align: left;
    max-width: unset;
    position: relative;
  }
  
  section.accordion .item > div {
    padding: 26px 40px 24px;
  }
  
  section.accordion .item .title {
    background-position: left 5px;
    padding: 0 0 0 96px;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
  }
  
  section.accordion .item h3 {
    padding-right: 64px;
    margin-top: 24px;
  }
  
  section.accordion .item .intro {
    font-size: 16px;
    letter-spacing: normal;
    padding: 0 64px 0 0;
    margin-bottom: 16px;
    transition: all .2s ease;
  }
  
  section.accordion .item .toggler {
    background-color: transparent;
    height: 48px;
    width: 48px;
    position: absolute;
    top: 38px;
    right: 40px;
  }
  
  section.accordion .item .desc {
    padding-left: 98px;
  }
  
  section.accordion .item.expanded .intro {
    border-bottom: 1px solid #c2caf0;
    padding-bottom: 22px;
  }
  
  section.accordion .item.expanded .desc {
    margin-top: 8px;
    margin-bottom: 16px;
  }
  
  section#insurance.accordion {
    margin-top: -60px;
  }

  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 h1 {
    font-size: 80px;
  }
  
  section.hero h3 {
    font-size: 36px;
  }
  
  section.hero h4 {
    font-size: 20px;
  }
  
  section.hero .cta {
    margin: 40px 0 64px;
  }
  
  section.hero .secondary {
    margin-top: 100px;
  }
  
  section.hero .secondary .container {
    min-height: 820px;
    background-position: center;
  }
  
  section.hero .secondary .img {
    top: 210px;
    left: auto;
    right: 0;
    width: 2400px;
    border-radius: 160px;
  }
  
  section.hero .secondary .cards {
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  section.hero .secondary .cards .card1 {
    width: 474px;
  }
  
  section.usp .container {
    padding: 120px 0 68px;
  }
  
  section.usp h2 {
    font-size: 48px;
  }
  
  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: 120px 0 80px;
  }
  
  section.usp-cards h2 {
    font-size: 48px;
    padding: 0 40px 16px;
  }
  
  section.usp-cards .item > div {
    min-height: 480px;
  }
  
  section.usp-cards .item .primary {
    padding: 72px 40px;
    flex: 0 1 40%;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .secondary .img {
    top: 60px;
  }
  
  section.usp-cards .item .secondary .img img {
    width: 800px;
  }
  
  section.shape-text .primary .container {
    margin-left: 0;
  }
  
  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: 0 40px 16px;
  }
  
  section.usp-icon .item {
    max-width: unset;
  }
  
  section.usp-icon:not(.mb-slider) .item > div {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  section.usp-icon.mb-slider .container {
    padding-bottom: 56px;
  }
  
  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 h2 {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 24px;
  }
  
  section.shape-text .desc p:not(:first-child) {
    margin-top: 16px;
  }
  
  section.shape-text .secondary {
    flex: 1 1 45%;
  }
  
  section.shape-text.reverse.btm-img .secondary .img {
    top: -16px;
  }
  
  section.sticker .container > div {
    padding: 24px;
    max-width: 832px;
  }
  
  section.accordion .container {
    padding-bottom: 88px;
  }
  
  section.accordion h2 {
    font-size: 48px;
  }
  
  section.accordion .item {
    max-width: 960px;
  }
  
  section.accordion .item > div {
    padding-bottom: 20px;
  }
  
  section.accordion .item .title {
    min-height: 74px;
  }
  
  section.accordion .item h3 {
    margin: 10px 0;
  }
  
  section#insurance.accordion .container {
    padding-top: 0;
  }
  
  section#insurance.accordion .item {
    margin-left: 0;
  }
  
  section#protection {
    margin-top: 40px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.hero .primary .container {
    padding-top: 172px;
  }
  
  section.hero .secondary .container {
    min-height: 940px;
    max-width: unset;
  }
  
  section.hero h1 {
    font-size: 100px;
    margin-bottom: 8px;
  }
  
  section.hero h3 {
    font-size: 40px;
  }
  
  section.hero .cta {
    margin-bottom: 40px;
  }
  
  section.hero .secondary .cards {
    top: -90px;
  }
  
  section.hero .secondary .img {
    right: 30px;
  }
  
  section.usp .items {
    padding: 0;
    margin: 0 -16px;
  }
  
  section.usp .row .item {
    padding: 12px 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 {
    padding: 80px 24px 80px 52px;
    flex-basis: 43%;
  }
  
  section.usp-cards .item .secondary .holder {
    min-height: 634px;
    background-position: -24px -80px;
  }
  
  section.usp-cards .item .secondary .img {
    top: 92px;
    left: 78px;
  }
  
  section.usp-cards .item .secondary .img img {
    left: -30px;
    top: -30px;
  }
  
  section.usp-cards .item .desc {
    max-width: 380px;
  }
  
  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:not(.reverse) h2 {
    max-width: 620px;
  }
  
  section.shape-text .desc {
    max-width: 580px;
  }
  
  section.shape-text .iinfo .msg {
    top: 32px;
    bottom: auto;
  }
  
  section.shape-text .secondary .container {
    min-height: 680px;
    max-width: unset;
    background-position: center -20px;
  }
  
  section.shape-text .secondary .img {
    width: 1800px;
    bottom: 0;
  }
  
  section.shape-text:not(.reverse) .secondary {
    width: 45%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  
  section.shape-text .iinfo .msg {
    right: -60px;
  }
  
  section.shape-text.reverse.btm-img .secondary .container {
    min-height: 700px;
  }
  
  section#protection.shape-text .primary .container {
    justify-content: flex-start;
    padding: 120px 0;
  }
  
  section#mosapp.shape-text.reverse.btm-img {
    margin-top: -40px;
  }
  
  section#mosapp.shape-text.reverse.btm-img .secondary .container {
    min-height: 740px;
  }
  
  section#mosapp.shape-text .secondary .img img {
    width: 800px;
    top: 120px;
    right: -32px;
  }
  
  section.accordion .item {
    margin: 32px auto;
  }
  
  section#insurance.accordion {
    margin-top: -92px;
  }
  
  section#insurance.accordion .items {
    padding: 0;
  }
  
  section#protection {
    margin-top: 80px;
  }
  
}

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

  section.hero .secondary {
    margin-top: 50px;
  }

  section.hero .secondary .container {
    min-height: 1060px;
  }
  
  section.hero .secondary .cards {
    top: -38px;
  }

  section.hero .secondary .img {
    top: 354px;
    width: 3800px;
    height: 1600px;
  }
  
  section.shape-text:not(.reverse) .primary .container {
    min-height: 720px;
  }
  
  section.shape-text.reverse .primary .container {
    padding-bottom: 32px;
  }
  
  section.shape-text .secondary .container {
    background-position: center;
  }
  
  section.shape-text .secondary .img {
    bottom: 24px;
  }
  
  section.shape-text.reverse.btm-img .secondary .img {
    top: 24px;
  }
  
  section.shape-text .iinfo .msg {
    right: 0;
    transform: translateX(48%);
  }
  
  section#insurance.accordion {
    margin-top: -134px;
  }
  
}

@media screen and (min-width: 2400px) {
  
  section.shape-text .secondary .img {
    bottom: 130px;
  }
  
  section.shape-text.reverse.btm-img .secondary .container,
  section#mosapp.shape-text.reverse.btm-img .secondary .container {
    min-height: 860px;
  }
  
  section.shape-text.reverse.btm-img .secondary .img {
    top: 120px;
  }
  
  section#bonus.shape-text {
    margin-top: -32px;
  }
  
  section#insurance.accordion {
    margin-top: -172px;
  }
  
}


/* Sticky bar */

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

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

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

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

.sticky.countdown {
  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: #8e3f00;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.4px;
  display: block;
  margin-bottom: -1px;
}

html[lang=fr] .sticky.countdown .offer > span {
  font-size: 28px;
}

.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/simplycard.png);
    background-repeat: no-repeat;
    background-size: 56px;
    background-position: 14px center;
    padding-left: 84px;
    padding-right: 24px;
  }
  
  .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: 40px;
    margin-bottom: -3px;
  }
  
  html[lang=fr] .sticky.countdown .offer > span {
    font-size: 36px;
  }
  
  .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', Roboto, sans-serif, arial;
  line-height: 1.4;
}

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

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

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

  footer .menu {
    float: left;
    position: relative;
    z-index: 1;
  }

  footer .copyright {
    text-align: right;
    padding-top: 0;
  }
  
}

@media screen and (min-width: 1281px) {
  
  footer,
  footer .copyright {
    font-size: 16px;
    font-weight: 300;
  }
  
  footer .container {
    max-width: 1200px;
    padding: 24px 0 140px;
    margin: 0 auto;
  }
  
}


/* IE11/Edge specific rules */

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


/* Light theme */

.theme-light {
  color: #232323;
  background-color: #fff;
}

.theme-light.sand {
  background-color: #f8f2ec;
}

.theme-light a:not(.cc-btn) {
  color: #232323;
}

.theme-light header, header.theme-light {
  background-color: transparent;
}

.theme-light header .langs a, .theme-light header .langs span,
header.theme-light .langs a, header.theme-light .langs span {
  color: #232323;
}

.theme-light section.shape-text:not(.sand) .secondary .img,
section.theme-light.shape-text:not(.sand) .secondary .img {
  box-shadow: 0 0 0 9999px #fff;
}

section.theme-light:not(.usp-cards):not(.sand) + section.theme-light:not(.sand) .container {
  padding-top: 0;
}

.section-group.sand section.theme-light.shape-text .secondary .img {
  box-shadow: 0 0 0 9999px #f8f2ec;
}

section.theme-light.usp-cards + section.usp.theme-light .container {
  padding-top: 64px;
}

.theme-light section.usp-cards .item a,
section.theme-light.usp-cards .item a {
  color: #fff;
  text-decoration: underline;
  font-weight: 400;
}

.theme-light section.usp-cards .item .secondary .img,
section.theme-light.usp-cards .item .secondary .img {
  box-shadow: 0 0 0 9999px #f8f2ec;
}

.theme-light section.sticker .container > div,
section.sticker.theme-light .container > div {
  color: #f8f2ec;
  background-color: #edf0fc;
}

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

.theme-light section[class*="slider"] .tns-nav button.tns-nav-active,
section.theme-light[class*="slider"] .tns-nav button.tns-nav-active {
  background-color: #d13a15;
}

@media screen and (max-width: 768px) {
  
  .theme-light section.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary,
  section.theme-light.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary {
    background-color: #f8f2ec;
  }
  
}

@media screen and (min-width: 1281px) {
  
  .theme-light.no-hero-cards header .langs a, 
  .theme-light.no-hero-cards header .langs span, 
  .no-hero-cards header.theme-light .langs a, 
  .no-hero-cards header.theme-light .langs span,
  .v2.theme-light header .langs a, 
  .v2.theme-light header .langs span,
  .v2 header.theme-light .langs a, 
  .v2 header.theme-light .langs span,
  header.v2.theme-light .langs a, 
  header.v2.theme-light .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-card-float {
  0% {
    transform: translate(0px, 0px) rotate(-12deg);
  }
  25% {
    transform: translate(0px, 8px) rotate(-12deg);
  }
  50% {
    transform: translate(0px, -4px) rotate(-12deg);
  }
  75% {
    transform: translate(0px, 8px) rotate(-12deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(-12deg);
  }
}

section.hero .secondary .cards.animated .card {
  animation: 10s ease-in-out infinite hero-card-float;
}

@keyframes hero-card1-float {
  0% {
    transform: translate(0px, 0px) rotate(-12deg);
  }
  25% {
    transform: translate(0px, 8px) rotate(-12deg);
  }
  50% {
    transform: translate(0px, -4px) rotate(-12deg);
  }
  75% {
    transform: translate(0px, 8px)  rotate(-12deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(-12deg);
  }
}

section.hero .secondary .cards.animated .card1 {
  animation: 10s ease-in-out infinite hero-card1-float;
}

@keyframes hero-card2-float {
  0% {
    transform: translate(60px, 24px) rotate(-7.32deg);
  }
  25% {
    transform: translate(60px, 21px) rotate(-6.32deg);
  }
  50% {
    transform: translate(60px, 27px) rotate(-7.32deg);
  }
  75% {
    transform: translate(60px, 21px) rotate(-8.32deg);
  }
  100% {
    transform: translate(60px, 24px) rotate(-7.32deg);
  }
}

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);
}
/* CC Popover */
 
.cc-popover {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Helvetica Neue', Roboto, sans-serif, arial;
  text-align: left;
  text-transform: none;
  line-height: 1.2;
  letter-spacing: 0.36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background-color: #d13a15;
  transform: translateY(-1px);
  transition: all .15s linear;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
 
.cc-popover::before {
  content: "i";
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all .15s linear;
}
 
.cc-popover:hover,
.cc-popover:focus {
  background-color: #b32f0e;
}
 
.cc-popover:hover::before,
.cc-popover:focus::before {
  color: #fff;
}
 
.cc-popover .msg {
  display: none;
}
 
.dyn-ccpo {
  white-space: normal;
  position: absolute;
  display: block;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  z-index: -1;
  transition: opacity .1s linear, max-height .1s linear;
}
 
.dyn-ccpo.show {
  max-height: 380px;
  opacity: 1;
  z-index: 100;
}
 
.dyn-ccpo .msg > span {
  color: #000;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  font-size: 13px;
  line-height: 1.2;
  padding: 18px;
  border-radius: 16px;
  background-color: #f1e4d7;
  width: 450px;
  max-width: 90vw;
  display: block;
}
 
.dyn-ccpo .msg .list {
  color: #000;
  display: block;
  margin-top: 8px;
}
 
.dyn-ccpo .msg .list > span {
  color: #000;
  display: block;
  padding-left: 12px;
  position: relative;
}
 
.dyn-ccpo .msg .list > span::before {
  content: "•";
  font-size: 10px;
  position: absolute;
  top: 2px;
  left: 0;
}
 
.dyn-ccpo .msg p:not(:last-child) {
  padding-bottom: 12px;
}
 
.dyn-ccpo .msg a {
  color: #000;
  text-decoration: underline;
}
 
@media screen and (min-width: 769px) {

  .cc-popover {
    transform: translateY(-3px);
  }
}
 
@media screen and (min-width: 993px) {

  .cc-popover {
    transform: translateY(-7px);
  }
}

/* CC Language Popup */
 
#cc_lang_popup {
  background-color: #f1e4d7;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: hidden;
  overflow-y: scroll;
  outline: 0;
  align-items: flex-start;
  justify-content: center;
  z-index: 101;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform .2s linear, opacity .15s linear;
}
 
#cc_lang_popup.show {
  opacity: 1;
  transform: translateY(0);
}
 
#cc_lang_popup .dialog {
  flex: 1 1 auto;
}
 
#cc_lang_popup .content {
  text-align: center;
  padding: 52px 24px 64px;
  position: relative;
}
 
#cc_lang_popup .close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  cursor: pointer;
  z-index: 1;
}
 
#cc_lang_popup label {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
 
#cc_lang_popup label input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
}
 
#cc_lang_popup .rbtn {
  text-align: center;
  display: block;
  border: solid 5px #fff;
  border-radius: 24px;
  background-color: transparent;
  transition: all .2s linear;
}
 
#cc_lang_popup label input:checked ~ .rbtn {
  background-color: #fff;
}
 
#cc_lang_popup .cta {
  margin-top: 40px;
}
 
#cc_lang_popup .cta button {
  font-family: CornerDisplay, sans-serif, arial, Helvetica;
  min-width: 210px;
  box-shadow: none;
}
 
#cc_lang_popup .cta button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
 
#cc_lang_popup .langs {
  margin-top: 40px;
}
 
#cc_lang_popup .langs .rbtn {
  padding: 16px 6px;
  margin-top: 16px;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
#cc_lang_popup .langs .rbtn > span {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}
 
#cc_lang_popup h3 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 32px auto 16px;
  max-width: 500px;
}
 
#cc_lang_popup .desc {
  font-size: 18px;
  font-family: 'Helvetica Neue', Roboto, sans-serif, arial;
  max-width: 560px;
  margin: 0 auto;
}
 
@media screen and (min-width: 769px) {
 
  #cc_lang_popup .dialog {
    padding: 0 24px;
  }
 
  #cc_lang_popup .content {
    padding: 90px 0;
    position: static;
  }
 
  #cc_lang_popup .langs {
    margin-top: 52px;
  }
 
  #cc_lang_popup .langs .rbtn {
    padding: 24px 8px;
    margin-top: 24px;
  }
 
  #cc_lang_popup .langs .rbtn > span {
    font-size: 22px;
  }
 
  #cc_lang_popup h3 {
    font-size: 40px;
    line-height: 1;
    margin: 24px auto;
    max-width: 650px;
  }
 
  #cc_lang_popup .desc {
    font-size: 20px;
    max-width: 600px;
  }
 
  #cc_lang_popup .cta {
    margin-top: 52px;
  }
 
}
 
@media screen and (min-width: 993px) {
 
  #cc_lang_popup {
    align-items: center;
    padding-top: 24px;
  }
 
  #cc_lang_popup .dialog {
    padding: 0 30px;
  }
 
  #cc_lang_popup .content {
    padding: 0 0 40px;
  }
 
  #cc_lang_popup .close {
    top: 52px;
    right: 64px;
    width: 32px;
  }
 
  #cc_lang_popup .desc {
    font-size: 24px;
    line-height: 1.2;
    max-width: 750px;
  }
 
  #cc_lang_popup .langs {
    margin-top: 72px;
    margin-bottom: 80px;
  }
 
  #cc_lang_popup .langs .items {
    display: flex;
    justify-content: center;
  }
 
  #cc_lang_popup .langs label {
    flex: 0 1 265px;
    margin: 0 12px;
  }
 
  #cc_lang_popup .langs .rbtn {
    margin-top: 0;
    min-height: 88px;
  }
 
  #cc_lang_popup .langs .rbtn > span {
    font-size: 24px;
  }
 
}
/* Section Disclaimer */

section.disclaimer {
margin-top: 24px;
}

section.disclaimer .info {
color: #232323;
font-family: 'Helvetica Neue', Roboto, sans-serif, arial;
font-size: 14px;
line-height: 1.12;
letter-spacing: -0.28px;
background-color: #f8f2ec;
padding: 56px 20px;
}

section.disclaimer .info > div {
max-width: 634px;
margin: 0 auto;
}

section.disclaimer .info p:not(:first-child) {
margin-top: 12px;
}

section.disclaimer .info ul {
padding-left: 24px;
margin: 12px 0 0 0;
}

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

section.disclaimer {
margin-top: 40px;
}

}