/**
* Base.
*/
html {
  font-size: 0.0694444444vw;
}
@media (min-width: 1700px) {
  html {
    font-size: 0.0520833333vw;
  }
}
@media (max-width: 1023px) {
  html {
    font-size: 0.1428571429vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 0.25vw;
  }
}

body {
  position: relative;
  font-family: "Montserrat";
  font-size: 1rem;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  background-color: black;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms;
}
body.shadow {
  width: 100%;
  overflow: hidden;
}
body.shadow::before {
  opacity: 0.6;
  pointer-events: initial;
}

.container {
  width: 100%;
  max-width: 1365rem;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .container {
    padding: 0 20px;
  }
}

* {
  line-height: 100%;
  text-decoration: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
  list-style-type: none;
}

s {
  text-decoration: none;
  display: inline-block;
  transition-property: transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}

form input {
  line-height: initial;
}
form input,
form textarea,
form select {
  outline: none !important;
}
form input:active, form input:focus,
form textarea:active,
form textarea:focus,
form select:active,
form select:focus {
  outline: none !important;
}

a,
a:link,
a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none !important;
  outline: none !important;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

button,
button:active,
button:focus {
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 100%;
  margin: 0;
}

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

label {
  font-weight: normal;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 60rem;
  border-radius: 50px;
  padding: 0 33rem;
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button span:not(.arrow) {
  position: relative;
  font-size: 16rem;
  font-weight: bold;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 2;
}
.button span.arrow {
  position: relative;
  margin-left: 8rem;
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 5;
}
.button span.arrow svg {
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button span.arrow svg path {
  transition-property: stroke, fill;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button:hover span.arrow svg {
  transform: translateX(3px);
}
.button-green {
  background-color: #ccff00;
  transition-property: background-color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button-green span:not(.arrow) {
  color: #060b13;
}
.button-green:hover {
  background-color: white;
}
.button-transparent {
  background-color: transparent;
  border: 1px solid white;
  transition-property: background-color, border-color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button-transparent span:not(.arrow) {
  color: white;
}
.button-transparent:hover {
  background-color: white;
}
.button-transparent:hover span:not(.arrow) {
  color: #060b13;
}
.button-red {
  height: 42rem;
  padding: 0 24rem;
  background-color: #ff0000;
  transition-property: background-color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button-red span:not(.arrow) {
  color: white;
}
.button-red:hover {
  background-color: white;
}
.button-red:hover span:not(.arrow) {
  color: #ff0000;
}
.button-green-arrow {
  height: 44rem;
  background-color: #ccff00;
  transition-property: background-color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button-green-arrow span:not(.arrow) {
  color: #060b13;
}
.button-green-arrow span.arrow svg path {
  stroke: #060b13;
}
.button-green-arrow:hover {
  background-color: white;
}
.button-green-arrow:hover span.arrow svg path {
  stroke: #060b13;
}
.button-blue {
  border: 1px solid #0d2b73;
  background-color: #0d2b73;
  transition-property: background-color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button-blue span:not(.arrow) {
  color: white;
}
.button-blue:hover {
  background-color: white;
}
.button-blue:hover span:not(.arrow) {
  color: #0d2b73;
}
.button-white-arrow {
  height: 48rem;
  background-color: white;
  transition-property: background-color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button-white-arrow span:not(.arrow) {
  color: #ff0000;
}
.button-white-arrow span.arrow svg path {
  stroke: #ff0000;
}
.button-white-arrow:hover {
  background-color: #ccff00;
}
.button-red-arrow {
  padding: 0 28rem;
  height: 48rem;
  border: 1px solid #ff0000;
  background-color: #ff0000;
  transition-property: background-color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button-red-arrow span:not(.arrow) {
  color: white;
}
.button-red-arrow span.arrow svg path {
  stroke: white;
}
.button-red-arrow:hover {
  background-color: white;
}
.button-red-arrow:hover span:not(.arrow) {
  color: #ff0000;
}
.button-red-arrow:hover span.arrow svg path {
  stroke: #ff0000;
}
.button-red-linear {
  height: 44rem;
  background-image: linear-gradient(to right, #ff0000 0%, #d60000 50%, #ff0000 100%);
  background-size: 200% auto;
  background-position: left center;
  transition-property: background-position;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button-red-linear span {
  color: white;
  font-size: 14rem;
  font-weight: 600;
}
.button-red-linear:hover {
  background-position: right center;
}
.button-white {
  border: 1px solid #001d61;
  background-color: white;
  transition-property: background-color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
.button-white span:not(.arrow) {
  color: #001d61;
}
.button-white:hover {
  background-color: #001d61;
}
.button-white:hover span:not(.arrow) {
  color: white;
}

.appear-fade,
.appear-fade-horizontal,
.appear-fade-vertical {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 2s;
}
.appear-fade.appear,
.appear-fade-horizontal.appear,
.appear-fade-vertical.appear {
  opacity: 1;
  transform: translate(0, 0);
}

.appear-fade-vertical {
  transform: translate(0, 30px);
}

.appear-fade-horizontal {
  transform: translate(15px, 0);
}

@media (prefers-reduced-motion: reduce) {
  .appear-fade,
  .appear-fade-horizontal,
  .appear-fade-vertical {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
[rel=lazy_load] {
  overflow: hidden;
}
@keyframes lazy_load {
  0% {
    transform: scaleX(0);
    transform-origin: 0% 50%;
  }
  50% {
    transform: scaleX(1);
    transform-origin: 0% 50%;
  }
  50.1% {
    transform: scaleX(1);
    transform-origin: 100% 50%;
  }
  100% {
    transform: scaleX(0);
    transform-origin: 100% 50%;
  }
}
[rel=lazy_load]:not(.no-animate) img {
  z-index: 1;
  transform-origin: 25% 25%;
  opacity: 0;
  transform: scale(1.08);
  transition-property: opacity, transform;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
[rel=lazy_load].no-animate img {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
  transition-timing-function: ease;
}
[rel=lazy_load].loaded:not(.no-animate) img {
  opacity: 1;
  transform: scale(1);
}
[rel=lazy_load].loaded.no-animate img {
  opacity: 1;
}

.screen-progress {
  background-color: #0a286f;
  text-align: center;
  border-radius: 14px;
  min-width: 300px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 200;
  margin-top: 15px;
  padding: 30px;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: background-color 0.5s cubic-bezier(0, 0, 0.3, 1), margin-top 0.7s cubic-bezier(0.5, 0, 0, 1), opacity 0.7s cubic-bezier(0, 0, 0.3, 1);
  box-shadow: 0 5px 10px rgba(0, 113, 187, 0.1);
}
@media (max-width: 767px) {
  .screen-progress {
    min-width: 90vw;
    max-width: 95vw;
  }
}
.screen-progress.open {
  margin-top: 0;
  opacity: 1;
}
.screen-progress .screen-message {
  color: #ccff00;
  font-size: 14px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  transition: color 0.5s cubic-bezier(0, 0, 0.3, 1);
}
.screen-progress .screen-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.screen-progress .screen-cta .button {
  width: 160px;
  min-width: auto;
}
.screen-progress .spinner {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.screen-progress .spinner span {
  background-color: white;
  border-radius: 50%;
  display: block;
  width: 400px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -200px;
  opacity: 0;
  transform: scale(0);
  animation: spinner_progress 1.5s infinite;
}
@keyframes spinner_progress {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.screen-progress .spinner span:nth-child(2) {
  animation-delay: 0.5s;
}
.screen-progress.finished .spinner span {
  animation: unset;
}

/** Transition slide. */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation-name: fade-in;
  animation-fill-mode: forwards;
  animation-duration: 1000ms;
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fade-out {
  animation-name: fade-out;
  animation-fill-mode: forwards;
  animation-duration: 1000ms;
}

[rel=split_text] .word,
[rel=split_text_children] .word {
  position: relative;
  display: inline-block;
}
[rel=split_text] .word s,
[rel=split_text_children] .word s {
  opacity: 0;
  transform: translate(0, 25px) rotate(1deg);
  transition-property: opacity, transform;
  transition-duration: 2.5s;
}
[rel=split_text].appear .word s,
[rel=split_text_children].appear .word s {
  opacity: 1;
  transform: translate(0, 0) rotate(0);
}
[rel=split_text].appear .word[data-index="0"] s,
[rel=split_text_children].appear .word[data-index="0"] s {
  transition-delay: 0s;
}
[rel=split_text].appear .word[data-index="1"] s,
[rel=split_text_children].appear .word[data-index="1"] s {
  transition-delay: 0.1s;
}
[rel=split_text].appear .word[data-index="2"] s,
[rel=split_text_children].appear .word[data-index="2"] s {
  transition-delay: 0.2s;
}
[rel=split_text].appear .word[data-index="3"] s,
[rel=split_text_children].appear .word[data-index="3"] s {
  transition-delay: 0.3s;
}
[rel=split_text].appear .word[data-index="4"] s,
[rel=split_text_children].appear .word[data-index="4"] s {
  transition-delay: 0.4s;
}
[rel=split_text].appear .word[data-index="5"] s,
[rel=split_text_children].appear .word[data-index="5"] s {
  transition-delay: 0.5s;
}
[rel=split_text].appear .word[data-index="6"] s,
[rel=split_text_children].appear .word[data-index="6"] s {
  transition-delay: 0.6s;
}
[rel=split_text].appear .word[data-index="7"] s,
[rel=split_text_children].appear .word[data-index="7"] s {
  transition-delay: 0.7s;
}
[rel=split_text].appear .word[data-index="8"] s,
[rel=split_text_children].appear .word[data-index="8"] s {
  transition-delay: 0.8s;
}
[rel=split_text].appear .word[data-index="9"] s,
[rel=split_text_children].appear .word[data-index="9"] s {
  transition-delay: 0.9s;
}
[rel=split_text].appear .word[data-index="10"] s,
[rel=split_text_children].appear .word[data-index="10"] s {
  transition-delay: 1s;
}
[rel=split_text].appear .word[data-index="11"] s,
[rel=split_text_children].appear .word[data-index="11"] s {
  transition-delay: 1.1s;
}
[rel=split_text].appear .word[data-index="12"] s,
[rel=split_text_children].appear .word[data-index="12"] s {
  transition-delay: 1.2s;
}
[rel=split_text].appear .word[data-index="13"] s,
[rel=split_text_children].appear .word[data-index="13"] s {
  transition-delay: 1.3s;
}
[rel=split_text].appear .word[data-index="14"] s,
[rel=split_text_children].appear .word[data-index="14"] s {
  transition-delay: 1.4s;
}
[rel=split_text].appear .word[data-index="15"] s,
[rel=split_text_children].appear .word[data-index="15"] s {
  transition-delay: 1.5s;
}
[rel=split_text].appear .word[data-index="16"] s,
[rel=split_text_children].appear .word[data-index="16"] s {
  transition-delay: 1.6s;
}
[rel=split_text].appear .word[data-index="17"] s,
[rel=split_text_children].appear .word[data-index="17"] s {
  transition-delay: 1.7s;
}
[rel=split_text].appear .word[data-index="18"] s,
[rel=split_text_children].appear .word[data-index="18"] s {
  transition-delay: 1.8s;
}
[rel=split_text].appear .word[data-index="19"] s,
[rel=split_text_children].appear .word[data-index="19"] s {
  transition-delay: 1.9s;
}
[rel=split_text].appear .word[data-index="20"] s,
[rel=split_text_children].appear .word[data-index="20"] s {
  transition-delay: 2s;
}
[rel=split_text].appear .word[data-index="21"] s,
[rel=split_text_children].appear .word[data-index="21"] s {
  transition-delay: 2.1s;
}
[rel=split_text].appear .word[data-index="22"] s,
[rel=split_text_children].appear .word[data-index="22"] s {
  transition-delay: 2.2s;
}
[rel=split_text].appear .word[data-index="23"] s,
[rel=split_text_children].appear .word[data-index="23"] s {
  transition-delay: 2.3s;
}
[rel=split_text].appear .word[data-index="24"] s,
[rel=split_text_children].appear .word[data-index="24"] s {
  transition-delay: 2.4s;
}
[rel=split_text].appear .word[data-index="25"] s,
[rel=split_text_children].appear .word[data-index="25"] s {
  transition-delay: 2.5s;
}
[rel=split_text].appear .word[data-index="26"] s,
[rel=split_text_children].appear .word[data-index="26"] s {
  transition-delay: 2.6s;
}
[rel=split_text].appear .word[data-index="27"] s,
[rel=split_text_children].appear .word[data-index="27"] s {
  transition-delay: 2.7s;
}
[rel=split_text].appear .word[data-index="28"] s,
[rel=split_text_children].appear .word[data-index="28"] s {
  transition-delay: 2.8s;
}
[rel=split_text].appear .word[data-index="29"] s,
[rel=split_text_children].appear .word[data-index="29"] s {
  transition-delay: 2.9s;
}
[rel=split_text].appear .word[data-index="30"] s,
[rel=split_text_children].appear .word[data-index="30"] s {
  transition-delay: 3s;
}
[rel=split_text].appear .word[data-index="31"] s,
[rel=split_text_children].appear .word[data-index="31"] s {
  transition-delay: 3.1s;
}
[rel=split_text].appear .word[data-index="32"] s,
[rel=split_text_children].appear .word[data-index="32"] s {
  transition-delay: 3.2s;
}
[rel=split_text].appear .word[data-index="33"] s,
[rel=split_text_children].appear .word[data-index="33"] s {
  transition-delay: 3.3s;
}
[rel=split_text].appear .word[data-index="34"] s,
[rel=split_text_children].appear .word[data-index="34"] s {
  transition-delay: 3.4s;
}
[rel=split_text].appear .word[data-index="35"] s,
[rel=split_text_children].appear .word[data-index="35"] s {
  transition-delay: 3.5s;
}
[rel=split_text].appear .word[data-index="36"] s,
[rel=split_text_children].appear .word[data-index="36"] s {
  transition-delay: 3.6s;
}
[rel=split_text].appear .word[data-index="37"] s,
[rel=split_text_children].appear .word[data-index="37"] s {
  transition-delay: 3.7s;
}
[rel=split_text].appear .word[data-index="38"] s,
[rel=split_text_children].appear .word[data-index="38"] s {
  transition-delay: 3.8s;
}
[rel=split_text].appear .word[data-index="39"] s,
[rel=split_text_children].appear .word[data-index="39"] s {
  transition-delay: 3.9s;
}
[rel=split_text].appear .word[data-index="40"] s,
[rel=split_text_children].appear .word[data-index="40"] s {
  transition-delay: 4s;
}
[rel=split_text].appear .word[data-index="41"] s,
[rel=split_text_children].appear .word[data-index="41"] s {
  transition-delay: 4.1s;
}
[rel=split_text].appear .word[data-index="42"] s,
[rel=split_text_children].appear .word[data-index="42"] s {
  transition-delay: 4.2s;
}
[rel=split_text].appear .word[data-index="43"] s,
[rel=split_text_children].appear .word[data-index="43"] s {
  transition-delay: 4.3s;
}
[rel=split_text].appear .word[data-index="44"] s,
[rel=split_text_children].appear .word[data-index="44"] s {
  transition-delay: 4.4s;
}
[rel=split_text].appear .word[data-index="45"] s,
[rel=split_text_children].appear .word[data-index="45"] s {
  transition-delay: 4.5s;
}
[rel=split_text].appear .word[data-index="46"] s,
[rel=split_text_children].appear .word[data-index="46"] s {
  transition-delay: 4.6s;
}
[rel=split_text].appear .word[data-index="47"] s,
[rel=split_text_children].appear .word[data-index="47"] s {
  transition-delay: 4.7s;
}
[rel=split_text].appear .word[data-index="48"] s,
[rel=split_text_children].appear .word[data-index="48"] s {
  transition-delay: 4.8s;
}
[rel=split_text].appear .word[data-index="49"] s,
[rel=split_text_children].appear .word[data-index="49"] s {
  transition-delay: 4.9s;
}
[rel=split_text] strong .word,
[rel=split_text_children] strong .word {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}
[rel=split_text] strong .word s,
[rel=split_text_children] strong .word s {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  padding: 0 2rem 8rem 0;
}

/**
* Globals.
*/
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20rem 0;
  width: 100%;
  background-color: white;
  transition-property: box-shadow, border-radius, padding;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 50;
}
#main-header .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#main-header .flex-wrapper .left {
  flex-shrink: 0;
}
#main-header .flex-wrapper .left-logo a {
  display: inline-block;
}
#main-header .flex-wrapper .left-logo img {
  width: 148rem;
  height: unset;
  transition-property: width;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
@media (max-width: 1023px) {
  #main-header .flex-wrapper .left-logo img {
    width: 100rem;
  }
}
#main-header .flex-wrapper .right {
  display: flex;
  align-items: center;
  gap: 32rem;
}
@media (max-width: 1023px) {
  #main-header .flex-wrapper .right-navigation {
    display: none;
  }
}
#main-header .flex-wrapper .right-navigation > ul {
  display: flex;
  align-items: center;
  gap: 28rem;
}
#main-header .flex-wrapper .right-navigation > ul > li {
  position: relative;
}
#main-header .flex-wrapper .right-navigation > ul > li > a {
  position: relative;
  display: inline-flex;
  color: #060b13;
  font-size: 14rem;
  font-weight: 500;
  white-space: nowrap;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-navigation > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  width: 100%;
  height: 2rem;
  background-color: #ff0000;
  transform: scaleX(0);
  transform-origin: right;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-navigation > ul > li > a:hover {
  color: #ff0000;
}
#main-header .flex-wrapper .right-navigation > ul > li > a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
#main-header .flex-wrapper .right-navigation > ul > li > button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5rem;
}
#main-header .flex-wrapper .right-navigation > ul > li > button::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -15rem;
  right: -15rem;
  height: 30rem;
  z-index: 1;
}
#main-header .flex-wrapper .right-navigation > ul > li > button > span,
#main-header .flex-wrapper .right-navigation > ul > li > button > svg {
  position: relative;
  z-index: 2;
}
#main-header .flex-wrapper .right-navigation > ul > li > button > span {
  position: relative;
  color: #060b13;
  font-size: 14rem;
  font-weight: 500;
  font-family: "Montserrat";
  white-space: nowrap;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-navigation > ul > li > button > span::before {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  width: 100%;
  height: 2rem;
  background-color: #ff0000;
  transform: scaleX(0);
  transform-origin: right;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-navigation > ul > li > button > svg {
  width: 12rem;
  height: auto;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-navigation > ul > li > button > svg path {
  stroke: #060b13;
  transition-property: stroke;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-navigation > ul > li > ul {
  position: absolute;
  top: calc(100% + 10rem);
  left: 50%;
  min-width: 190rem;
  padding: 16rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8rem 24rem rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6rem);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 2;
}
#main-header .flex-wrapper .right-navigation > ul > li > ul li {
  position: relative;
}
#main-header .flex-wrapper .right-navigation > ul > li > ul li:not(:last-child) {
  margin-bottom: 12rem;
}
#main-header .flex-wrapper .right-navigation > ul > li > ul li a {
  position: relative;
  display: inline-flex;
  color: #060b13;
  font-size: 14rem;
  font-weight: 500;
  white-space: nowrap;
  transition-property: color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-navigation > ul > li > ul li a::before {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 0;
  width: 100%;
  height: 2rem;
  background-color: #ff0000;
  transform: scaleX(0);
  transform-origin: right;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-navigation > ul > li > ul li a:hover {
  color: #ff0000;
}
#main-header .flex-wrapper .right-navigation > ul > li > ul li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
#main-header .flex-wrapper .right-navigation > ul > li:hover > button > span {
  color: #ff0000;
}
#main-header .flex-wrapper .right-navigation > ul > li:hover > button > span::before {
  transform: scaleX(1);
  transform-origin: left;
}
#main-header .flex-wrapper .right-navigation > ul > li:hover > button > svg {
  transform: rotate(180deg);
}
#main-header .flex-wrapper .right-navigation > ul > li:hover > button > svg path {
  stroke: #ff0000;
}
#main-header .flex-wrapper .right-navigation > ul > li:hover > ul {
  opacity: 1;
  pointer-events: initial;
  transform: translateX(-50%) translateY(0);
}
#main-header .flex-wrapper .right-ctas {
  display: flex;
  align-items: center;
  gap: 10rem;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  #main-header .flex-wrapper .right-ctas {
    display: none;
  }
}
#main-header .flex-wrapper .right-ctas .cta-primary {
  border: 1px solid #ff0000;
  background-color: #ff0000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40rem;
  padding: 0 20rem;
  border-radius: 50px;
  color: white;
  font-size: 14rem;
  font-weight: 700;
  white-space: nowrap;
  transition-property: background-color, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-ctas .cta-primary:hover {
  background-color: white;
  color: #ff0000;
}
#main-header .flex-wrapper .right-ctas .cta-secondary {
  border: 1px solid #001d61;
  background-color: #001d61;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40rem;
  padding: 0 20rem;
  border-radius: 50px;
  color: white;
  font-size: 14rem;
  font-weight: 700;
  white-space: nowrap;
  transition-property: background-color, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-ctas .cta-secondary:hover {
  background-color: white;
  color: #001d61;
}
#main-header .flex-wrapper .right-menu {
  display: none;
}
@media (max-width: 1023px) {
  #main-header .flex-wrapper .right-menu {
    display: block;
  }
}
#main-header .flex-wrapper .right-menu button {
  display: flex;
  align-items: center;
  gap: 6rem;
}
#main-header .flex-wrapper .right-menu button svg {
  width: 35rem;
  height: unset;
  transition-property: width;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-header .flex-wrapper .right-menu button svg path {
  fill: #001d61;
}
#main-header.sticky {
  padding: 15rem 0;
  box-shadow: 0 8rem 24rem rgba(0, 0, 0, 0.14);
  border-radius: 0 0 12px 12px;
}
#main-header.sticky .flex-wrapper .left-logo img {
  width: 130rem;
}
@media (max-width: 1023px) {
  #main-header.sticky .flex-wrapper .left-logo img {
    width: 90rem;
  }
}
#main-header.sticky .flex-wrapper .right-menu svg {
  width: 32rem;
  height: unset;
}

