@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 {
  left: 0;
  padding: clamp(14px, 2.2vw, 24px) clamp(20px, 4vw, 56px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
}
.site-header ul {
  list-style: none;
}
.site-header a {
  text-decoration: none;
}
.site-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.site-header__branding {
  display: flex;
  flex-shrink: 0;
}
.site-header__logo {
  color: #1E2F48;
  display: block;
  line-height: 0;
  width: clamp(96px, 20vw, 144px);
}
.site-header__logo svg {
  display: block;
  height: auto;
  width: 100%;
}
.site-header__burger {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.site-header__burger span {
  background-color: #1E2F48;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: all 0.3s 0s ease;
  width: 24px;
}
.site-header__burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.site-header__burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .site-header__burger {
    display: none;
  }
}
.site-header__nav {
  align-items: stretch;
  background-color: #fff;
  border-bottom: 1px solid rgb(199, 203, 209);
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 0;
  opacity: 0;
  padding: clamp(14px, 2.2vw, 24px) clamp(20px, 4vw, 56px);
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateY(-8px);
  transition: all 0.3s 0s ease;
  width: 100%;
}
@media (min-width: 1024px) {
  .site-header__nav {
    align-items: center;
    background-color: transparent;
    border-bottom: 0;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-end;
    opacity: 1;
    padding: 0;
    pointer-events: initial;
    position: static;
    transform: none;
    width: auto;
  }
}

body.menu-open .site-header__nav {
  opacity: 1;
  pointer-events: initial;
  transform: translateY(0);
}

.nav-pill {
  align-items: stretch;
  background-color: #000;
  border: 1px solid #505050;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 3px;
}
@media (min-width: 1024px) {
  .nav-pill {
    align-items: center;
    flex: 1 0 0;
    flex-direction: row;
  }
}
.nav-pill__menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1024px) {
  .nav-pill__menu {
    align-items: center;
    flex: 1 0 0;
    flex-direction: row;
    justify-content: space-between;
    min-width: 0;
  }
}
.nav-pill__menu li {
  display: flex;
}
.nav-pill__menu > li > a {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 320px) / (1440 - 320), 18px);
  align-items: center;
  border-radius: 4px;
  color: #f0f0f0;
  display: flex;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  letter-spacing: -0.18px;
  line-height: 1.5;
  padding: 12px;
  transition: all 0.3s 0s ease;
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 1024px) {
  .nav-pill__menu > li > a {
    width: auto;
  }
}
.nav-pill__menu > li > a:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.nav-pill__menu > li.mega-menu-parent {
  position: relative;
}
.nav-pill__menu > li.mega-menu-parent.active > a svg {
  transform: rotateX(180deg);
}
.nav-pill__menu > li.mega-menu-parent.active > ul.sub-menu {
  opacity: 1;
  pointer-events: initial;
}
.nav-pill__menu > li.mega-menu-parent .arrow {
  display: none;
}
.nav-pill__menu > li.mega-menu-parent > ul.sub-menu {
  background-color: #fff;
  display: flex;
  left: 0;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  transition: all 0.3s 0s ease;
  z-index: 10;
}
@media (min-width: 1024px) {
  .nav-pill__menu > li.mega-menu-parent > ul.sub-menu {
    padding: 72px 0;
    top: calc(100% + 12px);
    width: 100vw;
  }
}
.nav-pill__menu > li.mega-menu-parent > ul.sub-menu li > a {
  color: #1E2F48;
}
.nav-pill__cta {
  align-items: center;
  background-color: #e6e6e6;
  border-radius: 4px;
  color: #000;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 12px 14px;
  transition: all 0.3s 0s ease;
}
.nav-pill__cta:hover {
  background-color: #d7d7d7;
}
.nav-pill__cta-icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 20px;
  width: 20px;
}
.nav-pill__cta-icon svg {
  display: block;
  height: 100%;
  width: 100%;
}
.nav-pill__cta-label {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 320px) / (1440 - 320), 18px);
  font-family: "Rethink Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.18px;
  line-height: 1.5;
  white-space: nowrap;
}

.utility-pill {
  align-items: center;
  background-color: #000;
  border: 1px solid #505050;
  border-radius: 6px;
  display: flex;
  gap: 2px;
  padding: 3px;
}
.utility-pill__icon-link {
  align-items: center;
  border-radius: 4px;
  color: #f0f0f0;
  display: flex;
  flex-shrink: 0;
  height: 51px;
  justify-content: center;
  transition: all 0.3s 0s ease;
  width: 51px;
}
.utility-pill__icon-link svg {
  display: block;
  height: 20px;
  width: 20px;
}
.utility-pill__icon-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.utility-pill__divider {
  align-self: stretch;
  background-color: #505050;
  flex-shrink: 0;
  width: 1px;
}

