@charset "UTF-8";
.header {
  font-size: 1.6rem;
  color: var(--white);
  z-index: 103;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header__container {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 2.3rem;
  transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
  background-color: transparent;
  z-index: 104;
  gap: 40px;
}
@media screen and (min-width: 1040px) {
  .header__container {
    padding: 4rem 11.6rem 2rem;
  }
}
.header .logos {
  display: flex;
  gap: 40px;
}
.header__mainlogo {
  color: var(--white);
  position: relative;
  z-index: 1000;
}
.header__mainlogo img {
  height: 45px;
  width: auto;
}

.mobile__btn {
  position: relative;
  z-index: 1000;
}
.mobile__btn__iconClose {
  cursor: pointer;
  position: relative;
  z-index: 1000;
}
@media screen and (min-width: 1040px) {
  .mobile__btn {
    display: none;
  }
}

.navigation__container {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--dark);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 102;
  overflow-y: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 13.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-transform: capitalize;
}
.navigation__container-desktop {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  max-width: 664px;
  margin-left: auto;
  width: 100%;
}
.navigation__container-desktop .cta {
  margin: 0;
  max-width: 9.2rem;
  padding: 0.8rem 0;
}
@media screen and (min-width: 1040px) {
  .navigation__container-desktop {
    display: flex;
  }
}

.navigation__container.is-open {
  transform: translateX(0);
}

.navigation__container.is-open .btn-primary {
  align-self: flex-start;
}

.navigation__container__links {
  display: flex;
  align-self: flex-start;
  flex-direction: column;
  gap: 2.6rem;
}
.navigation__container__links-desktop {
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
}

body.no-scroll {
  overflow: hidden;
}

.navigation__link__container {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  font-size: 3rem;
  font-weight: 300;
}
.navigation__link__container .chevron-icon {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
.navigation__link__container-desktop {
  position: relative;
  width: fit-content;
}
.navigation__link__container-desktop:hover .navigation__link__menu-desktop {
  opacity: 1;
  visibility: visible;
}

.navigation__link__title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0;
}

.navigation__link__title-desktop {
  cursor: pointer;
  white-space: nowrap;
  font-size: 1.8rem;
  font-weight: 300;
  color: #f3f4f8;
}

.navigation__link.is-open .chevron-icon {
  transform: rotate(180deg);
}

.navigation__link__menu {
  margin-top: 1.6rem;
}
.navigation__link__menu-desktop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  top: 3rem;
  left: 0;
  width: max-content;
  min-width: 100%;
  background-color: var(--dark);
  color: var(--white);
  border-radius: 10px;
  overflow-y: auto;
  border: 1px solid var(--white);
}
.navigation__link__menu-desktop__separator {
  padding: 1rem 0;
}

.navigation__link__list {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}
.navigation__link__list__item:hover, .navigation__link__list__item:active, .navigation__link__list__item.is-active {
  background-color: var(--white);
  color: var(--dark);
  font-weight: 700;
}
.navigation__link__list__item {
  width: fit-content;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.5rem 3rem;
  border-radius: 10px;
  transition: all 300ms ease;
  cursor: pointer;
}
.navigation__link__list__item-desktop:hover, .navigation__link__list__item-desktop:active {
  font-weight: 700;
  background-color: var(--white);
  color: var(--dark);
}
.navigation__link__list__item-desktop {
  transition: all 300ms ease;
  cursor: pointer;
  padding: 1rem 2rem;
}
.navigation__link__list__item-desktop:not(:last-child) {
  border-bottom: 1px solid var(--white);
}

header .cta {
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 16px;
  display: block;
  max-width: 29.2rem;
  width: 100%;
  border: 1px solid var(--white);
  border-radius: 34px;
  padding: 1.9rem 0;
  text-align: center;
  margin: 5rem auto 0;
  transition: color 300ms ease, background-color 300ms ease;
}

header .cta:hover,
header .cta:active {
  background-color: var(--white);
  color: var(--dark);
}

.main-header.scrolled .header__container {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}
@media screen and (min-width: 1040px) {
  .main-header.scrolled .header__container {
    padding: 2rem 11.6rem;
  }
}

nav li {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}

.footer__container {
  margin: 4rem auto 2rem;
  max-width: 90%;
  color: var(--white);
}
@media screen and (min-width: 1040px) {
  .footer__container {
    margin: 10rem auto 3rem;
    padding: 0 11.6rem;
  }
}
.footer__container hr {
  margin-bottom: 4rem;
}

.footer__links__wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  gap: 20px;
}
@media screen and (min-width: 1040px) {
  .footer__links__wrapper {
    flex-direction: row;
  }
}

.footer__links__container {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}
@media screen and (min-width: 1040px) {
  .footer__links__container {
    flex-direction: row;
    width: auto;
    gap: 4rem;
    flex: 1;
    margin-bottom: 0;
  }
}

.footer__link {
  font-size: 2rem;
  font-weight: 400;
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer__social__heading {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (min-width: 1040px) {
  .footer__social {
    margin-left: auto;
  }
}

.footer__copyright {
  display: grid;
  align-items: end;
}
@media screen and (min-width: 1040px) {
  .footer__copyright {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
@media screen and (max-width: 1039px) {
  .footer__copyright {
    grid-template-columns: 2fr 3fr;
    grid-template-rows: auto auto;
    row-gap: 2rem;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1040px) {
  .footer__copyright__logo {
    grid-column: 1;
    justify-self: start;
  }
}
@media screen and (max-width: 1039px) {
  .footer__copyright__logo {
    grid-column: 1/-1;
    grid-row: 1;
    justify-self: start;
  }
}

.footer__legal-notice {
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: underline;
}
@media screen and (min-width: 1040px) {
  .footer__legal-notice {
    grid-column: 2;
    justify-self: center;
  }
}
@media screen and (max-width: 1039px) {
  .footer__legal-notice {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
}

.footer__copyright__text {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (min-width: 1040px) {
  .footer__copyright__text {
    grid-column: 3;
    justify-self: end;
  }
}
@media screen and (max-width: 1039px) {
  .footer__copyright__text {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }
}

/* PSEUDO ELEMENTS */
/* SPACING */
/* ALIGNMENT */
/* BREAKING PAGE RULES */
/* MEDIA MANAGEMENT */
/* SHAPES */
/* VENDOR PREFIXES */
*:focus, *:focus-within, *:focus-visible, .btn {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.btn {
  border: none;
  font-family: "Inter", sans-serif, "Helvetica", "Arial", sans-serif;
}

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

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
}

*:focus, *:focus-within, *:focus-visible {
  outline: none;
}

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

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

html, body {
  overflow-x: clip;
}

figure {
  margin: 0;
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Inter", sans-serif, "Helvetica", "Arial", sans-serif;
  font-size: 62.5%;
  color: var(--font);
  line-height: 1.25;
  font-weight: 400;
}

p {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
}

h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.6rem;
}

li {
  font-size: 1.6rem;
  list-style: disc;
  margin-left: 2.4rem;
  margin-bottom: 1.6rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.5rem;
}
html.no-scroll {
  overflow-y: clip;
}

body {
  background-color: var(--dark);
  color: var(--white);
  overflow-x: clip;
  position: relative;
}
body.no-scroll {
  overflow-y: clip;
}

.main {
  overflow: clip;
}

img {
  max-width: 100%;
}

.hidden {
  display: none;
}

.section-container {
  max-width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 1040px) {
  .section-container {
    max-width: 1134px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }
}

@media screen and (min-width: 1040px) {
  .section-container-article-left {
    padding-left: 2.3rem;
    padding-right: 3.7rem;
    max-width: 1134px;
    margin-left: auto;
    margin-right: auto;
  }
}

.section-container-article-right {
  align-self: flex-end;
}
.section-container-article-right .block-expertise {
  align-items: flex-end;
}
@media screen and (min-width: 1040px) {
  .section-container-article-right {
    padding-left: 3.7rem;
    padding-right: 2.3rem;
    max-width: 1134px;
    margin-left: auto;
    margin-right: auto;
  }
}

.simple-container {
  margin-inline: auto;
  margin-block: 1.6rem;
  max-width: 90%;
}
@media screen and (min-width: 1440px) {
  .simple-container {
    max-width: 1366px;
  }
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
/* TYPOGRAPHY */
/* font-weigh */
/* 
  font-weight: 100; Thin
  font-weight: 200; Extra Light
  font-weight: 300; Light
  font-weight: 400; Normal
  font-weight: 500; Medium
  font-weight: 600; Semi Bold
  font-weight: 700; Bold
  font-weight: 800; Extra Bold
  font-weight: 900; Black
  */
:root {
  --dark: rgb(10, 10, 10);
  --green: rgb(41, 232, 99);
  --white: rgba(255, 255, 255, 1);
}

.hero-video {
  position: relative;
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 9/16;
  height: min(100vh, 100svh);
  overflow: hidden;
  z-index: 1;
}
.hero-video--desktop-mode {
  aspect-ratio: 16/9;
}
.hero-video__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-video__media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}
.hero-video__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 0;
}
.hero-video__media__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-video__media__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  display: block;
  pointer-events: none;
}
.hero-video__media__iframe.is-visible {
  opacity: 1;
}
.hero-video__overlay {
  position: relative;
  z-index: 1;
  top: 18rem;
  right: 0rem;
  width: 100%;
}
@media screen and (min-width: 1040px) {
  .hero-video__overlay {
    padding-right: 11.6rem;
    width: fit-content;
    margin-left: auto;
  }
}
.hero-video__title {
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 23px;
  text-align: left;
  font-weight: 500;
  font-family: "scale-variable", sans-serif;
}
@media screen and (min-width: 1040px) {
  .hero-video__title {
    text-align: center;
    padding-left: 0;
  }
}
.hero-video__title-2 {
  font-size: 2.8rem;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .hero-video__title-2 {
    font-size: 4.8rem;
    text-align: end;
  }
}
@media screen and (min-width: 1040px) {
  .hero-video__title {
    font-size: 4.8rem;
  }
}

.hero-video--desktop-mode .hero-video__poster {
  display: block;
}

.hero-video__media__iframe--desktop {
  display: none;
}

.hero-video--desktop-mode .hero-video__media__iframe--mobile {
  display: none;
}
.hero-video--desktop-mode .hero-video__media__iframe--desktop {
  display: block;
}

.hero-video__poster {
  z-index: 1;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.4s ease;
  position: absolute;
  inset: 0;
  transform: none;
  pointer-events: none;
}
.hero-video__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video__poster.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-height: 700px) {
  .hero-video {
    aspect-ratio: auto;
  }
}
@media (min-aspect-ratio: 16/9) {
  .hero-video__media__iframe {
    height: 56.25vw;
    width: 100vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-video__media__iframe {
    width: 177.78vh;
    height: 100vh;
  }
}
.markets__presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  max-width: 90%;
  margin-inline: auto;
}
.markets__presentation__lenses__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
  margin: 0 auto;
}
@media screen and (min-width: 1040px) {
  .markets__presentation__lenses__container {
    flex-direction: row;
  }
}
.markets__presentation__lenses__container article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.markets__presentation__lenses__container .lense-image {
  max-width: 35rem;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 1040px) {
  .markets__presentation__lenses__container .lense-image {
    max-width: 53.2rem;
  }
}
.markets__presentation__lenses__container .lense-image::before {
  width: 35rem;
  height: 35rem;
}
@media screen and (min-width: 1040px) {
  .markets__presentation__lenses__container .lense-image::before {
    width: 53.2rem;
    height: 53.2rem;
    --halo-initial-offset-y: -220px;
    --halo-initial-offset-x: -330px;
    top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
    left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
  }
}

.partners__container {
  --partners-halo-offset: 100%;
  --partners-halo-opacity: 0;
  position: relative;
  overflow: hidden;
}
.partners__container::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -2600px;
  left: 50%;
  transform: translate(-50%, var(--partners-halo-offset, 0%));
  width: 3026px;
  height: 3026px;
  border-radius: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 94%, rgba(255, 255, 255, 0.05) 95%, rgba(255, 255, 255, 0.1) 96%, rgba(255, 255, 255, 0.15) 97%, rgba(255, 255, 255, 0.2) 98%, rgba(255, 255, 255, 0.3) 99%, rgba(255, 255, 255, 0.45) 100%);
  opacity: var(--partners-halo-opacity, 0);
  pointer-events: none;
  will-change: transform, opacity;
}
@media screen and (min-width: 1040px) {
  .partners__container::before {
    bottom: -2570px;
  }
}

