/********************
 GENERAL
*********************/

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  position: relative;
}

html {
  --green: #22c55e;
  --hover-green: rgba(42, 122, 72, 0.2);
  --red: #ef4444;
  --hover-red: rgba(143, 49, 49, 0.2);
  --light-blue-300: #bbbdd6;
  --light-blue: #9296c3;
  --light-blue-500: #686b96;
  --hover-blue: rgba(146, 150, 195, 0.2);
  --navy-blue-200: #323458;
  --navy-blue-300: #252748;
  --navy-blue: #1d1f39;
  --midnight-blue: #1b1c35;
  --deep-blue: #17192d;
  --header-blue: rgba(23, 25, 45, 0.5);
  --backdrop-blue: rgba(23, 25, 45, 0.2);
  --dark-blue: #141629;
  --dark-blue-500: #0d0e19;
  --gold-300: #a8a8a8;
  --gold: #dbac6f;
  --hover-gold: rgba(219, 172, 111, 0.2);
  --white: #ffffff;
  --black: #000000;
  --poppins: "Poppins", sans-serif;
  --arizona: "Arizona", serif;
  --small-hmargin: 20px;
  --medium-hmargin: 40px;
  --large-hmargin: 80px;
  --xlarge-hmargin: 180px;
  --small-vmargin: 40px;
  --medium-vmargin: 80px;
  --large-vmargin: 120px;
  --xlarge-vmargin: 180px;
  --header-height: calc(4.5rem + 20px);
}

body {
  --banner-height: calc(1.5rem + 20px);
  --sm-toolbar-min-top: calc(var(--header-height) + var(--banner-height));
}

body.no-banner {
  --banner-height: 0px;
}

@media screen and (max-width: 1200px) {
  html {
    --small-hmargin: 20px;
    --medium-hmargin: 40px;
    --large-hmargin: 60px;
    --xlarge-hmargin: 120px;
    --small-vmargin: 40px;
    --medium-vmargin: 60px;
    --large-vmargin: 80px;
    --xlarge-vmargin: 120px;
  }
}

@media screen and (max-width: 992px) {
  html {
    --small-hmargin: 20px;
    --medium-hmargin: 30px;
    --large-hmargin: 40px;
    --xlarge-hmargin: 80px;
    --small-vmargin: 20px;
    --medium-vmargin: 40px;
    --large-vmargin: 60px;
    --xlarge-vmargin: 80px;
  }
}

@media screen and (max-width: 500px) {
  html {
    --small-hmargin: 10px;
    --medium-hmargin: 20px;
    --large-hmargin: 20px;
    --xlarge-hmargin: 40px;
    --small-vmargin: 20px;
    --medium-vmargin: 40px;
    --large-vmargin: 40px;
    --xlarge-vmargin: 80px;
  }
}

a {
  text-decoration: none;
  cursor: pointer;
}

.protect {
  pointer-events: none;
}

div {
  align-items: start;
}

.hidden-title {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  right: 200vw;
  bottom: 200vh;
}

img,
svg {
  display: block;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--deep-blue);
}

::-webkit-scrollbar-track-piece {
  background: var(--deep-blue);
}

::-webkit-scrollbar-thumb {
  background: var(--light-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--light-blue-300);
}

::-webkit-scrollbar-thumb:active {
  background: var(--light-blue-500);
}

::-webkit-scrollbar-corner {
  background: var(--white);
}

/********************
 FONTS
*********************/

/* Poppins */

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Thin-Italic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight-Italic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light-Italic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium-Italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold-Italic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold-Italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold-Italic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black-Italic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: fallback;
}

/* Arizona */