#main-footer {
  background-color: #001d61;
  padding: 56rem 0 21rem;
}
#main-footer .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 115rem;
}
#main-footer .flex-wrapper .left {
  width: 285rem;
}
#main-footer .flex-wrapper .left > * {
  margin-bottom: 19rem;
}
#main-footer .flex-wrapper .left > *:last-child {
  margin-bottom: 0;
}
#main-footer .flex-wrapper .left-logo {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#main-footer .flex-wrapper .left-logo img {
  width: 130rem;
  height: unset;
}
#main-footer .flex-wrapper .left-description p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14rem;
  font-weight: normal;
  line-height: 1.4;
}
#main-footer .flex-wrapper .left-phrase p {
  color: #ccff00;
  font-size: 12rem;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
@media (max-width: 1023px) {
  #main-footer .flex-wrapper .left-phrase p {
    line-height: 1.2;
  }
}
#main-footer .flex-wrapper .left-social ul {
  display: flex;
  align-items: center;
}
#main-footer .flex-wrapper .left-social ul li:not(:last-child) {
  margin-right: 12rem;
}
#main-footer .flex-wrapper .left-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36rem;
  height: 36rem;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  transition-property: background-color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-footer .flex-wrapper .left-social ul li a svg path {
  transition-property: fill, stroke;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-footer .flex-wrapper .left-social ul li a:hover {
  background-color: rgba(204, 255, 0, 0.1);
}
#main-footer .flex-wrapper .left-social ul li a:hover svg path[fill] {
  fill: #ccff00;
}
#main-footer .flex-wrapper .left-social ul li a:hover svg path[stroke] {
  stroke: #ccff00;
}
#main-footer .flex-wrapper .right {
  width: 775rem;
}
#main-footer .flex-wrapper .right-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 70rem;
  grid-row-gap: 48rem;
}
#main-footer .flex-wrapper .right-items .item-title {
  color: white;
  font-size: 14rem;
  font-weight: bold;
  margin-bottom: 19rem;
}
#main-footer .flex-wrapper .right-items .item-infos .info {
  display: flex;
  align-items: center;
}
#main-footer .flex-wrapper .right-items .item-infos .info:not(:last-child) {
  margin-bottom: 19rem;
}
#main-footer .flex-wrapper .right-items .item-infos .info-content {
  margin-left: 7rem;
}
#main-footer .flex-wrapper .right-items .item-infos .info-content--title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14rem;
  font-weight: 600;
  margin-bottom: 5rem;
}
#main-footer .flex-wrapper .right-items .item-infos .info-content--link a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14rem;
  font-weight: normal;
  line-height: 1.4;
  transition-property: color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-footer .flex-wrapper .right-items .item-infos .info-content--link a:hover {
  color: #ccff00;
}
#main-footer .flex-wrapper .right-items .item-infos .info-content--description p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14rem;
  font-weight: normal;
}
#main-footer .flex-wrapper .right-items .item-navigation ul li:not(:last-child) {
  margin-bottom: 15rem;
}
#main-footer .flex-wrapper .right-items .item-navigation ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14rem;
  font-weight: normal;
  transition-property: color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-footer .flex-wrapper .right-items .item-navigation ul li a:hover {
  color: #ccff00;
}
#main-footer .bottom {
  padding-top: 20rem;
  margin-top: 55rem;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#main-footer .bottom .copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12rem;
  font-weight: normal;
}
#main-footer .bottom .navigation {
  margin-left: 80rem;
  flex-grow: 1;
}
#main-footer .bottom .navigation ul {
  display: flex;
  align-items: center;
}
#main-footer .bottom .navigation ul li:not(:last-child) {
  margin-right: 24rem;
}
#main-footer .bottom .navigation ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12rem;
  font-weight: normal;
  transition-property: color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-footer .bottom .navigation ul li a:hover {
  color: #ccff00;
}
#main-footer .bottom .signature a {
  display: flex;
  align-items: center;
}
#main-footer .bottom .signature a span {
  color: white;
  font-size: 15rem;
  font-weight: normal;
  margin-right: 5rem;
  transition-property: color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-footer .bottom .signature a svg path {
  transition-property: fill;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-footer .bottom .signature a:hover span {
  color: #ccff00;
}
#main-footer .bottom .signature a:hover svg path {
  fill: #ccff00;
}