.partners__heading {
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (min-width: 1040px) {
  .partners__heading {
    margin-top: 153px;
  }
}

.expertise-hero__section {
  position: relative;
  max-height: 100vh;
  overflow: hidden;
  z-index: 1;
  width: 100vw;
  aspect-ratio: 16/9;
}

.expertise-hero__background {
  --expertise-hero-bg-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: var(--expertise-hero-bg, url("/assets/media/img/expertise-hero-img.webp"));
  background-size: var(--expertise-hero-bg-size, cover);
  background-position: var(--expertise-hero-bg-position, center);
  background-repeat: no-repeat;
}
@media screen and (min-width: 1040px) {
  .expertise-hero__background {
    --expertise-hero-bg-size: cover;
    background-image: var(--expertise-hero-bg, url("/assets/media/img/expertise-hero-img-desktop.webp"));
  }
}
.expertise-hero__overlay {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  width: 100%;
  bottom: 10px;
}
@media screen and (min-width: 426px) {
  .expertise-hero__overlay {
    bottom: 40px;
  }
}
.expertise-hero__title {
  color: var(--white);
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 426px) {
  .expertise-hero__title {
    font-size: 1.6rem;
    margin-bottom: 2.8rem;
  }
}
@media screen and (min-width: 1040px) {
  .expertise-hero__title {
    margin-bottom: 1.4rem;
  }
}
.expertise-hero__main-title {
  color: var(--white);
  text-align: center;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 426px) {
  .expertise-hero__main-title {
    font-size: 3rem;
    margin-bottom: 2.3rem;
  }
}
@media screen and (min-width: 1040px) {
  .expertise-hero__main-title {
    font-size: 5rem;
    margin-bottom: 4.5rem;
  }
}

.overlay__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.73) 0%, transparent 40%); /* #0A0A0A with 73% opacity */
  z-index: 1;
}

.expertise-hero__overlay img {
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.logo-technics {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: -50px;
}
.logo-technics p {
  font-size: 2rem;
  font-weight: 400;
}
.logo-technics img {
  width: 100%;
  display: block;
}

.customer-support__container {
  --partners-halo-offset: 100%;
  --partners-halo-opacity: 0;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
@media screen and (min-width: 1040px) {
  .customer-support__container {
    margin-bottom: 10rem;
    padding-top: 10rem;
  }
}
.customer-support__container::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 20px;
  left: 50%;
  transform: translate(-50%, var(--partners-halo-offset, 0%));
  width: 3026px;
  height: 3026px;
  z-index: -10;
  border-radius: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 94%, rgba(255, 255, 255, 0.05) 95%, rgba(255, 255, 255, 0.1) 96%, rgba(255, 255, 255, 0.15) 97%, rgba(255, 255, 255, 0.2) 98%, rgba(255, 255, 255, 0.3) 99%, rgba(255, 255, 255, 0.45) 100%);
  opacity: var(--partners-halo-opacity, 0);
  pointer-events: none;
  will-change: transform, opacity;
}

.customer-support__mainTitle {
  font-family: "scale-variable", sans-serif;
  font-size: 3rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 6px;
}
@media screen and (min-width: 1040px) {
  .customer-support__mainTitle {
    font-size: 5rem;
  }
}

.customer-support__txt {
  font-size: 1.6rem;
  margin-bottom: 4.6rem;
  max-width: 90%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .customer-support__txt {
    font-size: 2rem;
    max-width: 40%;
  }
}
@media screen and (min-width: 1040px) {
  .customer-support__txt {
    max-width: 30%;
  }
}

.carrers__container {
  color: var(--white);
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 100px auto;
}
@media screen and (min-width: 1040px) {
  .carrers__container {
    margin: 170px auto 100px;
  }
}
.carrers__container {
  max-width: 90%;
}

.carrers__heading__container {
  margin: 0 auto;
}

.carrers__heading {
  text-align: center;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 3rem;
}

.carrers__title {
  font-family: "scale-variable", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5rem;
  max-width: 220px;
}
@media screen and (min-width: 1040px) {
  .carrers__title {
    font-size: 5rem;
    margin-bottom: 0;
  }
  .carrers__title-line-break {
    display: block;
  }
}

.carrers__presentation {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.carrers__presentation .lense-image--top-right::before {
  width: 35rem;
  height: 35rem;
  --halo-initial-offset-y: -260px;
  --halo-initial-offset-x: calc(100% - 400px + 210px);
  top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
  left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
}
@media screen and (min-width: 1040px) {
  .carrers__presentation .lense-image--top-right::before {
    width: 53.2rem;
    height: 53.2rem;
  }
}
@media screen and (min-width: 1140px) {
  .carrers__presentation {
    flex-direction: row;
    justify-content: center;
  }
}

.carrers__presentation__text {
  display: flex;
}
.carrers__presentation__text__container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (min-width: 1040px) {
  .carrers__presentation__text__container {
    flex-direction: column;
  }
}
.carrers__presentation__text img {
  max-width: 45px;
}
@media screen and (min-width: 640px) {
  .carrers__presentation__text img {
    max-width: 9.7rem;
  }
}
.carrers__presentation__text p {
  font-size: 24px;
}
@media screen and (min-width: 640px) {
  .carrers__presentation__text p {
    font-size: 3rem;
  }
}
.carrers__presentation__text p {
  font-weight: 700;
  max-width: 39rem;
  margin-bottom: 3rem;
}
.carrers__presentation__text a {
  width: fit-content;
}
@media screen and (min-width: 1040px) {
  .carrers__presentation__text {
    align-self: center;
  }
}

.bloc-mobile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
}

.bloc-mobile__filter,
.bloc-mobile__sortBy {
  position: relative;
  flex: 0 0 auto;
  width: fit-content;
}

.bloc-mobile__sortBy {
  align-self: flex-start;
}

.bloc-desktop__filter {
  display: none;
  max-width: 950px;
  align-items: start;
  gap: 1.4rem;
}
@media screen and (min-width: 1040px) {
  .bloc-desktop__filter {
    display: flex;
    flex-direction: column;
  }
}

.news-filter__mainTitle,
.news-filter__sortTitle {
  margin: 0;
}

.news-filter__items-desktop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.news-filter__item-desktop {
  font-size: 1.5rem;
  font-weight: 400;
  padding: 1.4rem 2rem;
  border: 1px solid var(--white);
  border-radius: 1000px;
  background-color: var(--dark);
  color: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-left: 0;
  margin-bottom: 0;
}
.news-filter__item-desktop:active, .news-filter__item-desktop:focus, .news-filter__item-desktop:hover, .news-filter__item-desktop.is-active {
  background-color: var(--white);
  color: var(--dark);
}

.news-filter__trigger {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 3rem;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
}
.news-filter__trigger:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.news-filter__label {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: 1.5rem;
}
.news-filter__label-main {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "scale-variable", sans-serif;
}
.news-filter__label-main-desktop {
  display: none;
}
@media screen and (min-width: 1040px) {
  .news-filter__label-main-desktop {
    display: block;
    font-weight: 500;
    font-family: "scale-variable", sans-serif;
    font-size: 3rem;
  }
}

.news-filter__chevron {
  transition: transform 0.3s ease-in-out;
  width: 18px;
  height: 18px;
}

.news-filter__accordion.is-open .news-filter__chevron {
  transform: rotate(180deg);
}

.news-filter__panel {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  width: max-content;
  min-width: 240px;
  background-color: var(--dark);
  color: var(--white);
  border-radius: 10px;
  padding: 0;
  box-shadow: none;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.bloc-mobile__filter {
  display: block;
}
@media screen and (min-width: 1040px) {
  .bloc-mobile__filter {
    display: none;
  }
}

.bloc-mobile__filter .news-filter__panel {
  left: 0;
  right: auto;
}

.bloc-mobile__sortBy .news-filter__panel {
  right: 0;
  left: auto;
  min-width: auto;
  width: fit-content;
}

.news-filter__accordion.is-open .news-filter__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.news-filter__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  overflow: hidden;
}