.lang-switcher {
  position: relative;
}
.lang-switcher__current {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 4px;
  color: #f0f0f0;
  cursor: pointer;
  display: flex;
  gap: 8px;
  padding: 12px;
  transition: all 0.3s 0s ease;
}
.lang-switcher__current svg {
  display: block;
  flex-shrink: 0;
  height: 20px;
  width: 20px;
}
.lang-switcher__current:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.lang-switcher__code {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 320px) / (1440 - 320), 18px);
  font-family: "Rethink Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.18px;
  line-height: 1.5;
  white-space: nowrap;
}
.lang-switcher__list {
  background-color: #000;
  border: 1px solid #505050;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  min-width: 64px;
  opacity: 0;
  overflow: hidden;
  padding: 4px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(-4px);
  transition: all 0.2s 0s ease;
  z-index: 10;
}
.lang-switcher__list a {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 320px) / (1440 - 320), 18px);
  border-radius: 4px;
  color: #f0f0f0;
  display: block;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 500;
  padding: 8px 12px;
}
.lang-switcher__list a:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.lang-switcher.is-open .lang-switcher__list, .lang-switcher:hover .lang-switcher__list, .lang-switcher:focus-within .lang-switcher__list {
  opacity: 1;
  pointer-events: initial;
  transform: translateY(0);
}

.site-footer {
  background-color: #fff;
  border-top: 1px solid #c8c8c8;
  color: #222;
}
.site-footer ul {
  list-style: none;
}
.site-footer a {
  text-decoration: none;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.site-footer__slogan {
  border-bottom: 1px solid #c8c8c8;
  padding: clamp(24px, 5vw, 64px) clamp(20px, 4vw, 56px);
}
@media (min-width: 1024px) {
  .site-footer__slogan {
    border-right: 1px solid #c8c8c8;
  }
}
.site-footer__slogan-text {
  font-size: clamp(28px, 28px + (56 - 28) * (100vw - 320px) / (1440 - 320), 56px);
  font-family: "Rethink Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.site-footer__links {
  border-bottom: 1px solid #c8c8c8;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__links {
    grid-template-columns: 1fr 1fr;
  }
}
.site-footer__links-col {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 56px);
}
.site-footer__links-col:first-child {
  border-bottom: 1px solid #c8c8c8;
}
@media (min-width: 768px) {
  .site-footer__links-col:first-child {
    border-bottom: 0;
    border-right: 1px solid #c8c8c8;
  }
}
.site-footer__credits {
  align-items: flex-start;
  border-bottom: 1px solid #c8c8c8;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(16px, 2.5vw, 24px) clamp(20px, 4vw, 56px);
}
@media (min-width: 1024px) {
  .site-footer__credits {
    align-items: center;
    flex-direction: row;
    grid-column: 1/-1;
    justify-content: space-between;
  }
}
.site-footer__copyright {
  font-size: 14px;
  margin: 0;
}
.site-footer__credit-link {
  color: #222;
  text-decoration: underline;
}
.site-footer__credit-link:hover {
  opacity: 0.7;
}
.site-footer__legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px clamp(12px, 2vw, 24px);
  margin: 0;
  padding: 0;
}
.site-footer__legal-menu a {
  color: #222;
  font-size: 14px;
}
.site-footer__legal-menu a:hover {
  text-decoration: underline;
}
.site-footer__logo {
  padding: clamp(24px, 5vw, 48px) clamp(20px, 4vw, 56px);
}
@media (min-width: 1024px) {
  .site-footer__logo {
    grid-column: 1/-1;
  }
}
.site-footer__logo svg {
  display: block;
  height: auto;
  width: 100%;
}

.footer-list__label {
  color: rgba(34, 34, 34, 0.6);
  font-family: "Rethink Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.footer-list__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.footer-list__menu a {
  color: #222;
  transition: all 0.3s 0s ease;
}
.footer-list__menu a:hover {
  opacity: 0.6;
}
.footer-list__menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0 0 0 16px;
}

.footer-lang__label {
  color: rgba(34, 34, 34, 0.6);
  font-family: "Rethink Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.footer-lang__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.footer-lang__list a {
  color: #222;
  transition: all 0.3s 0s ease;
}
.footer-lang__list a:hover {
  opacity: 0.6;
}
.footer-lang__list li.is-active a {
  font-weight: 600;
}

