
/* Fonts */

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


/* 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 {
  color: #000;
  font-size: 18px;
  line-height: 24px;
  font-family: Roboto, sans-serif;
  background-color: #f1e4d7;
  display: flex;
  flex-direction: column;
  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: 18px;
  font-weight: 700;
  line-height: 1.1;
  word-wrap: break-word;
}

h1 {
  font-size: 28px;
}

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


/* Badge */

.badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  background-color: #0057a5;
  border-radius: 8px;
  padding: 4px 8px;
  display: inline-block;
}

.badge.blue {
  background-color: #eeba56;
  color: #000000;
}

.badge.red {
  background-color: #e60050;
}

.badge.green {
  color: #1d2859;
  font-weight: 700;
  background-color: #00dcb4;
}

.badge.beige {
  color: #1d2859;
  font-weight: 700;
  background-color: #e8d0bb;
}


/* Form */

.cc-form .content {
  color: #fff;
  font-family: Roboto, sans-serif;
  position: relative;
  z-index: 1;
  padding: 56px 32px;
  background-color: #075da7;
  border-radius: 40px;
}

.cc-form input, .cc-form input:focus {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  outline: none;
}

.cc-form .field {
  position: relative;
  flex: 1;
}

.cc-form .row:not(:last-child) .field {
  margin-bottom: 36px;
}

.cc-form .field > label {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cc-form .field > label .value {
  font-weight: 700;
}

.cc-form .field.radio {
  display: flex;
  align-items: center;
}

.cc-form .field.radio > label {
  font-size: 14px;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cc-form .field.radio label:not(:last-child) {
  margin-right: 32px;
}

.cc-form .field.radio .icon {
  position: absolute;
  top: 50%;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-60%);
}

.cc-form .field.radio .icon:after {
  content: " ";
  position: absolute;
  display: none;
}

.cc-form .field.radio input:checked ~ .icon:after {
  display: block;
}

.cc-form .field.radio .icon::after {
  top: 7px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0abb7f;
}

.cc-form .field.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.cc-form .field.slider {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cc-form .field.slider input {
  --bg: #fff;
  --pbar: #0abb7f;
  width: 100%;
  height: 8px;
  background-color: #fff;
  border-radius: 24px;
  outline: none;
  transition: background 450ms ease-in;
}

.cc-form .field.slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background-color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 3px 5px 0 rgba(72, 100, 226, 0.2);
  cursor: pointer;
}

.cc-form .field.slider input::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 5px 0 rgba(72, 100, 226, 0.2);
  cursor: pointer;
}

.cc-btn {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 1.2px;
  padding: 12px;
  border: 0 none;
  border-radius: 24px;
  background-color: #e10918;
  min-height: 48px;
  cursor: pointer;
  transition: background-color 0.15s linear;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

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


/* Calculator */

#calculator .note {
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1.2;
  padding: 24px;
}

#calculator .cc-form {
  margin: 0 auto 44px;
}

#calculator .cc-form .note {
  display: none;
}

#calculator .graph {
  margin: 0 -24px;
  padding: 0 24px;
  position: relative;
  transition: opacity 0.25s linear;
}

#calculator .graph.hidden {
  opacity: 0;
  transition: opacity 0.3s linear 0.4s;
}

#calculator .graph .holder {
  position: relative;
  height: 214px;
  overflow: hidden;
}

#calculator .graph canvas {
  user-select: none;
}

#calculator .graph .labels {
  color: #002C54;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.2;
  min-height: 16px;
  position: relative;
  top: -12px;
}

#calculator .graph .labels div:first-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
}

#calculator .graph .labels div:last-child {
  position: absolute;
  top: 0;
  right: 38px;
}

#calculator .graph .legend {
  color: #002C54;
  font-family: Roboto, sans-serif;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 8px;
  transition: opacity 0.4s linear;
}

#calculator .graph.hidden .legend {
  transition: opacity 0.4s linear 0.3s;
  opacity: 0;
}

#calculator .graph .legend > div {
  flex: 1 0 300px;
  position: relative;
  padding: 0 18px 0 42px;
  margin-bottom: 24px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#calculator .graph .legend > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 31px;
  border-radius: 40px;
  background-color: #0abb7f;
}

#calculator .graph .legend > div:last-child::before {
  background-color: #3f4d5a;
}

#calculator .graph .legend h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28px;
  margin-bottom: -4px;
}

#calculator .graph .legend h3 span {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.56px;
}

#calculator .graph .legend h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.28px;
  margin-bottom: 3px;
}

@media screen and (min-width: 769px) {
  
  #calculator .graph .holder {
    height: 428px;
  }
  
}


/* Main */

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

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

header {
  color: #fff;
  background-color: #00396b;
  padding-bottom: 30px;
  margin-bottom: -22px;
}

header > .back {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
}

header .items {
  display: flex;
  outline: none;
  user-select: none;
}

header .item {
  flex: 1 0 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 24px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s linear, transform 0s linear;
  z-index: 0;
}

header .item:not(:first-child) {
  transform: translateX(-100%);
}