.news-filter__item, .news-filter__item-sort {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  min-height: 4.8rem;
  padding: 0 2.4rem;
  border-radius: 0;
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.news-filter__item:hover, .news-filter__item-sort:hover, .news-filter__item:focus-visible, .news-filter__item-sort:focus-visible, .news-filter__item.is-active, .is-active.news-filter__item-sort {
  background-color: var(--white);
  color: var(--dark);
}
.news-filter__item:first-child, .news-filter__item-sort:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.news-filter__item:last-child, .news-filter__item-sort:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.news-filter__item + .news-filter__item, .news-filter__item-sort + .news-filter__item, .news-filter__item + .news-filter__item-sort, .news-filter__item-sort + .news-filter__item-sort {
  margin-top: 0;
  padding-top: 0;
}
.news-filter__item + .news-filter__item::before, .news-filter__item-sort + .news-filter__item::before, .news-filter__item + .news-filter__item-sort::before, .news-filter__item-sort + .news-filter__item-sort::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.bloc-mobile__sortBy .news-filter__item, .bloc-mobile__sortBy .news-filter__item-sort {
  width: auto;
  padding-inline: 1.6rem 2.4rem;
  white-space: nowrap;
}

/* --- Filtres de catégories (mobile + desktop) --- */
.news-filter__item-category {
  font-size: 1.5rem;
  font-weight: 400;
  padding: 1.4rem 2rem;
  border: 1px solid var(--white);
  border-radius: 1000px;
  background-color: var(--dark);
  color: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.news-filter__item-category:hover, .news-filter__item-category:focus, .news-filter__item-category.is-active {
  background-color: var(--white);
  color: var(--dark);
}
@media screen and (max-width: 1039px) {
  .news-filter__item-category {
    all: unset;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 2.4rem;
    min-height: 4.8rem;
    border: none;
    border-radius: 0;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  .news-filter__item-category:hover, .news-filter__item-category:focus-visible, .news-filter__item-category.is-active {
    background-color: var(--white);
    color: var(--dark);
  }
  .news-filter__item-category + .news-filter__item-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }
}

/* --- Filtres de tri (mobile) --- */
.news-filter__item-sort {
  margin-left: 0;
  margin-bottom: 0;
}
.news-filter__item-sort.is-active {
  background-color: var(--white);
  color: var(--dark);
}

/* --- Liste de tri (pour éviter conflits avec catégories) --- */
.news-filter__items--sort {
  border-color: rgba(255, 255, 255, 0.6);
}
.news-filter__items--sort .news-filter__item-sort + .news-filter__item-sort::before {
  background-color: rgba(255, 255, 255, 0.2);
}

.slider {
  margin-block: 10rem;
}
@media screen and (min-width: 1024px) {
  .slider .swiperFull .slide__link.btn.btn-secondary {
    background-color: transparent;
  }
}
@media screen and (min-width: 1024px) {
  .slider .swiperFull .slide__link.btn.btn-secondary:hover {
    background-color: var(--green);
    color: black;
  }
}
.slider .swiperFull .slide__media {
  width: 100vw;
  max-height: calc(100vh - 90px);
}
.slider .swiperFull .slide__media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.slider .swiperFull .swiper-navigation {
  position: absolute;
  display: flex;
  top: 20px;
  right: 20px;
  z-index: 1;
  gap: 15px;
}
@media screen and (min-width: 1024px) {
  .slider .swiperFull .swiper-navigation {
    top: 80px;
    right: 120px;
  }
}
.slider .swiperFull .swiper-navigation .swiperFull--swiper-button-prev:hover,
.slider .swiperFull .swiper-navigation .swiperFull--swiper-button-next:hover {
  cursor: pointer;
}
.slider .swiperFull .swiperFull--swiper-button-prev img {
  transform: rotate(180deg);
}
.slider .swiperFull .swiper-pagination {
  position: relative;
  top: 0 !important;
  margin-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .slider .swiperFull .swiper-pagination {
    margin-top: 0;
    position: absolute;
    bottom: 30px !important;
    top: unset !important;
    z-index: 1;
  }
}
.slider .swiperFull .swiper-pagination-bullet {
  background: white;
  opacity: 1;
  border: 1px solid white;
  height: 11px;
  width: 11px;
}
.slider .swiperFull .swiper-pagination-bullet:hover {
  cursor: pointer;
}
.slider .swiperFull .swiper-pagination-bullet-active {
  background: transparent;
}
.slider .swiperFull .slide__content {
  max-width: 90%;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .slider .swiperFull .slide__content {
    position: absolute;
    z-index: 1;
    top: 80px;
    left: 120px;
    margin-top: 0;
  }
}
.slider .swiperFull .slide__content__title {
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
  font-size: 30px;
}
@media screen and (min-width: 1024px) {
  .slider .swiperFull .slide__content__title {
    font-size: 48px;
  }
}
.slider .swiperFull .slide__content__description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  max-width: 310px;
}
@media screen and (min-width: 1024px) {
  .slider .swiperFull .slide__content__description {
    font-size: 24px;
    max-width: 400px;
  }
}

/* --------------------------------------------------
 hack stabilité swiper — custom slides uniquement
-------------------------------------------------- */
@media screen and (min-width: 1366px) {
  .slider--custom .swiper-slide:nth-child(3n+1) .slide__content {
    min-height: 100px;
  }
  .slider--custom .swiper-slide:nth-child(3n+2) .slide__content {
    min-height: 100.1px;
  }
  .slider--custom .swiper-slide:nth-child(3n+3) .slide__content {
    min-height: 99.9px;
  }
}
/* --------------------------------------------------
   slider zoom
-------------------------------------------------- */
.slider--zoom {
  max-width: 90%;
  margin-inline: auto;
  margin-block: 10rem;
}
.slider--zoom .swiperZoom {
  overflow: unset;
  overflow-x: clip;
}
.slider--zoom {
  /* ---------- title ---------- */
}
.slider--zoom__title h2 {
  font-family: "Inter", sans-serif;
}
.slider--zoom__title h2.front-page {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
}
.slider--zoom__title h2.market {
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--green);
}
.slider--zoom__title h2.expertise {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1366px) {
  .slider--zoom__title h2.expertise {
    font-family: "scale-variable", sans-serif;
    font-size: 48px;
    text-align: left;
    text-transform: unset;
  }
}
.slider--zoom {
  /* ---------- desktop container ---------- */
}
@media screen and (min-width: 1366px) {
  .slider--zoom {
    max-width: 1366px;
  }
  .slider--zoom .swiper-wrapper {
    margin-left: -23.5px;
  }
}
.slider--zoom {
  /* --------------------------------------------------
     swiper slide
  -------------------------------------------------- */
}
.slider--zoom .swiper-slide {
  cursor: pointer;
}
.slider--zoom .swiper-slide:hover {
  cursor: pointer;
}
@media screen and (min-width: 1366px) {
  .slider--zoom .swiper-slide {
    width: 25%;
  }
}
.slider--zoom .swiper-slide {
  /* ---------- media ---------- */
}
.slider--zoom .swiper-slide .slide__media img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1366px) {
  .slider--zoom .swiper-slide .slide__media {
    width: 212px;
  }
  .slider--zoom .swiper-slide .slide__media img {
    height: 358px;
    object-fit: cover;
    overflow: hidden;
  }
}
.slider--zoom .swiper-slide {
  /* ---------- content ---------- */
}
.slider--zoom .swiper-slide .slide__content {
  margin-top: 20px;
  padding-bottom: 2px;
}
.slider--zoom .swiper-slide .slide__content__meta {
  display: flex;
}
.slider--zoom .swiper-slide .slide__content__title {
  width: 75%;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (min-width: 1366px) {
  .slider--zoom .swiper-slide .slide__content__title {
    font-size: 24px;
  }
}
.slider--zoom .swiper-slide .slide__content__date {
  width: 25%;
  font-size: 14px;
  text-align: center;
}
.slider--zoom .swiper-slide .slide__content__description {
  font-family: "Inter", sans-serif;
  font-size: 15px;
}
.slider--zoom .swiper-slide .slide__content {
  /* caché par défaut en desktop */
}
@media screen and (min-width: 1366px) {
  .slider--zoom .swiper-slide .slide__content {
    display: none;
  }
}
.slider--zoom .swiper-slide {
  /* --------------------------------------------------
     état actif
  -------------------------------------------------- */
}
.slider--zoom .swiper-slide.is-active {
  cursor: default;
}
@media screen and (min-width: 1366px) {
  .slider--zoom .swiper-slide.is-active {
    flex: 0 0 636px;
    transform: translateX(-342px);
  }
  .slider--zoom .swiper-slide.is-active .slide__content {
    display: block;
    width: 90%;
  }
  .slider--zoom .swiper-slide.is-active + .swiper-slide {
    transform: translateX(-309px);
  }
  .slider--zoom .swiper-slide.is-active + .swiper-slide + .swiper-slide {
    transform: translateX(-406px);
  }
  .slider--zoom .swiper-slide.is-active + .swiper-slide + .swiper-slide + .swiper-slide {
    transform: translateX(-506px);
  }
}
.slider--zoom .swiper-slide.is-active .slide__media {
  width: 100%;
}
.slider--zoom .swiper-slide.is-active .slide__media img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.slider--zoom {
  /* --------------------------------------------------
     pagination
  -------------------------------------------------- */
}
.slider--zoom .swiper-pagination {
  position: relative;
  margin-top: 3rem;
  top: 0 !important;
}
@media screen and (min-width: 1366px) {
  .slider--zoom .swiper-pagination {
    position: absolute;
    bottom: 30px !important;
    top: unset !important;
    margin-top: 0;
    z-index: 1;
  }
}
.slider--zoom .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: white;
  border: 1px solid white;
  opacity: 1;
}
.slider--zoom .swiper-pagination-bullet:hover {
  cursor: pointer;
}
.slider--zoom .swiper-pagination-bullet-active {
  background: transparent;
}
.slider--zoom {
  /* --------------------------------------------------
     navigation
  -------------------------------------------------- */
}
.slider--zoom .swiper-navigation {
  display: flex;
  gap: 15px;
  position: absolute;
  top: -38px;
  right: 0;
  z-index: 1;
}
.slider--zoom .swiper-navigation .swiperZoom--swiper-button-prev,
.slider--zoom .swiper-navigation .swiperZoom--swiper-button-next {
  cursor: pointer;
}
.slider--zoom .swiper-navigation .swiperZoom--swiper-button-prev img {
  transform: rotate(180deg);
}
@media screen and (min-width: 1366px) {
  .slider--zoom .swiper-navigation {
    display: flex;
    gap: 15px;
    position: absolute;
    top: 379px;
    left: 570.5px;
    z-index: 1;
  }
}

.block-expertise__container {
  color: var(--white);
}

.block-expertise__secondaryDescription {
  max-width: 42.2rem;
  margin-top: 3rem;
  font-size: 1.6rem;
  font-weight: 400;
}

.block-expertise-item__maincontainer {
  padding-top: 4.3rem;
  display: flex;
  flex-direction: column;
}

.block-expertise-item__container {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.block-expertise-item__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: 50%;
}
.block-expertise-item__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(210deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.55) 100%);
  z-index: 0;
  width: 7.4rem;
  height: 7.4rem;
}
.block-expertise-item__icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: 57px;
  height: 45px;
}

