@charset "UTF-8";
@keyframes fadeInMove {
  0% {
    opacity: 0;
    transform: translate3d(var(--translateX, 0), var(--translateY, 0), 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.has-reveal-child {
  overflow: hidden;
  padding-bottom: 0.07em;
}

.scrollAnimation {
  opacity: 0;
}
.scrollAnimation .animated {
  opacity: 1;
}

span.revealUp,
span.revealDown,
span.revealLeft,
span.revealRight {
  display: block;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  /* Correction : Valeurs par défaut */
  --translateX: 0;
  --translateY: 0;
  /* Délais d'animation définis explicitement */
}
.animated.fadeIn {
  animation-name: fadeInMove;
}
.animated.fadeInUp {
  --translateY: 30px;
  animation-name: fadeInMove;
}
.animated.fadeInDown {
  --translateY: -30px;
  animation-name: fadeInMove;
}
.animated.fadeInRight {
  --translateX: 30px;
  animation-name: fadeInMove;
}
.animated.fadeInLeft {
  --translateX: -30px;
  animation-name: fadeInMove;
}
.animated.zoomIn {
  animation-name: zoomIn;
}
.animated.revealUp {
  --translateY: 100%;
  animation-name: fadeInMove;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.animated.revealDown {
  --translateY: -100%;
  animation-name: fadeInMove;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.animated.revealLeft {
  --translateX: -100%;
  animation-name: fadeInMove;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.animated.revealRight {
  --translateX: 100%;
  animation-name: fadeInMove;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.animated.delay-02 {
  animation-delay: 0.2s;
}
.animated.delay-04 {
  animation-delay: 0.4s;
}
.animated.delay-05 {
  animation-delay: 0.5s;
}
.animated.delay-06 {
  animation-delay: 0.6s;
}
.animated.delay-08 {
  animation-delay: 0.8s;
}
.animated.delay-1 {
  animation-delay: 1s;
}
.animated.delay-12 {
  animation-delay: 1.2s;
}
.animated.delay-14 {
  animation-delay: 1.4s;
}
.animated.delay-15 {
  animation-delay: 1.5s;
}
.animated.delay-16 {
  animation-delay: 1.6s;
}
.animated.delay-18 {
  animation-delay: 1.8s;
}
.animated.delay-2 {
  animation-delay: 2s;
}

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

body {
  font-family: "General Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  color: #1E2F48;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-MediumItalic.woff2") format("woff2"), url("../fonts/GeneralSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Medium.woff2") format("woff2"), url("../fonts/GeneralSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-SemiboldItalic.woff2") format("woff2"), url("../fonts/GeneralSans-SemiboldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Semibold.woff2") format("woff2"), url("../fonts/GeneralSans-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.rellax {
  -webkit-transition: transform 6s cubic-bezier(0, 1, 0.5, 1);
  transition: transform 6s cubic-bezier(0, 1, 0.5, 1);
}

.flex {
  display: flex;
}

.flexwrap {
  display: flex;
  flex-wrap: wrap;
}

body:before {
  background: rgba(0, 0, 0, 0.25);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: all 0.5s ease;
  width: 100%;
}
body.menu-open:before {
  opacity: 1;
}

a {
  color: #1E2F48;
  transition: all 0.3s ease;
}

.site-header {
  background-color: #fff;
  border-bottom: 1px solid #CDD1DB;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.site-header a {
  text-decoration: none;
}
.site-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .site-header__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1280px) {
  .site-header__inner {
    padding: 0 80px;
  }
}
@media (min-width: 1440px) {
  .site-header__inner {
    padding: 0 144px;
  }
}
.site-header__logo {
  flex-shrink: 0;
  padding: 24px 0;
}
.site-header__logo-link {
  color: #1D2135;
  font-family: "Big Shoulders Text", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.24px;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .site-header__logo-link {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .site-header__logo-link {
    font-size: 24px;
  }
}
.site-header__nav {
  align-items: stretch;
  display: none;
  height: 88px;
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
  }
}
.site-header__nav-list {
  align-items: stretch;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}
@media (min-width: 1280px) {
  .site-header__nav-list {
    gap: 8px;
  }
}
@media (min-width: 1440px) {
  .site-header__nav-list {
    gap: 12px;
  }
}
.site-header__nav-item {
  align-items: center;
  display: flex;
  position: static;
}
.site-header__nav-item.is-open > .site-header__nav-link {
  color: #1D2135;
}
.site-header__nav-item.is-open > .site-header__nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}
.site-header__nav-link {
  align-items: center;
  color: #1D2135;
  cursor: pointer;
  display: flex;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 21px;
  padding: 0 8px;
  position: relative;
  white-space: nowrap;
}
@media (min-width: 1440px) {
  .site-header__nav-link {
    font-size: 15px;
    padding: 0 10px;
  }
}
.site-header__nav-link::after {
  background-color: #1D2135;
  bottom: 0;
  content: "";
  height: 2px;
  left: 8px;
  opacity: 0;
  position: absolute;
  right: 8px;
  transform: scaleX(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-dropdown {
  background-color: #1D2135;
  display: flex;
  gap: 24px;
  left: 0;
  opacity: 0;
  padding: 32px 20px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 100%;
  z-index: 9998;
}
@media (min-width: 768px) {
  .header-dropdown {
    padding: 32px 40px;
  }
}
@media (min-width: 1280px) {
  .header-dropdown {
    padding: 48px 80px;
  }
}
@media (min-width: 1440px) {
  .header-dropdown {
    padding: 48px 144px;
  }
}
.site-header__nav-item.is-open .header-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header-dropdown__title {
  color: #fff;
  flex: 1;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0;
  max-width: 220px;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .header-dropdown__title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .header-dropdown__title {
    font-size: 40px;
    line-height: 48px;
    max-width: none;
  }
}
.header-dropdown__cols {
  display: flex;
  flex: 3;
  flex-wrap: wrap;
  gap: 24px;
}
.header-dropdown__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 180px;
}
@media (min-width: 1440px) {
  .header-dropdown__col {
    min-width: 220px;
    width: 342px;
  }
}
.header-dropdown__col-title {
  color: #787E91;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.16px;
  line-height: 24px;
  margin: 0;
}
@media (min-width: 1440px) {
  .header-dropdown__col-title {
    font-size: 16px;
  }
}
.header-dropdown__col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.header-dropdown__col-links li {
  list-style: none;
}
.header-dropdown__col-links a {
  color: #fff;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.16px;
  line-height: 24px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
@media (min-width: 1440px) {
  .header-dropdown__col-links a {
    font-size: 16px;
  }
}
.header-dropdown__col-links a:hover {
  opacity: 0.65;
}

body.header-open::before {
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  content: "";
  left: 0;
  position: fixed;
  right: 0;
  top: 88px;
  z-index: 9997;
}

.site-footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.wrapper {
  margin: 0 auto;
  padding: 0 60px;
  max-width: 1520px;
  width: 100%;
}

/* 2560px et plus */
@media (max-width: 2560px) {
  /* Styles pour écrans très larges */
}
/* 1920px et plus */
@media (max-width: 1920px) {
  /* Styles pour full HD */
}
/* 1600px */
@media (max-width: 1600px) {
  /* Ajustements desktop */
}
/* 1440px */
@media (max-width: 1440px) {
  /* Laptops grands */
}
/* 1366px - commun pour laptops */
@media (max-width: 1366px) {
  /* Ajustements layout */
}
/* 1280px */
@media (max-width: 1280px) {
  #burger {
    display: block;
  }
}
/* 1024px - tablettes en mode paysage ou petits laptops */
@media (max-width: 1024px) {
  /* Ajustements layout */
}
/* 768px - tablettes portrait */
@media (max-width: 768px) {
  /* Layouts pour tablettes portrait */
}
/* 600px - petits tablettes ou grands smartphones */
@media (max-width: 600px) {
  /* Ajustements responsive */
}
/* 480px - smartphones portrait classiques */
@media (max-width: 480px) {
  /* Layout mobile classique */
}
/* 360px - petits smartphones */
@media (max-width: 360px) {
  /* Ajustements pour petits écrans */
}
/* 320px et moins */
@media (max-width: 320px) {
  /* Ajustements spécifiques */
}

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