@font-face {
  font-family: "Arizona";
  src: url("../fonts/ABCArizonaFlare-Thin.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Arizona";
  src: url("../fonts/ABCArizonaFlare-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Arizona";
  src: url("../fonts/ABCArizonaFlare-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Arizona";
  src: url("../fonts/ABCArizonaFlare-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Arizona";
  src: url("../fonts/ABCArizonaFlare-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "Arizona";
  src: url("../fonts/ABCArizonaFlare-ThinItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Arizona";
  src: url("../fonts/ABCArizonaFlare-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Arizona";
  src: url("../fonts/ABCArizonaFlare-RegularItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Arizona";
  src: url("../fonts/ABCArizonaFlare-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: fallback;
}

@font-face {
  font-family: "Arizona";
  src: url("../fonts/ABCArizonaFlare-BoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: fallback;
}

/********************
 TITLES AND TEXTS
*********************/

body {
  font-family: var(--poppins);
  font-size: 1.1rem;
  font-weight: 300;
  background-color: var(--deep-blue);
  color: var(--white);
  line-height: 1.4;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 300;
  line-height: 1.1;
  font-family: var(--arizona);
}

h1,
.h1 {
  font-size: 4rem;
}

h2,
.h2 {
  font-size: 3.6rem;
}

h3,
.h3 {
  font-size: 3rem;
}

h4,
.h4 {
  font-size: 1.8rem;
}

@media screen and (max-width: 1500px) {
  h1,
  .h1 {
    font-size: 3.6rem;
  }
  h2,
  .h2 {
    font-size: 3.4rem;
  }
  h3,
  .h3 {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 1200px) {
  h1,
  .h1 {
    font-size: 3.2rem;
  }
  h2,
  .h2 {
    font-size: 3rem;
  }
  h3,
  .h3 {
    font-size: 2.2rem;
  }
  h4,
  .h4 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 992px) {
  h1,
  .h1 {
    font-size: 3rem;
  }
  h2,
  .h2 {
    font-size: 2.8rem;
  }
  h3,
  .h3 {
    font-size: 2.2rem;
  }
  h4,
  .h4 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 500px) {
  h1,
  .h1 {
    font-size: 2.6rem;
  }
  h2,
  .h2 {
    font-size: 2.4rem;
  }
  h3,
  .h3 {
    font-size: 1.8rem;
  }
  h4,
  .h4 {
    font-size: 1.3rem;
  }
}

h1 i,
.h1 i,
h2 i,
.h2 i,
h3 i,
.h3 i,
h4 i,
.h4 i {
  color: var(--gold);
  font-style: normal;
}

/********************
 COMMONS
*********************/
.editable_model {
  display: none !important;
}

div.editable > :not(:first-child) {
  margin-top: 10px;
}

.fade-in-after-init {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.fade-in-after-init.inited {
  opacity: 1;
}

/* arrow */
.arrow {
  background-color: var(--hover-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
  width: 1.5rem;
  min-height: 1.5rem;
  min-width: 1.5rem;
  border-radius: 50%;
  color: var(--gold);
  transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out,
    transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.arrow.border {
  border: 1px solid currentColor;
}

.arrow.blue {
  color: var(--light-blue);
  background-color: var(--hover-blue);
}

.arrow.large {
  height: 1.75rem;
  width: 1.75rem;
  min-height: 1.75rem;
  min-width: 1.75rem;
}

.arrow.very-large {
  height: 2.5rem;
  width: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
}

.arrow svg,
.arrow img {
  width: 0.875rem;
  height: 0.875rem;
  object-fit: contain;
}

.arrow.large svg,
.arrow.large img {
  width: 1rem;
  height: 1rem;
}

.arrow.very-large svg,
.arrow.very-large img {
  width: 1.375rem;
  height: 1.375rem;
}

.arrow svg path {
  stroke: currentColor;
  transition: stroke 0.2s ease-in-out;
}

/* BTN */
.btn {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: max-content;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  cursor: pointer;
  border-radius: 10px;
  background-color: var(--hover-gold);
  color: var(--gold);
  font-weight: 500;
  border: 1px solid currentColor;
  padding: 8px 10px;
  min-height: calc(16px + 1.2rem * 1.4);
  font-size: 1.2rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    border-color 0.2s ease-in-out, filter 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
}

.btn.full-width {
  width: 100%;
}

.btn p {
  line-height: inherit;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}

.btn:hover,
.btn:focus-visible {
  background-color: var(--hover-blue);
  color: var(--light-blue);
  border-color: var(--light-blue);
}

.btn:hover::after,
.btn:focus-visible::after {
  color: var(--light-blue);
  border-color: var(--light-blue);
}

.btn.locked {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.6;
}

.btn::after {
  display: block;
  font-size: 1.1rem;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  min-height: 1.5rem;
  min-width: 1.5rem;
  border-radius: 50%;
  margin-left: 10px;
  background-color: var(--deep-blue);
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out,
    filter 0.2s ease-in-out, color 0.2s ease-in-out;
}

.btn::before {
  content: url("/asset/img/arrow.svg");
  font-size: 1.1rem;
  height: 18px;
  width: 18px;
  min-height: 18px;
  min-width: 18px;
  order: 100000;
  margin-left: calc(-1.5rem / 2);
  margin-right: -10px;
  /*position: absolute;
  z-index: 2;
  right: calc(10px + 1.5rem / 2);
  top: calc(5px + 1.5rem / 2);
  transform: translate(50%, -50%) scale(0.82);*/
  transform: translateX(-50%) scale(0.82);
  transition: filter 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.btn.arrow-bottom::before {
  transform: translateX(-50%) scale(0.82) rotate(90deg);
}

.btn.arrow-top::before {
  transform: translateX(-50%) scale(0.82) rotate(-90deg);
}

.sm .btn::after,
.sm .btn::before {
  display: none;
}

.btn:hover::before,
.btn:focus-visible::before {
  filter: invert(0.85) sepia(0.55) brightness(1.5) saturate(2.5)
    hue-rotate(44deg) !important;
}

.editable .btn,
.btn.small {
  display: inline-flex;
  font-weight: 300;
  padding: 5px 8px;
  font-size: 1.1rem;
  position: relative;
  min-height: calc(10px + 1.1rem * 1.4);
}

.editable .btn {
  border: none;
}

.editable .btn::after {
  height: 1.25rem;
  width: 1.25rem;
  min-height: 1.25rem;
  min-width: 1.25rem;
  background-color: var(--hover-gold);
  border: 1px solid currentColor;
}

.btn.small::after {
  margin-left: 5px;
}

.editable .btn::before {
  margin-left: calc(-1.25rem / 2);
  transform: translateX(-50%) scale(0.7);
}

.editable .btn:hover::after,
.editable .btn:focus-visible::after {
  background-color: var(--hover-blue);
}

.btn.green:not(:hover),
.btn.green:not(:hover)::after {
  color: var(--green);
  border-color: var(--green);
  background-color: var(--hover-green);
}

.btn.green::before {
  filter: brightness(0) saturate(100%) invert(67%) sepia(73%) saturate(2823%)
    hue-rotate(93deg) brightness(99%) contrast(73%);
}

.btn.red:not(:hover),
.btn.red:not(:hover)::after {
  color: var(--red);
  border-color: var(--red);
  background-color: var(--hover-red);
}

.btn.red::before {
  filter: brightness(0) saturate(100%) invert(47%) sepia(38%) saturate(6474%)
    hue-rotate(334deg) brightness(87%) contrast(104%);
}

.btn.white:not(:hover) {
  color: var(--white);
  border-color: var(--white);
  background-color: rgba(255, 255, 225, 0.2);
}

.btn.white::before {
  filter: brightness(0%) invert(1);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* PRELOADER */

.preloader {
  display: none;
  height: 5px;
  width: 100%;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 20px;
}

.preloader > span {
  position: absolute;
  animation: none;
  width: 100%;
  height: 100%;
  left: -100%;
  border-radius: 3px;
  background-color: var(--gold);
}

.preloader.active {
  display: block;
}

.preloader.active > span {
  animation: preloader 1s linear 0s infinite normal forwards;
}

@keyframes preloader {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* BOUNCE */

.bounce {
  animation-name: bounce;
  animation-duration: 0.4s;
  animation-timing-function: cubic-bezier(0.2, 0.9, 0.3, 1.4);
  animation-iteration-count: 1;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.6);
  }
  60% {
    transform: scale(1.2);
  }
  0% {
    transform: scale(1);
  }
}

/* WAVE */

.wave {
  animation-name: wave;
  animation-duration: 1.1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes wave {
  0% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}

/********************
 BANNER
*********************/
#banner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  overflow: hidden;
  background-color: var(--deep-blue);
  height: var(--banner-height);
}

#banner > div {
  display: flex;
  gap: 300px;
  width: max-content;
  position: relative;
  height: 1.5rem;
  padding: 10px 0;
  animation: banner 15s linear 0s infinite;
}

@keyframes banner {
  0% {
    transform: translateX(calc(0% + 150px));
  }
  100% {
    transform: translateX(calc(-50% + 0px));
  }
}

/*#banner > div > a,
#banner > div > p {
  margin: 0 150px;
}*/

#banner > div > a {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5rem;
  width: max-content;
}

#banner > div > a > p,
#banner > div > p {
  color: var(--white);
  opacity: 0.5;
  transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
  white-space: nowrap;
}

#banner > div > a:hover > p {
  color: var(--gold);
  opacity: 1;
}

#banner > div > a > div {
  background-color: var(--hover-gold);
  border: 1px solid var(--gold);
  width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
  min-width: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.3, 1.4);
}

#banner > div > a > div > svg {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
}

#banner > div > a > div > svg path {
  stroke: var(--gold);
}

#banner > div > a:hover > div {
  transform: translateX(10px);
}

/********************
 HEADER
*********************/
#head {
  position: fixed;
  top: var(--banner-height);
  font-weight: 300;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  gap: 40px;
  z-index: 100;
  background-color: var(--header-blue);
  backdrop-filter: blur(24px);
  transition: background-color 0.2s ease-in-out;
}

#head.active {
  background-color: var(--navy-blue);
}

#head > a {
  transition: opacity 0.2s ease-in-out;
}

#head > a > img {
  height: 4.5rem;
  width: auto;
}

#head > a:hover {
  opacity: 0.6;
}

.menu {
  display: flex;
  gap: 15px;
  align-items: center;
}

.menu > img {
  height: 1.1rem;
  width: auto;
}

.menu > a:not(.btn) {
  color: var(--white);
  display: block;
  transition: color 0.2s ease-in-out;
  white-space: nowrap;
}

.menu > a:not(.btn).active,
.menu > a:not(.btn):hover,
.menu > a:not(.btn):has(.active) {
  color: var(--gold);
}

.menu > a:not(.btn).active,
.menu > a:not(.btn):has(.active),
.menu > div.active {
  font-weight: 400;
}

.menu > span {
  display: block;
  background-color: var(--white);
  height: 1.5rem;
  width: 1px;
  opacity: 0.2;
}

.menu > div {
  position: relative;
  cursor: default;
  transition: color 0.2s ease-in-out;
  white-space: nowrap;
}

.menu > div:hover,
.menu > div.active {
  color: var(--gold);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
  background-color: var(--navy-blue);
  border-radius: 15px;
  padding: 5px;
  font-weight: 400;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.menu > div:hover > .submenu {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 0);
}

.submenu > a {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
  padding: 5px 10px;
  color: var(--light-blue);
  white-space: nowrap;
  position: relative;
  min-width: 400px;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    padding 0.2s ease-in-out;
}

.submenu > a > p {
  flex-grow: 1;
}

.submenu > a:hover {
  padding-left: calc(1.1rem + 10px);
  background-color: var(--navy-blue-300);
}

.submenu > a:active,
.submenu > a.active {
  padding-left: calc(1.1rem + 10px);
  background-color: var(--hover-gold);
  color: var(--gold);
}

.submenu > a > svg:first-child {
  width: 1.1rem;
  height: auto;
  object-fit: contain;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translate(calc(-1.1rem - 5px), -50%);
  opacity: 0;
  transition: transform 0.2s ease-in-out, opacity 0.1s ease-in-out;
}

.submenu > a:hover > svg:first-child,
.submenu > a:active > svg:first-child,
.submenu > a.active > svg:first-child {
  transform: translate(0, -50%);
  opacity: 1;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out 0.1s;
}

.submenu > a > svg:first-child path {
  fill: currentColor;
}

.submenu > a > svg:last-child path {
  stroke: currentColor;
}

/********************
 MOBILE HEADER
*********************/
#burger {
  flex-direction: column;
  justify-content: space-between;
  width: 56px;
  height: 30px;
  z-index: 102;
  cursor: pointer;
  display: none;
}

#burger > span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background-color: var(--gold);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out,
    background-color 0.2s ease-in-out;
}

#burger > span:nth-child(2) {
  background-color: var(--white);
}

#burger.active > span:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
}

#burger.active > span:nth-child(2) {
  transform: translateX(10px);
  opacity: 0;
}

#burger.active > span:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
}