.block-expertise-item__textcontainer {
  color: var(--white);
  max-width: 32.7rem;
  margin-bottom: 5.3rem;
  flex: 3;
}
@media screen and (min-with: 1040px) {
  .block-expertise-item__textcontainer {
    flex: 1;
  }
}
.block-expertise-item__textcontainer-lastitem {
  margin-bottom: 2rem;
}
.block-expertise-item__title {
  font-family: "scale-variable", sans-serif;
  font-size: 2.3rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.block-expertise-item__txt {
  font-size: 1.6rem;
  font-weight: 400;
}

.btn {
  cursor: pointer;
  text-decoration: none !important;
  width: fit-content;
}
.btn-secondary {
  display: flex;
  align-items: center;
  border: 1px solid var(--white);
  background-color: var(--dark);
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 400;
  padding: 1.4rem 2rem;
  border-radius: 24px;
  transition: color 0.3s ease, background-color 0.3s ease;
  position: relative;
  left: 1px;
}
.btn-secondary .vertical-line {
  border-width: 0;
  color: var(--green);
  background-color: var(--green);
  display: inline-block;
  width: 1px;
  height: 16px;
  margin: 0 12px;
  transition: all 0.3s ease;
}
.btn-secondary svg {
  width: 12px;
  height: 8px;
}
.btn-secondary svg.cls-1, .btn-secondary svg .cls-1 {
  transition: stroke 0.3s ease;
  stroke: var(--green);
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {
  background-color: var(--green);
  color: var(--dark);
}
.btn-secondary:hover .vertical-line, .btn-secondary:active .vertical-line, .btn-secondary:focus .vertical-line {
  background-color: var(--dark);
}
.btn-secondary:hover svg.cls-1, .btn-secondary:hover svg .cls-1, .btn-secondary:active svg.cls-1, .btn-secondary:active svg .cls-1, .btn-secondary:focus svg.cls-1, .btn-secondary:focus svg .cls-1 {
  stroke: var(--dark);
}

.btn {
  cursor: pointer;
  text-decoration: none !important;
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  font-size: 1.8rem;
  border-radius: 1000px;
  font-weight: 300;
  background: var(--dark);
  padding: 1.8rem 0;
  color: var(--white);
  max-width: 29.2rem;
  width: 100%;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  color: var(--dark);
  background: var(--white);
}
@media screen and (min-width: 1040px) {
  .btn-primary {
    max-width: 9.2rem;
    background-color: transparent;
    padding: 0.8rem 0;
  }
}

.custom-carousel-desktop {
  position: relative;
  display: none;
  transition: min-height 0.5s ease-in-out;
  margin-block: 100px;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-desktop {
    display: block;
  }
}
.custom-carousel-desktop--animation-completed {
  min-height: auto !important;
  margin-bottom: 4rem;
}
.custom-carousel-desktop__viewport {
  position: relative;
  top: 0;
  width: 100%;
  overflow: hidden;
  margin-bottom: 3rem;
  aspect-ratio: 16/9;
  height: auto;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-desktop__viewport {
    margin-bottom: 0;
  }
}
.custom-carousel-desktop__track {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  transform: translateZ(0);
}
.custom-carousel-desktop__slide {
  flex: 1 0 100%;
  height: 100%;
  position: relative;
}
.custom-carousel-desktop__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-desktop__content {
    position: absolute;
    top: 7.5rem;
    left: 11.7rem;
    width: 100%;
    max-width: 50%;
  }
  .custom-carousel-desktop__content .btn-secondary {
    background-color: transparent;
  }
  .custom-carousel-desktop__content .btn-secondary:hover,
  .custom-carousel-desktop__content .btn-secondary:active,
  .custom-carousel-desktop__content .btn-secondary:focus {
    background-color: transparent;
    color: var(--white);
  }
  .custom-carousel-desktop__content .btn-secondary:hover .vertical-line,
  .custom-carousel-desktop__content .btn-secondary:active .vertical-line,
  .custom-carousel-desktop__content .btn-secondary:focus .vertical-line {
    border-right: 1px solid var(--white);
  }
  .custom-carousel-desktop__content .btn-secondary:hover svg .cls-1,
  .custom-carousel-desktop__content .btn-secondary:active svg .cls-1,
  .custom-carousel-desktop__content .btn-secondary:focus svg .cls-1 {
    stroke: var(--white);
  }
}
.custom-carousel-desktop__nav-button {
  position: absolute;
  top: 24px;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  cursor: pointer;
  background: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.custom-carousel-desktop__nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.custom-carousel-desktop__nav-button img {
  width: 16px;
  height: auto;
  display: block;
}
.custom-carousel-desktop__nav-button--prev {
  right: 45px;
}
.custom-carousel-desktop__nav-button--next {
  right: 15px;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-desktop__nav-button {
    width: 56px;
    height: 56px;
    top: 46px;
  }
  .custom-carousel-desktop__nav-button img {
    width: 24px;
  }
  .custom-carousel-desktop__nav-button--prev {
    right: 65px;
  }
  .custom-carousel-desktop__nav-button--next {
    right: 15px;
  }
}
.custom-carousel-desktop__pagination {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  z-index: 11;
  justify-content: center;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-desktop__pagination {
    display: flex;
  }
}
.custom-carousel-desktop__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.custom-carousel-desktop__dot.is-active {
  background-color: transparent;
  border: 1px solid var(--white);
}

.custom-carousel-mobile {
  position: relative;
  display: block;
  margin-block: 100px;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-mobile {
    display: none;
  }
}
.custom-carousel-mobile__viewport {
  position: relative;
  min-height: 227px;
  max-height: 557px;
  height: clamp(227px, 53.6vw, 557px);
  overflow: hidden;
}
.custom-carousel-mobile__track {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.custom-carousel-mobile__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.custom-carousel-mobile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-carousel-mobile__nav-button {
  position: absolute;
  top: 28px;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  cursor: pointer;
  background: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.custom-carousel-mobile__nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.custom-carousel-mobile__nav-button img {
  width: 24px;
  height: auto;
  display: block;
}
.custom-carousel-mobile__nav-button--prev {
  right: 50px;
}
.custom-carousel-mobile__nav-button--next {
  right: 5px;
}
.custom-carousel-mobile__content {
  margin: 6rem 2.3rem 0;
  position: relative;
}
.custom-carousel-mobile__pagination {
  position: absolute;
  bottom: -8rem;
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: center;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-mobile__pagination {
    display: none;
  }
}
.custom-carousel-mobile__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.custom-carousel-mobile__dot.is-active {
  background-color: transparent;
}

.custom-carousel-variant-desktop {
  display: none;
  flex-direction: column;
  width: 100%;
  padding-left: 11.6rem;
  padding-right: 0;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-variant-desktop {
    display: flex;
  }
}
.custom-carousel-variant-desktop__title {
  text-align: center;
  text-transform: capitalize;
  font-size: 1.6rem;
  margin-bottom: 5rem;
  color: var(--white);
}
.custom-carousel-variant-desktop__container {
  width: 100%;
  position: relative;
  isolation: isolate;
}
.custom-carousel-variant-desktop__track {
  position: relative;
  display: flex;
  align-items: stretch;
  column-gap: clamp(1rem, 1.5vw, 1.6rem);
  height: 486px;
  max-height: 486px;
  margin-bottom: 3.8rem;
  justify-content: flex-start;
  width: 100%;
  z-index: -100;
}
.custom-carousel-variant-desktop__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 74.6rem;
}
.custom-carousel-variant-desktop__content {
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.custom-carousel-variant-desktop__content > a {
  width: fit-content;
}
.custom-carousel-variant-desktop__heading {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  margin-bottom: 0.8rem;
  justify-content: space-between;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-variant-desktop__heading {
    width: fit-content;
    justify-content: flex-start;
  }
}
.custom-carousel-variant-desktop__heading-title {
  font-size: 2rem;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 1440px) {
  .custom-carousel-variant-desktop__heading-title {
    font-size: 3rem;
    width: 498px;
    margin-top: -10px;
  }
}
.custom-carousel-variant-desktop__heading-date {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.custom-carousel-variant-desktop__description {
  max-width: 90%;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 1024px) {
  .custom-carousel-variant-desktop__description {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
.custom-carousel-variant-desktop__panel {
  z-index: 30;
  position: relative;
  flex: 0 0 clamp(160px, 12vw, 220px);
  width: clamp(160px, 12vw, 220px);
  height: 100%;
  padding: 0;
  border: none;
  overflow: visible;
  background: transparent;
  cursor: pointer;
  transition: flex-basis 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.45s ease;
  will-change: flex-basis, width, transform;
}
.custom-carousel-variant-desktop__panel:focus-visible {
  outline: 2px solid var(--white, #ffffff);
  outline-offset: 4px;
}
.custom-carousel-variant-desktop__panel:hover:not(.is-active) {
  transform: translateY(-6px);
}
.custom-carousel-variant-desktop__panel.is-active {
  flex: 0 0 clamp(560px, 60vw, 746px);
  width: clamp(560px, 60vw, 746px);
  transform: translateY(0);
  opacity: 1;
  cursor: auto;
}
.custom-carousel-variant-desktop__panel-media {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.custom-carousel-variant-desktop__halo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1000;
  --halo-offset-y: 0px;
  --halo-offset-x: 0px;
  --halo-scale: 1;
  --halo-opacity: 1;
  --halo-rotation: 0deg;
  --halo-gradient-angle: -1deg;
  --halo-size: clamp(280px, 45vw, 520px);
  --halo-initial-offset-y: calc(100% - (var(--halo-size) * 0.65));
  --halo-initial-offset-x: calc(100% - (var(--halo-size) * 0.5));
}
.custom-carousel-variant-desktop__halo::before {
  content: "";
  position: absolute;
  width: var(--halo-size);
  height: var(--halo-size);
  background: linear-gradient(var(--halo-gradient-angle, -1deg), rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%, transparent 100%);
  border-radius: 1000px;
  top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
  left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
  transform: rotate(var(--halo-rotation)) scale(var(--halo-scale));
  opacity: var(--halo-opacity);
  will-change: transform, opacity;
  z-index: -1;
}
.custom-carousel-variant-desktop__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.custom-carousel-variant-desktop__controls {
  display: flex;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 1rem;
}
.custom-carousel-variant-desktop__nav-button {
  border: none;
  cursor: pointer;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.custom-carousel-variant-desktop__nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.custom-carousel-variant-desktop__nav-button img {
  width: 16px;
  height: auto;
  display: block;
  max-width: unset;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-variant-desktop__nav-button img {
    width: 24px;
  }
}

@media screen and (max-width: 1200px) {
  .custom-carousel-variant-desktop__track {
    height: 420px;
    max-height: 420px;
  }
}
@media screen and (max-width: 960px) {
  .custom-carousel-variant-desktop__track {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    height: 360px;
    max-height: 360px;
  }
  .custom-carousel-variant-desktop__panel {
    flex: 0 0 clamp(180px, 40vw, 260px);
    width: clamp(180px, 40vw, 260px);
  }
  .custom-carousel-variant-desktop__panel.is-active {
    flex: 0 0 min(560px, 90vw);
    width: min(560px, 90vw);
  }
}
@media screen and (max-width: 640px) {
  .custom-carousel-variant-desktop {
    gap: 1.5rem;
  }
  .custom-carousel-variant-desktop__track {
    height: 240px;
    max-height: 240px;
  }
  .custom-carousel-variant-desktop__panel {
    flex: 0 0 180px;
    width: 180px;
  }
}
.custom-carousel-variant-mobile {
  position: relative;
  display: block;
  max-width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 1040px) {
  .custom-carousel-variant-mobile {
    display: none;
  }
}
.custom-carousel-variant-mobile__viewport {
  position: relative;
  min-height: 227px;
  max-height: 557px;
  height: clamp(227px, 53.6vw, 557px);
  overflow: hidden;
  isolation: isolate;
  z-index: 10;
}
.custom-carousel-variant-mobile__track {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.custom-carousel-variant-mobile__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.custom-carousel-variant-mobile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-carousel-variant-mobile__nav-button {
  position: absolute;
  top: 28px;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  cursor: pointer;
  background: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.custom-carousel-variant-mobile__nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.custom-carousel-variant-mobile__nav-button img {
  width: 24px;
  height: auto;
  display: block;
}
.custom-carousel-variant-mobile__nav-button--prev {
  right: 50px;
}
.custom-carousel-variant-mobile__nav-button--next {
  right: 5px;
}
.custom-carousel-variant-mobile__content {
  margin: 6rem 0;
  position: relative;
  isolation: isolate;
  z-index: 9;
}
.custom-carousel-variant-mobile__halo {
  position: absolute;
  inset: auto;
  right: clamp(-60px, -6vw, -40px);
  bottom: clamp(-80px, -8vw, -40px);
  pointer-events: none;
  z-index: -10;
  --halo-offset-y: -200px;
  --halo-offset-x: -100px;
  --halo-scale: 1;
  --halo-opacity: 1;
  --halo-rotation: 0deg;
  --halo-gradient-angle: -1deg;
  --halo-size: 200px;
  --halo-initial-offset-y: 0;
  --halo-initial-offset-x: 0;
}
.custom-carousel-variant-mobile__halo::before {
  content: "";
  position: absolute;
  width: var(--halo-size);
  height: var(--halo-size);
  background: linear-gradient(var(--halo-gradient-angle, -1deg), rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%, transparent 100%);
  border-radius: 1000px;
  top: calc(var(--halo-offset-y));
  left: calc(var(--halo-offset-x));
  transform: rotate(var(--halo-rotation)) scale(var(--halo-scale));
  opacity: var(--halo-opacity);
}
.custom-carousel-variant-mobile__pagination {
  position: absolute;
  bottom: -6rem;
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: center;
}
.custom-carousel-variant-mobile__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}
.custom-carousel-variant-mobile__dot.is-active {
  background-color: transparent;
}

/*

class commune : .lense-image
no-halo : .lense-image--no-halo
position top-left: .lense-image--top-left
position top-right: .lense-image--top-right
position bottom-right : .lense-image--bottom-right
position bottom-left : .lense-image--bottom-left

*/
.lense-image {
  display: block;
  position: relative;
  z-index: 10;
  max-width: 532px;
  --halo-angle: 265deg;
  --halo-offset-y: 0px;
  --halo-offset-x: 0px;
  --halo-scale: 1;
  --halo-opacity: 1;
  --halo-rotation: 0deg;
  --halo-gradient-angle: 295deg; /* orientation défaut top-left */
  overflow: visible;
}
.lense-image--no-halo::before {
  display: none;
}
.lense-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 100%;
  max-width: 35rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}
@media screen and (min-width: 1040px) {
  .lense-image img {
    max-width: 53.2rem;
  }
}
.lense-image video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  max-width: 35rem;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (min-width: 1040px) {
  .lense-image video {
    max-width: 53.2rem;
  }
}

.lense-image::before {
  content: "";
  position: absolute;
  z-index: 12;
  width: 350px;
  height: 350px;
  background: linear-gradient(var(--halo-gradient-angle, 295deg), rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%, transparent 100%);
  border-radius: 1000px;
  pointer-events: none;
  transform: rotate(var(--halo-rotation)) scale(var(--halo-scale));
  opacity: var(--halo-opacity);
}
@media screen and (min-width: 1040px) {
  .lense-image::before {
    width: 532px;
    height: 532px;
  }
}

.lense-image--top-left::before {
  --halo-initial-offset-y: -140px;
  --halo-initial-offset-x: -210px;
  top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
  left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
}

.lense-image--top-right {
  --halo-gradient-angle: 65deg;
}

.lense-image--top-right::before {
  --halo-initial-offset-y: -430px;
  --halo-initial-offset-x: calc(100% - 580px + 210px);
  top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
  left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
}

.lense-image--bottom-left {
  --halo-gradient-angle: 361deg;
}

.lense-image--bottom-left::before {
  --halo-initial-offset-y: calc(100% - 350px + 140px);
  --halo-initial-offset-x: -210px;
  top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
  left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
}

.lense-image--bottom-right {
  --halo-gradient-angle: -1deg;
}

.lense-image--bottom-right::before {
  --halo-initial-offset-y: calc(100% - 350px + 140px);
  --halo-initial-offset-x: calc(100% - 350px + 210px);
  top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
  left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
}

.lense_presentation__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 42rem;
  width: 100%;
  color: var(--white);
  text-align: center;
}
.lense_presentation__container-align-left {
  align-items: flex-start;
  width: 100%;
  max-width: 41.2rem;
}

.lense_presentation__heading {
  font-family: "scale-variable", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.lense_presentation__heading-align-left {
  font-size: 3rem;
  font-weight: 500;
  text-align: start;
}
@media screen and (min-width: 1040px) {
  .lense_presentation__heading-align-left {
    font-size: 5rem;
  }
}

.lense_presentation__subHeading {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 29px;
}
.lense_presentation__subHeading-align-left {
  text-align: start;
}

.lense_presentation__container-align-left {
  max-width: 100%;
}

.expertise_heading {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
  max-width: 58.8rem;
}

.partners-mobile {
  display: block;
  width: 100%;
  margin: 4rem auto 0;
}
@media screen and (min-width: 1040px) {
  .partners-mobile {
    display: none;
  }
}
.partners-mobile__viewport {
  overflow: hidden;
  width: 100%;
}
.partners-mobile__track {
  display: flex;
  transition: transform 0.35s ease-in-out;
  will-change: transform;
}
.partners-mobile__slide {
  flex: 0 0 100%;
  padding: 0 2rem;
}
.partners-mobile__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 1rem;
}
.partners-mobile__logo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.partners-mobile__logo img {
  max-width: 133px;
  width: 70%;
  height: 80%;
  object-fit: contain;
}
.partners-mobile__pagination {
  margin: 3.2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.partners-mobile__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}
.partners-mobile__dot.is-active {
  background-color: transparent;
}

.partners-desktop {
  display: none;
}
@media screen and (min-width: 1040px) {
  .partners-desktop {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
  }
}

.partners-desktop__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2rem;
  align-items: center;
  max-width: 1200px;
}
.partners-desktop__grid > * {
  flex: 0 1 calc(16.6666666667% - 2rem);
  max-width: calc(16.6666666667% - 2rem);
}

.partners-desktop__logo {
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.partners-desktop__logo img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.heading {
  margin-bottom: 4rem;
}

.heading__container {
  color: var(--white);
  text-align: center;
  position: relative;
}

.heading__category {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 3rem;
}

.heading__title {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  font-size: 3rem;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
  margin-bottom: 0.8rem;
  max-width: 440px;
}
@media screen and (min-width: 1024px) {
  .heading__title {
    font-size: 5rem;
    max-width: 54rem;
  }
}

.heading__text {
  margin: 0 auto;
  font-size: 2rem;
  line-height: 28px;
  max-width: 323px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .heading__text {
    max-width: 72rem;
    font-size: 2.4rem;
  }
}

.list__container {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: 0;
  margin-bottom: 0;
}

.list__icon {
  align-self: flex-start;
}

.list__title {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0;
}

.about-hero__section {
  position: relative;
  height: 100vh;
  max-height: 263px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 1040px) {
  .about-hero__section {
    max-height: 337px;
  }
}

.about-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: var(--about-hero-bg-mobile, url("/assets/media/img/about-hero-mobile.webp"));
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: 50% 40%;
}
@media screen and (min-width: 640px) {
  .about-hero__background {
    background-image: var(--about-hero-bg-desktop, var(--about-hero-bg-mobile, url("/assets/media/img/about-hero-desktop.webp")));
    background-position: 50% 25%;
    background-size: cover;
  }
}
.about-hero__overlay {
  position: absolute;
  bottom: -40px;
  padding-bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  width: 100%;
}
@media screen and (min-width: 1040px) {
  .about-hero__overlay {
    padding-bottom: 0;
  }
}
.about-hero__title {
  color: var(--white);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2.8rem;
}
@media screen and (min-width: 1040px) {
  .about-hero__title {
    margin-bottom: 1.4rem;
  }
}
.about-hero__main-title {
  color: var(--white);
  text-align: center;
  font-family: "scale-variable", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 2.3rem;
}
@media screen and (min-width: 1040px) {
  .about-hero__main-title {
    font-size: 5rem;
    margin-bottom: 4.5rem;
  }
}

.overlay__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.73) 0%, transparent 75%); /* #0A0A0A with 73% opacity */
  z-index: 1;
}

.about-vision__mainTitle {
  font-family: "scale-variable", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 1040px) {
  .about-vision__mainTitle {
    font-size: 5rem;
  }
}

.about-vision__img {
  max-height: 486px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1047px) {
  .about-vision__img {
    margin-bottom: 4rem;
  }
}

.about-vision__txt-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 1047px) {
  .about-vision__txt-container {
    flex-direction: row;
  }
}
.about-vision__txt-container div {
  flex: 1;
}

.about-vision__heading {
  color: var(--green);
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.about-vision__txt {
  font-size: 1.6rem;
  font-weight: 500;
}

.about-facilities__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-facilities__mainTitle {
  font-size: 3rem;
  font-weight: 500;
  font-family: "scale-variable", sans-serif;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1040px) {
  .about-facilities__mainTitle {
    font-size: 5rem;
    margin-bottom: 2.2rem;
  }
}

.about-facilities__txt {
  font-size: 1.6rem;
  font-weight: 400;
  max-width: 80%;
  margin-bottom: 5rem;
}
@media screen and (min-width: 1040px) {
  .about-facilities__txt {
    max-width: 50%;
  }
}

.about-facilities__img-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 7.5rem;
}
@media screen and (min-width: 1040px) {
  .about-facilities__img-container {
    flex-direction: row;
  }
}

.about-facilities__bloc img {
  width: 100%;
  max-width: 350px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 4rem;
}

.about-facilities__bloc h3 {
  font-family: "scale-variable", sans-serif;
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
}

.support-hero__section {
  position: relative;
  height: 100vh;
  max-height: 263px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 1040px) {
  .support-hero__section {
    max-height: 337px;
  }
}

.support-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: var(--support-hero-bg-mobile, url("/assets/media/img/support-hero-mobile.webp"));
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: 50% 40%;
}
@media screen and (min-width: 640px) {
  .support-hero__background {
    background-image: var(--support-hero-bg-desktop, var(--support-hero-bg-mobile, url("/assets/media/img/support-hero-desktop.webp")));
    background-position: 50% 25%;
    background-size: cover;
  }
}
.support-hero__overlay {
  position: absolute;
  bottom: -40px;
  padding-bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  width: 100%;
}
@media screen and (min-width: 1040px) {
  .support-hero__overlay {
    padding-bottom: 0;
  }
}
.support-hero__title {
  color: var(--white);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2.8rem;
}
@media screen and (min-width: 1040px) {
  .support-hero__title {
    margin-bottom: 1.4rem;
  }
}
.support-hero__main-title {
  color: var(--white);
  text-align: center;
  font-family: "scale-variable", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 2.3rem;
}
@media screen and (min-width: 1040px) {
  .support-hero__main-title {
    font-size: 5rem;
    margin-bottom: 4.5rem;
  }
}

.overlay__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.73) 0%, transparent 75%); /* #0A0A0A with 73% opacity */
  z-index: 1;
}