@media (max-width: 1023px) {
  #main-footer {
    padding: 56rem 0 24rem;
  }
  #main-footer .flex-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  #main-footer .flex-wrapper .left {
    width: 100%;
    max-width: 320rem;
    text-align: center;
  }
  #main-footer .flex-wrapper .left-social ul {
    justify-content: center;
  }
  #main-footer .flex-wrapper .right {
    width: 100%;
    margin-top: 55rem;
  }
  #main-footer .flex-wrapper .right-items {
    grid-template-columns: 1fr;
    grid-row-gap: 48rem;
    justify-items: center;
  }
  #main-footer .flex-wrapper .right-items .item {
    text-align: center;
  }
  #main-footer .flex-wrapper .right-items .item-title {
    text-align: center;
  }
  #main-footer .flex-wrapper .right-items .item-infos .info {
    justify-content: center;
    text-align: left;
  }
  #main-footer .bottom {
    flex-direction: column;
    margin-top: 48rem;
    text-align: center;
  }
  #main-footer .bottom .copyright p {
    line-height: 1.4;
  }
  #main-footer .bottom .navigation {
    order: -1;
    flex-grow: 0;
    margin-left: 0;
    margin-bottom: 13rem;
  }
  #main-footer .bottom .navigation ul {
    justify-content: center;
  }
  #main-footer .bottom .signature {
    margin-top: 41rem;
  }
}
@media (max-width: 767px) {
  #main-footer {
    padding: 57rem 0 32rem;
  }
  #main-footer .flex-wrapper .left {
    max-width: 268rem;
  }
}
.section-partners {
  background-color: #faf8f5;
  padding: 65rem 0;
}
.section-partners .wrapper {
  text-align: center;
}
.section-partners .wrapper-title {
  color: #676f7e;
  font-size: 12rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40rem;
}
.section-partners .wrapper-logos {
  overflow: hidden;
}
.section-partners .wrapper-logos .logos-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: partners-marquee 35s linear infinite;
}
@media (max-width: 1023px) {
  .section-partners .wrapper-logos .logos-track {
    animation-duration: 25s;
  }
}
.section-partners .wrapper-logos .logos-group {
  display: flex;
  align-items: center;
  gap: 90rem;
  padding-right: 90rem;
}
@media (max-width: 1023px) {
  .section-partners .wrapper-logos .logos-group {
    gap: 45rem;
    padding-right: 45rem;
  }
}
.section-partners .wrapper-logos .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.section-partners .wrapper-logos .logo img {
  max-width: 133rem;
  height: unset;
}
@media (max-width: 1023px) {
  .section-partners .wrapper-logos .logo img {
    width: 70rem;
  }
}
@keyframes partners-marquee {
  to {
    transform: translateX(-50%);
  }
}

