@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
header {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  position: relative;
  z-index: 10;
}
header .header-logo img {
  max-width: 220px;
  width: 18vw;
  min-width: 120px;
}
header .burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}
header .burger-menu:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
header .burger-menu span {
  width: 28px;
  height: 3px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
  border-radius: 2px;
}
header .burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
header .burger-menu.active span:nth-child(2) {
  opacity: 0;
}
header .burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
header nav.header-nav-desktop {
  display: flex;
  gap: 64px;
  align-items: center;
}
header nav.header-nav-desktop a {
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
  font-size: 1.0625rem;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
header nav.header-nav-desktop a:hover {
  opacity: 0.8;
}
header nav.header-nav-desktop a:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
header nav.header-nav-desktop .thematiques-dropdown {
  position: relative;
}
header nav.header-nav-desktop .thematiques-dropdown > a {
  cursor: pointer;
}
header nav.header-nav-desktop .thematiques-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 16px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 12px 0;
  width: max-content;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-10px);
  z-index: 1000;
}
header nav.header-nav-desktop .thematiques-dropdown .dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: #0C2B3E;
  font-size: 1.125rem;
  text-transform: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
header nav.header-nav-desktop .thematiques-dropdown .dropdown-menu a:hover {
  background-color: rgba(12, 43, 62, 0.08);
  opacity: 1;
}
header nav.header-nav-desktop .thematiques-dropdown:hover .dropdown-menu, header nav.header-nav-desktop .thematiques-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
header .header-cta {
  background-color: #FFFFFF;
  color: #0C2B3E;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid #FFFFFF;
  transition: all 0.3s ease;
}
header .header-cta:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
header .header-cta:focus-visible {
  outline: 3px solid #0C2B3E;
  outline-offset: 2px;
}
@media (max-width: 900px) {
  header:has(.header-nav-desktop) .burger-menu {
    display: flex;
  }
  header:has(.header-nav-desktop) .header-nav-desktop {
    display: none;
  }
  header:has(.header-nav-desktop) .header-cta {
    display: none;
  }
  header:not(:has(.header-nav-desktop)) .burger-menu {
    display: none !important;
  }
  header:not(:has(.header-nav-desktop)) .header-cta {
    display: block !important;
  }
}