.news-hero__section {
  position: relative;
  /*height: 100vh;
  max-height: 469px;*/
  width: 100vw;
  aspect-ratio: 16/9;
  overflow: hidden;
  z-index: 1;
  max-height: 100vh;
}

.news-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: var(--news-hero-bg-mobile, url("/assets/media/img/news-hero-mobile.webp"));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 640px) {
  .news-hero__background {
    background-image: var(--news-hero-bg-desktop, var(--news-hero-bg-mobile, url("/assets/media/img/news-hero-desktop.webp")));
    background-position: center;
    background-size: cover;
  }
}
.news-hero__overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  width: 100%;
}
@media screen and (min-width: 426px) {
  .news-hero__overlay {
    bottom: 40px;
  }
}
.news-hero__title {
  color: var(--white);
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 426px) {
  .news-hero__title {
    font-size: 1.6rem;
    margin-bottom: 2.8rem;
  }
}
@media screen and (min-width: 1040px) {
  .news-hero__title {
    margin-bottom: 1.4rem;
  }
}
.news-hero__main-title {
  color: var(--white);
  text-align: center;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 426px) {
  .news-hero__main-title {
    font-size: 3rem;
    margin-bottom: 2.3rem;
  }
}
@media screen and (min-width: 1040px) {
  .news-hero__main-title {
    font-size: 5rem;
    margin-bottom: 3rem;
  }
}

.overlay__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.73) 0%, transparent 75%); /* #0A0A0A with 73% opacity */
  z-index: 1;
}

.news-hero__overlay img {
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.news-card-img-container {
  position: relative;
  width: fit-content;
  max-width: 350px;
  margin-bottom: 3.5rem;
}
.news-card-img-container::after {
  content: "";
  position: absolute;
  bottom: -15rem;
  right: -10rem;
  z-index: 12;
  width: 315px;
  height: 315px;
  background: linear-gradient(var(--halo-gradient-angle, 295deg), rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%, transparent 100%);
  border-radius: 1000px;
  pointer-events: none;
  transform: rotate(var(--halo-rotation)) scale(var(--halo-scale));
  opacity: var(--halo-opacity);
}
@media screen and (min-width: 1040px) {
  .news-card-img-container {
    max-width: 552px;
    margin-bottom: 2.5rem;
  }
  .news-card-img-container::after {
    display: none;
  }
}

.news-card-img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.news-card-tag {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: var(--white);
  color: var(--dark);
  padding: 1.5rem 2rem;
  border-radius: 1000px;
  font-size: 1.5rem;
  font-weight: 400;
}

.news-card-description-container {
  max-width: 350px;
}
@media screen and (min-width: 1040px) {
  .news-card-description-container {
    max-width: 552px;
  }
}
.news-card-description-container .custom-carousel-variant-desktop__description {
  max-width: 98%;
}

.news-card-heading-container {
  display: flex;
  margin-top: 10px;
}

.news-card-heading-title {
  width: 70%;
  font-family: "scale-variable", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 1040px) {
  .news-card-heading-title {
    font-size: 26px;
    width: 80%;
  }
}

.news-card-heading-date {
  width: 30%;
  text-align: right;
  font-size: 14px;
}
@media screen and (min-width: 1040px) {
  .news-card-heading-date {
    width: 20%;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  color: var(--white);
}
.pagination__control {
  width: 56px;
  height: 56px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pagination__control:hover:not(:disabled), .pagination__control:focus-visible {
  outline: none;
}
.pagination__control:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.pagination__list {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  gap: 8px;
  margin: 0;
}
.pagination__item {
  display: flex;
}
.pagination__item--ellipsis {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  padding: 0 0.6rem;
}
.pagination__page {
  position: relative;
  font-family: "scale-variable", sans-serif;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 200;
  cursor: pointer;
}
.pagination__page:hover, .pagination__page:focus-visible {
  transform: translateY(-2px);
  outline: none;
}
.pagination__page.is-active, .pagination__page[aria-current=page] {
  color: var(--green);
  font-weight: 700;
}
.pagination__page.is-active::before, .pagination__page[aria-current=page]::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(210deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.55) 100%);
  z-index: 0;
  width: 3rem;
  height: 3rem;
}
@media screen and (max-width: 640px) {
  .pagination {
    gap: 1.6rem;
    padding: 3.2rem 0 6rem;
  }
  .pagination__control {
    width: 44px;
    height: 44px;
  }
  .pagination__page {
    width: 20px;
    border-radius: 10px;
    padding: 0;
  }
}

.article_heading__container {
  margin: 0 auto;
  max-width: 1134px;
}

.article_heading__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.3rem;
  margin-top: 10px;
}

.news-card-tag-article {
  display: none;
  background-color: var(--white);
  color: var(--dark);
  padding: 1.5rem 2rem;
  border-radius: 1000px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (min-width: 1040px) {
  .news-card-tag-article {
    display: block;
  }
}

.article-img__container {
  position: relative;
  display: block;
  overflow: visible;
  z-index: 1;
  --halo-offset-y: 0px;
  --halo-offset-x: 0px;
  --halo-scale: 1;
  --halo-opacity: 1;
  --halo-rotation: 0deg;
  --halo-gradient-angle: 200deg;
  --halo-initial-offset-y: calc(100% - 350px + 140px);
  --halo-initial-offset-x: calc(100% - 350px + 210px);
}

.article-img__container::before {
  display: none;
  content: "";
  position: absolute;
  z-index: 0;
  background: linear-gradient(var(--halo-gradient-angle, -1deg), rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%, transparent 100%);
  border-radius: 1000px;
  pointer-events: none;
  top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
  left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
  transform: rotate(var(--halo-rotation)) scale(var(--halo-scale));
  opacity: var(--halo-opacity);
  will-change: transform, opacity;
}
@media screen and (min-width: 1040px) {
  .article-img__container::before {
    display: block;
    width: 532px;
    height: 532px;
  }
}

.article-img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.article-txt__container {
  padding-top: 27px;
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 400;
}
@media screen and (min-width: 1040px) {
  .article-txt__container {
    flex-direction: row-reverse;
    gap: 34px;
    padding-top: 60px;
  }
}

.article-txt__social {
  display: flex;
  gap: 17px;
}
@media screen and (min-width: 1040px) {
  .article-txt__social {
    flex-direction: column;
    flex-shrink: 0;
  }
}

.article-txt__social__icon {
  width: 55px;
  height: 55px;
}

.article-txt__blocTxt {
  margin-bottom: 37px;
}

.article-txt__blocTxt p {
  margin-bottom: 1.6rem;
}

.carreers-hero__section {
  position: relative;
  height: 100vh;
  max-height: 263px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 1040px) {
  .carreers-hero__section {
    max-height: 337px;
  }
}

.carreers-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: var(--carreers-hero-bg-mobile, url("/assets/media/img/carreers-hero-mobile.webp"));
  background-size: 200%;
  background-repeat: no-repeat;
  background-position: 50% 40%;
}
@media screen and (min-width: 640px) {
  .carreers-hero__background {
    background-image: var(--carreers-hero-bg-desktop, var(--carreers-hero-bg-mobile, url("/assets/media/img/carreers-hero-desktop.webp")));
    background-position: 50% 25%;
    background-size: cover;
  }
}
.carreers-hero__overlay {
  position: absolute;
  bottom: -40px;
  padding-bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  width: 100%;
}
@media screen and (min-width: 1040px) {
  .carreers-hero__overlay {
    padding-bottom: 0;
  }
}
.carreers-hero__title {
  color: var(--white);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2.8rem;
}
@media screen and (min-width: 1040px) {
  .carreers-hero__title {
    margin-bottom: 1.4rem;
  }
}
.carreers-hero__main-title {
  color: var(--white);
  text-align: center;
  font-family: "scale-variable", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 2.3rem;
}
@media screen and (min-width: 1040px) {
  .carreers-hero__main-title {
    font-size: 5rem;
    margin-bottom: 4.5rem;
  }
}