#main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  overflow-y: auto;
  transform: translateX(100%);
  transition-property: transform;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  z-index: 100;
}
#main-menu.open {
  transform: translateX(0);
}
#main-menu .close {
  position: absolute;
  top: 20rem;
  right: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44rem;
  height: 44rem;
  z-index: 2;
}
#main-menu .close svg {
  display: block;
  width: 18rem;
  height: unset;
}
#main-menu .close svg path {
  fill: #060b13;
}
#main-menu .wrapper {
  display: flex;
  flex-direction: column;
  padding: 24rem 24rem 48rem;
  min-height: 100%;
}
#main-menu .wrapper .logo {
  margin-bottom: 32rem;
  margin-top: 16rem;
}
#main-menu .wrapper .logo a {
  display: inline-block;
}
#main-menu .wrapper .logo img {
  width: 120rem;
  height: unset;
}
#main-menu .wrapper .navigation {
  flex: 1;
}
#main-menu .wrapper .navigation > ul > li {
  border-bottom: 1px solid #e2e4e9;
}
#main-menu .wrapper .navigation > ul > li > a {
  display: flex;
  align-items: center;
  padding: 16rem 0;
  width: 100%;
  color: #060b13;
  font-size: 16rem;
  font-weight: 600;
}
#main-menu .wrapper .navigation > ul > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16rem 0;
}
#main-menu .wrapper .navigation > ul > li > button > span {
  color: #060b13;
  font-size: 16rem;
  font-weight: 600;
  font-family: "Montserrat";
}
#main-menu .wrapper .navigation > ul > li > button > svg {
  width: 12rem;
  height: auto;
  flex-shrink: 0;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .wrapper .navigation > ul > li > button > svg path {
  stroke: #060b13;
}
#main-menu .wrapper .navigation > ul > li > ul {
  max-height: 0;
  overflow: hidden;
  transition-property: max-height;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  padding-left: 16rem;
}
#main-menu .wrapper .navigation > ul > li > ul li:first-child {
  padding-top: 4rem;
}
#main-menu .wrapper .navigation > ul > li > ul li:last-child {
  padding-bottom: 16rem;
}
#main-menu .wrapper .navigation > ul > li > ul li:not(:last-child) {
  margin-bottom: 14rem;
}
#main-menu .wrapper .navigation > ul > li > ul li a {
  color: #676f7e;
  font-size: 14rem;
  font-weight: 500;
}
#main-menu .wrapper .navigation > ul > li.open > button > svg {
  transform: rotate(180deg);
}
#main-menu .wrapper .navigation > ul > li.open > ul {
  max-height: 400rem;
}
#main-menu .wrapper .actions {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  margin-top: 32rem;
}
#main-menu .wrapper .actions .cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
  border-radius: 50px;
  background-color: #ff0000;
  color: white;
  font-size: 14rem;
  font-weight: 700;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .wrapper .actions .cta-primary:hover {
  opacity: 0.85;
}
#main-menu .wrapper .actions .cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
  border-radius: 50px;
  background-color: #001d61;
  color: white;
  font-size: 14rem;
  font-weight: 700;
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .wrapper .actions .cta-secondary:hover {
  background-color: #0d2b73;
}
#main-menu .wrapper .social {
  margin-top: 32rem;
}
#main-menu .wrapper .social ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-menu .wrapper .social ul li:not(:last-child) {
  margin-right: 17rem;
}
#main-menu .wrapper .social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36rem;
  height: 36rem;
  border-radius: 50px;
  background-color: rgba(0, 29, 97, 0.2);
  transition-property: background-color;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .wrapper .social ul li a svg path {
  transition-property: fill, stroke;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
#main-menu .wrapper .social ul li a svg path[fill] {
  fill: #001d61;
}
#main-menu .wrapper .social ul li a svg path[stroke] {
  stroke: #001d61;
}

/**
* Modals.
*/
/*# sourceMappingURL=main.min.css.map */