#head_mobile {
  display: none;
  background-color: var(--header-blue);
  backdrop-filter: blur(24px);
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.2s ease-in-out;
  pointer-events: none;
  transform: translateX(100%);
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: calc(100vh - (100vh - 100%));
  z-index: 99;
  font-weight: 300;
  font-size: 1.3rem;
  overflow: auto;
  padding: calc(var(--banner-height) + var(--header-height) + 40px) 20px 40px;
}

#head_mobile.active {
  transform: translateX(0);
  pointer-events: all;
}

#head_mobile a.active {
  font-weight: 400;
  color: var(--gold);
}

#head_mobile > a:not(.btn),
.mobile-submenu > a,
#head_mobile > div > div:first-child {
  padding: 20px 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: color 0.2s ease-in-out;
}

.mobile-submenu > a {
  padding: 0;
}

#head_mobile > div > div:first-child {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#head_mobile > div {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#head_mobile > span {
  display: block;
  background-color: var(--light-blue);
  opacity: 0.2;
  width: 100%;
  height: 1px;
}

#head_mobile > a:hover {
  color: var(--gold);
}

#head_mobile > a > .arrow,
#head_mobile > div > div:first-child > .arrow {
  opacity: 0;
}

#head_mobile > div > div:first-child > .arrow {
  transform: rotate(-90deg);
}

#head_mobile > div:hover > div:first-child > .arrow {
  opacity: 1;
}

#head_mobile > div > div:first-child.active {
  color: var(--gold) !important;
}

#head_mobile > div > div:first-child.active > .arrow {
  opacity: 1;
  background-color: var(--hover-gold);
  color: var(--gold);
}

#head_mobile > a.active > .arrow,
#head_mobile > div.active > .arrow {
  opacity: 1;
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  width: 100%;
  font-weight: 400;
  transition: opacity 0.2s ease-in-out, max-height 0.2s ease-in-out,
    padding 0.2s ease-in-out, border 0.2s ease-in-out;
  --submenu-height: 100vh;
  border-top: 0px solid var(--hover-blue);
  gap: 10px;
}

#head_mobile > div > div:first-child > div {
  background-color: var(--hover-blue);
  color: var(--light-blue);
}

#head_mobile > div:hover > div:first-child {
  color: var(--light-blue);
}

#head_mobile > div:hover > .mobile-submenu,
#head_mobile > div > div:first-child.active + .mobile-submenu {
  opacity: 1;
  pointer-events: all;
  max-height: var(--submenu-height);
  padding: 10px 0;
  border-top: 1px solid var(--hover-blue);
}

.mobile-submenu > a {
  color: var(--light-blue);
  font-size: 1.15rem;
}

.mobile-submenu > a:hover {
  color: var(--gold);
}

@media screen and (max-width: 1300px) {
  #head {
    padding: 10px 20px;
    gap: 20px;
  }
  .menu {
    gap: 10px;
  }
}

@media screen and (max-width: 1100px) {
  #head {
    padding: 10px 40px;
  }
  #head > a > img {
    height: 3.5rem;
  }
  html {
    --header-height: calc(3.5rem + 20px);
  }
}

@media screen and (max-width: 1150px) {
  #head > a > img {
    height: 4.5rem;
  }
  html {
    --header-height: calc(4.5rem + 20px);
  }
  .menu {
    display: none;
  }
  #burger,
  #head_mobile {
    display: flex;
  }
}

@media screen and (max-width: 650px) {
  #head {
    padding: 10px 20px;
  }
}

/********************
 FOOTER
*********************/
#foot {
  background-color: var(--dark-blue);
  padding: var(--medium-vmargin) var(--medium-hmargin) 40px;
}

/* foot top */

.foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 80px;
}

.foot-top > a {
  transition: opacity 0.2s ease-in-out;
}

.foot-top > a:hover {
  opacity: 0.6;
}

.foot-top > a > img {
  height: 4.8rem;
  width: auto;
}

.foot-top > div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* foot center */

.foot-center {
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 80px;
}

#newsletter_form input {
  transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out,
    background-color 0.2s ease-in-out;
}

#newsletter_form.locked input {
  filter: grayscale(1);
  opacity: 0.6;
  pointer-events: none;
}

.foot-newsletter {
  background-color: var(--navy-blue);
  font-size: 1.2rem;
  font-weight: 200;
  font-family: var(--arizona);
  letter-spacing: 0.04rem;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
  position: relative;
}

.foot-newsletter .preloader {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.foot-newsletter .error,
.foot-newsletter .success {
  font-family: var(--poppins);
  font-size: 0.9rem;
  margin-top: 5px;
}

.foot-newsletter > p:first-child > span {
  color: var(--gold);
  display: block;
}

.newsletter-field {
  position: relative;
  margin-top: 15px;
}

.newsletter-field input {
  background-color: var(--deep-blue);
  border-radius: 10px;
  width: 100%;
  padding-right: calc(1.75rem + 20px);
  font-weight: 300;
}

.newsletter-field input:focus,
.newsletter-field input:hover {
  background-color: var(--navy-blue-300);
}

.newsletter-field input::placeholder {
  opacity: 1;
}

.newsletter-field button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  cursor: pointer;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border 0.2s ease-in-out;
}

.newsletter-field input:-webkit-autofill,
.newsletter-field input:-webkit-autofill:hover,
.newsletter-field input:-webkit-autofill:focus,
.newsletter-field input:-webkit-autofill:active {
  box-shadow: inset 0 0 20px 100vw var(--deep-blue);
}

.newsletter-field button:hover {
  color: var(--light-blue);
  border-color: var(--light-blue);
  background-color: var(--hover-blue);
}

.foot-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.foot-menu a,
.foot-menu > div > div:first-child {
  color: var(--white);
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 60px;
  font-weight: 300;
  justify-content: space-between;
}

.foot-menu a .arrow,
.foot-menu > div > div:first-child .arrow {
  opacity: 0;
}

.foot-menu a:hover,
.foot-menu a.active,
.foot-menu > div > div:first-child.active {
  color: var(--gold);
}

.foot-menu a.active,
.foot-menu > div > div:first-child.active {
  font-weight: 400;
}

.foot-menu a.active .arrow,
.foot-menu > div > div:first-child.active .arrow {
  opacity: 1;
}

.foot-menu > a,
.foot-menu > div {
  padding: 10px 0;
}

.foot-menu > div {
  padding-bottom: 0;
}
.foot-menu > div > div:first-child {
  padding-bottom: 10px;
}

.foot-menu > div:hover > div:first-child:not(.active) {
  color: var(--light-blue);
}

.foot-menu > div > div:first-child .arrow {
  transform: rotate(-90deg);
  background-color: var(--hover-blue);
}

.foot-menu > div > div:first-child .arrow path {
  stroke: var(--light-blue);
}

.foot-menu > div > div:first-child.active .arrow {
  background-color: var(--hover-gold);
}

.foot-menu > div > div:first-child.active .arrow path {
  stroke: var(--gold);
}

.foot-menu > div:hover > div:first-child .arrow {
  opacity: 1;
}

.foot-menu > span {
  width: 100%;
  height: 1px;
  background-color: var(--light-blue);
  opacity: 0.2;
}

.foot-submenu {
  font-size: 0.95rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  height: 0;
  pointer-events: none;
  border-top: 0px solid var(--hover-blue);
  transition: height 0.2s ease-in-out, opacity 0.2s ease-in-out,
    padding 0.2s ease-in-out, border 0.2s ease-in-out;
}

.foot-menu > div:hover .foot-submenu,
.foot-menu > div > div:first-child.active + .foot-submenu {
  opacity: 1;
  pointer-events: all;
  height: var(--submenu-height);
  border-top: 1px solid var(--hover-blue);
  padding: 10px 0;
}

.foot-submenu a {
  display: block;
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  color: var(--light-blue);
  padding-right: 20px;
}

.foot-submenu a:last-child {
  padding-bottom: 0;
}

/* foot bottom */

.foot-bottom {
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px 20px;
}

.networks {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 4px;
  gap: 7px;
  width: max-content;
  border-radius: 90000px;
}

.networks > a {
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hover-gold);
  border-radius: 50%;
  color: var(--gold);
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.networks > a > svg {
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
}

.networks > a > svg path {
  fill: currentColor;
  transition: fill 0.2s ease-in-out;
}

.networks > a:hover {
  background-color: var(--hover-blue);
  color: var(--light-blue);
}