.header-nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  height: 100dvh;
  background-color: #0C2B3E;
  flex-direction: column;
  padding: 0;
  gap: 0;
  transition: right 0.3s ease;
  z-index: 9999;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding: 80px 32px 32px;
}
.header-nav-mobile.active {
  right: 0;
}
.header-nav-mobile .mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  transition: opacity 0.3s ease;
}
.header-nav-mobile .mobile-menu-close:hover {
  opacity: 0.8;
}
.header-nav-mobile .mobile-menu-close:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
.header-nav-mobile .mobile-menu-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header-nav-mobile .mobile-menu-close span:nth-child(1) {
  transform: rotate(45deg);
}
.header-nav-mobile .mobile-menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}
.header-nav-mobile > a,
.header-nav-mobile > .thematiques-dropdown {
  padding-left: 16px;
  padding-right: 16px;
}
.header-nav-mobile > a {
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
  font-size: 1.25rem;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity 0.3s ease;
  display: block;
}
.header-nav-mobile > a:hover {
  opacity: 0.8;
}
.header-nav-mobile > a:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: -2px;
  border-radius: 4px;
}
.header-nav-mobile .thematiques-dropdown {
  width: 100%;
  box-sizing: border-box;
}
.header-nav-mobile .thematiques-dropdown > a {
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header-nav-mobile .thematiques-dropdown > a:hover {
  opacity: 0.8;
}
.header-nav-mobile .thematiques-dropdown .dropdown-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  margin-left: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  min-width: auto;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
.header-nav-mobile .thematiques-dropdown .dropdown-menu a {
  color: #FFFFFF;
  font-size: 1.125rem;
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: none;
}
.header-nav-mobile .thematiques-dropdown .dropdown-menu a:hover {
  background-color: transparent;
  opacity: 0.8;
}
.header-nav-mobile .header-cta-mobile {
  display: block;
  background-color: #FFFFFF;
  color: #FE7201;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-align: center;
  margin-top: 24px;
  border: none;
  text-transform: none;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .header-nav-mobile {
    display: flex;
  }
}

footer {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  padding: 48px 24px;
  position: relative;
}
footer > img {
  width: 100%;
  margin-bottom: 32px;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
}
footer .footer-content-left {
  display: flex;
  gap: 80px;
  width: fit-content;
  align-items: center;
}
footer .footer-content-left img {
  width: 190px;
}
footer .footer-content-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-end;
  width: fit-content;
  gap: 24px;
}
footer .footer-content-right > img {
  width: 160px;
}
footer .footer-content-right .socials {
  display: flex;
  gap: 16px;
}
footer .footer-content-right .socials .social-item {
  width: 40px;
  height: 40px;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-content-right .socials .social-item img {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  footer .footer-content {
    align-items: center;
    gap: 72px;
  }
  footer .footer-content-left {
    flex-direction: column;
    gap: 32px;
  }
  footer .footer-content-right {
    align-items: center;
    align-self: center;
    width: 100%;
    gap: 16px;
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

@media screen and (max-width: 1100px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 13px;
  }
}
body {
  font-family: "Golos Text", sans-serif;
  color: #FFFFFF;
  background-color: #0C2B3E;
  margin: 0 auto;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #FFFFFF;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
}

.top-notification {
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 10000;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  min-width: 320px;
  max-width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: translateX(-50%) translateY(-20px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.top-notification.show {
  top: 30px;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.top-notification.top-notification-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.top-notification.top-notification-success::before {
  content: "✓";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  margin-right: 4px;
}
.top-notification.top-notification-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.top-notification.top-notification-error::before {
  content: "✕";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  margin-right: 4px;
}

@media (max-width: 600px) {
  .top-notification {
    min-width: calc(100% - 40px);
    left: 20px;
    transform: translateY(-20px);
    font-size: 1rem;
    padding: 16px 28px;
    gap: 10px;
  }
  .top-notification.show {
    top: 20px;
    transform: translateY(0);
  }
  .top-notification.top-notification-success::before, .top-notification.top-notification-error::before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }
}
.button-pulse {
  border: 1px solid #CBBBA0;
  border-radius: 8px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  width: fit-content;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.button-pulse:hover {
  background-color: #FFFFFF;
  color: #0C2B3E;
}
.button-pulse:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
}
.button-pulse.white {
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF;
  color: #0C2B3E;
  font-weight: 600;
  transition: all 0.3s ease;
}
.button-pulse.white:hover {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.button-pulse img {
  max-width: 28px;
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 15vh;
}
.newsletter h2 {
  font-size: 2.375rem;
  font-weight: 800;
  text-align: center;
  color: #CBBBA0;
}
.newsletter p {
  font-size: 1.125rem;
  line-height: 160%;
  text-align: center;
  max-width: 45%;
}
.newsletter .newsletter-form {
  background-color: #FFFFFF;
  padding: 16px 16px 16px 64px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  align-items: center;
  box-sizing: border-box;
  gap: 12px;
  transition: all 0.3s ease;
}
.newsletter .newsletter-form input[type=email] {
  font-size: 1.25rem;
  color: #0C2B3E;
  border: none;
  outline: none;
  border-bottom: 1px solid #0C2B3E;
  flex: 1;
  min-width: 200px;
  height: fit-content;
  padding: 12px 0;
}
.newsletter .newsletter-form input[type=email]::placeholder {
  color: #0C2B3E;
}
.newsletter .newsletter-form input[type=email]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.newsletter .newsletter-form input[type=email]:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
.newsletter .newsletter-form input[type=hidden] {
  display: none;
}
.newsletter .newsletter-form button {
  background-color: #CBBBA0;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 32px;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.newsletter .newsletter-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.newsletter .newsletter-form button img {
  width: 32px;
}
.newsletter .newsletter-form button:hover {
  background-color: rgba(203, 187, 160, 0.65);
}
.newsletter .newsletter-form button:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
}
.newsletter .newsletter-form.newsletter-form-success input[type=email] {
  border-bottom-color: #28a745;
}

@media (max-width: 900px) {
  .newsletter {
    width: 100%;
  }
  .newsletter p {
    max-width: 96%;
  }
  .newsletter .newsletter-form {
    width: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }
  .newsletter .newsletter-form input[type=email] {
    width: 100%;
    min-width: 100%;
  }
  .newsletter .newsletter-form button {
    padding: 16px;
    width: 100%;
  }
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  padding: 15vh 0 20vh;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 50%;
}
.hero .hero-content .hero-subtitle {
  font-size: 1.0625rem;
  color: #FE7201;
}
.hero .hero-content h1 {
  font-size: 2.625rem;
}
.hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 160%;
}
.hero .hero-image-container {
  position: relative;
  width: 42%;
  height: auto;
}
.hero .hero-image-container .hero-image-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  will-change: transform;
}
.hero .hero-image-container .hero-image-element:first-child {
  position: relative;
}
.hero .hero-image-container .hero-image-element {
  opacity: 0;
  transform: scale(0.5) rotate(-5deg);
  animation: heroImageAppear 0.25s ease-out forwards;
}
.hero .hero-image-container .hero-image-element:nth-child(1) {
  animation-delay: 0.5s;
}
.hero .hero-image-container .hero-image-element:nth-child(2) {
  animation-delay: 0.55s;
}
.hero .hero-image-container .hero-image-element:nth-child(3) {
  animation-delay: 0.6s;
}
.hero .hero-image-container .hero-image-element:nth-child(4) {
  animation-delay: 0.65s;
}
.hero .hero-image-container .hero-image-element:nth-child(5) {
  animation-delay: 0.7s;
}
.hero .hero-image-container .hero-image-element:nth-child(6) {
  animation-delay: 0.75s;
}
.hero .hero-image-container .hero-image-element:nth-child(7) {
  animation-delay: 0.8s;
}
.hero .hero-image-container .hero-image-element:nth-child(8) {
  animation-delay: 0.85s;
}
.hero .hero-image-container .hero-image-element.parallax-ready {
  animation: none !important;
  animation-fill-mode: none !important;
  transition: transform 0.1s ease-out;
}

@keyframes heroImageAppear {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.carrousel {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 16px;
  background: linear-gradient(90deg, #FE2387 0%, #FE7201 100%);
  padding: 32px 64px 64px;
  position: relative;
}
.carrousel .tabs-menu {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
}
.carrousel .tabs-menu .tab-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  transition: all 0.3s ease;
  cursor: pointer;
}
.carrousel .tabs-menu .tab-item:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
}
.carrousel .tabs-menu .tab-item {
  cursor: pointer;
}
.carrousel .tabs-menu .tab-item.active {
  background-color: #FFFFFF;
}
.carrousel .carrousel-arrows {
  position: absolute;
  top: 54%;
  left: 6px;
  right: 6px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.carrousel .carrousel-arrows .carrousel-arrow {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.carrousel .carrousel-arrows .carrousel-arrow:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
.carrousel .carrousel-arrows .carrousel-arrow {
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 8px;
  opacity: 1;
  pointer-events: auto;
}
.carrousel .carrousel-arrows .carrousel-arrow img {
  width: 32px;
  height: 32px;
  display: block;
}
.carrousel .carrousel-arrows .carrousel-arrow:hover:not(:disabled) {
  opacity: 0.8 !important;
}
.carrousel .carrousel-arrows .carrousel-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.3 !important;
}
.carrousel .carrousel-arrows .carrousel-arrow.carrousel-arrow-left img {
  transform: scaleX(-1);
}
.carrousel .tabs-content {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 350px;
}
.carrousel .tabs-content .common-images-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 350px;
  z-index: -1;
  pointer-events: none;
}
.carrousel .tabs-content .common-images-container .common-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  z-index: -1;
}
.carrousel .tabs-content .common-images-container .common-image[data-aos=zoom-in-rotate] {
  opacity: 0;
  transform: scale(0.5) rotate(-5deg);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.carrousel .tabs-content .common-images-container .common-image[data-aos=zoom-in-rotate].aos-animate {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.carrousel .tabs-content .carrousel-slides {
  position: relative;
  width: 100%;
}
.carrousel .tabs-content .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  color: #0C2B3E;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.carrousel .tabs-content .content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.carrousel .tabs-content .content .text-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.carrousel .tabs-content .content .text-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}
.carrousel .tabs-content .content .text-content h2 {
  font-size: 1.25rem;
  font-weight: 400;
  transition-delay: 0s;
}
.carrousel .tabs-content .content .text-content h3 {
  font-size: 2.375rem;
  font-weight: 800;
  color: #FFFFFF;
  padding: 8px 32px;
  background-color: #0C2B3E;
  border-radius: 100px;
  width: fit-content;
  margin-top: 12px;
  transition-delay: 0.1s;
}
.carrousel .tabs-content .content .text-content .description {
  line-height: 160%;
  font-size: 1.125rem;
  transition-delay: 0.2s;
}
.carrousel .tabs-content .content .text-content .important-info {
  font-weight: 600;
  transition-delay: 0.3s;
}
.carrousel .tabs-content .content .text-content.fade-out-up > * {
  opacity: 0 !important;
  transform: translateY(-20px) !important;
  transition-delay: 0s !important;
  transition-duration: 0.3s !important;
}
.carrousel .tabs-content .content .text-content.fade-in-up > * {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.carrousel .tabs-content .content .image-container {
  position: relative;
  height: 350px;
  width: 40%;
  flex-shrink: 0;
  z-index: 100;
}
.carrousel .tabs-content .content .image-container .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
  z-index: 100;
  pointer-events: none;
}
.carrousel .tabs-content .content .image-container .slide-image[data-aos=zoom-in-rotate] {
  opacity: 0;
  transform: scale(0.5) rotate(-5deg);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.carrousel .tabs-content .content .image-container .slide-image[data-aos=zoom-in-rotate].aos-animate {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.carrousel .tabs-content .content .image-container .slide-image:nth-child(1) {
  transition-delay: 0s;
}
.carrousel .tabs-content .content .image-container .slide-image:nth-child(2) {
  transition-delay: 0.1s;
}
.carrousel .tabs-content .content .image-container .slide-image:nth-child(3) {
  transition-delay: 0.2s;
}
.carrousel .tabs-content .content .image-container .slide-image:nth-child(4) {
  transition-delay: 0.3s;
}
.carrousel .tabs-content .content .image-container .slide-image:nth-child(5) {
  transition-delay: 0.4s;
}
.carrousel .tabs-content .content .image-container .slide-image.scale-out {
  opacity: 0 !important;
  transform: scale(0.8) rotate(-5deg) !important;
  transition-delay: 0s !important;
  transition-duration: 0.3s !important;
}
.carrousel .tabs-content .content .image-container .slide-image.scale-in {
  opacity: 1 !important;
  transform: scale(1) rotate(0deg) !important;
}

.what-is-pulse-container {
  background-image: url(../images/line-background.png);
  background-size: 175%;
  background-position: 65% 100%;
  background-repeat: no-repeat;
}

.what-is-pulse {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 30vh 0 15vh;
  align-items: center;
  margin-bottom: 15vh;
}
.what-is-pulse h2 {
  font-size: 2.375rem;
  font-weight: 800;
  text-align: center;
  max-width: 60%;
}
.what-is-pulse .cards-list {
  display: flex;
  justify-content: space-around;
}
.what-is-pulse .cards-list .card {
  width: 25%;
  background-color: transparent;
  border-radius: 16px;
  perspective: 1000px;
  cursor: pointer;
  outline: none;
}
.what-is-pulse .cards-list .card:hover {
  transform: scale(1.05);
}
.what-is-pulse .cards-list .card:focus-visible {
  outline: 3px solid #FE2387;
  outline-offset: 4px;
  border-radius: 16px;
}
.what-is-pulse .cards-list .card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.what-is-pulse .cards-list .card .card-inner.flipped {
  transform: rotateY(180deg);
}
.what-is-pulse .cards-list .card .card-front,
.what-is-pulse .cards-list .card .card-back {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 64px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  gap: 16px;
}
.what-is-pulse .cards-list .card .card-back {
  position: absolute;
  top: 0;
  transform: rotateY(180deg);
  padding: 32px 32px;
}
.what-is-pulse .cards-list .card .card-front {
  position: relative;
}
.what-is-pulse .cards-list .card .card-front img {
  width: 65%;
}
.what-is-pulse .cards-list .card .card-front p {
  font-size: 1.0625rem;
  line-height: 160%;
  text-align: center;
  font-weight: 600;
  color: #0C2B3E;
}
.what-is-pulse .cards-list .card .card-back p {
  font-size: 0.9375rem;
  line-height: 160%;
  text-align: center;
  font-weight: 400;
  color: #0C2B3E;
}

.about-container {
  background-image: url(../images/big-pulse.png);
  background-size: contain;
  background-position: 44vw 0;
  background-repeat: no-repeat;
  margin-top: 32px;
}

.about {
  display: flex;
  flex-direction: column;
  padding: 100px 0 210px;
  align-items: center;
  width: 85%;
  margin: 0 auto;
}
.about .about-content-container {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.about .about-content-container .about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: flex-start;
  text-align: left;
  width: 45%;
  padding: 32px 0;
  align-items: flex-start;
}
.about .about-content-container .about-content h2 {
  font-size: 2rem;
  font-weight: 800;
}
.about .about-content-container .about-content p {
  font-size: 1.125rem;
  line-height: 160%;
  max-width: 70%;
}
.about .about-content-container .about-video {
  width: 45%;
  position: relative;
  height: fit-content;
  cursor: pointer;
}
.about .about-content-container .about-video:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
.about .about-content-container .about-video .player-image {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.about .about-content-container .about-video .video-overlay {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
.about .about-content-container .about-video .video-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about .mail-button {
  background-color: #FFFFFF;
  color: #0C2B3E;
  font-weight: 800;
  padding: 24px 48px;
  border-radius: 100px;
  font-size: 1.25rem;
  width: fit-content;
  position: relative;
  top: -32px;
}

.video-overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 43, 62, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-overlay-modal.active {
  opacity: 1;
  visibility: visible;
}
.video-overlay-modal .video-overlay-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
}
.video-overlay-modal .video-overlay-close-top {
  position: fixed;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  color: #FFFFFF;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}
.video-overlay-modal .video-overlay-close-top:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.video-overlay-modal .video-overlay-close-top:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
}
.video-overlay-modal .video-overlay-close-top svg {
  width: 32px;
  height: 32px;
}
.video-overlay-modal .video-overlay-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 10000;
}
.video-overlay-modal .video-overlay-close:hover {
  opacity: 0.7;
}
.video-overlay-modal .video-overlay-close svg {
  width: 24px;
  height: 24px;
}
.video-overlay-modal .video-container {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.video-overlay-modal .video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.thematiques {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
  padding: 96px 0;
}
.thematiques > .content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 35%;
}
.thematiques > .content img {
  width: 80px;
}
.thematiques > .content h2 {
  font-size: 2rem;
  font-weight: 700;
}
.thematiques > .content p {
  font-size: 1.125rem;
  line-height: 160%;
  max-width: 90%;
}
.thematiques .dropdown-container {
  width: 60%;
  background-image: url(../images/pulse-line.png);
  background-size: 32%;
  background-position: center left;
  background-repeat: no-repeat;
}
.thematiques .dropdown {
  background-color: #CBBBA0;
  border-radius: 24px;
  padding: 40px 48px;
  color: #0C2B3E;
  display: flex;
  flex-direction: column;
  width: 82%;
  box-sizing: border-box;
  margin: 0 0 0 auto;
}
.thematiques .dropdown-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(12, 43, 62, 0.6);
  position: relative;
}
.thematiques .dropdown-item:last-child {
  border-bottom: none;
}
.thematiques .dropdown-item::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 24px;
  font-size: 1.75rem;
  font-weight: 600;
  cursor: pointer;
  pointer-events: none;
}
.thematiques .dropdown-item.open::after {
  content: "-";
}
.thematiques .dropdown-item button.dropdown-header {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  width: 100%;
  font-family: inherit;
  color: inherit;
}
.thematiques .dropdown-item button.dropdown-header:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
.thematiques .dropdown-item .content {
  width: 100%;
  line-height: 1.5;
  overflow: hidden;
}
.thematiques .dropdown-item h4 {
  font-size: 1.25rem;
  margin-top: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.thematiques .dropdown-item > p {
  font-size: 1.125rem;
  line-height: 160%;
  color: #0C2B3E;
}
.thematiques .dropdown-item .dropdown-content {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1px;
}
.thematiques .dropdown-item .time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.thematiques .dropdown-item .time img {
  width: 44px;
  height: 44px;
}
.thematiques .dropdown-item .time p {
  font-size: 0.9375rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  height: fit-content;
}
.thematiques .dropdown-item .time p span {
  font-size: 1.375rem;
  font-weight: 700;
  margin-right: 4px;
}

.faq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  padding: 96px 0 120px;
}
.faq > .content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 35%;
}
.faq > .content h2 {
  font-size: 2rem;
  font-weight: 700;
}
.faq > .content p {
  font-size: 1.125rem;
  line-height: 160%;
  max-width: 90%;
}
.faq .dropdown-faq-container {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq .dropdown-faq {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.faq .dropdown-faq:last-child {
  border-bottom: none;
}
.faq .dropdown-faq::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 24px;
  font-size: 1.75rem;
  font-weight: 600;
  cursor: pointer;
  pointer-events: none;
}
.faq .dropdown-faq.open {
  padding: 24px 0 24px;
}
.faq .dropdown-faq.open::after {
  content: "-";
}
.faq .dropdown-faq button.dropdown-faq-header {
  font-size: 1.25rem;
  font-weight: 400;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  width: 100%;
  font-family: inherit;
  color: inherit;
}
.faq .dropdown-faq button.dropdown-faq-header:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  border-radius: 4px;
}
.faq .dropdown-faq button.dropdown-faq-header span {
  font-weight: 700;
}
.faq .dropdown-faq p {
  font-size: 1.125rem;
  line-height: 160%;
  margin-top: 16px;
  opacity: 0.8;
  overflow: hidden;
}
.faq .dropdown-faq p span {
  font-weight: 700;
}
.faq .dropdown-faq ul {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 24px;
  opacity: 0.8;
  list-style-type: disc;
}
.faq .dropdown-faq ul li {
  font-size: 1.125rem;
  line-height: 160%;
  margin-bottom: 8px;
}
.faq .dropdown-faq ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .carrousel .tabs-content {
    min-height: 250px;
  }
  .carrousel .tabs-content .common-images-container {
    height: 250px;
  }
  .carrousel .tabs-content .content .image-container {
    height: 250px;
  }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    height: fit-content;
    padding: 12vh 0 20vh;
  }
  .hero .hero-content {
    width: 100%;
  }
  .hero .hero-image-container {
    display: none;
  }
  .carrousel {
    padding: 16px 32px;
    flex-direction: column-reverse;
  }
  .carrousel .carrousel-arrows {
    top: auto;
    bottom: 4px;
    transform: none;
  }
  .carrousel .tabs-content .common-images-container {
    display: none;
  }
  .carrousel .tabs-content .carrousel-slides .content {
    flex-direction: column-reverse;
    align-items: baseline;
    justify-content: flex-end;
    padding: 32px 0;
  }
  .carrousel .tabs-content .carrousel-slides .content .text-content {
    width: 100%;
  }
  .carrousel .tabs-content .carrousel-slides .content .image-container {
    display: none;
  }
  .what-is-pulse {
    padding: 20vh 0;
  }
  .what-is-pulse h2 {
    max-width: 96%;
  }
  .what-is-pulse .cards-list {
    flex-direction: column;
    width: 80%;
    gap: 32px;
  }
  .what-is-pulse .cards-list .card {
    width: 100%;
  }
  .what-is-pulse .cards-list .card .card-front {
    padding: 32px;
  }
  .what-is-pulse .cards-list .card .card-front img {
    width: 16vw;
  }
  .what-is-pulse .cards-list .card .card-front p {
    font-size: 1.25rem;
  }
  .about {
    width: 100%;
    padding: 32px 0;
  }
  .about .about-content-container {
    flex-direction: column;
    gap: 24px;
  }
  .about .about-content-container .about-content {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .about .about-content-container .about-content p {
    max-width: 96%;
  }
  .about .about-content-container .about-video {
    width: 100%;
  }
  .thematiques {
    flex-direction: column;
    padding: 64px 0 32px;
  }
  .thematiques > .content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .thematiques .dropdown-container {
    width: 100%;
    background-image: none;
  }
  .thematiques .dropdown-container .dropdown {
    padding: 24px;
    width: 100%;
  }
  .thematiques .dropdown-item .dropdown-content {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .thematiques .dropdown-item .dropdown-content a {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
  .faq {
    flex-direction: column;
    padding: 64px 0 32px;
  }
  .faq > .content {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .faq .dropdown-faq-container {
    width: 100%;
  }
}
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  color: #FFFFFF;
}
.scroll-to-top:hover {
  transform: translateY(-4px);
  opacity: 1 !important;
}
.scroll-to-top:focus-visible {
  outline: 3px solid #FE7201;
  outline-offset: 2px;
  opacity: 1 !important;
  visibility: visible !important;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .scroll-to-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

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