header .item:first-child:last-child,
header .item.active {
  opacity: 1;
  z-index: 1;
}

header .item:before {
  content: "";
  height: 277px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 54, 102, 0.0001) 3.58%, #00396B 89.01%);
  z-index: 1;
}

header .item .img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 0;
}

header .item .img img {
  max-width: unset;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

header .item .info {
  font-size: 18px;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

header .item h1 {
  line-height: 1.2;
  margin: 10px 0 2px;
  letter-spacing: 0.4px;
}

header .item .cta {
  margin-top: 14px;
}

header .item .cta a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-block;
  padding: 7px 15px;
  border-radius: 16px;
  border: 1px solid #ffffff1f;
  background-color: #ffffff1f;
}

header .state {
  display: flex;
  justify-content: center;
}

header .state > span {
  width: 33px;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0 6px 22px;
  position: relative;
  overflow: hidden;
}

header .state > span > span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 2px;
  transform: translateX(-100%);
}

header .state > span.active > span {
  transform: translateX(0);
  background-color: #85aed4;
  transition: all 4s linear;
}

header .noanim .state > span.active > span {
  transition: none;
}

header nav {
  padding: 12px 16px 12px 0;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 9px 25px 0 rgba(0, 0, 0, 0.10);
}

header nav a {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1px;
  display: flex;
  align-items: center;
}

header nav a span {
  margin-left: -8px;
}

header + section {
  padding: 22px 0 16px;
  background-color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

section h2 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

section h2 .hlight {
  color: #4864E2;
}

section h2 .hlight.lg {
  font-size: 32px;
  line-height: 1;
  margin-top: 8px;
  display: inline-block;
}

section h3 {
  margin-bottom: 12px;
}

section > h3,
section > .reveal > h3 {
  padding: 0 16px;
}

section .container {
  padding: 0 24px;
}

section .container > .desc {
  margin-bottom: 24px;
}

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

section .container > .desc .img {
  margin: 16px auto -32px;
  display: flex;
  justify-content: center;
}

section .container > .desc .img img {
  max-width: 475px;
  transform: translateX(-60px);
}

section .container h3 {
  padding: 0;
}

section .cards {
  padding: 0 8px 8px;
  display: flex;
  flex-wrap: wrap;
  outline: none;
  user-select: none;
}

section .card {
  color: #fff;
  min-height: 262px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background-color: #00396b;
  border-radius: 16px;
  margin: 0 8px 16px;
  overflow: hidden;
  flex: 1 0 220px;
}

section .card.sm {
  min-height: 220px;
}

section .card.blue {
  background-color: #5d5fef;
}

section .card.red {
  background-color: #e60050;
}

section .card.light {
  color: #000;
  background-color: #f8f2ec;
}

section .cards:not(.usp) .card:before {
  content: "";
  height: 216px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(29, 40, 89, 0) 0%, #1d2859 100%);
  z-index: 1;
}

section .card .img {
  position: absolute;
  top: -24px;
  bottom: 0;
  left: 145px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  transform: rotate(10deg);
}

section .card .img img {
  max-width: unset;
  width: 248px;
}

section .card.cover {
  background-color: transparent;
}

section .card.cover .img {
  top: 0;
  left: 0;
  transform: none;
}

section .card.cover .img img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

section .card .info {
  padding: 16px;
  position: relative;
  z-index: 2;
}

section .card h3 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  margin-top: 6px;
}

section .card .info .desc {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  margin-top: 4px;
}

section .container .slider {
  margin: 0 -8px;
}

section .slider {
  margin: 0 8px;
}

section .slider .cards {
  flex-wrap: nowrap;
  padding-left: 0;
  padding-right: 0;
  transition: transform 1s cubic-bezier(.17,.67,.36,.98);
}

section .slider .card {
  flex: 1 0 200px;
}

section .slider .tns-outer {
  display: flex;
  flex-direction: column;
}

section .slider .tns-ovh {
  overflow: visible;
}

section .slider .tns-nav {
  order: 2;
  display: flex;
  justify-content: center;
}

section .slider .tns-outer .card {
  display: inline-flex;
}

section .slider + .desc {
  margin-top: 16px;
}

section .cards.usp .img {
  position: static;
  top: 0;
  left: 0;
  transform: none;
  flex: 1 1 0%;
  display: flex;
  align-items: flex-end;
}

section .cards.usp .img img {
  width: 128px;
  margin: 0 auto 24px;
}

section .cards.usp .img.sh img {
  width: auto;
  height: 100px;
}

section .cards.usp .card .info {
  padding: 24px 24px 16px;
}

section .cards.usp .card .info .desc {
  font-size: 18px;
  line-height: 1.3;
}

section .slider .usp .card {
  flex: 1 0 250px;
}