.overlay__filter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(84, 84, 84, 0.5) 0%, rgba(53, 53, 53, 0.5) 45%, rgba(25, 25, 25, 0.8) 100%);
  z-index: 1;
}

.carreers_heading {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: 700;
  max-width: 58.8rem;
}

@media screen and (min-width: 1040px) {
  .carreers-join {
    margin-top: 220px;
  }
}

.carreers-join h2 {
  text-align: left;
  font-family: "scale-variable", sans-serif;
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (min-width: 1040px) {
  .carreers-join h2 {
    font-size: 5rem;
  }
}

.carreers-join__container {
  display: flex;
  flex-direction: column;
  gap: 53px;
}
@media screen and (min-width: 640px) {
  .carreers-join__container {
    width: 100%;
    flex-direction: row;
    gap: 83px;
  }
}

.carreers-join__txt {
  margin-top: 80px;
  margin-inline: auto;
}
.carreers-join__txt h3 {
  text-transform: uppercase;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  text-align: left;
}
.carreers-join__txt p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}
@media screen and (min-width: 640px) {
  .carreers-join__txt {
    margin-top: 36px;
    flex: 1;
  }
}

@media screen and (min-width: 640px) {
  .carreers-accordion {
    margin-top: 76px;
    flex: 1;
  }
}

.carreers-accordion__grp {
  border-bottom: 1px solid var(--white);
}
.carreers-accordion__grp:nth-child(1) .carreers-accordion__title {
  padding-top: 0;
}

.carreers-accordion__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 14px;
  cursor: pointer;
}
.carreers-accordion__title h4 {
  font-family: "scale-variable", sans-serif;
  font-size: 3rem;
  font-weight: 500;
}

.carreers-accordion__chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.carreers-accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms;
}

.carreers-accordion__txt {
  font-size: 1.6rem;
  padding-bottom: 0;
  transition: padding-bottom 500ms;
}

.carreers-accordion__grp.is-open .carreers-accordion__txt {
  padding-bottom: 20px;
}

.carreers-accordion__content[aria-hidden=false] {
  grid-template-rows: 1fr;
}

.carreers-accordion__content-inner {
  overflow: hidden;
}

.carreers-accordion .carreers-accordion__grp:last-child {
  border-bottom: none;
}

.carreers-accordion__grp.is-open .carreers-accordion__chevron {
  transform: rotate(180deg);
}

@media screen and (min-width: 1040px) {
  .carreers-openings {
    margin-top: 10px;
  }
}

.carreers-openings__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .carreers-openings__container {
    width: 100%;
  }
}

.carreers-openings__txt {
  margin-top: 80px;
}
.carreers-openings__txt h3 {
  text-transform: uppercase;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  text-align: left;
}
.carreers-openings__txt p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}
.carreers-openings__txt p:last-child {
  margin-top: 16px;
}
@media screen and (min-width: 640px) {
  .carreers-openings__txt {
    width: 60%;
    margin-right: auto;
  }
}

.carreers-openings__map figure {
  max-width: 939px;
}
.carreers-openings__map figure img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.carreers-carousel {
  margin-top: 50px;
  margin-bottom: 100px;
}

.carreers-carousel__filter {
  width: 100%;
  margin-bottom: 12px;
}

.carreers-filter__item {
  cursor: pointer;
  transition: color 0.3s ease;
}

.carreers-filter__item.is-active {
  color: var(--dark);
  background-color: var(--white);
  font-weight: bold;
}

.carreers-carousel__filter__main-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.carreers-carousel__filter__wrapper {
  flex-wrap: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .carreers-carousel__filter__wrapper {
    flex-direction: row;
  }
}

.carreers-carousel__title {
  font-weight: 500;
  font-family: "scale-variable", sans-serif;
  font-size: 3rem;
  margin-bottom: 0;
}

.carreers-carousel__container {
  display: grid;
  width: 100%;
  max-width: 900px;
  flex: 1 1 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: stretch;
  gap: 20px;
}

.carreers-carousel__item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid var(--white);
  padding: 15px 5px 15px 5px;
  background-color: var(--dark);
  color: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0;
}
.carreers-carousel__item:active, .carreers-carousel__item:focus, .carreers-carousel__item:hover {
  background-color: var(--white);
  color: var(--dark);
}
.carreers-carousel__item li {
  margin: 0;
}

.carreers__filter {
  position: relative;
  flex: 0 0 auto;
  max-width: 160px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.carreers-filter__mainTitle {
  margin: 0;
  width: 100%;
}

.carreers-filter__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 3rem;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
}
.carreers-filter__trigger:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.carreers-filter__panel {
  position: absolute;
  top: calc(100% + 2.5rem);
  left: 50%;
  width: max-content;
  min-width: 240px;
  background-color: var(--dark);
  color: var(--white);
  border-radius: 10px;
  padding: 0;
  box-shadow: none;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 1rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.carreers-filter__label {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-right: auto;
}

.carreers-filter__chevrons {
  display: none;
}

.carreers-filter__chevron {
  width: 14px;
  height: 14px;
  color: inherit;
  transition: transform 0.3s ease;
}
.carreers-filter__chevron:active, .carreers-filter__chevron:focus, .carreers-filter__chevron:hover {
  color: var(--dark);
}

.carreers-filter__accordion.is-open .carreers-filter__chevron {
  transform: rotate(180deg);
}

.carreers-filter__accordion.is-open .carreers-filter__chevron-down {
  display: none;
}

.carreers-filter__accordion.is-open .carreers-filter__chevron {
  transform: rotate(180deg);
}

.carreers-filter__accordion.is-open .carreers-filter__panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.carreers-filter__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  overflow: hidden;
}

