@import url("https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass+Mono:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary_red: #fa505c;
  --primary_blue: #050d73;
  --primary_white: #fff;
  --secondary_purple: #990dcf;
  --secondary_blue: #007dba;
  --secondary_grey: #333132;
  --secondary_lightgrey: #f4f4f4;
  --tertiary_purple_t1: #570777;
  --tertiary_purple_t2: #bf45cf;
  --tertiary_purple_t3: #e37dcc;
  --tertiary_blue_t1: #005480;
  --tertiary_blue_t2: #05a3d6;
  --tertiary_blue_t3: #08ccf2;
  --tertiary_grey_t1: #555;
  --tertiary_grey_t2: #9b9b9b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

#menu,
#disclaimer,
#AccessRestricted,
#site {
  display: none;
}

/* #menu,
#filter,
#AccessRestricted,
#site {
  display: none;
} */

/* #disclaimer,
#AccessRestricted,
#filter {
  display: none;
} */



html {
  box-sizing: border-box;
  scroll-padding-top: 72px;
}
@media screen and (max-width: 1737px) {
  html {
    scroll-padding-top: 127px;
  }
}
@media screen and (max-width: calc(1024px - 1px)) {
  html {
    scroll-padding-top: 48px;
  }
}

.bold {
  font-weight: bold;
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid var(--primary_red);
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

p:last-child {
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none outside none;
}

ol {
  counter-reset: item;
}

ol li {
  display: block;
}

ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}

ol li li {
  padding-left: 10px;
}

ol li li:before {
  content: counters(item, ".") " ";
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

img,
iframe,
video,
audio,
object {
  max-width: 100%;
}

img,
iframe {
  border: 0 none;
}

img {
  height: auto;
  display: inline-block;
  vertical-align: top;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: none;
  -webkit-box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
}

input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

fieldset {
  padding: 0;
}

button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  appearance: none;
}

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

input[type="text"],
input[type="submit"],
button {
  -moz-appearance: none;
  -webkit-appearance: none;
}

button,
select {
  text-transform: none;
}

blockquote {
  padding: 0;
  margin: 0;
}

pre {
  white-space: normal;
}

@keyframes opacity {
  50% {
    opacity: 0;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }
}

.grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
@media screen and (max-width: calc(1024px - 1px)) {
  .grid-8:not {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-8-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
@media screen and (max-width: calc(1024px - 1px)) {
  .grid-8-container {
    display: block;
  }
}



.col-span-1 {
  grid-column: span 1;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-8 {
  grid-column: span 8;
}
.col-span-12 {
  grid-column: span 12;
}

.col-row-span-1 {
  grid-row: span 1;
}

.col-row-span-2 {
  grid-row: span 2;
}

.col-row-span-3 {
  grid-row: span 3;
}

.col-row-span-4 {
  grid-row: span 4;
}

.col-row-span-5 {
  grid-row: span 5;
}

.col-row-span-6 {
  grid-row: span 6;
}

@media (min-width: 1024px) {
  .col-md-span-1 {
    grid-column: span 1;
  }

  .col-md-span-2 {
    grid-column: span 2;
  }

  .col-md-span-3 {
    grid-column: span 3;
  }

  .col-md-span-4 {
    grid-column: span 4;
  }

  .col-md-span-5 {
    grid-column: span 5;
  }

  .col-md-span-6 {
    grid-column: span 6;
  }

  .col-md-span-7 {
    grid-column: span 7;
  }

  .col-md-span-8 {
    grid-column: span 8;
  }

  .col-md-span-9 {
    grid-column: span 9;
  }

  .col-md-span-10 {
    grid-column: span 10;
  }

  .col-md-span-11 {
    grid-column: span 11;
  }

  .col-md-span-12 {
    grid-column: span 12;
  }

  .col-md-row-span-1 {
    grid-row: span 1;
  }

  .col-md-row-span-2 {
    grid-row: span 2;
  }

  .col-md-row-span-3 {
    grid-row: span 3;
  }

  .col-md-row-span-4 {
    grid-row: span 4;
  }

  .col-md-row-span-5 {
    grid-row: span 5;
  }

  .col-md-row-span-6 {
    grid-row: span 6;
  }
}

.bg-red {
  background: var(--primary_red);
}

.bg-blue {
  background: var(--primary_blue);
}

.left-line-red {
  position: relative;
}

.left-line-red:before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--primary_red);
  left: 70px;
  z-index: 99;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .left-line-red:before {
    left: 50px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .left-line-red:before {
    left: 16px;
  }
}

.right-line-red {
  position: relative;
}

.right-line-red:before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--primary_red);
  right: 70px;
  z-index: 99;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .right-line-red:before {
    right: 50px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .right-line-red:before {
    right: 16px;
  }
}

.line-red {
  position: relative;
}

.line-red:before,
.line-red:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--primary_red);
  z-index: 99;
}

.line-red:before {
  left: 70px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .line-red:before {
    left: 50px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .line-red:before {
    left: 16px;
  }
}

.line-red:after {
  right: 70px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .line-red:after {
    right: 50px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .line-red:after {
    right: 16px;
  }
}

.left-line-blue {
  position: relative;
}

.left-line-blue:before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--primary_blue);
  left: 70px;
  z-index: 99;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .left-line-blue:before {
    left: 50px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .left-line-blue:before {
    left: 16px;
  }
}

.right-line-blue {
  position: relative;
}

.right-line-blue:before {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--primary_blue);
  right: 70px;
  z-index: 99;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .right-line-blue:before {
    right: 50px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .right-line-blue:before {
    right: 16px;
  }
}

.line-blue {
  position: relative;
}

.line-blue:before,
.line-blue:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--primary_blue);
  z-index: 99;
}