section .panel {
  border: 1px solid #0000001f;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}

section .panel.sm {
  border-radius: 8px;
}

section .panel .items > div {
  font-size: 14px;
  line-height: 1.4;
  padding-left: 46px;
  position: relative;
}

section .panel .items > div:not(:last-child) {
  margin-bottom: 16px;
}

section .panel .items .icon {
  width: 32px;
  position: absolute;
  top: -2px;
  left: 0;
}

section .panel h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

section .panel .items h4 {
  margin-bottom: 6px;
}

section .panel.offer .price {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

section .panel.offer .price > span {
  margin-right: 6px;
}

section .panel.offer .price .old {
  color: #b8b8b8;
  text-decoration: line-through;
}

section .panel.offer .price .currency {
  font-size: 16px;
  margin: 0 0 4px;
}

section .panel.offer .desc {
  font-size: 12px;
  margin-top: 8px;
}

section .panel .link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section .panel .link h4 {
  color: #3d3d3d;
  flex: 1 1 0%;
  padding-right: 16px;
}

section .panel .link .icon {
  flex: 0 0 48px;
  height: 48px;
  border: 1px solid #0057a5;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section .panel .link .icon img {
  width: 24px;
}

section .panel.links {
  margin: -8px 0 8px;
}

section .panel.links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 16px 20px 24px;
  min-height: 56px;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
}

section .panel.links a:not(:last-child) {
  margin-bottom: 8px;
}

section .panel.links h4 {
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1px;
  flex: 1 1 0%;
}

section .panel.links .icon img {
  width: 24px;
}

section .ccard img {
  width: 283px;
  margin: 0 auto 24px;
}

section .note {
  color: #b8b8b8;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  margin-bottom: 24px;
}

footer {
  height: 80px;
}

footer .sticky {
  padding: 24px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-color: #fff;
  box-shadow: 0 6px 30px 5px #0000001f;
}

footer .sticky a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background-color: #0057a5;
  min-height: 48px;
  max-width: 740px;
  padding: 7px 15px;
  margin: 0 auto;
}

footer .cta {
  padding: 24px 24px 40px;
  position: relative;
  background-color: #fff;
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.20), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

footer .cta input[type=checkbox] {
  -webkit-appearance: none;
  height: 1px;
  width: 1px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: -100%;
}

footer .cta label {
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  display: inline-block;
  padding-left: 34px;
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

footer .cta label:before, 
footer .cta label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

footer .cta label:before {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #0057a5;
  border-radius: 5px;
  cursor: pointer;
}

footer .cta .cc-btn {
  white-space: normal;
  line-height: 1.3;
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

footer .cta input[type=checkbox]:checked + label:after {
  transform: rotate(-45deg);
  top: 5px;
  left: 5px;
  width: 10px;
  height: 6px;
  border: 2px solid #0057a5;
  border-top-style: none;
  border-right-style: none;
}

footer .cta input[type=checkbox]:not(:checked) ~ .btn-holder .cc-btn {
  color: rgb(255 255 255 / 48%);
  background-color: rgb(215 43 43 / 50%);
  pointer-events: none;
}


/* Main v2 */

main.v2 {
  color: #000;
}

main.v2 header {
  background-color: transparent;
  padding: 74px 24px 16px;
  margin: 0;
}

main.v2 header .holder {
  border-radius: 16px;
  overflow: hidden;
}

main.v2 header + section {
  border-radius: 0;
}

main.v2 header .item {
  min-height: 320px;
}

main.v2 header .item:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 3.58%, #000 89.01%);
}

main.v2 header .item .info {
  padding: 0 24px;
}

main.v2 section {
  background-color: transparent;
}

main.v2 header .item h1,
main.v2 section h2,
main.v2 section h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

main.v2 section h2,
main.v2 section h3 {
  margin-top: 8px;
  margin-bottom: 16px;
}

main.v2 section .panel {
  border: 0 none;
  padding: 0;
}

main.v2 section .panel:not(.links) {
  margin: 16px 0 112px;
}

main.v2 section .panel .items > div {
  padding: 12px 16px 12px 18px;
  background-color: #d8e5f3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  min-height: 56px;
}

main.v2 section .panel .items > div:not(:last-child) {
  margin-bottom: 8px;
}

main.v2 section .panel .items .icon {
  position: static;
  margin-right: 10px;
}

main.v2 section .panel .items h4 {
  margin: 0;
}

main.v2 section .panel.offer {
  background-color: #fff;
  padding: 24px;
}

main.v2 section .panel.offer .price > span {
  color: #3d3d3d;
  font-weight: 700;
}

main.v2 section .panel.offer .price .old {
  color: #b8b8b8;
}

main.v2 section .panel.offer .price .currency {
  color: #000;
  font-size: 20px;
}

main.v2 section .note {
  color: #000;
  font-size: 14px;
  line-height: 1.4;
  margin: 16px 0 0;
}

main.v2 footer {
  height: unset;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

@media screen and (min-width: 569px) {
  
  main.v2 header .item {
    min-height: 440px;
  }
  
}

@media screen and (min-width: 769px) {
  
  section .container {
    padding: 0 24px;
  }
  
  footer .cta {
    padding: 24px 24px 40px;
  }
  
}

@media screen and (min-width: 993px) {
  
  section .container {
    padding: 0 32px;
  }
  
  footer .cta {
    padding: 24px 32px 56px;
  }
  
}