.footer-social__label {
  color: rgba(34, 34, 34, 0.6);
  font-family: "Rethink Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.footer-social__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.footer-social__list a {
  align-items: center;
  color: #222;
  display: flex;
  height: 32px;
  justify-content: center;
  transition: all 0.3s 0s ease;
  width: 32px;
}
.footer-social__list a:hover {
  opacity: 0.6;
}
.footer-social__list a svg,
.footer-social__list a img {
  display: block;
  height: 20px;
  object-fit: contain;
  width: 20px;
}

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

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  background-color: #e6e6e6;
  color: #1E2F48;
  transition: all 0.3s 0s ease;
}
.button-link:hover {
  opacity: 0.85;
}

.hero__button {
  background-color: #000;
  color: #f0f0f0;
}

.component-hero {
  padding-top: clamp(96px, 14vw, 148px);
}

.hero__container {
  display: flex;
  justify-content: flex-end;
  padding-bottom: clamp(24px, 4vw, 48px);
}
.hero__content {
  width: 100%;
  max-width: 578px;
  text-align: left;
}
.hero__title {
  font-size: clamp(32px, 32px + (72 - 32) * (100vw - 320px) / (1440 - 320), 72px);
  color: #1E2F48;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 600;
  line-height: 1.1;
}
.hero__subtitle {
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 320px) / (1440 - 320), 24px);
  color: #1E2F48;
  margin-top: clamp(12px, 2vw, 20px);
}
.hero__cta {
  margin-top: clamp(20px, 3vw, 32px);
}
.hero__media-wrapper {
  padding-bottom: clamp(32px, 5vw, 80px);
}
.hero__media-img {
  width: 100%;
  height: clamp(280px, 42vw, 880px);
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.component-produits-vedettes {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

.produits-vedettes__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: clamp(32px, 5vw, 56px);
}
@media (min-width: 1024px) {
  .produits-vedettes__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.produits-vedettes__kicker {
  font-family: "General Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(30, 47, 72, 0.5);
  margin-bottom: 8px;
}
.produits-vedettes__title {
  font-size: clamp(28px, 28px + (40 - 28) * (100vw - 320px) / (1440 - 320), 40px);
  color: #1E2F48;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 600;
  line-height: 1.15;
}
.produits-vedettes__button {
  flex-shrink: 0;
}
.produits-vedettes__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: clamp(24px, 4vw, 32px);
}
@media (min-width: 1024px) {
  .produits-vedettes__grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(24px, 4vw, 48px);
    row-gap: 0;
  }
}

.card-produit {
  border-top: 1px solid rgba(30, 47, 72, 0.12);
  padding-top: clamp(20px, 3vw, 28px);
}
@media (min-width: 1024px) {
  .card-produit {
    border-top: 0;
    border-left: 1px solid rgba(30, 47, 72, 0.12);
    padding-top: 0;
    padding-left: clamp(24px, 4vw, 48px);
  }
}
.card-produit:first-child {
  border-top: 0;
}
@media (min-width: 1024px) {
  .card-produit:first-child {
    border-left: 0;
    padding-left: 0;
  }
}
.card-produit__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-produit__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.card-produit__tag {
  font-family: "General Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #30ADF9;
}
.card-produit__accessoires {
  font-family: "General Sans", sans-serif;
  font-size: 13px;
  color: rgba(30, 47, 72, 0.5);
}
.card-produit__title {
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / (1440 - 320), 22px);
  font-family: "Rethink Sans", sans-serif;
  font-weight: 600;
  color: #1E2F48;
  margin-bottom: 8px;
}
.card-produit__description {
  font-family: "General Sans", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(30, 47, 72, 0.7);
}

