
/* 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;
  font-feature-settings: "ss01" on;
  color: #fff;
  background-color: #4864e2;
  display: flex;
  flex-direction: column;
  transition: background-color .2s ease;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

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

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

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

a, a:hover, a:active, a:focus, a:visited {
  color: #fff;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}


/* Button */

.cc-btn, .cc-btn:visited {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 24px 4px;
  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 {
  font-size: 18px;
  margin-left: 10px;
  opacity: 0.5;
}

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

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

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

@media screen and (min-width: 993px) {
  
  header .primary .logo a {
    padding: 34px 0 40px 40px;
  }
  
}

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


/* Main */

main {
  flex: 1 0 auto;
  overflow: hidden;
  position: relative;
}

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


/* Sections */

section {
  position: relative;
  background-color: #4864e2;
}

section.hero {
  min-height: 100vh;
  overflow: hidden;
  z-index: 0;
}

section.hero .primary {
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

section.hero .primary .container {
  padding-top: 90px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  min-height: 40vh;
}

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

section.hero h3 {
  font-size: 14px;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  line-height: 1.25;
}

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

section.hero .cta {
  margin: 32px 0 48px;
}

section.hero .cta .msg {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12px;
  background-image: url(img/icon-no-account.svg);
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: left 1px;
  padding-left: 26px;
  margin-top: 14px;
}

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

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

section.hero .secondary .container {
  background-image: url(img/hero-sm.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  min-height: 680px;
  flex: 1 1 100%;
}

section.hero .secondary .cards {
  position: absolute;
  top: 36px;
  left: 40px;
  z-index: 1;
}

section.hero .secondary .cards .card1 {
  width: 376px;
  position: absolute;
  top: -58px;
  left: -47px;
  z-index: 1;
}

section.hero .secondary .cards .card2 {
  width: 376px;
  max-width: unset;
}

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

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

.no-hero-cards section.hero .secondary {
  margin-top: -140px;
}

.no-hero-cards section.hero .secondary .cards {
  display: none;
}

.no-hero-cards section.hero .secondary .img {
  left: 122px;
  transform: rotate(-12deg);
}

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

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

section.usp h2 {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  max-width: 874px;
  margin: 0 auto 58px;
  padding: 0 18px;
}

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

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

section.usp .item > div {
  background-color: #edf0fc;
  border-radius: 20px;
  padding: 32px 32px 44px;
  min-height: 200px;
}

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

section.usp .item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 12px;
}

section.usp .item .desc {
  font-size: 16px;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  line-height: 1.2;
}

section.usp .item .icon + .desc {
  margin-top: 24px;
}

section.usp-cards .container {
  padding: 56px 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: 0 18px;
}

section.usp-cards .row:first-child {
  margin-top: -24px;
}

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

section.usp-cards .item > div {
  background-color: #edf0fc;
  border-radius: 20px;
  overflow: hidden;
}

section.usp-cards .item .primary {
  padding: 32px 30px 0;
  position: relative;
  z-index: 1;
}

section.usp-cards .item h3 {
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.48px;
  margin-bottom: 14px;
}

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

section.usp-cards .item .desc p + p {
  margin-top: 16px;
}

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

section.usp-cards .item .secondary .holder {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  flex: 1 1 100%;
}

section.usp-cards .item:first-child .secondary .holder {
  background-image: url(img/teilzahlungsoption.jpg);
}

section.usp-cards .item:last-child .secondary .holder {
  background-image: url(img/versicherungen.jpg);
}

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

section.shape-text {
  display: flex;
  flex-flow: column-reverse;
  overflow: hidden;
  z-index: 0;
}

section.shape-text .primary {
  padding: 0 18px 80px;
  margin-top: -18px;
  position: relative;
  z-index: 1;
}

section.shape-text .primary .container {
  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 + p {
  margin-top: 16px;
}

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

section.shape-text .secondary .container {
  background-image: url(img/cashback-bg.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:not(.theme-white) + section.sticker:not(.theme-white) .container {
  padding-top: 0;
}

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[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 .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: 0 8px;
  margin: 0;
  max-width: unset;
}

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

@media screen and (max-width: 768px) {
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) > div {
    min-height: 420px;
    position: relative;
    cursor: pointer;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) .primary {
    flex: 1 1 auto;
    padding: 32px;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) .desc {
    opacity: 0;
    transition: opacity .15s linear;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) .secondary .img {
    top: 54px;
    left: 100px;
    transition: transform 0.15s ease-in-out;
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) > div:hover .secondary .img {
    transform: rotate(-24deg) translate(100%, 100%);
  }
  
  section.usp-cards.mb-slider .item:not(:first-child:last-child) > div:hover .desc {
    opacity: 1;
  }
  
}

@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: 46px;
    line-height: 1.05;
  }
  
  section.hero h1 span {
    white-space: nowrap;
  }
  
  section.hero .cta {
    margin-bottom: 56px;
  }
  
  section.hero .secondary {
    margin-top: -100px;
    margin-bottom: 0;
  }
  
  section.hero .secondary .container {
    background-position: 200px center;
    min-height: 760px;
  }
  
  section.hero .secondary .img {
    top: 40px;
    left: 320px;
  }
  
  section.hero .secondary .cards {
    top: 420px;
    left: 68px;
  }
  
  section.hero .secondary .cards .card1 {
    width: 410px;
    max-width: unset;
  }
  
  section.hero .secondary .cards .card2 {
    width: 410px;
  }
  
  section.hero .secondary .offer {
    left: -35px;
  }
  
  .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: 0 24px;
  }
  
  section.usp-cards .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  section.usp-cards .row:first-child {
    margin-top: -16px;
  }
  
  section.usp-cards .item {
    padding: 0 16px;
    margin: 16px 0;
    display: flex;
    flex: 1 1 auto;
    max-width: 834px;
  }
  
  section.usp-cards .item > div {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 380px;
    flex: 1 1 auto;
  }
  
  section.usp-cards .item .primary {
    flex: 0 1 45%;
    padding: 40px;
  }
  
  section.usp-cards .item h3 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  section.usp-cards .item .secondary {
    flex: 1 1 auto;
    margin-top: 0;
    margin-bottom: -120px;
  }
  
  section.usp-cards .item .secondary .img {
    transform: rotate(-12deg);
  }
  
  section.usp-cards .item:not(:first-child:last-child) {
    flex: 1 1 33.33%;
    max-width: 50%;
  }
  
  section.usp-cards .item:not(:first-child:last-child) > div {
    min-height: 513px;
    cursor: pointer;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .primary {
    flex: 1 1 auto;
    padding: 32px;
    max-width: 100%;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .desc {
    opacity: 0;
    transition: opacity .15s linear;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .secondary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .secondary .img {
    top: 32px;
    left: 112px;
    transition: transform 0.15s ease-in-out;
  }
  
  section.usp-cards .item:not(:first-child:last-child) > div:hover .secondary .img {
    transform: rotate(-24deg) translate(100%, 100%);
  }
  
  section.usp-cards .item:not(:first-child:last-child) > div:hover .desc {
    opacity: 1;
  }
  
  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.tb-slider .items {
    padding: 0;
    outline: none;
    user-select: none;
  }

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

  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.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: 94px;
  }
  
  section.hero .secondary {
    flex: 1 1 50%;
    min-height: unset;
    margin: 0;
  }
  
  section.hero .secondary .container {
    background-position: left center;
    min-height: unset;
  }
  
  section.hero .secondary .cards {
    top: auto;
    bottom: 30px;
    left: 24px;
    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: 92px 0 68px;
  }
  
  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: 92px 0;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .primary {
    padding: 40px;
  }
  
  section.usp-cards .item:not(:first-child:last-child) .secondary .img {
    top: 74px;
    left: 120px;
  }
  
  section.shape-text .primary {
    padding-left: 40px;
    padding-right: 60px;
    flex: 1 1 55%;
  }
  
  section.shape-text .primary .container {
    margin-left: 0;
  }
  
  section.shape-text .secondary {
    flex: 1 1 45%;
  }
  
  section.shape-text.reverse .primary {
    padding-left: 60px;
    padding-right: 40px;
  }
  
  section.sticker .container {
    padding: 92px 0;
  }
  
  section.sticker .container > div {
    padding: 24px;
    max-width: 832px;
  }
  
}

@media screen and (min-width: 1281px) {
  
  section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  section.hero {
    display: block;
  }
  
  section.hero .primary {
    padding: 0;
  }
  
  section.hero .primary .container > * {
    max-width: 500px;
  }
  
  section.hero .secondary {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 100px;
  }
  
  section.hero .secondary .container {
    background-image: url(img/hero.jpg);
  }
  
  section.hero .secondary .cards {
    left: -15px;
  }
  
  .no-hero-cards section.hero .secondary {
    width: 54%;
  }
  
  .no-hero-cards section.hero .secondary .img {
    top: 0;
  }
  
  .v2 section.hero .secondary,
  section.hero.v2 .secondary {
    width: 56%;
  }
  
  .v2 section.hero .secondary .cards,
  section.hero.v2 .secondary .cards {
    left: 320px;
    bottom: -116px;
  }
  
  .v2 section.hero .secondary .img,
  section.hero.v2 .secondary .img {
    top: auto;
    bottom: 100px;
    left: 16px;
  }
  
  section.usp .items {
    padding: 0;
    margin: 0 -16px;
  }
  
  section.usp .item > div {
    padding: 32px;
  }
  
  section.usp-cards .container {
    padding: 120px 0;
  }
  
  section.usp-cards .items {
    padding: 0;
    margin: 0 -16px;
  }
  
  section.usp-cards .item {
    max-width: unset;
    padding: 0 16px;
  }
  
  section.usp-cards .item .secondary {
    margin-top: -18px;
  }
  
  section.usp-cards .item .secondary .holder {
    min-height: 632px;
  }
  
  section.usp-cards .item .desc {
    max-width: 470px;
  }
  
  section.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;
  }
  
  section.sticker .container {
    padding: 120px 0;
  }
  
}


/* 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% + 40px));
  transition: transform .25s ease;
}

#sticky.show {
  transform: none;
}

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

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

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


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

@media screen and (min-width: 769px) {
  
  #sticky {
    background-image: url(img/cc-card.png);
    background-repeat: no-repeat;
    background-size: 56px;
    background-position: 10px center;
    padding-left: 84px;
    bottom: 60px;
  }
  
  #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;
  }
  
}

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


/* Footer */

footer {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Helvetica Neue', sans-serif, arial, Helvetica;
  line-height: 1.4;
}

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

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


/* IE11/Edge specific rules */

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


/* White theme */

.theme-white,
.theme-white footer,
footer.theme-white {
  color: #1d2859;
  background-color: #fff;
}

.theme-white a:not(.cc-btn) {
  color: #4864e2;
}

.theme-white header .langs a, .theme-white header .langs span,
header.theme-white .langs a, header.theme-white .langs span {
  color: #4864e2;
}

.theme-white section,
section.theme-white {
  color: #1d2859;
  background-color: #fff;
}

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

.theme-white section.hero .cta .msg,
section.theme-white.hero .cta .msg {
  color: #1d2859;
}

.theme-white section + section .container,
section.theme-white + section.theme-white .container {
  padding-top: 0;
}

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

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

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

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

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

@media screen and (min-width: 1281px) {
  
  .theme-white.no-hero-cards header .langs a, 
  .theme-white.no-hero-cards header .langs span, 
  .no-hero-cards header.theme-white .langs a, 
  .no-hero-cards header.theme-white .langs span,
  .v2.theme-white header .langs a, 
  .v2.theme-white header .langs span,
  .v2 header.theme-white .langs a, 
  .v2 header.theme-white .langs span,
  header.v2.theme-white .langs a, 
  header.v2.theme-white .langs span {
    color: #fff;
  }
  
}