.line-blue:before {
  left: 70px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .line-blue:before {
    left: 50px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .line-blue:before {
    left: 16px;
  }
}

.line-blue:after {
  right: 70px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .line-blue:after {
    right: 50px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .line-blue:after {
    right: 16px;
  }
}
body {
  min-width: 320px;
  margin: 0;
  color: var(--primary_blue);
  font: 300 16px/140% "Overpass", "Arial", sans-serif;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media screen and (max-width: calc(1024px - 1px)) {
  body.no-scroll {
    overflow: hidden;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.smile-container {
  width: 100%;
  margin: 0 auto;
  padding-right: 70px;
  padding-left: 70px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .smile-container {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .smile-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.h1 {
  margin: 0;
  font: 600 60px/100% "Poppins", "Arial", sans-serif;
}

.h1:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .h1 {
    font-size: 35px;
  }
}

.h1 span {
  display: block;
}

.h1 .space {
  padding-left: 68px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .h1 .space {
    padding-left: 26px;
  }
}

@media screen and (min-width: 1024px) and (max-width: calc(1440px - 1px)) {
  .h1-fluid {
    font-size: calc(35px + 20 * (100vw - 1024px) / 416);
  }
}

@media screen and (min-width: 430px) and (max-width: calc(1024px - 1px)) {
  .h1-fluid {
    font-size: calc(35px + 15 * (100vw - 390px) / 633);
  }
}

.h2 {
  margin: 0;
  font: 500 47px/100% "Poppins", "Arial", sans-serif;
}

.h2:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .h2 {
    font-size: 25px;
  }
}

.h2 span {
  display: block;
}

.h2 .space {
  padding-left: 50px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .h2 .space {
    padding-left: 26px;
  }
}

@media screen and (min-width: 1024px) and (max-width: calc(1440px - 1px)) {
  .h2-fluid {
    font-size: calc(34px + 13 * (100vw - 1024px) / 416);
  }
}

@media screen and (min-width: 430px) and (max-width: calc(1024px - 1px)) {
  .h2-fluid {
    font-size: calc(25px + 9 * (100vw - 390px) / 633);
  }
}

.h3 {
  margin: 0;
  font: 600 32px/100% "Poppins", "Arial", sans-serif;
}

.h3:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .h3 {
    font-size: 18px;
  }
}

.h4 {
  margin: 0;
  font: 400 20px/120% "Poppins", "Arial", sans-serif;
  letter-spacing: 2px;
}

.h4:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .h4 {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

.h5 {
  margin: 0;
  font: 600 18px/120% "Poppins", "Arial", sans-serif;
  letter-spacing: 0.9px;
}

.h5:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .h5 {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

.h6 {
  margin: 0;
  font: 600 16px/120% "Poppins", "Arial", sans-serif;
  letter-spacing: 1.6px;
}

.h6:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .h6 {
    font-size: 13px;
    letter-spacing: 1.3px;
  }
}

.p {
  font: 300 16px/140% "Overpass", "Arial", sans-serif;
  margin: 0 0 40px;
}

.p:last-child {
  margin: 0;
}

.subheading {
  margin: 0;
  font: 500 20px/120% "Overpass", "Arial", sans-serif;
  letter-spacing: 1px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .subheading {
    letter-spacing: 0;
  }
}

.paragraph-text {
  font: 300 16px/140% "Overpass", "Arial", sans-serif;
}

.hidden {
  display: none;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hidden-sm {
    display: none;
  }
}


.btn-wrap {
  display: flex;
}

.btn-primary-red {
  position: relative;
  background: var(--primary_red);
}

.btn-primary-red::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050d73 0%, #990dcf 50%, #fa505c 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.btn-primary-red:hover::before {
  opacity: 1;
}

.btn-primary-red a {
  color: var(--primary_white);
  border: 1px solid transparent;
  padding: 8px 25px 8px 7px;
  display: block;
  font: 500 16px/100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-decoration: none;
  min-width: 165px;
}

.btn-primary-red a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(/images/icon-arrow-s-right.svg);
  mask-image: url(/images/icon-arrow-s-right.svg);
  right: 7px;
  width: 10px;
  height: 11px;
  transition: opacity 0.4s ease;
}

.btn-primary-red a:disabled,
.btn-primary-red a.disabled {
  color: var(--tertiary_grey_t2);
  background: var(--secondary_lightgrey);
  border-color: var(--secondary_lightgrey);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary-red.no-arrow a {
  padding: 8px 7px;
  min-width: auto;
}

.btn-primary-red.no-arrow a:after {
  display: none;
}

.btn-primary-red.btn-download a {
  padding-right: 35px;
}

.btn-primary-red.btn-download a:after {
  -webkit-mask-image: url(/images/icon-download.svg);
  mask-image: url(/images/icon-download.svg);
  width: 17px;
  height: 17px;
}

.btn-primary-blue {
  position: relative;
  background: var(--primary_blue);
}

.btn-primary-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050d73 0%, #990dcf 50%, #fa505c 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.btn-primary-blue:hover::before {
  opacity: 1;
}

.btn-primary-blue a {
  color: var(--primary_white);
  border: 1px solid transparent;
  padding: 8px 25px 8px 7px;
  display: block;
  font: 500 16px/100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-decoration: none;
  min-width: 165px;
}

.btn-primary-blue a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(/images/icon-arrow-s-right.svg);
  mask-image: url(/images/icon-arrow-s-right.svg);
  right: 7px;
  width: 10px;
  height: 11px;
  transition: opacity 0.4s ease;
}

.btn-primary-blue a:disabled,
.btn-primary-blue a.disabled {
  color: var(--tertiary_grey_t2);
  background: var(--secondary_lightgrey);
  border-color: var(--secondary_lightgrey);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary-blue.no-arrow a {
  padding: 8px 7px;
  min-width: auto;
}

.btn-primary-blue.no-arrow a:after {
  display: none;
}

.btn-primary-blue.btn-download a {
  padding-right: 35px;
}

.btn-primary-blue.btn-download a:after {
  -webkit-mask-image: url(/images/icon-download.svg);
  mask-image: url(/images/icon-download.svg);
  width: 17px;
  height: 17px;
}

.btn-secondary-red a {
  color: var(--primary_red);
  border: 1px solid var(--primary_red);
  padding: 8px 25px 8px 7px;
  display: block;
  font: 500 16px/100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-decoration: none;
  min-width: 165px;
}

.btn-secondary-red a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(/images/icon-arrow-s-right.svg);
  mask-image: url(/images/icon-arrow-s-right.svg);
  right: 7px;
  width: 10px;
  height: 11px;
  transition: opacity 0.4s ease;
}

.btn-secondary-red a:hover {
  color: var(--primary_white);
  border-color: var(--primary_red);
  background: var(--primary_red);
}

.btn-secondary-red a:disabled,
.btn-secondary-red a.disabled {
  color: var(--tertiary_grey_t2);
  background: var(--primary_white);
  border-color: var(--tertiary_grey_t2);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-secondary-red.no-arrow a {
  padding: 8px 7px;
  min-width: auto;
}

.btn-secondary-red.no-arrow a:after {
  display: none;
}

.btn-secondary-red.btn-download a {
  padding-right: 35px;
}

.btn-secondary-red.btn-download a:after {
  -webkit-mask-image: url(/images/icon-download.svg);
  mask-image: url(/images/icon-download.svg);
  width: 17px;
  height: 17px;
}

.btn-secondary-blue a {
  color: var(--primary_blue);
  border: 1px solid var(--primary_blue);
  padding: 8px 25px 8px 7px;
  display: block;
  font: 500 16px/100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-decoration: none;
  min-width: 165px;
}

.btn-secondary-blue a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(/images/icon-arrow-s-right.svg);
  mask-image: url(/images/icon-arrow-s-right.svg);
  right: 7px;
  width: 10px;
  height: 11px;
  transition: opacity 0.4s ease;
}

.btn-secondary-blue a:hover {
  color: var(--primary_white);
  border-color: var(--primary_blue);
  background: var(--primary_blue);
}

.btn-secondary-blue a:disabled,
.btn-secondary-blue a.disabled {
  color: var(--tertiary_grey_t2);
  background: var(--primary_white);
  border-color: var(--tertiary_grey_t2);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-secondary-blue.no-arrow a {
  padding: 8px 7px;
  min-width: auto;
}

.btn-secondary-blue.no-arrow a:after {
  display: none;
}

.btn-secondary-blue.btn-download a {
  padding-right: 35px;
}

.btn-secondary-blue.btn-download a:after {
  -webkit-mask-image: url(/images/icon-download.svg);
  mask-image: url(/images/icon-download.svg);
  width: 17px;
  height: 17px;
}

.btn-tertiary-red a,
.btn-tertiary-red button {
  color: var(--primary_red);
  border: 1px solid transparent;
  padding: 8px 25px 8px 7px;
  display: block;
  font: 500 16px/100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-decoration: none;
  min-width: 165px;
}

.btn-tertiary-red a:after,
.btn-tertiary-red button:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(/images/icon-arrow-s-right.svg);
  mask-image: url(/images/icon-arrow-s-right.svg);
  right: 7px;
  width: 10px;
  height: 11px;
  transition: opacity 0.4s ease;
}

.btn-tertiary-red a:hover,
.btn-tertiary-red button:hover {
  color: var(--primary_blue);
}

.btn-tertiary-red a:disabled,
.btn-tertiary-red a.disabled,
.btn-tertiary-red button:disabled,
.btn-tertiary-red button.disabled {
  color: var(--tertiary_grey_t2);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-tertiary-red.no-arrow a {
  padding: 8px 7px;
  min-width: auto;
}

.btn-tertiary-red.no-arrow a:after {
  display: none;
}

.btn-tertiary-red.btn-download a {
  padding-right: 35px;
}

.btn-tertiary-red.btn-download a:after {
  -webkit-mask-image: url(/images/icon-download.svg);
  mask-image: url(/images/icon-download.svg);
  width: 17px;
  height: 17px;
}

.btn-tertiary-blue a {
  color: var(--primary_blue);
  border: 1px solid transparent;
  padding: 8px 25px 8px 7px;
  display: block;
  font: 500 16px/100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-decoration: none;
  min-width: 165px;
}

.btn-tertiary-blue a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(/images/icon-arrow-s-right.svg);
  mask-image: url(/images/icon-arrow-s-right.svg);
  right: 7px;
  width: 10px;
  height: 11px;
  transition: opacity 0.4s ease;
}

.btn-tertiary-blue a:hover {
  color: var(--primary_red);
}

.btn-tertiary-blue a:disabled,
.btn-tertiary-blue a.disabled {
  color: var(--tertiary_grey_t2);
  cursor: not-allowed;
  pointer-events: none;
}

.btn-tertiary-blue.no-arrow a {
  padding: 8px 7px;
  min-width: auto;
}

.btn-tertiary-blue.no-arrow a:after {
  display: none;
}

.btn-tertiary-blue.btn-download a {
  padding-right: 35px;
}

.btn-tertiary-blue.btn-download a:after {
  -webkit-mask-image: url(/images/icon-download.svg);
  mask-image: url(/images/icon-download.svg);
  width: 17px;
  height: 17px;
}

.btn-wrap-button {
  display: flex;
}

form {
  margin: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.fieldgroup {
  padding: 0;
  border-width: 0;
}

.form-item {
  position: relative;
}

label .required {
  color: red;
}

.form-actions {
  position: relative;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox input:checked + .checkmark {
  background-color: var(--primary_red);
}

.custom-checkbox input:focus-visible + .checkmark {
  outline: 2px solid var(--primary_blue);
  outline-offset: 2px;
}

.custom-checkbox .checkmark {
  height: 20px;
  width: 20px;
  border: 1px solid var(--primary_red);
  display: inline-block;
  transition: background-color 0.2s ease;
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
}

.header .wrap {
  padding: 8px 20px;
  align-items: center;
  background: var(--primary_blue);
  transition: background 0.2s ease;
  color: var(--primary_white);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 5px 20px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .header .wrap {
    display: flex;
    gap: 23px;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1440px) {
  .js-animation .header .wrap {
    background: transparent;
  }
  .header .wrap.relative {
    position: relative;
  }
}

@media screen and (min-width: 1024px) {
  .header .wrap.relative {
    position: relative;
  }
}

@media screen and (min-width: 1440px) {
  .header.is-fixed .wrap,
  .header.bg-header .wrap {
    background: var(--primary_blue);
  }
}

.header .logo {
  display: flex;
  align-items: center;
  grid-row: 1 / span 2;
  grid-column: 1;
}

.header .logo a {
  display: block;
  width: 180px;
  height: 38px;
  overflow: hidden;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .header .logo a {
    width: 136px;
    height: 32px;
    z-index: 11;
  }
}

.header .logo a svg {
  position: relative;
  width: 100%;
  height: 100%;
}

.lang-box-desktop {
  grid-row: 1;
  grid-column: 3;
  justify-self: end;
}

.lang-box {
  width: max-content;
  text-transform: uppercase;
  font: 400 14px/19px "Poppins", "Arial", sans-serif;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .lang-box {
    line-height: 18px;
  }
}

.lang-box > a {
  position: relative;
  padding: 0 14px 0 0;
}

.lang-box > a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 11px;
  height: 11px;
  -webkit-mask-image: url(/images/icon-globe.svg);
  mask-image: url(/images/icon-globe.svg);
}

.lang-box > a:hover {
  color: var(--primary_red);
}

.lang-box.is-opened > a {
  color: var(--primary_red);
}

.lang-box.is-opened .lang-drop {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (min-width: 1024px) {
  .lang-box.is-opened .lang-drop {
    transform: translateX(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .lang-box.is-opened .lang-drop {
    animation: slideFromCenter 0.2s ease-out;
    transform-origin: center;
  }
}

@keyframes slideFromCenter {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }

  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.lang-drop {
  background: var(--primary_blue);
  position: absolute;
  right: 0;
  bottom: -58px;
  padding: 20px 16px;
  border-left: 2px solid var(--primary_red);
  border-right: 1px solid var(--primary_red);
  opacity: 0;
  pointer-events: none;
  transition: none;
}

@media screen and (min-width: 1024px) {
  .lang-drop {
    transform: translateY(-100%);
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .lang-drop {
    bottom: auto;
    top: 0;
    border-left-width: 1px;
    width: calc(100vw - 148px);
    height: calc(100vh - 48px);
    right: 24px;
    padding: 16px 8px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .lang-drop {
    width: calc(100vw - 80px);
  }
}

.lang-drop ul {
  display: flex;
  gap: 40px;
  font: 400 14px/19px "Poppins", "Arial", sans-serif;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .lang-drop ul {
    line-height: 18px;
    flex-direction: column;
    padding: 16px 8px;
    gap: 29px;
    font: 400 16px/150% "Poppins", "Arial", sans-serif;
  }
}

@media screen and (max-width: calc(1024px - 1px)) and (max-width: calc(1024px - 1px)) {
  .lang-drop ul {
    line-height: 140%;
  }
}

.lang-drop ul a {
  cursor: pointer;
  position: relative;
  color: var(--primary_red);
}

.lang-drop ul a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  opacity: 0;
  transform-origin: left;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  height: 2px;
}

.lang-drop ul a:hover:after {
  transform: scaleX(1);
  opacity: 1;
}

.lang-drop ul a:hover,
.lang-drop ul a.is-active {
  color: var(--primary_white);
}

.lang-drop ul a:hover:after,
.lang-drop ul a.is-active:after {
  transform: scaleX(1);
  opacity: 1;
}

.header-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.mega-menu {
  grid-row: 2;
  grid-column: 2;
  justify-self: flex-end;
}

.lang-box a.open {
  cursor: pointer;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .mega-menu {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    height: 100vh;
    width: 100vw;
    background: var(--primary_blue);
    padding: 48px 50px 0;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .is-open-menu .mega-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .is-open-menu .mega-menu:before,
  .is-open-menu .mega-menu:after {
    transform: translateY(0);
  }
}

@media screen and (max-width: calc(1024px - 1px)) and (max-width: calc(768px - 1px)) {
  .mega-menu {
    padding: 48px 16px 0;
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .mega-menu:before,
  .mega-menu:after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--primary_red);
    transition: transform 0.7s ease;
  }

  .mega-menu:before {
    transform: translateY(-100%);
    left: 50px;
  }

  .mega-menu:after {
    transform: translateY(100%);
    right: 50px;
  }
}

@media screen and (max-width: calc(1024px - 1px)) and (max-width: calc(768px - 1px)) {
  .mega-menu:before {
    left: 16px;
  }
}

@media screen and (max-width: calc(1024px - 1px)) and (max-width: calc(768px - 1px)) {
  .mega-menu:after {
    right: 16px;
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  @keyframes hideCircleDown {
    0% {
      clip-path: circle(150% at 50% 0%);
      opacity: 1;
    }

    100% {
      clip-path: circle(0% at 50% 0%);
      opacity: 0;
    }
  }
}

@media screen and (max-width: calc(1024px - 1px)) and (max-width: calc(1024px - 1px)) {
  .mega-menu.menu-hidden .menu {
    opacity: 0;
    pointer-events: none;
  }

  .mega-menu.menu-hidden .sign-in > a,
  .mega-menu.menu-hidden .lang-box > a {
    opacity: 0;
    pointer-events: none;
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .mega-menu-holder {
    display: flex;
    height: 100%;
  }

  .mega-menu-holder .main-nav {
    flex: 0 0 73.5%;
    padding-top: 18px;
    position: relative;
  }

  .mega-menu-holder .main-nav:before {
    position: absolute;
    width: 100%;
    height: 140px;
    left: 0;
    bottom: 0;
    content: "";
    background: url(/images/bg-mobile-main-nav-landscape.png) 0 100% no-repeat;
    transition: background-position 0.3s ease;
    z-index: 11;
    pointer-events: none;
  }

  .mega-menu-holder .main-nav ul {
    overflow-y: auto;
  }

  .mega-menu-holder.bg-landscape-static .main-nav:before {
    background-image: url(/images/bg-mobile-main-nav-landscape.png);
  }

  .mega-menu-holder.bg-landscape-static .user-nav-mobile {
    background-image: url(/images/bg-user-nav-mobile-landscape.png);
  }

  .mega-menu-holder.bg-air-static .main-nav:before {
    background-image: url(/images/bg-mobile-main-nav-air.png);
  }

  .mega-menu-holder.bg-air-static .user-nav-mobile {
    background-image: url(/images/bg-user-nav-mobile-air.png);
  }

  .mega-menu-holder.bg-air-drop .main-nav:before {
    background-image: url(/images/bg-mobile-main-nav-air.png);
  }

  .mega-menu-holder.bg-air-drop .user-nav-mobile {
    background-image: url(/images/bg-user-nav-mobile-air.png);
  }

  .mega-menu-holder .user-nav-mobile {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 0 40px 16px;
    gap: 32px;
    background: url(/images/bg-user-nav-mobile-landscape.png) 100% 0 no-repeat;
    transition: background-position 0.3s ease;
    background-size: 100% auto;
  }

  .is-open-menu .mega-menu-holder .user-nav-mobile {
    background-position: 100% 0;
  }

  .is-open-menu .mega-menu-holder .user-nav-mobile:before {
    transform: translateY(0);
  }

  .mega-menu-holder .user-nav-mobile:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--primary_red);
    transition: transform 0.7s ease;
    transform: translateY(100%);
  }

  .mega-menu-holder .user-nav-mobile .sign-in {
    order: 2;
  }

  .mega-menu-holder .user-nav-mobile .lang-box {
    margin-top: auto;
    order: 1;
  }

  .mega-menu-holder .user-nav {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    padding-bottom: 38px;
  }
}

.main-nav .menu {
  display: flex;
  gap: 32px;
  text-transform: uppercase;
  font: 400 16px/150% "Poppins", "Arial", sans-serif;
}

@media screen and (min-width: 1024px) and (max-width: calc(1440px - 1px)) {
  .main-nav .menu {
    font-size: calc(14px + 2 * (80vw - 1024px) / 416);
    gap: calc(5px + 27 * (100vw - 1024px) / 416);
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .main-nav .menu {
    line-height: 140%;
    flex-direction: column;
    padding: 0 8px;
    gap: 5px;
    position: relative;
    height: 100%;
    transition: opacity 0.2s ease;
  }
}

@media screen and (min-width: 1024px) {  
  .main-nav .menu > li > a,
  .main-nav .menu > li > span {
    position: relative;
    padding: 4px 0;
    display: block;
  }

  .main-nav .menu > li > a:after,
  .main-nav .menu > li > span:after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;

    background: var(--primary_red);
    bottom: 4px;
    height: 2px;
  }

  .main-nav .menu > li:hover > a:after,
  .main-nav .menu > li:hover > span:after {
    transform: scaleX(1);
  }

  .main-nav .menu > li > a:hover:after,
  .main-nav .menu > li > span:hover:after {
    background: var(--primary_red);
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .main-nav .menu > li {
    padding: 12px 8px;
  }

  .main-nav .menu > li > a,
  .main-nav .menu > li > span {
    display: block;
    position: relative;
  }

  .main-nav .menu > li > a:before,
  .main-nav .menu > li > span:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 24px;
    height: 24px;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url(/images/icon-arrow-s-right.svg);
    mask-image: url(/images/icon-arrow-s-right.svg);
    right: 7px;
    width: 10px;
    height: 11px;
    transition: opacity 0.4s ease;
  }
}

.burger-menu {
  border: none;
  color: var(--primary_white);
  margin: 0;
  padding: 0;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 20px;
  height: 20px;
  -webkit-mask-image: url(/images/icon-hamburger.svg);
  mask-image: url(/images/icon-hamburger.svg);
  text-indent: -9999px;
  position: relative;
  order: 1;
  z-index: 11;
}

@media screen and (min-width: 1024px) {
  .burger-menu {
    display: none;
  }
  .user-nav-mobile {
    display: none;
  }
}

@media screen and (max-width: calc(1023px)) {
  .lang-box-desktop {
    display: none;
  }
  .user-nav-mobile {
    display: none;
  }
}

.is-open-menu .burger-menu {
  -webkit-mask-image: url(/images/icon-close.svg);
  mask-image: url(/images/icon-close.svg);
}

.main-nav .drop-holder {
  position: absolute;
  width: 100%;
  background: var(--primary_blue);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .main-nav .drop-holder {
    left: 0;
    top: 60px;
    transform: translateX(-20px);
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .main-nav .drop-holder {
    left: 1px;
    top: 0;
    height: 100%;
    width: calc(100% - 1px);
    transform: translateX(-100%);
  }
}

.main-nav .menu-is-opened .drop-holder {
  opacity: 1;
  transform: translate(0);
  pointer-events: auto;
}

.mobile-back {
  color: var(--primary_red);
  display: block;
  padding: 6px 0;
  font: 600 18px/120% "Poppins", "Arial", sans-serif;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .mobile-back {
    line-height: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .mobile-back {
    display: none !important;
  }
}

.footer {
  background: var(--primary_blue);
  color: var(--primary_white);
  position: relative;
}

.footer .smile-container {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .footer .smile-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.footer .wrap {
  padding: 0 8px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .footer .wrap {
    padding: 0 4px;
  }
}

.footer .social-box {
  padding-bottom: 40px;
}

.footer .social-box ul {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .footer .social-box ul {
    gap: 24px;
  }
}

.footer .social-box a {
  display: block;
  width: 23px;
  height: 24px;
  color: var(--primary_red);
  transition: color 0.3s ease;
}

.footer .social-box a:hover {
  color: var(--primary_white);
}

.footer .social-box a svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  fill: currentColor;
}

.footer-nav {
  padding-bottom: 25px;
}

.footer-nav .footer-title {
  color: var(--primary_red);
  text-transform: uppercase;
  margin: 0 0 18px;
  font: 600 18px/120% "Poppins", "Arial", sans-serif;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .footer-nav .footer-title {
    line-height: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .footer-nav .footer-title {
    min-height: 45px;
  }
}

.footer-nav ul {
  padding-right: 8px;
}

.footer-nav ul li {
  text-transform: uppercase;
  padding-bottom: 16px;
  font: 400 14px/19px "Poppins", "Arial", sans-serif;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .footer-nav ul li {
    line-height: 18px;
  }
}

.footer-nav ul a {
  position: relative;
}

.footer-nav ul a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  opacity: 0;
  transform-origin: left;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.footer-nav ul a:hover:after {
  transform: scaleX(1);
  opacity: 1;
}

.footer .copy {
  color: var(--primary_red);
  font-size: 12px;
  font-weight: 400;
  font-family: "Poppins", "Arial", sans-serif;
}
.footer .copy ul {
  display: flex;
  gap: 16px;
  padding-bottom: 2px;
}
.footer .copy ul li {
  text-transform: uppercase;
  font: 400 14px / 19px "Poppins", "Arial", sans-serif;
}
.footer .copy ul a {
  position: relative;
}
.footer .copy ul a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  opacity: 0;
  transform-origin: left;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.footer .copy ul a:hover:after {
  transform: scaleX(1);
  opacity: 1;
}

.ck-content {
  font: 300 16px/140% "Overpass", "Arial", sans-serif;
}

.ck-content-white {
  color: var(--primary_white);
}

.ck-content h1 {
  font: 600 60px/100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
  color: var(--primary_red);
  margin: 0 0 28px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .ck-content h1 {
    font-size: 35px;
    margin-bottom: 20px;
  }
}

.ck-content h2 {
  font: 500 47px/100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
  color: var(--primary_red);
  margin: 0 0 20px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .ck-content h2 {
    font-size: 25px;
  }
}

.ck-content h3 {
  font: 600 32px/100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
  color: var(--primary_red);
  margin: 0 0 20px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .ck-content h3 {
    font-size: 18px;
  }
}

.ck-content h4 {
  font: 400 20px/120% "Poppins", "Arial", sans-serif;
  letter-spacing: 2px;
  color: var(--primary_red);
  text-transform: uppercase;
  margin: 0 0 20px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .ck-content h4 {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

.ck-content h5 {
  font: 600 18px/120% "Poppins", "Arial", sans-serif;
  letter-spacing: 0.9px;
  color: var(--primary_red);
  margin: 0 0 20px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .ck-content h5 {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

.ck-content h6 {
  font: 600 16px/120% "Poppins", "Arial", sans-serif;
  letter-spacing: 1.6px;
  color: var(--primary_red);
  margin: 0 0 20px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .ck-content h6 {
    font-size: 13px;
    letter-spacing: 1.3px;
  }
}

.ck-content p {
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 12px;
}

.ck-content p:last-child {
  margin: 0;
}

.popup-content p a,
.ck-content p a {
  color: var(--secondary_blue);
  text-decoration: underline;
}

.popup-content p a:hover,
.ck-content p a:hover {
  color: var(--secondary_purple);
}

.popup h2 {
  font: 500 47px / 100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
  color: var(--primary_red);
  margin: 0;
}

.ck-content ul,
.ck-content ol {
  padding: 0 0 0 7px;
  margin: 0 0 24px;
  list-style: none !important;
}

.div_country_filtered .ck-content ul {
  margin: 0;
}

.ck-content ul:last-child,
.ck-content ol:last-child {
  margin-bottom: 0;
}

.ck-content ul li,
.ck-content ol li {
  position: relative;
  padding: 6px 0 6px 18px;
}

.ck-content ul li p,
.ck-content ol li p {
  margin: 0;
}

.ck-content ul ul,
.ck-content ul ol,
.ck-content ol ul,
.ck-content ol ol {
  padding: 6px 0 0 6px;
  margin-bottom: -6px;
}

.ck-content ul a,
.ck-content ol a {
  color: var(--secondary_blue);
  text-decoration: underline;
}

.ck-content ul a:hover,
.ck-content ol a:hover {
  color: var(--secondary_purple);
}

.ck-content ul p,
.ck-content ol p {
  margin: 0 0 16px;
}

.ck-content ul p:last-child,
.ck-content ol p:last-child {
  margin: 0;
}

.ck-content ul li:before {
  position: absolute;
  left: 4px;
  top: 12px;
  content: "";
  width: 4px;
  height: 4px;
  background: var(--primary_blue);
  margin: 0;
  border-radius: 100%;
}
.ck-content-white ul li:before {
  background: var(--primary_white);
}

.ck-content ol {
  counter-reset: list;
  list-style: none !important;
}

.ck-content ol li:before {
  position: absolute;
  left: 2px;
  top: 6px;
  counter-increment: list;
  content: counters(list, ".") ".";
}

.ck-content ol li li:before {
  content: counter(list, lower-latin) ".";
}

.ck-content .subheading {
  margin: 0;
  font: 500 20px/120% "Overpass", "Arial", sans-serif;
  letter-spacing: 1px;
  padding-bottom: 18px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .ck-content .subheading {
    letter-spacing: 0;
  }
}

.ck-content hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid var(--primary_red) !important;
  height: 0 !important;
}

.ck-content .btn-primary-blue {
  background: none;
}

.ck-content .btn-primary-blue:before {
  display: none;
}

.ck-content .btn-primary-blue a {
  background: var(--primary_blue);
}

.ck-content .btn-primary-red {
  background: none;
}

.ck-content .btn-primary-red:before {
  display: none;
}

.ck-content .btn-primary-red a {
  background: var(--primary_red);
}

.ck-content .img {
  padding-bottom: 20px;
}

.ck-content .img img {
  width: 100%;
}

.ck-content .btn-wrap {
  padding-top: 10px;
}

.ck-content figcaption {
  padding: 16px 8px 0 8px;
  font: 400 10px/150% "Overpass Mono", monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.ck-content figcaption span {
  display: block;
}

.ck-content .align-center {
  max-width: 50%;
  margin-right: auto;
  margin-left: auto;
}

.ck-content .align-left {
  clear: both;
  max-width: 50%;
  float: left;
  margin-right: 1.5rem;
}

.ck-content .align-right {
  clear: both;
  max-width: 50%;
  float: right;
  margin-left: 1.5rem;
}

.ck-content.ck p {
  margin: 0 0 16px;
}

.ck-content.ck p:last-child {
  margin: 0;
}

.ck-content.ck ul li p,
.ck-content.ck ol li p {
  margin: 0;
}

.ck-content.ck blockquote {
  padding: 0;
  margin: 0;
  font-size: inherit;
}

.ck-content.ck blockquote:before {
  display: none;
}

.accordion .row {
  border-bottom: 1px solid var(--primary_white);
}

.bg-blue .accordion .row {
  border-color: var(--primary_red);
}

.accordion .row:hover {
  background: var(--secondary_lightgrey);
}

.accordion .row.is-active {
  background: var(--secondary_lightgrey);
}

.accordion .row.is-active .title a:after {
  transform: rotate(180deg);
  top: calc(50% - 7px);
}

.accordion .title {
  text-transform: uppercase;
  color: var(--primary_red);
  font: 400 16px/150% "Poppins", "Arial", sans-serif;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .accordion .title {
    line-height: 140%;
  }
}

.accordion .title a {
  display: block;
  position: relative;
  padding: 9px 40px 9px 15px;
}

.accordion .title a:after {
  position: absolute;
  right: 16px;
  top: 50%;
  content: "";
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 17px;
  height: 14px;
  -webkit-mask-image: url(/images/icon-accordion.svg);
  mask-image: url(/images/icon-accordion.svg);
  transform: translateY(-50%);
  transition: transform 0.3s ease, top 0.3s ease;
}

.accordion .slide li {
  padding: 9px 24px;
}
.accordion .slide > li {
  border-top: 1px solid var(--primary_white);
  color: var(--primary_blue);
}
.accordion .slide ul li ul {
  list-style-type: disc;
  margin: 1em;
}
.accordion .slide ul li ul li {
  padding: 0px 24px 9px 0px;
}

.accordion .slide li.download-link a {
  display: block;
  position: relative;
}

.accordion .slide li.download-link a:after {
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 18px;
  height: 18px;
  -webkit-mask-image: url(/images/icon-download.svg);
  mask-image: url(/images/icon-download.svg);
}

@media screen and (max-width: calc(1024px - 1px)) {
  .accordion-block .smile-container {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .accordion-block .smile-container:after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--primary_red);
    right: 50px;
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .accordion-block .smile-container:after {
    right: 16px;
  }
}

.accordion-block .micro-callout {
  text-transform: uppercase;
  font: 400 10px/150% "Overpass Mono", monospace;
  letter-spacing: 2px;
  padding: 15px 40px 9px 15px;
}

.accordion-block .accordion-holder {
  position: relative;
}

.accordion-block.bg-air .accordion-holder:before {
  background-image: url(/images/bg-accordion-block-l-air.png);
}

.accordion-block.bg-no-img .accordion-holder:before {
  display: none;
}

.accordion-block .info-side {
  padding: 60px 8px;
  position: relative;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .accordion-block .info-side {
    padding: 8px;
  }
}

@media screen and (min-width: 1024px) {
  .accordion-block .info-side:after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--primary_red);
    right: -20px;
  }

  .accordion-block .accordion-side:after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--primary_red);
    right: -20px;
  }
}

.accordion-block .info-side .title {
  padding-bottom: 30px;
}
@media screen and (max-width: calc(1024px - 1px)) {
  .accordion-block .info-side .title {
    padding-bottom: 0;
  }
}

.accordion-block .info-side .h2 {
  color: var(--primary_red);
  text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
  .accordion-block .info-side .h2 span {
    display: block;
  }

  .accordion-block .info-side .h2 span:nth-child(3) {
    padding-left: 50px;
  }
}

.accordion-block .info-side .subtitle {
  margin: 0;
  font: 500 20px/120% "Overpass", "Arial", sans-serif;
  letter-spacing: 1px;
  padding-bottom: 10px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .accordion-block .info-side .subtitle {
    letter-spacing: 0;
  }
}

.accordion-block .accordion-side {
  padding: 60px 0;
}

.accordion-block .numero_vert {
  padding: 0 0 0 15px;
}

@media screen and (min-width: 1024px) {
  .accordion-block .accordion-side {
    position: relative;
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .accordion-block .accordion-side {
    padding: 8px 0;
  }
}

.accordion-block .accordion-side .block {
  padding-bottom: 75px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .accordion-block .accordion-side .block {
    padding-bottom: 30px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--primary_white);
    opacity: 0;
    pointer-events: none;
    height: 100%;
    overflow: auto;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-20px);
  }

  .accordion-block .accordion-side .block.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}

.accordion-block .accordion-side .title-block {
  padding: 0 15px 20px;
}

.accordion-block .accordion-side .title-block h3 {
  margin: 0;
  font: 500 32px/100% "Poppins", "Arial", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .accordion-block .accordion-side .title-block h3 {
    font-size: 25px;
  }
}

.accordion-block .accordion-side .btn-wrap {
  padding: 0 0 7px;
}

.accordion-block .bg-side {
  position: relative;
}

.accordion-block .line-red:after {
  display: none;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .accordion-block .line-red:after {
    display: block;
  }

  .accordion-block .bg-side {
    display: none;
  }
}

.accordion-block .bg-side:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  background: url(/images/bg-landscape-accordeon.png) 0 100% no-repeat;
  width: calc(100% + 70px);
  height: 100%;
  background-size: 100% auto;
}
/* .accordion-block .bg-side:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  background: url(/images/bg-accordion-block-r.png) 0 100% no-repeat;
  width: calc(100% + 90px);
  height: 100%;
  background-size: 100% auto;
} */

.accordion-block.bg-air .bg-side:after {
  background-image: url(/images/bg-accordion-block-r-air.png);
}

.accordion-block.bg-no-img .bg-side:after {
  display: none;
}

.accordion-block .mobile-back {
  text-transform: uppercase;
  margin: 0 15px 20px;
}

.homepage .h2 em {
  font-style: normal;
}

.homepage .h2 span {
  display: block !important;
}

.img-box {
  padding: 40px 0;
}

.img-box .contextual-region {
  position: absolute;
  inset: 0;
}

.img-box .img {
  position: relative;
  height: 316px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .img-box .img {
    height: 260px;
  }
}

.img-box .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.img-box .caption {
  padding: 16px 8px 0 8px;
  font: 400 10px/150% "Overpass Mono", monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.img-box .caption span {
  display: block;
}

.img-box .caption.caption-right {
  text-align: right;
}

.table {
  width: 100%;
  overflow-x: auto;
}

.table table {
  width: 100%;
  border-collapse: collapse;
}

.table table th,
.table table td {
  padding: 24px;
  border: 1px solid var(--primary_red);
  text-align: left;
  min-width: 120px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .table table th,
  .table table td {
    padding: 20px 12px;
  }
}

.table table th {
  background: var(--primary_red);
  color: var(--primary_white);
  text-transform: uppercase;
  font: 400 16px/150% "Poppins", "Arial", sans-serif;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .table table th {
    line-height: 140%;
  }
}


 .contact-block {
    overflow: hidden;
    background: var(--primary_red);
    color: var(--primary_white);
}
.contact-block .holder {
    position: relative;
}
.contact-block .holder .title-side {
    grid-column: span 4;
    text-transform: uppercase;
}
.contact-block .holder .title-side .wrap {
    padding: 63px 28px 40px;
    background: var(--primary_red);
    position: relative;
}
.contact-block .holder .title-side .h2 {
    font-size: 40px;
    padding-bottom: 16px;
}
.contact-block .holder .text-side {
    grid-column: span 4;
}
.contact-block .holder .text-side .wrap {
    padding: 66px 0 30px;
    background: var(--primary_red);
    position: relative;
}
.contact-block .holder .text-side .title {
    padding-bottom: 17px;
}
.contact-block .holder .text-side .title .h3 {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.contact-block .holder .text-side p a {
    color: var(--primary_white);
}
.contact-block .holder .text-side:before {
    left: -20px;
}
.contact-block .holder:before {
    content: "";
    position: absolute;
    top: 0;
    left: -70px;
    width: calc(32% + 70px);
    height: 100%;
    background: url(/images/bg-landscapes-blue.png) 0 100% no-repeat;
    background-size: cover;
}
@media screen and (max-width: calc(1024px - 1px)) {
    .contact-block .holder {
        padding: 20px 0 40px;
    }
    .contact-block .holder:before {
        width: calc(100% + 140px);
        height: 33%;
    }
    .contact-block .holder .grid {
        gap: 0;
    }
    .contact-block .holder .title-side .wrap {
        padding: 15px 16px 28px;
    }
    .contact-block .holder .title-side .h2 {
        font-size: 30px;
        font-weight: 600;
    }
    .contact-block .holder .text-side .wrap {
        padding: 10px 16px 0;
    }
    .contact-block .holder .text-side .wrap {
        padding: 10px 16px 0;
    }
    .contact-block .holder .text-side:before {
        display: none;
    }

    .contact-block .holder .text-side {
        margin-bottom: 40px;
    }
}

.feature-cards {
  overflow: hidden;
}

.feature-cards.bg-blue {
  background: var(--primary_blue);
  color: var(--primary_white);
}

.feature-cards.bg-blue .head {
  background: var(--primary_blue);
}

.feature-cards .holder {
  padding: 55px 0;
}

.feature-cards .bg {
  position: relative;
}

.feature-cards .bg:before {
  position: absolute;
  top: -100px;
  left: 0;
  content: "";
  width: 100%;
  height: calc(100% + 155px);
  pointer-events: none;
  background: url(/images/bg-landscape2-bottom-red3x.png) 50% 0 no-repeat;
  background-size: cover;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .feature-cards .bg:before {
    width: calc(100% + 50px);
  }
}

@media screen and (max-width: calc(768px - 1px)) {
  .feature-cards .bg:before {
    width: calc(100% + 16px);
  }
}

.feature-cards .head {
  padding: 0 8px 13px;
  background: var(--primary_white);
  position: relative;
  z-index: 1;
}

.hero-block {
  background: var(--primary_blue);
  overflow: hidden;
}

.hero-block .wrap:before,
.hero-block .wrap:after {
  width: 70px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  pointer-events: none;
}

.hero-block .wrap:before {
  left: -70px;
  background: url(/images/bg-landscapes-hero-l.png) 0 0 no-repeat;
}

.hero-block .wrap:after {
  right: -70px;
  background: url(/images/bg-landscapes-hero-r.png) 0 100% no-repeat;
}

.hero-block.bg-air .wrap:before {
  background-image: url(/images/bg-air-hero-l.png);
}

.hero-block.bg-air .wrap:after {
  background-image: url(/images/bg-air-hero-r.png);
}

.hero-block.bg-air .img .img-one {
  background-image: url(/images/bg-air-hero-no-img.png);
}

@media screen and (min-width: 1024px) {
  .hero-block.no-img .micro-callout {
    left: 12%;
  }
}

@media screen and (min-width: 1024px) {
  .hero-block.no-img.reverse .micro-callout {
    left: auto;
    right: 12%;
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-block.no-img .img .img-one {
    display: none;
  }
}

.hero-block.no-img .img .img-one img {
  display: none;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-block.no-img .img .img-two {
    width: 100%;
  }
}

.hero-block.bg-no-img .wrap:before,
.hero-block.bg-no-img .wrap:after {
  display: none;
}

.hero-block.bg-no-img .img .img-one {
  background: none;
}

.hero-content .micro-callout {
  position: absolute;
  bottom: 20px;
  left: -35px;
  z-index: 1;
  color: var(--primary_white);
  font: 400 10px/150% "Overpass Mono", monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: sideways-lr;
  max-height: 300px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-content .micro-callout {
    bottom: auto;
    top: 55px;
    left: 8px;
    writing-mode: horizontal-tb;
    max-width: 280px;
  }
}

.hero-content .img {
  display: flex;
}

.hero-content .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}

.hero-content .img .contextual-region {
  position: static;
}

.hero-content .img .full-img {
  position: relative;
  width: 100%;
  padding-top: 60%;
}

.hero-content .img .img-one,
.hero-content .img .img-two {
  position: relative;
  width: 100%;
  padding-top: 91%;
}

.hero-content .img .img-one {
  width: 31%;
  background: url(/images/bg-landscapes-hero-no-img.png) 0 50% no-repeat;
  background-size: 100% auto;
}

.hero-content .img .img-two {
  width: 69%;
}

.hero-content .img .price {
  position: absolute;
  top: 16%;
  left: 0;
  background: var(--primary_red);
  color: var(--primary_white);
  padding: 10px 16px;
  min-width: 100%;
  z-index: 1;
}

.hero-content .img .price .name {
  text-transform: uppercase;
  padding-bottom: 10px;
  font: 400 12px/100% "Overpass Mono", monospace;
  letter-spacing: 2.4px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-content .img .price .name {
    font-size: 10px;
  }
}

.hero-content .img .price .price-cost {
  font: 600 32px/35px "Overpass", "Arial", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 3px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-content .img .price .price-cost {
    font-size: 20px;
    line-height: 23px;
  }
}

.hero-content .img .price .price-cost span {
  letter-spacing: 5px;
}

.hero-content .img .price .index {
  font: 400 10px/150% "Overpass Mono", monospace;
  letter-spacing: 2px;
  position: relative;
  padding-left: 18px;
  white-space: nowrap;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-content .img .price .index {
    font-size: 8px;
  }
}

.hero-content .img .price .index:before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(/images/icon-accordion.svg);
  mask-image: url(/images/icon-accordion.svg);
  width: 10px;
  height: 7px;
}

.hero-content .img .price .index.down:before {
  content: "";
}

.hero-content .img .price .index.up:before {
  content: "";
  transform: rotate(180deg);
}

.hero-content .text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-content .text-side {
    padding: 0 4px 40px;
  }
}

.hero-content .h1 {
  text-transform: uppercase;
  padding-bottom: 25px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-content .h1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 95px;
  }
}

.hero-content .h1 .space {
  display: block;
  padding-left: 10%;
}

.hero-content .text-box {
  color: var(--primary_white);
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-content .text-box {
    margin: -36px 0 0;
  }
}

.hero-content .text-box .txt {
  padding: 0 10%;
}

.hero-content .text-box .btn-wrap {
  padding-top: 30px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-content .text-box .btn-wrap {
    padding-top: 16px;
  }
}

.hero .wrap {
  position: relative;
  padding-top: 70px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero .wrap {
    padding-top: 48px;
  }
}

.hero-home {
  background: var(--primary_blue);
  overflow: hidden;
}

.hero-home .wrap {
  height: 100vh;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .hero-home .wrap {
    height: auto;
  }
}

@media screen and (min-width: 1440px) {
  .hero-home .wrap {
    padding: 0;
  }
}

.hero-home .wrap:before,
.hero-home .wrap:after {
  width: 70px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
}

.hero-home .wrap:before {
  left: -70px;
  background: url(/images/bg-hero-home-l.png) 0 0 no-repeat;
}

.hero-home .wrap:after {
  right: -70px;
  background: url(/images/bg-hero-home-r.png) 0 0 no-repeat;
}

.no-result-side {
  grid-column: span 12;
}

.no-result-side .wrap {
  padding: 30px 90px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .no-result-side .wrap {
    padding: 30px 20px;
  }
}

.no-result-side .h3 {
  text-transform: uppercase;
  padding-bottom: 12px;
}

.stats-block {
  background: var(--secondary_lightgrey);
}

.stats-block .item {
  color: var(--primary_red);
  text-transform: uppercase;
  padding: 0 16px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .stats-block .item {
    padding: 0 8px;
  }
}

.stats-block .num {
  font: 400 70px/100% "Overpass Mono", monospace;
  padding-bottom: 5px;
  word-wrap: break-word;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .stats-block .num {
    font-size: 40px;
    padding-bottom: 12px;
  }
}

.stats-block .num span {
  margin: 0 -13px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .stats-block .num span {
    margin: 0 -8px;
  }
}

.stats-block .info {
  font: 400 24px/120% "Overpass Mono", monospace;
  word-wrap: break-word;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .stats-block .info {
    font-size: 16px;
  }
}

.tab-container h4 {
  margin-bottom: 0.5rem;
}

.tab-vertical {
  background: var(--primary_blue);
  overflow: hidden;
}

.tab-vertical .wrap {
  padding: 44px 0;
}

.tab-vertical .tab-container {
  position: relative;
}

.tab-vertical .tab-container .title {
  color: var(--primary_red);
  text-transform: uppercase;
  margin-top: -5px;
  padding-left: 5px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .tab-vertical .tab-container .title:before {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--primary_red);
    right: -21px;
    top: -44px;
    height: calc(100% + 88px + 22px);
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .tab-vertical .tab-container .title {
    max-width: 460px;
    padding-bottom: 6px;
  }
}

.tab-vertical .tab-container .tab-wrap {
  transition: min-height 0.3s linear;
}

.tab-vertical .tab-container .tab-item {
  padding: 5px 0;
}

.tab-vertical .tab-container .tab-title {
  color: var(--primary_white);
  text-transform: uppercase;
  overflow: hidden;
  font: 400 25px/100% "Poppins", "Arial", sans-serif;
}

@media screen and (min-width: 1024px) and (max-width: calc(1440px - 1px)) {
  .tab-vertical .tab-container .tab-title {
    font-size: calc(18px + 7 * (100vw - 1024px) / 416);
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .tab-vertical .tab-container .tab-title {
    font-size: 20px;
  }
  .accordion .tab-title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .tab-vertical .tab-container .tab-title a,
  .accordion .tab-title a {
    position: relative;
    display: block;
    text-align: right;
    padding: 19px 2px;
    transition: padding-right 0.3s ease;
  }

  .tab-vertical .tab-container .tab-title a::before,
  .accordion .tab-title a::before {
    content: "";
    position: absolute;
    inset: 0;
    transition: transform 0.3s linear;
    z-index: 0;
    transform: translateX(100%);
  }

  .tab-vertical .tab-container .tab-title a span,
  .accordion .tab-title a span {
    position: relative;
  }

  .tab-vertical .tab-container .tab-title a span:after,
  .accordion .tab-title a span:after {
    content: ">";
    position: absolute;
    right: -27px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  .tab-vertical .tab-container .tab-title a:hover,
  .tab-vertical .tab-container .tab-title a:focus-within,
  .tab-vertical .tab-container .tab-title a.active {
    padding: 19px 29px 19px 2px;
  }

  .tab-vertical .tab-container .tab-title a:hover:before,
  .tab-vertical .tab-container .tab-title a:focus-within:before,
  .tab-vertical .tab-container .tab-title a.active:before {
    transform: translateX(0);
    background: linear-gradient(90deg, #fa505c 0%, #990dcf 50%, #050d73 100%);
  }

  .tab-vertical .tab-container .tab-title a:hover span:after,
  .tab-vertical .tab-container .tab-title a:focus-within span:after,
  .tab-vertical .tab-container .tab-title a.active span:after {
    opacity: 1;
  }
}
.tab-item-visible {
  display: block;
}
.tab-item-hidden {
  display: none;
}
@media screen and (max-width: calc(1024px - 1px)) {
  .tab-item-visible {
    display: none;
  }
  .tab-item-hidden {
    display: block;
  }

  .tab-vertical .tab-container .tab-title {
    position: relative;
    display: block;
    padding: 10px 50px 10px 20px;
  }

  .tab-vertical .tab-container .tab-title a:after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    margin-top: -9px;
    -webkit-mask-image: url(/images/icon-arrow-m-right.svg);
    mask-image: url(/images/icon-arrow-m-right.svg);
    transition: transform 0.3s ease;
    transform: rotate(90deg);
    width: 24px;
    height: 24px;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    color: var(--primary_white);
    z-index: 1;
  }

  .tab-vertical .tab-container .tab-title a.active:after,
  .accordion .tab-title a.active:after {
    transform: rotate(-90deg);
  }
}

.tab-vertical .tab-container .tab-content {
  color: var(--primary_white);
}
.tab-vertical .tab-container .tab-content {
  opacity: 0;
  transition: opacity 2s ease, height 0.6s ease;
  height: 0;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .tab-vertical .tab-container .tab-content {
    /* position: absolute;
    right: 0;
    top: 0;
    width: 60%; */
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .tab-vertical .tab-container .tab-content {
    padding: 0 20px;
  }
}

.tab-vertical .tab-container .tab-content.is-active {
  opacity: 1;
  height: auto;
  padding: 10px 50px 10px 20px;
}
.accordion-block .accordion .faq-content.is-active {
  opacity: 1;
  height: auto;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .tab-vertical .tab-container .tab-content .frame {
    padding: 4px 0;
  }
}

.tab-vertical .tab-container .tab-content .img {
  position: relative;
  padding-top: 58%;
}

@media screen and (min-width: 1024px) {
  .tab-vertical .tab-container .tab-content .img {
    margin-left: 10px;
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .tab-vertical .tab-container .tab-content .img {
    margin-bottom: 10px;
  }
}

.tab-vertical .tab-container .tab-content .img .contextual-region {
  position: absolute;
  inset: 0;
}

.tab-vertical .tab-container .tab-content img {
  position: absolute;
  left: 0;
  top: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.tab-vertical .tab-container .tab-content .text {
  color: var(--primary_white);
}

@media screen and (min-width: 1024px) {
  .tab-vertical .tab-container .tab-content .text {
    padding: 16px 10px 0;
  }
}

@media screen and (min-width: 1024px) {
  .tab-vertical.long-title .tab-container .title {
    grid-column: span 12;
    max-width: 700px;
    padding: 13px 10px 26px;
  }

  .tab-vertical.long-title .tab-container .title:before {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .tab-vertical.long-title .tab-container .tab-holder {
    grid-column: span 6;
    position: relative;
    padding-left: 30%;
  }
}

@media screen and (min-width: 1024px) {
  .tab-vertical.long-title .tab-container .tab-content {
    width: calc(100% + 10px);
    right: calc(-100% - 20px);
  }
}

.text-cta-img {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .text-cta-img.reverse .img-side {
    order: 0;
  }
}

.text-cta-img.reverse .img-side .caption {
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .text-cta-img.reverse .empty-side {
    order: 1;
  }
}

@media screen and (min-width: 1024px) {
  .text-cta-img.reverse .text-side {
    order: 2;
  }
}

.text-cta-img.reverse .text-side:before {
  right: auto;
  left: 0;
}

@media screen and (min-width: 1024px) {
  .text-cta-img.reverse .holder .wrap {
    padding-bottom: 130px;
  }

  .text-cta-img.reverse .holder:before {
    height: 70px;
    width: 100%;
    background: url(/images/bg-cta-img-b-landscape3x.png) 100% 0 no-repeat;
    background-size: auto 100%;
    left: 0;
    top: auto;
    bottom: 0;
  }
}

/* .text-cta-img.bg-air .holder:before {
  background-image: url(/images/bg-cta-img-l-air3x.png);
} */

/* @media screen and (min-width: 1024px) {
  .text-cta-img.bg-air.reverse .holder:before {
    background-image: url(/images/bg-cta-img-b-air3x.png);
  }
} */

.text-cta-img.bg-no-img .holder:before {
  display: none;
}

@media screen and (min-width: 1024px) {
  .text-cta-img.bg-no-img .holder .wrap {
    padding-bottom: 60px;
  }
}

.text-cta-img .holder {
  position: relative;
}

.text-cta-img .holder:before {
  content: "";
  width: 70px;
  height: 100%;
  position: absolute;
  left: -70px;
  top: 0;
  background: url(/images/bg-cta-img-l-landscape3x.png) 0 100% no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta-img .holder:before {
    left: auto;
    right: -70px;
    background-position: 0 0;
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta-img .holder {
    padding: 40px 0;
  }
}

.text-cta-img .text-side-5 {
  grid-column: span 5;
}

.text-cta-img .text-side {
  grid-column: span 7;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta-img .text-side-5,
  .text-cta-img .text-side {
    grid-column: span 4;
    /* padding-bottom: 24px; */
  }
}

.text-cta-img .text-side-5 .wrap,
.text-cta-img .text-side .wrap {
  padding-left: 8px;
  padding-right: 8px;
}

.text-cta-img .text-side-5 .btn-wrap,
.text-cta-img .text-side .btn-wrap {
  padding-top: 16px;
}

.text-cta-img .empty-side {
  grid-column: span 1;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta-img .empty-side {
    display: none;
  }
}

.text-cta-img .img-side-6 {
  grid-column: span 6;
}
.text-cta-img .img-side {
  grid-column: span 5;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta-img .img-side-6,
  .text-cta-img .img-side {
    grid-column: span 4;
  }
}

.text-cta-img .img-side-6 .media-box,
.text-cta-img .img-side .media-box {
  position: absolute;
  inset: 0;
}

.text-cta-img .img-side-6 .media-box .media-wrap,
.text-cta-img .img-side .media-box .media-wrap {
  height: 100%;
}

.text-cta-img .img-side-6 .media-box .media,
.text-cta-img .img-side .media-box .media {
  height: 100%;
}

.text-cta-img .h2 {
  color: var(--primary_red);
  text-transform: uppercase;
  padding-bottom: 30px;
}

.text-cta-img .subheading {
  padding-bottom: 12px;
}

.text-cta-img .img-box {
  padding: 0;
}

.text-cta-img .img-box .img {
  height: auto;
  padding-top: 59%;
}

.text-cta-img .img-box .caption {
  text-align: right;
}

.text-cta-img .right-line-red:before {
  right: 0;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta-img .right-line-red:before {
    display: none;
  }
}

.text-cta-img .wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta-img .wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.text-cta.bg-blue-img .holder:before {
  background-image: url(/images/bg-landscape-left-blue3x.png);
}

.text-cta.bg-blue-img .bg-side:after {
  background-image: url(/images/bg-landscape-bottom-blue3x.png);
}

.text-cta.bg-air .holder:before {
  background-image: url(/images/bg-air-left-red3x.png);
}

.text-cta.bg-air .bg-side:after {
  background-image: url(/images/bg-air-bottom-red3x.png);
}

.text-cta.bg-air.bg-blue-img .holder:before {
  background-image: url(/images/bg-air-left-blue3x.png);
}

.text-cta.bg-air.bg-blue-img .bg-side:after {
  background-image: url(/images/bg-air-bottom-blue3x.png);
}

.text-cta.bg-no-img .holder:before {
  display: none;
}

.text-cta.bg-no-img .bg-side:after {
  display: none;
}

.text-cta.bg-grey {
  background: var(--secondary_lightgrey);
}

.text-cta.bg-blue {
  background: var(--primary_blue);
  color: var(--primary_white);
}

@media screen and (min-width: 1024px) {
  .text-cta.two-column .text-side {
    grid-column: span 6;
  }
}

.text-cta.two-column .bg-side {
  grid-column: span 3;
}

.text-cta.two-column .bg-side:after {
  background-size: cover;
}

.text-cta .holder {
  position: relative;
}

.text-cta .holder:before {
  content: "";
  width: 70px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -70px;
  background: url(/images/bg-landscape-left-red3x.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta .holder {
    padding: 40px 0;
  }
}

.text-cta .wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta .wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.text-cta .title-side {
  grid-column: span 3;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta .title-side {
    grid-column: span 4;
  }
}

.text-cta .title-side .wrap {
  padding: 60px 8px;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta .title-side .wrap {
    padding: 0 4px 10px;
  }
}

.text-cta .title-side .h2 {
  text-transform: uppercase;
  color: var(--primary_red);
}

.text-cta .text-side {
  grid-column: span 3;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta .text-side {
    grid-column: span 4;
  }
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta .text-side .wrap {
    padding: 0 4px;
  }
}

.text-cta .text-side .btn-wrap {
  padding-top: 16px;
}

.text-cta .bg-side {
  grid-column: span 6;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta .bg-side {
    display: none;
  }
}

.text-cta .bg-side:before {
  left: 0;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-cta .bg-side:before {
    display: none;
  }
}

.text-cta .bg-side:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(/images/bg-landscape-bottom-red3x.png) 0 100% no-repeat;
  background-size: 100% auto;
}

/* FORM */
.form-floating {
  margin: 32px 0;
  position: relative;
}

.form-phone,
.form-group {
  margin: 32px 0;
  position: relative;
}

.input-text label,
.form-group-phone label.label-select,
.form-group label.label-select {
  pointer-events: none;
  color: #050d73;
  cursor: default;
  display: block;
  font: 300 16px / 140% Overpass, Arial, sans-serif;
  left: 10px;
  letter-spacing: 1px;
  max-width: calc(100% - 50px);
  overflow: hidden;
  padding: 0 3px;
  position: absolute;
  text-overflow: ellipsis;
  top: 11px;
  transition: all 0.2s ease;
  white-space: nowrap;
  z-index: 1;
}

.input-text>input:not(:placeholder-shown)+label,
#form_select_country .form-country.is-active label,
#form_select_country .div_country_filtered.is-active label,
.form-phone label {
  background: #fff;
  font: 300 10px / 140% Overpass, Arial, sans-serif;
  left: 10px;
  top: -7px;
}
.form-phone {
  display: flex;
  flex-direction: row;
}

.form-control,
.form-group-phone,
.form-group #select-country-button,
.form-group #input-calling-code-button {
  width: 100%;
  padding: 8px 10px 7px;
  border: 1px solid #b4b6d5;
  border-radius: 0;
  color: #050d73;
  background: #fff;
  outline: none;
  font: 300 16px / 140% Overpass, Arial, sans-serif;
  min-height: 45px;
  transition: border 0.3s ease;
}

#tel {
  width: 100%;
  padding: 12px 10px 8px 60px;
}
#country-button .ui-selectmenu-icon {
  display: none;
}

.ui-menu.overflow {
  height: 230px;
}

.form-group .ui-menu-item div {
  padding: 8px 10px;
  font: 300 16px / 140% Overpass, Arial, sans-serif;
}
body .ui-selectmenu-optgroup,
body .ui-menu-item-wrapper {
  color: #050d73;
  font: 300 16px / 140% Overpass, Arial, sans-serif;
  background: white;
  border: none;
  padding: 8px 10px !important;
}
body .ui-menu-item-wrapper:hover {
  border: none;
  color: #050d73;
  background: #f2f3f8;
}

body .ui-state-active,
body .ui-widget-content .ui-state-active,
body .ui-widget-header .ui-state-active {
  border: none;
  margin: 0;
  color: #050d73;
  background: #f2f3f8;
}

.form-group-phone:hover,
.form-control:hover,
.ui-widget.ui-widget-content,
.form-group .ui-selectmenu-button-open,
.form-group .ui-selectmenu-button:hover {
  border: 1px solid #050d73;
}

body .ui-selectmenu-menu {
  padding-top: 10px;
}

/* fond bleu pour l'item sélectionné dans le menu (et garde la couleur au hover) */
.ui-menu .ui-menu-item-wrapper.selected-option {
  background: #050d73 !important;
  color: white !important;
}
.ui-menu .ui-menu-item-wrapper.selected-option:hover {
  background: #050d73 !important;
  color: white !important;
}

/* --- remplacer l’icône par le SVG --- */
  .ui-selectmenu-button .ui-icon {
    width: 1.2em;
    height: 1.2em;
    margin-left: auto;
    flex-shrink: 0;

    /* on utilise mask pour appliquer currentColor */
    -webkit-mask: url("data:image/svg+xml;utf8,<svg fill='currentColor' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'><path d='M31 26.4q0 .3-.2.5l-1.1 1.2q-.3.2-.6.2t-.5-.2l-8.7-8.8-8.8 8.8q-.2.2-.5.2t-.5-.2l-1.2-1.2q-.2-.2-.2-.5t.2-.5l10.4-10.4q.3-.2.6-.2t.5.2l10.4 10.4q.2.2.2.5z'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg fill='currentColor' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'><path d='M31 26.4q0 .3-.2.5l-1.1 1.2q-.3.2-.6.2t-.5-.2l-8.7-8.8-8.8 8.8q-.2.2-.5.2t-.5-.2l-1.2-1.2q-.2-.2-.2-.5t.2-.5l10.4-10.4q.3-.2.6-.2t.5.2l10.4 10.4q.2.2.2.5z'/></svg>") no-repeat center / contain;
    background-color: currentColor; /* applique la couleur du texte */
  }

  /* --- rotation quand le menu est ouvert --- */
  .ui-selectmenu-button.ui-selectmenu-button-open .ui-icon {
    transform: rotate(180deg);
  }
/* --- fin icône SVG --- */

/* Menu scrollable */
.ui-menu::-webkit-scrollbar-track {
    border: #050d73;
    background-color: white;
}
.ui-menu::-webkit-scrollbar-thumb {
    background-color: #050d73;
}
.ui-menu::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

/* message error */
.invalid-feedback {
  color: #fa505c;
  font: 400 10px / 140% Overpass, Arial, sans-serif;
  left: 10px;
  letter-spacing: 1px;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  text-transform: uppercase;
  top: calc(100% + 2px);
}

/* button */
.primaryButton {
    background: #050d73;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    font: 500 16px / 100% Poppins, Arial, sans-serif;
    min-width: 130px;
    padding: 8px 25px 8px 12px;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    transition: all .4s ease;
}
.primaryButton>span {
    position: relative;
    z-index: 1;
}
.primaryButton>svg {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.primaryButton:before {
    content: "";
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .6s ease;
    z-index: 0;
}
.primaryButton:not(:disabled):hover:before {
    background: linear-gradient(90deg, #fa505c, #990dcf 50%, #050d73);
    opacity: 1;
}

/* téléchargement */
.download-list li {
  /* border-top: 1px solid var(--primary_white); */
  /* color: var(--primary_blue); */
  color: var(--primary_red);
  margin-bottom: 8px;
}
.download-list li:not(:last-child) {
  margin-bottom: 0px;
}

.download-list li a {
  display: flex;
  flex-direction: row;
  position: relative;
  padding: 9px 24px;
  /* background: var(--secondary_lightgrey); */
}
.download-list li.download-link a:after {
    /* position: relative; */
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    width: 18px;
    height: 18px;
    -webkit-mask-image: url(/images/icon-download.svg);
    mask-image: url(/images/icon-download.svg);
}
.file-type {
    letter-spacing: 2px;
    display: block;
    align-self: center;
    text-transform: uppercase;
}
.file-format {
    margin-left: auto;
    padding-right: 10%;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    align-self: center;
}

/* #calendrier .holder, */
.text-cta-img .text-side-calendar h2,
.text-cta-img.bg-no-img .holder .text-side-calendar .wrap {
  padding: 0;
}

.table td {
  border: 1px solid var(--primary_red);
  padding: 16px;
}
.table td:first-child {
  width: 243px;
}
@media screen and (max-width: calc(1024px - 1px)) {
  .table td:first-child {
    width: 50%;
  }
}

.text-side-calendar-table {
  grid-column: span 7;
  background: var(--secondary_lightgrey);
  z-index: 1;
}

@media screen and (max-width: calc(1024px - 1px)) {
  .text-side-calendar-table {
    grid-column: span 8;
  }
}

.bt-tab {
  cursor: pointer;
}

/* accordion */
.accordion {
  background-color: var(--primary_white)
}

/* popup */
/* Fond assombri */
    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    /* Boîte popup */
    .popup {
      background: #fff;
      max-width: 80%;
      width: 100%;
      position: relative;
      transform: translateY(-10px);
      opacity: 0;
      display: flex;
      flex-direction: column;
      max-height: 80vh;
      outline: none;
    }

    /* Bouton fermer */
    .popup .close {
      position: absolute;
      right: 10px;
      top: 10px;
      background: transparent;
      border: none;
      font-size: 1.2rem;
      cursor: pointer;
    }

    /* Zone de contenu scrollable */
    .popup-content {
      padding: 1.5rem;
      overflow-y: auto;
      flex: 1; /* occupe tout l’espace dispo */
    }

    /* Animation */
    .popup.show {
      opacity: 1;
      transform: translateY(0);
      transition: all 180ms ease-out;
    }

#input-calling-code-menu > :first-child,
#select-country-menu > :first-child {
  display: none;
}

/* input radio */
label.label-radio:has([type=radio]) {
  display: inline-flex;
  align-items: center;
  border: 1px solid #aaa;
  padding: 1rem 1.5rem;
  border-radius: 3rem;
  transition: background-color 0.3s;
}

label.label-radio:has([type=radio]:not(:disabled)) {
  cursor: pointer;
}

.div_country_filtered input[type="radio"] {
  appearance: none;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: inherit;
  border-radius: inherit;
  border-radius: 50%;
  background-color: white;
  position: relative;
  z-index: 10;
  margin-right: 5px;
  outline: none;
}
.div_country_filtered input[type="radio"]:hover {
  background: #050D730D;
}
.div_country_filtered input[type="radio"]:focus {
  background: #050D731A;
}
.div_country_filtered input[type="radio"]:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 5px;
  margin-left: 5px;
  border-radius: 50%;
  border: 1px solid var(--primary_blue);
  z-index: 1;
}

.div_country_filtered input[type="radio"]:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
}
.div_country_filtered input[type="radio"]:checked:after {
  background: var(--primary_blue);
}

.div_country_filtered .input-radio {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#calendrier.bg-grey {
  background: var(--secondary_lightgrey);
}
#calendrier.text-cta-img .right-line-red:before {
  right: -20px;
}
#calendrier.text-cta-img .h2 {
  padding-left: 8px;
  padding-right: 8px;
}
#calendrier .bg:before {
  position: absolute;
  bottom: calc(0% - 350px);
  right: 0;
  content: "";
  width: 50%;
  height: 100%;
  pointer-events: none;
  background: url(/images/bg-landscape2-bottom-red3x.png) 100% 0 no-repeat;
  background-size: cover;
  background-position: bottom right;
  border-left: 1px solid var(--primary_red);
}
#calendrier .micro-callout {
  text-transform: uppercase;
  grid-column: span 2;
  margin: 32px 8px 0;
  font: 400 10px/140% "Overpass", "Arial", sans-serif;
  letter-spacing: 2px;
}
@media screen and (max-width: calc(1024px - 1px)) {
  #calendrier .micro-callout {
    grid-column: span 4;
    margin: 32px 8px 0;
  }
}

/* documentation */
#documentation {
  background: var(--primary_blue);
}
*:lang(en) #documentation {
  background: var(--primary_white);
}
#documentation.text-cta-img .holder:before {
  content: "";
    width: 70px;
    height: 100%;
    position: absolute;
    left: -70px;
    top: 0;
    /* background: url(/images/bg-landscapes-hero-r.png) 0 100% no-repeat; */
    background-image: none;
    background-size: 100% auto;
}

#introduction .micro-callout {
  text-transform: uppercase;
  margin: 32px 0 0;
  font: 400 10px/140% "Overpass", "Arial", sans-serif;
  letter-spacing: 2px;
}

.modalites-block {
    overflow: hidden;
    background: var(--primary_red);
    color: var(--primary_white);
}
.modalites-block .holder {
    position: relative;
}
.modalites-block .holder .title-side {
    grid-column: span 8;
    text-transform: uppercase;
}
.modalites-block .title-side {
    padding: 30px 8px 8px 8px;
    position: relative;
}
.modalites-block .holder .title-side .h2 {
    color: var(--primary_blue);
    font-size: 40px;
}
.modalites-block .holder .text-side {
    grid-column: span 12;
}
.modalites-block .grid {
    gap: 0 20px;
}
.modalites-block .ck-content {
    padding: 30px 8px 30px 8px;
    position: relative;
}
.modalites-block .ck-content h3 {
    margin-top: 30px;
    color: var(--primary_blue);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.modalites-block .ck-content h5 {
  color: var(--primary_blue);
}
.modalites-block .ck-content p {
    color: var(--primary_blue);
}
.modalites-block .holder:before {
  position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 447px;
    background: url(/images/bg-rich-landscapes3x-blue.png) 0 100% no-repeat;
    background-size: 447px auto;

    background-image: url(/images/bg-rich-landscapes3x-blue.png);
}

/* numéro vert */
.numero_vert svg {
  width: 100%;
  max-width: 320px;
}
.numero_vert .cls-1 {
  fill: #fff;
}
.numero_vert .cls-2 {
  fill: #76b72a;
}
.numero_vert .cls-3 {
  fill: #c5c5c5;
}
/* fin numero_vert */

#disclaimer .wrap {
  padding-left: 8px;
  padding-right: 8px;
}

/* FAQ */
#faq .tab-vertical {
  background-color: var(--primary_white);
  margin-left: -8px;
  width: calc(100% + 35px)
}
#faq .tab-vertical .tab-container .tab-title a.bt-faq {
  text-transform: uppercase;
}
#faq .tab-vertical .tab-container .tab-title {
  color: var(--primary_blue);
}
@media screen and (min-width: 1024px ) {
  #faq .tab-vertical .tab-container .tab-title a.active {
    color: var(--primary_white);
  }
}
#faq .bt-faq {
  cursor: pointer;
}
.accordion .tab-title a {
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  display: block;
  padding: 9px 40px 9px 15px;
}
.accordion .tab-title a:after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -9px;
  -webkit-mask-image: url(/images/icon-arrow-m-right.svg);
  mask-image: url(/images/icon-arrow-m-right.svg);
  transition: transform 0.3s ease;
  transform: rotate(90deg);
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  color: var(--primary_blue);
  z-index: 1;
}
.accordion-block .accordion .faq-content {
  opacity: 0;
  transition: opacity 2s ease, height 0.6s ease;
  height: 0;
  overflow: hidden;
  margin-right: 1.6rem;
}
@media screen and (min-width: 1024px ) {
  .accordion-block .accordion .faq-content {
    margin-right: 0;
  }
}


*:lang(en) #menu,
*:lang(en) #introduction,
*:lang(en) #modalites,
*:lang(en) #calendrier,
*:lang(en) #souscription,
*:lang(en) #faq,
*:lang(en) #contact,
*:lang(en) .doc-fr
{
  display: none !important;
}