.carreers-filter__item {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  min-height: 4.8rem;
  padding: 0 2.4rem;
  border-radius: 0;
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.carreers-filter__item:hover, .carreers-filter__item:focus-visible {
  background-color: var(--white);
  color: var(--dark);
}
.carreers-filter__item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.carreers-filter__item:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.carreers-filter__item + .carreers-filter__item {
  margin-top: 0;
  padding-top: 0;
}
.carreers-filter__item + .carreers-filter__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

@media screen and (min-width: 640px) {
  .carreers-carousel__container {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
  }
}
@media screen and (min-width: 640px) and (max-width: 1080px) {
  .carreers-carousel__container {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
  }
}
@media screen and (min-width: 640px) and (max-width: 860px) {
  .carreers-carousel__container {
    grid-template-columns: repeat(2, minmax(190px, 1fr));
  }
}
@media screen and (min-width: 640px) {
  .carreers-carousel__card {
    flex: 0 0 auto;
  }
}
.swiperJobs {
  overflow: hidden;
}
.swiperJobs .no-results {
  text-align: center;
  width: 100% !important;
}
.swiperJobs .no-results__text {
  font-size: 3rem;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
}
.swiperJobs .job__nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .swiperJobs .job__nav {
    display: none;
  }
}
.swiperJobs .swiper-wrapper {
  display: flex;
}
@media screen and (min-width: 769px) {
  .swiperJobs .swiper-wrapper {
    display: grid;
    gap: 16px;
    transform: none !important;
    width: 100% !important;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .swiperJobs .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.swiperJobs .swiper-wrapper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--white);
  padding: 20px;
  justify-content: space-between;
  gap: 40px;
  transition: all 0.3s ease;
}
@media (min-width: 1091px) {
  .swiperJobs .swiper-wrapper .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
  }
}
.swiperJobs .swiper-wrapper .swiper-slide:hover {
  background-color: var(--white);
  color: var(--dark);
  transition: all 0.3s ease;
}
.swiperJobs .swiper-wrapper .swiper-slide .job__title {
  font-family: "scale-variable", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  text-transform: uppercase;
}
.swiperJobs .swiper-wrapper .swiper-slide .job__location {
  font-size: 2rem;
}
@media (min-width: 1091px) {
  .swiperJobs .swiperJobs--swiper-button-next,
  .swiperJobs .swiperJobs--swiper-button-prev {
    display: none;
  }
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.page-home .heading__container {
  margin: 5.5rem auto 4rem;
}
@media screen and (min-width: 1040px) {
  .page-home .heading__container {
    margin: 5.5rem auto 7rem;
  }
}
.page-home .markets__presentation {
  margin-bottom: 14rem;
}
.page-home .lense_presentation__subHeading {
  font-size: 1.6rem;
  font-weight: 700;
}
.page-home .custom-carousel-variant-desktop {
  margin-bottom: 17.5rem;
}
.page-home .lense_presentation__subHeading-align-left-variant {
  font-size: 2rem;
  font-weight: 400;
}
.page-home .custom-carousel-mobile {
  margin-bottom: 14rem;
}
.page-home .partners__container {
  margin-top: 123px;
}
.page-home .custom-carousel-variant-desktop__title {
  text-transform: uppercase;
  margin-left: -11.6rem;
}
.page-home .block-home__carousel-variant__container {
  margin: 14rem 0;
}
.page-home .block-home__carousel-variant__mainTitle {
  padding: 0 2.3rem;
  margin-bottom: 29px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (min-width: 1040px) {
  .page-home .block-home__carousel-variant__mainTitle {
    display: none;
  }
}
.page-home .lense-image--top-right::before {
  width: 269px;
  height: 269px;
  --halo-initial-offset-x: calc(100% - 350px + 210px);
}
@media screen and (min-width: 1040px) {
  .page-home .lense-image--top-right::before {
    --halo-initial-offset-y: -430px;
    --halo-initial-offset-x: calc(100% - 500px + 210px);
    width: 532px;
    height: 532px;
  }
}
.page-home .markets__presentation__lenses__container .lense-image::before {
  --halo-gradient-angle: 240deg;
}
.page-home .lense-image--top-right img {
  max-width: 269px;
}
@media screen and (min-width: 1040px) {
  .page-home .lense-image--top-right img {
    max-width: 532px;
  }
}
@media screen and (min-width: 1040px) {
  .page-home .carrers__container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1140px) {
  .form_info__container {
    max-width: 1140px;
    margin: 0 auto;
  }
}
.form_info__container .form_info__text {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

.form__container {
  margin-top: 80px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form__wrapper::before,
.form__wrapper::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .form__wrapper::before,
  .form__wrapper::after {
    width: 500px;
    height: 500px;
  }
}

.form__wrapper::before {
  top: -50px;
  right: -150px;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.45) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}

.form__wrapper::after {
  bottom: -50px;
  left: -150px;
  background: linear-gradient(25deg, rgba(255, 255, 255, 0.45) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}

.form__wrapper {
  position: relative;
  max-width: 768px;
}

.form {
  width: 100%;
  margin-block: 50px;
}
.form input[type=checkbox] {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  outline: revert !important;
}
.form p {
  font-size: 1.6rem;
}
.form .wpcf7-response-output {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
.form .wpcf7-form {
  color: white;
  margin-inline: auto;
}
.form .wpcf7-form p:has(button[type=submit]) {
  display: flex;
  justify-content: flex-end;
}
.form .wpcf7-form label {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.form .wpcf7-form label br {
  margin-bottom: 1rem;
  display: block;
}
.form .wpcf7-form-control {
  width: 100%;
  background: black;
  border: 1px solid white;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 1.6rem;
  color: white;
}
.form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.form .wpcf7-form-control.wpcf7-acceptance {
  border: none;
  display: block;
  background: none;
  padding: 0;
}
.form .wpcf7-form-control.wpcf7-acceptance span {
  margin-left: 0;
}
.form .wpcf7-form-control.wpcf7-acceptance label {
  margin-bottom: 0;
}
.form .wpcf7-form-control.wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../media/icons/icon-arrow-down.svg") no-repeat !important;
  background-position-x: 98% !important;
  background-position-y: 50% !important;
}

.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__button {
  width: 100%;
  padding: 1.6rem 3rem 1.6rem 1.6rem;
  border: 1px solid white;
  border-radius: 5px;
  background: black;
  color: white;
  font-size: 1.6rem;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.custom-select__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(180deg);
  background: url("../media/icons/icon-arrow-up.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.custom-select.is-open .custom-select__button::after {
  transform: translateY(-50%) rotate(0deg);
}
.custom-select__list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: black;
  border: 1px solid white;
  border-radius: 5px;
  z-index: 20;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}
.custom-select.is-open .custom-select__list {
  display: block;
}
.custom-select__option {
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
  list-style: none;
  margin: 0;
}
.custom-select__option:hover, .custom-select__option:focus {
  background: var(--white);
  color: black;
  font-weight: 700;
}

.page-design-certification .expertise-hero__background {
  background-image: url("/assets/media/img/expertise-hero-img.webp");
}
@media screen and (min-width: 1040px) {
  .page-design-certification .expertise-hero__background {
    background-image: var(url("/assets/media/img/expertise-hero-img-desktop.webp"));
  }
}

.page-airtime .expertise-hero__background {
  background-image: url("/assets/media/img/expertise-hero-img-airtime.webp");
}
@media screen and (min-width: 1040px) {
  .page-airtime .expertise-hero__background {
    background-image: var(url("/assets/media/img/expertise-hero-img-airtime-desktop.webp"));
  }
}

.page-hardware .expertise-hero__background {
  background-image: url("/assets/media/img/expertise-hero-img-hardware.webp");
}
@media screen and (min-width: 1040px) {
  .page-hardware .expertise-hero__background {
    background-image: var(url("/assets/media/img/expertise-hero-img-hardware-desktop.webp"));
  }
}

.page-smart-app .expertise-hero__background {
  background-image: url("/assets/media/img/expertise-hero-img-smart-app.webp");
}
@media screen and (min-width: 1040px) {
  .page-smart-app .expertise-hero__background {
    background-image: var(url("/assets/media/img/expertise-hero-img-smart-app-desktop.webp"));
  }
}

.page-hardware .overlay__filter {
  display: none;
}

.block-expertise__maincontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 1040px) {
  .block-expertise__maincontainer {
    margin-bottom: 15rem;
  }
}
.block-expertise__maincontainer .expertise-heading__container {
  margin: 120px auto 57px;
}
@media screen and (min-width: 1040px) {
  .block-expertise__maincontainer .expertise-heading__container {
    margin: 200px auto 40px;
  }
}
.block-expertise__maincontainer article:nth-child(1) {
  overflow: hidden;
}

.block-expertise {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 103.4rem;
  gap: 2.2rem;
}
@media screen and (min-width: 1040px) {
  .block-expertise {
    flex-direction: row;
    align-items: center;
    gap: 8rem;
    margin: 0 auto;
  }
}
.block-expertise__intro {
  margin-bottom: 9rem;
}
@media screen and (min-width: 1040px) {
  .block-expertise__intro {
    margin-bottom: 7.4rem;
  }
}
.block-expertise__intro h2 {
  max-width: 49.8rem;
}
.block-expertise__mainTitle {
  color: var(--green);
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.block-expertise__mainDescription {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.block-expertise__btn {
  display: none;
}

.block-expertise__carousel-variant__mainTitle {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2.9rem;
}
@media screen and (min-width: 1047px) {
  .block-expertise__carousel-variant__mainTitle {
    display: none;
  }
}

.block-expertise__carousel-variant__container {
  width: 90%;
  margin-inline: auto;
}

.block-expertise__carousel-variant__container .custom-carousel-variant-desktop .custom-carousel-variant-desktop__title {
  text-align: start;
  text-transform: capitalize;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
  font-size: 5rem;
  margin-bottom: 1.6rem;
}

.block-expertise-image-left figure {
  flex: 1;
  order: 0;
}

.block-expertise-image-left .block-expertise__container {
  order: 1;
  flex: 1;
}

.block-expertise .lense-image--top-right {
  margin: 0;
}

.block-expertise-image-right figure {
  order: 0;
}
@media screen and (min-width: 1040px) {
  .block-expertise-image-right figure {
    order: 1;
  }
}

.block-expertise-image-right .block-expertise__container {
  order: 1;
}
@media screen and (min-width: 1040px) {
  .block-expertise-image-right .block-expertise__container {
    order: 0;
  }
}

.block-expertise__maincontainer .block-expertise__intro .block-expertise {
  align-items: center;
}
@media screen and (min-width: 640px) {
  .block-expertise__maincontainer .block-expertise__intro {
    text-align: center;
    align-self: center;
  }
}
@media screen and (min-width: 1000px) {
  .block-expertise__maincontainer .block-expertise__intro {
    text-align: left;
  }
}

@media screen and (min-width: 640px) {
  .block-expertise__intro .block-expertise-btn .block-expertise__btn {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1040px) {
  .block-expertise__intro .block-expertise-btn .block-expertise__btn {
    display: flex;
    justify-content: flex-start;
  }
}

.block-expertise__maincontainer .block-expertise__intro .block-expertise.block-expertise-image-right.block-expertise-column-reverse {
  flex-direction: column-reverse;
}
@media screen and (min-width: 1047px) {
  .block-expertise__maincontainer .block-expertise__intro .block-expertise.block-expertise-image-right.block-expertise-column-reverse {
    flex-direction: row;
  }
}

/*
image-left eclipse-top-right
image-right eclipse-bottom-right
image-left eclipse-bottom-left
 image left - eclipse bottom right
*/
.block-expertise-btn .block-expertise__btn {
  display: block;
  margin-top: 4rem;
}

.block-expertise__intro .block-expertise-image-left figure::before {
  --halo-initial-offset-y: -250px;
  --halo-initial-offset-x: calc(100% - 370px + 210px);
}
@media screen and (min-width: 1040px) {
  .block-expertise__intro .block-expertise-image-left figure::before {
    --halo-initial-offset-y: -430px;
    --halo-initial-offset-x: calc(100% - 580px + 210px);
    top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
    left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
  }
}

.block-expertise__intro .block-expertise-image-left .lense-image--top-right {
  --halo-angle-delta: 300;
  --halo-rotation-delta: -35deg;
}

.block-expertise__intro .block-expertise-image-left .lense-image--top-right::before {
  --halo-gradient-angle: 10deg;
  width: 269px;
  height: 269px;
}
@media screen and (min-width: 1040px) {
  .block-expertise__intro .block-expertise-image-left .lense-image--top-right::before {
    width: 532px;
    height: 532px;
  }
}

.block-expertise__intro .block-expertise-image-right figure::before {
  --halo-initial-offset-y: 100px;
  --halo-initial-offset-x: calc(100% - 250px + 210px);
}
@media screen and (min-width: 1040px) {
  .block-expertise__intro .block-expertise-image-right figure::before {
    --halo-initial-offset-y: 120px;
    --halo-initial-offset-x: calc(100% - 450px + 210px);
    top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
    left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
  }
}

.block-expertise__intro .block-expertise-image-right .lense-image--bottom-right {
  --halo-angle-delta: 260;
  --halo-rotation-delta: -35deg;
}

.block-expertise__intro .block-expertise-image-right .lense-image--bottom-right::before {
  --halo-gradient-angle: 40deg;
  width: 269px;
  height: 269px;
}
@media screen and (min-width: 1040px) {
  .block-expertise__intro .block-expertise-image-right .lense-image--bottom-right::before {
    width: 532px;
    height: 532px;
  }
}

.block-expertise__intro .block-expertise-image-left-bottom figure::before {
  --halo-initial-offset-y: 140px;
  --halo-initial-offset-x: calc(100% - 660px + 210px);
  top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
  left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
}
@media screen and (min-width: 1040px) {
  .block-expertise__intro .block-expertise-image-left-bottom figure::before {
    --halo-initial-offset-y: 320px;
    --halo-initial-offset-x: calc(100% - 1100px + 210px);
  }
}

.block-expertise__intro .block-expertise-image-left-bottom .lense-image--bottom-left {
  --halo-angle-delta: 260;
  --halo-rotation-delta: 35deg;
}

.block-expertise__intro .block-expertise-image-left-bottom .lense-image--bottom-left::before {
  --halo-gradient-angle: 230deg;
  width: 269px;
  height: 269px;
}
@media screen and (min-width: 1040px) {
  .block-expertise__intro .block-expertise-image-left-bottom .lense-image--bottom-left::before {
    width: 532px;
    height: 532px;
  }
}

.block-expertise-image-left-bottom .block-expertise__description {
  margin-top: 63px;
}
@media screen and (min-width: 1040px) {
  .block-expertise-image-left-bottom .block-expertise__description {
    margin-top: 0;
  }
}

.block-expertise__intro .block-expertise-image-right .lense-image--bottom-right {
  --halo-angle-delta: 260;
  --halo-rotation-delta: -35deg;
}

.block-expertise__intro .block-expertise-image-right .lense-image--bottom-right::before {
  --halo-gradient-angle: 40deg;
  width: 269px;
  height: 269px;
}
@media screen and (min-width: 1040px) {
  .block-expertise__intro .block-expertise-image-right .lense-image--bottom-right::before {
    width: 532px;
    height: 532px;
  }
}

.block-expertise__intro .block-expertise figure img,
.block-expertise__intro .block-expertise figure video {
  width: 269px;
  height: 269px;
  --halo-angle-delta: 260;
  --halo-rotation-delta: 35deg;
}
@media screen and (min-width: 1040px) {
  .block-expertise__intro .block-expertise figure img,
  .block-expertise__intro .block-expertise figure video {
    width: 532px;
    height: 532px;
  }
}

.block-markets__list__mainContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25rem;
  margin: 0 auto 14.1rem;
}
@media screen and (min-width: 1040px) {
  .block-markets__list__mainContainer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 27.9rem;
    gap: 4rem;
  }
}

.block-markets__maincontainer {
  color: var(--white);
  margin-top: 12rem;
}

.block-markets__hero__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.2rem;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1040px) {
  .block-markets__hero__container {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1040px) {
  .block-markets__hero__container-image-left {
    flex-direction: row-reverse;
  }
}

.block-markets-intro__container {
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media screen and (min-width: 640px) {
  .block-markets-intro__container {
    max-width: 50%;
  }
}

.block-markets-intro__mainTitle {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.6rem;
  width: fit-content;
}

.block-markets-intro__secondaryTitle {
  font-family: "scale-variable", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 3rem;
  max-width: 80%;
}
@media screen and (min-width: 1039px) {
  .block-markets-intro__secondaryTitle {
    max-width: 100%;
  }
}
@media screen and (min-width: 1040px) {
  .block-markets-intro__secondaryTitle {
    font-size: 5rem;
    max-width: 400px;
  }
}

.block-markets-intro__text1 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.block-markets-intro__text2 {
  font-size: 1.6rem;
  font-weight: 400;
}

.block-markets__hero .arrow-down {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
@media screen and (min-width: 1040px) {
  .block-markets__hero .arrow-down {
    margin-top: 10px;
  }
}

.block-markets__hero .lense-image--top-right {
  margin: 0;
  max-width: none;
}
@media screen and (min-width: 1040px) {
  .block-markets__hero .lense-image--top-right {
    margin-left: auto;
  }
}

.block-markets__hero__container.block-markets__hero__container-image-left .lense-image--top-left {
  margin: 0;
}

.block-markets__hero__container.block-markets__hero__container-image-left .lense-image--top-left img {
  height: 100%;
  max-height: 311px;
}
@media screen and (min-width: 1040px) {
  .block-markets__hero__container.block-markets__hero__container-image-left .lense-image--top-left img {
    height: 100%;
    width: 630px;
    max-height: 630px;
  }
}

.block-markets__hero__container.block-markets__hero__container-image-left .lense-image {
  max-width: 311px;
}
@media screen and (min-width: 1040px) {
  .block-markets__hero__container.block-markets__hero__container-image-left .lense-image {
    max-width: 630px;
  }
}

.block-markets__hero .lense-image--top-right img {
  height: 100%;
  max-height: 311px;
}
@media screen and (min-width: 1040px) {
  .block-markets__hero .lense-image--top-right img {
    height: 100%;
    width: 630px;
    max-height: 630px;
  }
}

.block-markets__hero__container-image-left .lense-image--top-left::before {
  width: 311px;
  height: 311px;
  --halo-gradient-angle: 260deg;
  --halo-initial-offset-y: -50px;
  --halo-initial-offset-x: calc(100% - 800px + 210px);
}
@media screen and (min-width: 1040px) {
  .block-markets__hero__container-image-left .lense-image--top-left::before {
    width: 630px;
    height: 630px;
    --halo-initial-offset-y: -70px;
    --halo-initial-offset-x: calc(100% - 1200px + 210px);
    top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
    left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
  }
}

.block-markets__hero .lense-image--top-right::before {
  width: 311px;
  height: 311px;
  --halo-gradient-angle: 60deg;
  --halo-initial-offset-y: -30px;
  --halo-initial-offset-x: calc(100% - 240px + 210px);
}
@media screen and (min-width: 1040px) {
  .block-markets__hero .lense-image--top-right::before {
    width: 630px;
    height: 630px;
    --halo-initial-offset-y: -120px;
    --halo-initial-offset-x: calc(100% - 275px + 210px);
    top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
    left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
  }
}

.block-markets__list__container {
  display: flex;
  flex-direction: column;
  width: fit-content;
  position: relative;
  margin-top: 6rem;
  flex: 1;
  max-width: 337px;
}
@media screen and (min-width: 1040px) {
  .block-markets__list__container {
    max-width: none;
  }
}

.block-markets__list__container--eclipse {
  position: relative;
  isolation: isolate;
  z-index: 1;
  --markets-halo-size-mobile: 311px;
  --markets-halo-size-desktop: 532px;
  --markets-halo-size: var(--markets-halo-size-mobile);
  --halo-gradient-angle: 250deg;
  --halo-initial-offset-y: calc(100% - 250px + 140px);
  --halo-initial-offset-x: calc(100% - 550px + 210px);
  --halo-offset-y: -10px;
  --halo-offset-x: 200px;
  --halo-angle-delta: 100;
  --halo-move-x: 250;
  --halo-move-y: 320;
  --halo-scale: 1;
  --halo-opacity: 1;
  --halo-rotation: 0deg;
}
.block-markets__list__container--eclipse::before {
  content: "";
  position: absolute;
  width: var(--markets-halo-size);
  height: var(--markets-halo-size);
  top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
  left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
  background: linear-gradient(var(--halo-gradient-angle), rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%, transparent 100%);
  border-radius: 1000px;
  opacity: var(--halo-opacity);
  transform: rotate(var(--halo-rotation)) scale(var(--halo-scale));
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 1040px) {
  .block-markets__list__container--eclipse {
    --halo-initial-offset-y: calc(100% - 350px + 140px);
    --halo-initial-offset-x: calc(100% - 590px + 210px);
    --markets-halo-size: var(--markets-halo-size-desktop);
    --halo-move-x: 200;
    --halo-move-y: 320;
  }
}

.block-markets__list__mainTitle,
.block-markets__list {
  position: relative;
  z-index: 1;
  align-self: flex-start;
}

.block-markets__list__mainTitle,
.block-markets__carousel__mainTitle {
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 2.8rem;
  padding-right: 2.3rem;
  width: 80%;
}

.block-markets__carousel__mainTitle {
  padding-left: 2.3rem;
}
@media screen and (min-width: 1040px) {
  .block-markets__carousel__mainTitle {
    padding-left: 11.6rem;
  }
}

.block-markets__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.block-markets__maincontainer .custom-carousel-variant-desktop__title {
  display: none;
}

.block-markets__maincontainer .custom-carousel-variant-mobile__nav-button {
  display: flex;
}

.block-markets__maincontainer .block-expertise__carousel-variant__container {
  position: relative;
}

.block-markets__maincontainer .block-expertise__carousel-variant__container .custom-carousel-variant-mobile__viewport {
  position: static;
  overflow: hidden;
}

.block-markets__maincontainer .block-expertise__carousel-variant__container .custom-carousel-variant-mobile__nav-button--prev {
  right: 44px;
}

.block-markets__maincontainer .block-expertise__carousel-variant__container .custom-carousel-variant-mobile__nav-button--next {
  right: 12px;
}

.block-markets__maincontainer .block-expertise__carousel-variant__container .custom-carousel-variant-mobile__nav-button--prev,
.block-markets__maincontainer .block-expertise__carousel-variant__container .custom-carousel-variant-mobile__nav-button--next {
  top: -34px;
}

.block-markets__maincontainer slider--custom .btn-secondary {
  display: none;
}

.block-expertise__carousel-variant__container .custom-carousel-variant-mobile__nav-button--prev,
.block-expertise__carousel-variant__container .custom-carousel-variant-mobile__nav-button--next {
  top: -34px;
}

.block-markets__carousel .custom-carousel-variant-desktop__heading-title {
  font-size: 3rem;
  font-weight: 500;
  font-family: "scale-variable", sans-serif;
}

.block-markets__carousel .custom-carousel-variant-desktop__heading-date {
  display: none;
}

.block-markets__carousel .custom-carousel-variant-desktop__description {
  display: none;
}

.block-markets__carousel .btn .btn-secondary .custom-carousel-variant-desktop__cta a {
  display: none;
}

.block-markets__carousel .custom-carousel-variant-desktop {
  margin-top: 0;
}

.block-markets__carousel .custom-carousel-variant-desktop__content .btn .btn-secondary {
  display: none;
}

.block-markets__carousel .custom-carousel-variant-desktop {
  margin-bottom: 14.5rem;
}
@media screen and (min-width: 1040px) {
  .block-markets__carousel .custom-carousel-variant-desktop {
    margin-bottom: 30rem;
  }
}

.block-markets__carousel.block-expertise__carousel-variant__container .custom-carousel-variant-mobile__content {
  margin: 3rem 0;
}

.about-heading {
  margin-bottom: 10rem;
  margin-top: 45px;
}
@media screen and (min-width: 1040px) {
  .about-heading {
    margin-top: 80px;
  }
}

.about-heading .expertise_heading {
  font-size: 2.4rem;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .about-heading .expertise_heading {
    font-size: 3rem;
  }
}

.about-heading .expertise__txt {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  max-width: 60rem;
  margin: 0 auto;
  margin-top: 1.4rem;
}
@media screen and (min-width: 1024px) {
  .about-heading .expertise__txt {
    font-size: 2.4rem;
  }
}

.about-expertise {
  text-align: left;
  width: 100%;
}

.about-eclipse {
  margin-top: 20rem;
}

.about-eclipse .block-expertise {
  align-items: center;
}
@media screen and (max-width: 600px) {
  .about-eclipse .block-expertise {
    align-items: flex-start;
    text-align: left;
  }
}

.about-expertise .section-container-article-right {
  text-align: left;
  padding-left: 0;
}

.about-eclipse .block-expertise__secondaryDescription {
  display: block;
}

@media screen and (min-width: 1040px) {
  .about-facilities {
    margin: 15rem auto;
  }
}

.about-eclipse-right {
  max-width: 422px;
  margin: 0 auto;
}
@media screen and (min-width: 1040px) {
  .about-eclipse-right {
    margin: 0;
    max-width: 100%;
  }
}

@media screen and (max-width: 1040px) {
  .about-eclipse-right .lense-image--bottom-left {
    align-self: center;
  }
}
@media screen and (max-width: 600px) {
  .about-eclipse-right .lense-image--bottom-left {
    align-self: flex-end;
  }
}

.support-heading {
  margin-top: 45px;
  margin-bottom: 63px;
}
@media screen and (min-width: 1040px) {
  .support-heading {
    margin-bottom: 81px;
    margin-top: 95px;
  }
}

.support-expertise {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
}
@media screen and (min-width: 1040px) {
  .support-expertise {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20rem 7rem;
    margin-bottom: 120px;
  }
}
.support-expertise .lense_presentation__heading {
  color: var(--green);
}
.support-expertise .lense_presentation__subHeading {
  font-weight: 400;
}
.support-expertise .lense_presentation__container {
  margin-top: 45px;
}
@media screen and (min-width: 1040px) {
  .support-expertise .lense_presentation__container {
    margin-top: 37px;
  }
}
.support-expertise .btn-secondary {
  display: none;
}
.support-expertise .lense-image--top-left::before {
  --halo-rotation: 280deg;
  --halo-initial-offset-y: -200px;
  --halo-initial-offset-x: -250px;
}
.support-expertise .lense-image--top-right::before {
  --halo-rotation: 40deg;
  --halo-initial-offset-y: -190px;
  --halo-initial-offset-x: calc(100% - 280px + 210px);
}
@media screen and (min-width: 1040px) {
  .support-expertise .lense-image--top-left::before {
    --halo-initial-offset-y: -250px;
    --halo-initial-offset-x: -310px;
  }
  .support-expertise .lense-image--top-right::before {
    --halo-rotation: 100deg;
    --halo-initial-offset-y: -230px;
    --halo-initial-offset-x: calc(100% - 380px + 210px);
  }
}

.support-expertise__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support + .footer__container {
  margin: 15.5rem auto 3rem;
}
@media screen and (min-width: 1040px) {
  .page-support + .footer__container {
    margin: 19.2rem auto 3rem;
  }
}

.page-news__filter-container {
  margin-top: 90px;
  padding-inline: 0;
}

.page-news__card-container {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  row-gap: 9rem;
  margin-top: 27px;
  position: relative;
  isolation: isolate;
  z-index: 1;
}
@media screen and (min-width: 1040px) {
  .page-news__card-container {
    margin-top: 68px;
    grid-template-columns: 1fr 1fr;
    gap: 5rem 3rem;
    padding-inline: 0;
  }
}

.page-news__card-halo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  --halo-offset-y: 0px;
  --halo-offset-x: 0px;
  --halo-scale: 1;
  --halo-opacity: 1;
  --halo-rotation: 0deg;
  --halo-gradient-angle: -1deg;
  --halo-size: clamp(260px, 40vw, 520px);
  --halo-initial-offset-y: calc(100% - var(--halo-size) + 140px);
  --halo-initial-offset-x: calc(100% - var(--halo-size) + 210px);
}
.page-news__card-halo::before {
  display: none;
  content: "";
  position: absolute;
  width: var(--halo-size);
  height: var(--halo-size);
  background: linear-gradient(var(--halo-gradient-angle, -1deg), rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%, transparent 100%);
  border-radius: 1000px;
  top: calc(var(--halo-initial-offset-y) + var(--halo-offset-y));
  left: calc(var(--halo-initial-offset-x) + var(--halo-offset-x));
  transform: rotate(var(--halo-rotation)) scale(var(--halo-scale));
  opacity: var(--halo-opacity);
  will-change: transform, opacity;
}
@media screen and (min-width: 1040px) {
  .page-news__card-halo::before {
    display: block;
  }
}

.page-news__pagination {
  padding: 0 4rem;
}

.news_title {
  font-size: 3rem;
  width: 498px;
  margin-top: 0;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
}

.page-article {
  margin-top: 19.6rem;
}

.block-article_heading_container {
  width: 100%;
  margin-bottom: 40px;
}

.block-article__carousel-variant__container {
  margin-bottom: 190px;
}
@media screen and (min-width: 1040px) {
  .block-article__carousel-variant__container {
    margin-bottom: 210px;
    padding-left: 11.6rem;
  }
}

.block-article__carousel-variant__container .custom-carousel-variant-desktop {
  margin-top: 0;
  padding-left: 0;
}

.block-article__carousel-variant__container .custom-carousel-variant-desktop .custom-carousel-variant-desktop__title {
  display: none;
}

.block-article__carousel-variant__container .custom-carousel-variant-mobile {
  margin: 0;
}

.block-article__carousel-variant__mainTitle {
  font-size: 3rem;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  padding-left: 2.3rem;
}
@media screen and (min-width: 1040px) {
  .block-article__carousel-variant__mainTitle {
    font-size: 5rem;
    padding-left: 0rem;
  }
}

.block-article__carousel-variant__container .custom-carousel-variant-desktop__heading {
  justify-content: space-between;
}

.block-article__carousel-variant__container .custom-carousel-variant-desktop__description {
  margin-bottom: 29px;
}

.block-article__carousel-variant__container .custom-carousel-variant-desktop__heading-title {
  font-size: 2.4rem;
}
@media screen and (min-width: 1040px) {
  .block-article__carousel-variant__container .custom-carousel-variant-desktop__heading-title {
    font-size: 3rem;
  }
}

.block-article__carousel-variant__container .custom-carousel-variant-mobile__halo::before {
  --halo-offset-x: -113px;
  --halo-offset-y: -300px;
  --halo-size: 204px;
}

.carreers-expertise {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.carreers-expertise .carreers-heading__container {
  margin: 45px auto 57px;
}
@media screen and (min-width: 1040px) {
  .carreers-expertise .carreers-heading__container {
    margin: 200px auto 40px;
  }
}

.block-expertise__secondaryDescription {
  display: block;
}

.carreers-eclipse .block-expertise {
  align-items: center;
}
@media screen and (max-width: 600px) {
  .carreers-eclipse .block-expertise {
    align-items: flex-start;
    text-align: left;
  }
}

.carreers-eclipse .block-expertise__secondaryDescription {
  display: block;
}

.carreers-eclipse-right {
  max-width: 422px;
  margin: 0 auto;
}
@media screen and (min-width: 1040px) {
  .carreers-eclipse-right {
    margin: 0;
    max-width: 100%;
  }
}

@media screen and (max-width: 1040px) {
  .carreers-eclipse-right .lense-image--bottom-left {
    align-self: center;
  }
}
@media screen and (max-width: 600px) {
  .carreers-eclipse-right .lense-image--bottom-left {
    align-self: flex-end;
  }
}

/*
.customer-support__container::before {
  bottom: -2530px;
}

.customer-support__container {
  padding-top: 335px;
}*/

/*# sourceMappingURL=style.css.map */