.component-ou-acheter {
  background-color: #141414;
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

.ou-acheter__container {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
}
@media (min-width: 1024px) {
  .ou-acheter__container {
    flex-direction: row;
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
  }
}
.ou-acheter__media {
  width: 100%;
}
@media (min-width: 1024px) {
  .ou-acheter__media {
    flex: 1 1 50%;
  }
}
.ou-acheter__media-img {
  width: 100%;
  height: clamp(240px, 32vw, 480px);
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.ou-acheter__content {
  width: 100%;
}
@media (min-width: 1024px) {
  .ou-acheter__content {
    flex: 1 1 50%;
  }
}
.ou-acheter__kicker {
  font-family: "General Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: clamp(12px, 2vw, 20px);
}
.ou-acheter__paragraphe {
  font-size: clamp(20px, 20px + (32 - 20) * (100vw - 320px) / (1440 - 320), 32px);
  color: #fff;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}
.ou-acheter__paragraphe p:not(:last-child) {
  margin-bottom: 1em;
}
.ou-acheter__cta {
  margin-top: clamp(24px, 4vw, 40px);
}

.component-a-propos {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

.a-propos__intro {
  max-width: 960px;
}
.a-propos__title {
  font-size: clamp(36px, 36px + (80 - 36) * (100vw - 320px) / (1440 - 320), 80px);
  color: #1E2F48;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  text-indent: clamp(24px, 6vw, 96px);
}
.a-propos__paragraphe {
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 320px) / (1440 - 320), 24px);
  color: rgba(30, 47, 72, 0.7);
  margin-top: clamp(16px, 3vw, 32px);
}
.a-propos__paragraphe p:not(:last-child) {
  margin-bottom: 1em;
}
.a-propos__savoir-faire {
  margin-top: clamp(48px, 6vw, 96px);
}
.a-propos__savoir-faire-title {
  font-size: clamp(24px, 24px + (32 - 24) * (100vw - 320px) / (1440 - 320), 32px);
  color: #1E2F48;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 600;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.a-propos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 32px);
}
@media (min-width: 1024px) {
  .a-propos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-savoir-faire {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.card-savoir-faire__icon {
  width: clamp(40px, 4vw, 56px);
  height: clamp(40px, 4vw, 56px);
}
.card-savoir-faire__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.card-savoir-faire__title {
  font-family: "General Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1E2F48;
}

.component-evenements {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

.evenements__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: clamp(32px, 5vw, 56px);
}
@media (min-width: 1024px) {
  .evenements__header {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
}
.evenements__intro {
  color: rgba(30, 47, 72, 0.7);
  font-family: "General Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .evenements__intro {
    text-align: right;
  }
}
.evenements__button {
  flex-shrink: 0;
}
.evenements__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: clamp(24px, 4vw, 32px);
}
@media (min-width: 1024px) {
  .evenements__grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(24px, 4vw, 48px);
    row-gap: 0;
  }
}

.card-evenement {
  border-top: 1px solid rgba(30, 47, 72, 0.12);
  padding-top: clamp(20px, 3vw, 28px);
}
@media (min-width: 1024px) {
  .card-evenement {
    border-top: 0;
    border-left: 1px solid rgba(30, 47, 72, 0.12);
    padding-top: 0;
    padding-left: clamp(24px, 4vw, 48px);
  }
}
.card-evenement:first-child {
  border-top: 0;
}
@media (min-width: 1024px) {
  .card-evenement:first-child {
    border-left: 0;
    padding-left: 0;
  }
}
.card-evenement__media {
  margin-bottom: clamp(16px, 3vw, 24px);
  overflow: hidden;
  border-radius: 8px;
}
.card-evenement__media-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.card-evenement__tag {
  display: inline-block;
  font-family: "General Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #30ADF9;
  margin-bottom: 8px;
}
.card-evenement__title {
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / (1440 - 320), 22px);
  font-family: "Rethink Sans", sans-serif;
  font-weight: 600;
  color: #1E2F48;
  margin-bottom: 8px;
}
.card-evenement__date {
  display: block;
  font-family: "General Sans", sans-serif;
  font-size: 15px;
  color: rgba(30, 47, 72, 0.7);
}

.component-cta {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

.cta__container {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 64px);
  background-color: #141414;
  border-radius: 24px;
  padding: clamp(32px, 6vw, 80px);
}
@media (min-width: 1024px) {
  .cta__container {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(32px, 4vw, 48px);
  }
}
.cta__title {
  font-size: clamp(40px, 40px + (104 - 40) * (100vw - 320px) / (1440 - 320), 104px);
  color: #fff;
  font-family: "Rethink Sans", sans-serif;
  font-weight: 600;
  line-height: 1.05;
}
@media (min-width: 1024px) {
  .cta__title {
    flex: 1 1 auto;
    max-width: 55%;
  }
}
.cta__content {
  width: 100%;
}
@media (min-width: 1024px) {
  .cta__content {
    flex: 0 0 auto;
    max-width: 380px;
  }
}
.cta__paragraphe {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 320px) / (1440 - 320), 18px);
  color: rgba(255, 255, 255, 0.7);
  font-family: "General Sans", sans-serif;
}
.cta__paragraphe p:not(:last-child) {
  margin-bottom: 1em;
}
.cta__cta {
  margin-top: clamp(20px, 3vw, 32px);
}

/* 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 */