.foot-legals {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.foot-legals > img {
  height: 1rem;
  width: auto;
}

.foot-legals > span {
  width: 35px;
  flex-grow: 1;
  background-color: var(--gold);
  height: 1px;
  display: block;
}

.foot-legals a {
  color: var(--white);
  transition: color 0.2s ease-in-out;
}

.foot-legals a:hover,
.foot-legals > a:first-child {
  color: var(--gold);
}

.foot-legals > a:first-child:hover {
  color: var(--light-blue);
}

@media screen and (max-width: 1300px) {
  .foot-legals > span:last-child {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .foot-menu {
    font-size: 1.3rem;
  }
  .foot-submenu {
    font-size: 1.1rem;
  }
  .foot-menu,
  .foot-newsletter {
    flex-grow: 1;
  }
  .foot-menu .arrow {
    height: 1.75rem;
    width: 1.75rem;
    min-height: 1.75rem;
    min-width: 1.75rem;
  }
  .foot-menu .arrow svg,
  .foot-menu .arrow img {
    width: 1rem;
    height: 1rem;
  }
}

@media screen and (max-width: 650px) {
  .foot-newsletter > p:first-child > span {
    display: inline;
  }
}

@media screen and (max-width: 500px) {
  .foot-legals > img {
    display: none;
  }
  .foot-legals > a:not(:first-child) {
    flex-grow: 1;
    width: 100%;
  }
}

/*************
  404
**************/
.p404 {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.p404 > div > p {
  margin: 20px 0;
}

.p404 .btn {
  margin: 0 auto;
}

/********************
 LEGALS
*********************/
.legals {
  font-weight: 300;
  max-width: min(calc(100% - var(--large-hmargin) * 2), 1200px);
  margin: var(--medium-vmargin) auto;
}

.legals a:not(.btn) {
  color: var(--light-blue);
  transition: color 0.2s ease-in-out;
}

.legals a:not(.btn):hover {
  color: var(--gold);
}

.legals h2,
.legals h3,
.legals h4 {
  margin: 40px 0 20px !important;
  color: var(--gold);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hover-blue);
  width: 100%;
  font-size: 2.1rem;
}

.legals h3 {
  margin: 40px 0 20px !important;
  font-size: 1.8rem;
}

.legals h4 {
  margin: 20px 0 10px !important;
  font-size: 1.5rem;
}

.legals h5 {
  margin: 20px 0 10px !important;
  font-size: 1.3rem;
}

.legals h6 {
  margin: 20px 0 10px !important;
  font-size: 1.1rem;
}

.legals p {
  margin: 10px 0;
}

.legals form .btn {
  width: max-content;
  margin: 20px auto;
}

.legals-foot {
  max-width: min(calc(100% - var(--large-hmargin) * 2), 1200px);
  margin: var(--medium-vmargin) auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px var(--medium-hmargin);
}

.legals-foot > div:last-child {
  opacity: 0.5;
  font-style: italic;
  font-weight: 200;
}

/*************
  COOKIES
**************/

/********************
 COOKIES
*********************/
.cookies {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: rgba(30, 33, 58, 0.6);
  backdrop-filter: blur(24px);
  z-index: 104;
  color: var(--white);
  padding: 15px;
  width: 480px;
  max-width: calc(100% - 20px);
  transform: translateY(40px);
  pointer-events: none;
  opacity: 0;
  font-size: 0.9rem;
  border-radius: 15px;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.cookies.active {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s ease-in-out 0.6s, opacity 0.6s ease-in-out 0.6s;
}

.cookies h4 {
  font-size: 1.3rem;
  margin: 0 auto;
  flex-grow: 1;
}

.cookies > span {
  display: block;
  background-color: var(--light-blue);
  opacity: 0.2;
  width: 100%;
  height: 1px;
}

.cookies > p {
  max-width: 800px;
}

.cookies .btn {
  margin: 0;
}

.cookies p > a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}

.cookies p > a:hover {
  color: var(--light-blue);
}

.cookies-head {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.cookies-head > img {
  height: 3.5rem;
}

.cookies-head > div {
  background-color: var(--hover-blue);
  border-radius: 5px;
  padding: 8px;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}

.cookies-head > div:hover {
  background-color: var(--hover-gold);
}

.cookies-head > div path {
  stroke: var(--light-blue);
  transition: stroke 0.2s ease-in-out;
}

.cookies-head > div:hover path {
  stroke: var(--gold);
}

.cookies-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  width: max-content;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

@media screen and (max-width: 400px) {
  .cookies {
    max-width: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 0;
    border: none;
    padding: 10px;
  }

  .cookies-head > img {
    display: none;
  }
}

/********************
 CONTACT
*********************/

/* success and error */
.success {
  color: var(--green);
  margin-top: 10px;
}

.error {
  color: var(--red);
  margin-top: 10px;
}

.success:empty,
.error:empty {
  display: none;
  margin: 0;
}

/* captcha badge */

.grecaptcha-badge {
  display: none;
}

/* fields grid */

.fields-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 20px 0;
}

.fields-grid:first-child {
  margin-top: 0;
}

@media screen and (max-width: 650px) {
  .fields-grid {
    grid-template-columns: 1fr;
  }
}

/* field */
.field,
.textarea,
.checkbox {
  width: 100%;
  background-color: var(--navy-blue);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  padding: 15px 20px;
  align-items: center;
  transition: filter 0.2s ease-in-out, opacity 0.2s ease-in-out,
    background-color 0.2s ease-in-out;
}

.field:focus-within,
.field:hover,
.textarea:focus-within,
.textarea:hover {
  background-color: var(--navy-blue-300);
}

form.locked .field,
form.locked .textarea,
form.locked .select,
form.locked .checkbox,
form.locked button {
  filter: grayscale(1);
  opacity: 0.6;
  pointer-events: none;
}

.field input {
  text-align: right;
  flex-grow: 1;
  background-color: var(--navy-blue);
  padding: 0;
  transition: background-color 0.2s ease-in-out;
}

.textarea textarea {
  transition: background-color 0.2s ease-in-out;
}

.field input:focus,
.field:hover input,
.textarea textarea:focus,
.textarea:hover textarea {
  background-color: var(--navy-blue-300);
}

.field p,
.textarea p,
.checkbox p {
  font-family: var(--arizona);
  font-weight: 300;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  transition: color 0.2s ease-in-out;
}

.field:focus-within p,
.textarea:focus-within p {
  color: var(--gold);
}

.field p img,
.textarea p img,
.checkbox p img {
  height: 1rem;
  width: auto;
}

.textarea {
  display: block;
  margin: 20px 0;
}

.textarea textarea {
  border: none;
  resize: vertical;
  min-height: 4rem;
}

.checkbox {
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
}

.checkbox.disabled {
  filter: grayscale(1);
  background-color: var(--hover-blue);
  cursor: unset;
}

.checkbox:not(.disabled):hover {
  background-color: var(--navy-blue-300);
  color: var(--gold);
}

.checkbox p {
  white-space: unset;
  flex-grow: 1;
}

.checkbox a {
  color: var(--light-blue-300);
  transition: color 0.2s ease-in-out;
}

.checkbox:hover a {
  color: var(--light-blue-300);
}

.checkbox a:hover {
  color: var(--light-blue);
}

.checkbox input {
  opacity: 0;
  flex-grow: unset;
  position: absolute;
  right: 20px;
  top: 50%;
  width: max-content;
  transform: translate(-50%, -50%);
}

.checkbox > div {
  background-color: transparent;
  border: 1px solid var(--gold);
  min-height: 1.8rem;
  min-width: 1.8rem;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease-in-out;
}

.checkbox input:checked + div {
  background-color: var(--hover-gold);
}

.checkbox > div > img {
  height: 1rem;
  width: 1rem;
  object-fit: contain;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0);
}

.checkbox input:checked + div > img {
  transform: scale(1);
}

.select {
  width: 100%;
  background-color: var(--deep-blue);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 20px;
  align-items: center;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    filter 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.select > p {
  color: var(--gold);
  transition: color 0.2s ease-in-out;
}

.select > p.disabled {
  font-family: var(--arizona);
  color: var(--white);
}

.select svg {
  height: 0.65rem;
  width: auto;
  transition: transform 0.2s ease-in-out;
}

.select.active svg,
.select:focus-visible svg,
.select:focus-within svg {
  transform: rotate(180deg);
}

.select svg path {
  stroke: var(--gold);
  transition: stroke 0.2s ease-in-out;
}

.select:focus-visible svg path,
.select:focus-within svg path,
.select:hover svg path,
.select.active svg path {
  stroke: var(--light-blue);
}

.select:focus-visible,
.select:focus-within,
.select:hover,
.select.active {
  background-color: var(--navy-blue-300);
  color: var(--light-blue);
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--navy-blue-300);
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 10px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.select:focus-visible .options,
.select:focus-within .options,
.select.active .options {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.option {
  padding: 5px 15px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  background-color: var(--navy-blue-300);
  color: var(--white);
  outline: none;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.option:hover,
.option:focus-visible,
.option.active {
  background-color: var(--deep-blue);
  color: var(--light-blue);
}

/* inputs */

input,
textarea {
  border: none;
  font-family: var(--poppins);
  color: var(--gold);
  font-weight: 300;
  padding: 10px;
  font-size: 1.1rem;
  outline: none;
  background-color: var(--navy-blue);
  width: inherit;
}

input::placeholder,
textarea::placeholder {
  font-weight: 300;
  color: var(--light-blue);
  opacity: 0.6;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--gold);
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 100vw var(--navy-blue);
}

textarea {
  border: 1px solid var(--black);
  width: 100%;
  resize: vertical;
}

button {
  font-family: var(--poppins);
}

form .btn {
  width: 100%;
}

form .btn::before {
  height: 19px;
}

.contact form .btn::before {
  height: 20px;
}

select {
  appearance: none;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

/********************
 LANDING
*********************/
.landing {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: calc(var(--banner-height) + var(--header-height));
  padding-bottom: 60px;
}

.landing.no-border {
  padding: 0;
}

.landing.full {
  height: calc(100vh - var(--banner-height) + 120px);
  height: calc(100svh - var(--banner-height) + 120px);
  flex-direction: column;
}

.landing.full.no-border {
  height: 100vh;
  height: 100svh;
}

.landing-background {
  border-bottom: 30px solid rgba(255, 255, 255, 0.02);
  border-right: 30px solid rgba(255, 255, 255, 0.02);
  border-bottom-right-radius: 210px;
  padding: 0 30px 30px 0;
  z-index: 1;
  top: var(--banner-height);
  left: 0;
  position: absolute;
  width: calc(100% + 60px);
  height: calc(100% - 60px);
}

.landing.no-border .landing-background {
  width: 100%;
  height: 100%;
  padding: 0;
  border-bottom-right-radius: 0;
  border: none;
}

.landing-background > div {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  border-bottom-right-radius: 180px;
  background-color: var(--dark-blue-500);
}

.landing.no-border .landing-background > div {
  border-bottom-right-radius: 0;
}

.landing-background > div > img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.2;
}

.landing-content {
  position: relative;
  z-index: 2;
  padding: var(--medium-vmargin) calc(var(--large-hmargin) + 60px)
    var(--large-vmargin) var(--large-hmargin);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 60px);
  pointer-events: none;
}

.landing-content .editable,
.landing-content h1,
.landing-content .btn {
  pointer-events: all;
}

.landing.full .landing-content {
  padding-top: var(--large-vmargin);
}

.landing-content span {
  width: 100%;
  height: 1px;
  background-color: var(--light-blue);
  opacity: 0.2;
  display: block;
  margin: 20px 0;
}

.landing-content h1 {
  margin: 20px 0;
}

.landing-content h2 {
  color: var(--gold);
  margin: 20px 0;
}

.landing-content div.editable {
  max-width: 700px;
  padding: 10px;
  background-color: var(--backdrop-blue);
  backdrop-filter: blur(24px);
  margin: 10px 0;
  border-radius: 10px;
}

.landing-content .buttons {
  margin: 10px 0;
  width: 100%;
  gap: 20px 10px;
}

.landing .networks {
  pointer-events: all;
  margin: 10px 0;
}

.landing h1 a {
  color: var(--white);
  transition: color 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.landing h1 a:hover {
  color: var(--gold);
}

.landing h1 a::after {
  display: block;
  content: "";
  height: 2.5rem;
  width: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 50%;
  margin-left: 10px;
  background-color: var(--hover-gold);
  border: 1px solid transparent;
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.landing h1 a:hover::after {
  transform: translateX(10px);
  border-color: var(--gold);
}

.landing h1 a::before {
  content: "";
  background-image: url("/asset/img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 1.6rem;
  width: 1.6rem;
  min-height: 1.6rem;
  min-width: 1.6rem;
  display: block;
  order: 100000;
  margin-left: calc(-2.5rem / 2 - 11px);
  margin-right: -10px;
  transform: translateX(-50%);
  transition: transform 0.2s ease-in-out;
}

.landing h1 a:hover::before {
  transform: translateX(calc(-50% + 10px));
}

@media screen and (max-width: 800px) {
  .landing-content {
    padding-right: var(--large-hmargin);
  }
  .landing-background,
  .landing-background > div {
    border-radius: 0;
  }
}

@media screen and (max-width: 650px) {
  .landing-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
  }
  .landing h1 a::after {
    height: 2.1rem;
    width: 2.1rem;
    min-height: 2.1rem;
    min-width: 2.1rem;
  }
  .landing h1 a::before {
    height: 1.2rem;
    width: 1.2rem;
    margin-left: calc(-2.1rem / 2 - 11px);
  }
  .landing.full .landing-content {
    padding-top: var(--small-vmargin);
    padding-bottom: var(--small-vmargin);
    height: 100%;
  }
}

/********************
 TITLE SECTION
*********************/
.title-section {
  margin: var(--medium-vmargin) var(--large-hmargin);
  text-align: center;
}

.title-section span {
  background-color: var(--navy-blue);
  height: 2.1rem;
  width: 2.1rem;
  min-height: 2.1rem;
  min-width: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--light-blue);
  line-height: 1;
}

.title-section > div {
  border: 1px solid var(--navy-blue-200);
  color: var(--light-blue);
  padding: 10px;
  border-radius: 8px;
  max-width: 700px;
  margin: 20px auto 0;
  background-color: var(--navy-blue);
  font-family: var(--arizona);
  font-weight: 300;
}

.blue-section .title-section > div {
  background-color: var(--midnight-blue);
}

.title-section > div h4 {
  color: var(--gold);
  font-size: 1em;
  border-bottom: 1px solid var(--hover-blue);
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 400;
}

.title-section > img {
  max-width: 100%;
  margin: var(--medium-vmargin) auto;
}

/********************
 CARDS
*********************/
.card {
  padding: 10px;
  border-radius: 10px;
  background-color: var(--deep-blue);
}

.card-head {
  display: flex;
  align-items: center;
  color: var(--gold);
  transition: color 0.2s ease-in-out;
  gap: 10px;
  width: 100%;
}

.card:hover > .card-head {
  color: var(--light-blue);
}

.card-title {
  flex-grow: 1;
  font-weight: 300;
  font-family: var(--arizona);
  font-size: 1.3rem;
}

.card-head > div:first-child {
  height: 2.2rem;
  width: 2.2rem;
  min-height: 2.2rem;
  min-width: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--hover-gold);
  transition: background-color 0.2s ease-in-out;
}

.card:hover > .card-head > div:first-child {
  background-color: var(--hover-blue);
}

.card-head > div > img {
  height: 1.2rem;
  width: 1.2rem;
  object-fit: contain;
  transition: filter 0.2s ease-in-out;
}

.card:hover > .card-head > div:first-child > img {
  filter: invert(0.85) sepia(0.55) brightness(1.5) saturate(2.5)
    hue-rotate(44deg);
}

.card-head > span {
  text-align: center;
  height: 1.75rem;
  width: 1.75rem;
  min-height: 1.75rem;
  min-width: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--hover-gold);
  line-height: 1;
  font-family: var(--arizona);
  transition: background-color 0.2s ease-in-out;
}

.card:hover > .card-head > span {
  background-color: var(--hover-blue);
}

.card-head + div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  padding-top: 10px;
  width: 100%;
}

.card-head + div:empty {
  border-top: none;
}

.cards-alt .card-head {
  color: var(--light-blue);
}

.cards-alt .card-head > span {
  background-color: var(--hover-blue);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-tags > p {
  padding: 5px 10px;
  border: 1px solid var(--gold);
  background-color: var(--hover-gold);
  color: var(--gold);
  border-radius: 10px;
  font-size: 0.95rem;
}

/********************
 GRID OF CARDS
*********************/
.cards-grid {
  margin: var(--medium-vmargin) var(--large-hmargin);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  padding: 10px;
  border-radius: 15px;
  background-color: var(--navy-blue);
}

.cards-grid .card {
  flex-grow: 1;
  flex-basis: calc(33% - 20px / 3);
}

.cards-alt .card {
  flex-grow: 0;
  background-color: #222443;
}

.cards-grid.grid-2 .card {
  flex-basis: calc(50% - 10px / 2);
}

.blue-section .cards-grid {
  padding: 0;
}

@media screen and (max-width: 950px) {
  .cards-grid .card {
    flex-basis: calc(50% - 10px / 2);
  }

  .cards-grid.grid-2 .card {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 500px) {
  .cards-grid .card,
  .cards-grid.grid-2 .card {
    flex-basis: 100%;
  }
}

/********************
 FULL QUOTE
*********************/
.full-quote {
  margin: var(--medium-vmargin) var(--large-hmargin);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: var(--large-vmargin) var(--medium-hmargin);
}

.full-quote > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.full-quote > img:first-child {
  opacity: 0.3;
}

.full-quote > img + img {
  z-index: 2;
  pointer-events: none;
}

.full-quote > h3 {
  position: relative;
  z-index: 3;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .full-quote > h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 500px) {
  .full-quote > h3 {
    font-size: 1.6rem;
  }
}

/********************
 FOUNDERS
*********************/
.founders {
  margin: var(--medium-vmargin) auto;
  padding: 0 var(--large-hmargin);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.founder {
  max-width: 500px;
  flex-basis: calc(33% - 40px / 3 - 1px);
}

.founder > div:first-child {
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 70px 10px 10px;
}

.founder > div:first-child > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  margin: 20px 0 10px;
  color: var(--gold);
  font-family: var(--arizona);
  font-weight: 300;
  font-size: 1.5rem;
}

.founder-role {
  padding: 3px 5px;
  font-family: var(--arizona);
  font-weight: 300;
  background-color: var(--navy-blue);
  color: var(--gold);
  border-radius: 8px;
  width: max-content;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.founder-role.ck {
  min-width: 100px;
}

.founder-role::before {
  content: "";
  display: block;
  height: 1em;
  width: 1px;
  margin-right: 5px;
  background-color: var(--gold);
}

.founder > span {
  width: 100%;
  height: 1px;
  display: block;
  background-color: var(--light-blue);
  opacity: 0.2;
  margin: 20px 0;
}

@media screen and (max-width: 1200px) {
  .founders {
    justify-content: space-evenly;
  }
  .founder {
    max-width: 450px;
    flex-basis: calc(50% - 20px / 2);
  }
}

@media screen and (max-width: 750px) {
  .founders {
    gap: 40px;
    max-width: 600px;
  }
  .founder {
    max-width: unset;
    flex-basis: 100%;
  }
}

/********************
 READ MORE
*********************/

.read-more-container {
  height: calc(3 * 1em * 1.4);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  transition: height 0.2s ease-in-out;
}

.read-more-container.ck {
  height: auto !important;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.read-more-container p {
  text-overflow: ellipsis;
}

.read-more-container.active {
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.read-more {
  cursor: pointer;
  margin-top: 20px;
  background-color: var(--navy-blue);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  gap: 20px;
  border-radius: 10px;
  color: var(--light-blue);
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.read-more > div {
  height: 1.75rem;
  width: 1.75rem;
  min-height: 1.75rem;
  min-width: 1.75rem;
  border: 1px solid currentColor;
  background-color: var(--hover-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.read-more > div > div {
  position: relative;
  height: 0.875rem;
  width: 0.875rem;
}

.read-more > div > div > span {
  position: absolute;
  left: 50%;
  height: 100%;
  width: 1px;
  display: block;
  background-color: currentColor;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transform-origin: center center;
}

.read-more > div > div > span:first-child {
  transform: rotate(-90deg);
}

.read-more:hover {
  color: var(--gold);
}

.read-more:hover > div {
  background-color: var(--hover-gold);
}

.read-more-container.active + .read-more > div > div > span:last-child {
  transform: rotate(-90deg);
  opacity: 0;
}

.read-more-container:empty + .read-more {
  display: none;
}

/********************
 BEE SEPARATOR
*********************/
.bee-separator {
  margin: var(--medium-vmargin) var(--large-hmargin);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.35;
}

.bee-separator > span {
  display: block;
  flex-grow: 1;
  height: 1px;
  background-color: var(--light-blue);
}

.bee-separator > img {
  height: 1.1rem;
  width: auto;
}

/********************
 BLUE SECTION
*********************/
.blue-section {
  margin: var(--medium-vmargin) var(--large-hmargin);
  padding: var(--medium-hmargin);
  background-color: var(--navy-blue);
  border-radius: 10px;
  overflow: auto;
}

.blue-section .title-section span {
  background-color: var(--deep-blue);
}

.blue-section .title-section > div.editable {
  background-color: var(--midnight-blue);
  border-color: var(--navy-blue-300);
}

.blue-section > div {
  margin-right: 0;
  margin-left: 0;
}

.blue-section > div:first-child {
  margin-top: 0;
}

.blue-section > div:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 650px) {
  .blue-section {
    padding: var(--small-hmargin);
  }
}

/********************
 ACCORDIONS
*********************/
.accordions-section {
  display: flex;
  margin: var(--medium-vmargin) var(--large-hmargin);
  align-items: stretch;
  gap: var(--medium-hmargin);
}

.accordions-image {
  position: relative;
  overflow: hidden;
  flex-basis: 40%;
  min-width: 40%;
  border-radius: 10px;
}

.accordions-image.large {
  flex-basis: 50%;
  min-width: 50%;
}

.accordions-image > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accordions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.accordion {
  background-color: var(--midnight-blue);
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  transition: background-color 0.2s ease-in-out;
}

.accordion:not(.force-open) {
  cursor: pointer;
}

.accordion.active,
.accordion.force-open,
.accordion:hover {
  background-color: var(--navy-blue-300);
}

.accordion-head {
  display: flex;
  align-items: center;
  color: var(--gold);
  transition: color 0.2s ease-in-out, padding 0.2s ease-in-out;
  gap: 15px;
  padding-bottom: 0;
}

.accordion.active .accordion-head,
.accordion.force-open .accordion-head,
.accordion-head:has(.ck) {
  padding-bottom: 15px;
}

.accordion-head > span {
  text-align: center;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 1.75rem;
  width: 1.75rem;
  min-height: 1.75rem;
  min-width: 1.75rem;
  background-color: var(--hover-gold);
  font-family: var(--arizona);
  transition: background-color 0.2s ease-in-out;
}

.accordion-title {
  flex-grow: 1;
  font-family: var(--arizona);
  font-weight: 300;
  font-size: 1.4rem;
}

.accordion.active .accordion-head,
.accordion.force-open .accordion-head {
  color: var(--gold);
}

.accordion.active .accordion-head > .arrow,
.accordion.force-open .accordion-head > .arrow {
  transform: rotate(90deg);
}

.accordion:hover .accordion-head {
  color: var(--light-blue);
}

.accordion:hover .accordion-head > .arrow,
.accordion.active .accordion-head > .arrow,
.accordion.force-open .accordion-head > .arrow,
.accordion:hover .accordion-head > span,
.accordion.active .accordion-head > span,
.accordion.force-open .accordion-head > span {
  background-color: var(--hover-blue);
  color: var(--light-blue);
}

.accordion-content {
  padding-top: 0;
  border-top: 0px solid var(--hover-blue);
  overflow: hidden;
  opacity: 0;
  height: 0;
  pointer-events: none;
  transition: height 0.2s ease-in-out, opacity 0.2s ease-in-out,
    padding 0.2s ease-in-out, border 0.2s ease-in-out;
}

.accordion.active .accordion-content,
.accordion.force-open .accordion-content,
.accordion-content.ck {
  padding-top: 15px;
  border-top: 1px solid var(--hover-blue);
  pointer-events: all;
  opacity: 1;
}

.accordion.force-open .accordion-content {
  height: auto;
  opacity: 1;
  pointer-events: all;
}

.accordion.force-open .accordion-title {
  color: var(--light-blue);
}

.accordion-content.ck {
  height: auto !important;
}

.accordion-content p,
.accordion-content ul,
.accordion-content ol {
  margin: 15px 0;
}

.accordion-content > *:first-child {
  margin-top: 0;
}

.accordion-content > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .accordions-image {
    flex-basis: 300px;
    min-width: 300px;
  }
}

@media screen and (max-width: 992px) {
  .accordions-section {
    flex-direction: column-reverse;
  }
  .accordions-image {
    max-height: 30vw;
    min-height: 30vw;
    min-width: unset;
  }
}

/********************
 RECONTACT
*********************/
.recontact {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  border-radius: 10px;
  margin: var(--medium-vmargin) var(--large-hmargin);
  gap: var(--medium-hmargin);
}

.recontact-left {
  display: flex;
  flex-direction: column;
}

.recontact-left > div {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 20px;
  width: 100%;
}

.recontact-left > div > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recontact .field,
.recontact input,
.recontact .textarea,
.recontact textarea {
  background-color: var(--deep-blue);
}

.recontact .field:focus-within,
.recontact .field:hover,
.recontact .field:hover input,
.recontact input:focus,
.recontact .textarea:focus-within,
.recontact .textarea:hover,
.recontact .textarea:hover textarea,
.recontact textarea:focus {
  background-color: var(--navy-blue-300);
}

.recontact input:-webkit-autofill,
.recontact input:-webkit-autofill:hover,
.recontact input:-webkit-autofill:focus,
.recontact input:-webkit-autofill:active,
.recontact textarea:-webkit-autofill,
.recontact textarea:-webkit-autofill:hover,
.recontact textarea:-webkit-autofill:focus,
.recontact textarea:-webkit-autofill:active {
  box-shadow: inset 0 0 20px 100vw var(--deep-blue);
}

@media screen and (max-width: 992px) {
  .recontact {
    grid-template-columns: 1fr;
    padding-bottom: calc(30vw + var(--medium-hmargin));
  }
  .recontact-left > div {
    max-height: 30vw;
    min-height: 30vw;
    min-width: unset;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .recontact-left > div > img {
    object-position: top center;
  }
}

/********************
 CARROUSEL
*********************/
.carrousel {
  margin: var(--medium-vmargin) var(--large-hmargin);
}

.carrousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 40vw;
}

.carrousel-wrapper > div:not(.sm) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: transform 0.4s ease-in-out 0.4s, opacity 0.4s ease-in-out;
  opacity: 0;
  transform: scale(1.04);
}

.carrousel-wrapper > div:not(.sm) > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carrousel-wrapper > div:not(.sm).active {
  pointer-events: all;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 1;
  transform: scale(1);
}

.carrousel-wrapper > div.sm {
  position: absolute;
  right: 10px;
  top: 50%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.carrousel-wrapper:hover > div.sm {
  opacity: 1;
}

.carrousel-navigate {
  display: flex;
  padding: 5px;
  gap: 5px;
  border-radius: 90000px;
  margin: 20px auto 0;
  width: max-content;
  background-color: rgba(255, 255, 255, 0.05);
}

.carrousel-navigate > span {
  display: block;
  height: 14px;
  width: 14px;
  min-height: 14px;
  min-width: 14px;
  cursor: pointer;
  background-color: var(--gold);
  opacity: 0.2;
  transition: opacity 0.2s ease-in-out;
  border-radius: 50%;
}

.carrousel-navigate > span.active {
  opacity: 1;
}

.carrousel-navigate > span:hover {
  opacity: 0.6;
}

/********************
 SWIPER
*********************/
.swiper {
  margin: var(--medium-vmargin) var(--large-hmargin);
  position: relative;
}

.blue-section .swiper {
  margin: 0 var(--large-hmargin) !important;
}

.blue-section .swiper-wrapper {
  padding: var(--small-vmargin) 0;
}

.swiper a {
  display: block;
  color: inherit;
  margin: 0 20px;
  max-width: 10%;
  filter: brightness(0) saturate(100%) invert(65%) sepia(15%) saturate(702%)
    hue-rotate(197deg) brightness(91%) contrast(90%);
  transition: opacity 0.2s ease-in-out;
}

.swiper a:hover {
  opacity: 0.6;
}

.swiper a img {
  width: 100%;
  height: auto;
}

.swiper-hover {
  position: absolute;
  top: 0;
  left: -1px;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--deep-blue) 0%,
    rgba(23, 25, 45, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.swiper-hover + .swiper-hover {
  transform: rotate(180deg);
  right: -1px;
  left: unset;
}

.blue-section .swiper-hover {
  background: linear-gradient(
    90deg,
    var(--navy-blue) 0%,
    rgba(29, 31, 57, 0) 100%
  );
}

@media screen and (max-width: 1500px) {
  .swiper a {
    max-width: 15%;
    margin: 0 30px;
  }
}

@media screen and (max-width: 992px) {
  .swiper a {
    max-width: 20%;
    margin: 0 20px;
  }
  .blue-section .swiper {
    margin: 0 var(--small-hmargin) !important;
  }
}

@media screen and (max-width: 800px) {
  .swiper a {
    max-width: 25%;
    margin: 0 20px;
  }
}

@media screen and (max-width: 600px) {
  .swiper a {
    max-width: 33%;
    margin: 0 10px;
  }
}

/********************
 FULL CTA
*********************/
.full-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  border-radius: 10px;
  margin: var(--medium-vmargin) var(--large-hmargin);
  gap: var(--medium-hmargin);
}

.full-cta > div > div.editable {
  border: 1px solid var(--navy-blue-200);
  color: var(--light-blue);
  padding: 10px;
  border-radius: 8px;
  width: fit-content;
  margin: 20px 0;
  background-color: var(--navy-blue);
  font-family: var(--arizona);
  font-weight: 300;
}

.blue-section .full-cta > div > div.editable {
  background-color: var(--midnight-blue);
}

.full-cta > div:last-child {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.full-cta > div:last-child > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media screen and (max-width: 992px) {
  .full-cta {
    grid-template-columns: 1fr;
  }
  .full-cta > div:last-child {
    max-height: 30vw;
    min-height: 30vw;
    min-width: unset;
  }
}

/********************
 PROCESS
*********************/
.process {
  margin: var(--medium-vmargin) var(--large-hmargin);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 40px 121px;
}

.process-element {
  position: relative;
  width: min(100%, 515px);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(146, 150, 195, 0.3);
}

.process-element img {
  opacity: 0.3;
  height: 1rem;
  width: auto;
}

.process-element > div:first-child {
  font-size: 1.6rem;
  text-align: right;
  font-weight: 200;
  min-width: 100px;
}

.process-element > div:first-child i {
  color: var(--gold);
  font-style: normal;
}

.process-element > div:last-child {
  color: var(--gold);
  font-size: 3rem;
  font-family: var(--arizona);
  font-weight: 200;
  width: 3.8rem;
  text-align: right;
}

.process-element:nth-child(even) {
  justify-content: flex-end;
  margin-left: auto;
  padding-left: 40px;
}

.process-element:nth-child(even)::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -41px;
  display: block;
  width: 1px;
  height: calc(100% + 41px);
  background-color: var(--white);
  opacity: 0.3;
}

.process-element:nth-child(even)::before {
  background-image: url("/asset/img/hexagon.svg");
  position: absolute;
  content: "";
  display: block;
  height: 1.6rem;
  width: 1.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  top: 50%;
  right: -60px;
  transform: translate(50%, -50%);
}

.process-element:nth-child(2)::after {
  height: 100%;
  top: 0;
}

.process-element:nth-child(odd) {
  flex-direction: row-reverse;
  padding-right: 40px;
  justify-content: flex-end;
}

.process-element:nth-child(odd) > div:first-child {
  text-align: left;
}

.process-element:nth-child(odd) > div:last-child {
  text-align: left;
}

@media screen and (max-width: 1200px) {
  .process-element {
    gap: 20px;
  }
  .process-element:nth-child(even) {
    padding-left: 0;
  }

  .process-element:nth-child(odd) {
    padding-right: 0;
  }
}

@media screen and (max-width: 850px) {
  .process {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-element {
    width: 100%;
  }
  .process-element:nth-child(even)::after {
    display: none;
  }
  .process-element:nth-child(even)::before {
    display: none;
  }
  .process-element:nth-child(even) {
    flex-direction: row-reverse;
  }
  .process-element > div:first-child {
    text-align: left;
    font-size: 1.4rem;
  }
  .process-element > div:last-child {
    text-align: left;
    font-size: 3rem;
  }
}

@media screen and (max-width: 650px) {
  .process-element > div:first-child {
    font-size: 1.3rem;
  }
  .process-element > div:last-child {
    font-size: 2.5rem;
  }
}

/********************
 CONTACT
*********************/
.contact {
  margin: var(--medium-vmargin) var(--large-hmargin);
  display: flex;
  gap: var(--medium-hmargin);
}

.contact-infos {
  flex-basis: 40%;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--navy-blue);
}

.contact-infos > img {
  height: 4rem;
  width: auto;
  max-width: 100%;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.contact-info:not(.editable_model) + .contact-info {
  border-top: 1px solid var(--hover-blue);
}

.contact-info a {
  color: var(--white);
  transition: color 0.2s ease-in-out;
}

.contact-info a:hover {
  color: var(--gold);
}

.contact-info div.editable {
  min-width: 100px;
}

.contact-info > div:first-child {
  background-color: var(--hover-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  min-height: 2.25rem;
  min-width: 2.25rem;
  border-radius: 50%;
}

.contact-info > div:first-child img {
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
}

.pre-networks {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--gold);
  margin: 20px 0;
}

.pre-networks img {
  height: 1.1rem;
  width: auto;
  transform: rotate(90deg);
}

.contact form {
  flex-basis: 60%;
}

@media screen and (max-width: 992px) {
  .contact {
    display: block;
  }
  .contact-infos {
    margin-bottom: var(--medium-vmargin);
  }
}

/********************
 SMALL TITLE
*********************/

.small-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.small-title + * {
  margin-top: var(--small-vmargin);
}

.small-title .arrow {
  transform: rotate(90deg);
}

@media screen and (max-width: 650px) {
  .small-title {
    gap: 10px;
  }
}

/********************
 EDUCATION MENU
*********************/
.education-menu {
  position: fixed;
  left: 50%;
  top: calc(var(--header-height) + var(--banner-height) + 10px);
  transform: translate(-50%, -50px);
  z-index: 99;
  border-radius: 10px;
  background-color: var(--navy-blue);
  display: flex;
  flex-wrap: wrap;
  width: max-content;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  gap: 10px;
  padding: 10px 16vw;
  max-width: calc(100% - 20px);
  opacity: 0;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.education-menu.active {
  pointer-events: all;
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -0);
}

.education-menu > a {
  color: var(--white);
  width: max-content;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 300;
  padding: 5px 0;
  border-radius: 6px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    padding 0.2s ease-in-out;
}

.education-menu > a:hover {
  color: var(--gold);
}

.education-menu > a.active {
  padding: 5px 10px;
  color: var(--gold);
  background-color: var(--hover-gold);
}

.education-menu > span {
  height: 1rem;
  width: 1px;
  background-color: var(--white);
  opacity: 0.2;
}

.education-menu > span:last-child {
  display: none;
}

@media screen and (max-width: 750px) {
  .education-menu {
    padding: 10px;
    gap: 0 20px;
  }
  .education-menu > span {
    display: none;
  }
}

/********************
 PRICING
*********************/
.pricing {
  margin: var(--medium-vmargin) auto;
  max-width: min(calc(100% - var(--large-hmargin) * 2), 1200px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--medium-hmargin);
}

.pricing > div:first-child {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 17rem;
}

.pricing > div:first-child > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing h3 {
  font-weight: 400;
  color: var(--gold);
}

.pricing > div:last-child > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  margin: 20px 0;
}

@media screen and (max-width: 992px) {
  .pricing {
    grid-template-columns: 1fr;
  }
  .pricing > div:first-child {
    order: 2;
    height: 40vw;
  }
  .pricing > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/********************
 EDUCATION
*********************/
.educ {
  display: flex;
  gap: var(--medium-hmargin);
  margin: var(--medium-vmargin) var(--large-hmargin);
}

.educ-left {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  top: 0;
  flex-basis: 35%;
  padding: 10px;
  border-radius: 20px;
  background-color: var(--navy-blue);
}

.educ-left > div {
  position: relative;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.educ-left > div > p {
  flex-grow: 1;
  font-size: 1rem;
}

.educ-left > div > span {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.educ-left > div:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.2;
  background-color: var(--light-blue);
  transition: opacity 0.2s ease-in-out;
}

.educ-left > div:hover {
  background-color: var(--navy-blue-200);
}

.educ-left > div.active {
  background-color: var(--hover-gold);
  color: var(--gold);
}

.educ-left > div.active::before,
.educ-left > div:hover::before,
.educ-left > div.active + div::before,
.educ-left > div:hover + div::before {
  opacity: 0;
}

.educ-left > div.active > span {
  opacity: 1;
}

.educ-right {
  flex-grow: 1;
}

.educ-element {
  width: 100%;
}

.educ-element + .educ-element {
  margin-top: 40px;
}

.educ-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--arizona);
}

.educ-title > span {
  height: 1.9rem;
  width: 1.9rem;
  min-height: 1.9rem;
  min-width: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding-top: 2px;
  background-color: var(--hover-gold);
  line-height: 1;
}

.educ-title > p {
  font-size: 1.6rem;
}

.educ-element > p {
  margin: 20px 0;
}

.educ-element > span {
  width: 100%;
  height: 1px;
  display: block;
  opacity: 0.2;
  background-color: var(--light-blue);
  margin: 20px 0;
}

.educ-subtitle {
  display: flex;
  align-items: center;
  color: var(--light-blue);
  font-family: var(--arizona);
  font-size: 1.3rem;
  gap: 10px;
}

.educ-subtitle > span {
  transform: rotate(90deg);
}

.educ-content ul {
  list-style-type: none;
  padding-left: 0;
}

.educ-content ul li {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.educ-content ul li::before {
  content: "";
  background-image: url("/asset/img/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 1rem;
  width: 1rem;
  min-height: 1rem;
  min-width: 1rem;
  display: block;
  margin-right: 10px;
}

.educ-content > *:last-child {
  margin-bottom: 0;
}

.educ-content > *:last-child > *:last-child {
  margin-bottom: 0;
}

#see_more_educ {
  display: none;
  margin-top: 20px;
}

@media screen and (max-width: 1300px) {
  .educ-left {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .educ-element:nth-child(3) ~ .educ-element {
    display: none;
  }
  .educ-right.show-all .educ-element:nth-child(3) ~ .educ-element {
    display: block;
  }
  #see_more_educ {
    display: flex;
  }
}

/********************
 POPUP
*********************/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(23, 25, 45, 0.5);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

.popup.active {
  opacity: 1;
  pointer-events: all;
}

.popup-inner {
  position: relative;
  background-color: var(--navy-blue);
  padding: 15px;
  border-radius: 10px;
  max-width: calc(100vw - 40px);
}

.popup-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.popup-head h4 {
  font-size: 1.3rem;
}

.popup-head > div {
  background-color: var(--hover-blue);
  border-radius: 5px;
  padding: 8px;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}

.popup-head > div:hover {
  background-color: var(--hover-gold);
}

.popup-head > div path {
  stroke: var(--light-blue);
  transition: stroke 0.2s ease-in-out;
}

.popup-head > div:hover path {
  stroke: var(--gold);
}

.popup-form .btn {
  justify-content: space-between;
  font-weight: 500;
}

.popup-form .btn::after {
  margin-left: auto;
}

.popup .field {
  padding: 7px 15px;
}

.popup input::placeholder {
  color: var(--light-blue);
  opacity: 1;
}

.popup .fields-grid {
  margin: 15px 0;
}

.popup .field,
.popup input,
.popup .textarea,
.popup textarea {
  background-color: var(--deep-blue);
  text-align: left;
}

.popup .field:focus-within,
.popup .field:hover,
.popup .field:hover input,
.popup input:focus,
.popup .textarea:focus-within,
.popup .textarea:hover,
.popup .textarea:hover textarea,
.popup textarea:focus {
  background-color: var(--navy-blue-300);
}

.popup input:-webkit-autofill,
.popup input:-webkit-autofill:hover,
.popup input:-webkit-autofill:focus,
.popup input:-webkit-autofill:active,
.popup textarea:-webkit-autofill,
.popup textarea:-webkit-autofill:hover,
.popup textarea:-webkit-autofill:focus,
.popup textarea:-webkit-autofill:active {
  box-shadow: inset 0 0 20px 100vw var(--deep-blue);
}

#download_popup_preloader {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
