@charset "UTF-8";
/**
 * Point d'entrée principal des styles
 * 
 * Architecture:
 * - 01-base: Variables, fonts, reset, typography, layout
 * - 02-components: Composants réutilisables (buttons, heading-group, etc.)
 * - 03-sections: Sections spécifiques (hero, etc.)
 * - parts: Header, footer et autres parties du thème
 */
:root {
  --font-fallback: sans-serif;
  --color-black: #242627;
  --color-primary: #1d4736;
  --color-secondary: #7a4939;
  --color-primary-light: #f0f5f3;
  --color-secondary-light: #f5f1f0;
  --color-white: #ffffff;
  --color-grey: #e8e8e8;
  --font-size-h1: 56px;
  --font-size-h2: 40px;
  --font-size-h3: 32px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-h6: 16px;
  --font-size-p: 16px;
  --font-size-small: 14px;
  --font-size-tiny: 12px;
  --spacing-vertical-small: 64px;
  --spacing-vertical-medium: 96px;
  --spacing-vertical-large: 128px;
  --spacing-horizontal-small: 16px;
  --spacing-horizontal-medium: 40px;
}

@media (max-width: 1024px) {
  :root {
    --spacing-vertical-small: 48px;
    --spacing-vertical-medium: 64px;
    --spacing-vertical-large: 96px;
  }
}
@media (max-width: 767px) {
  :root {
    --font-size-h1: 40px;
    --font-size-h2: 32px;
    --spacing-horizontal-medium: 16px;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-Variable.woff2") format("woff2"), url("../fonts/inter/Inter-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/Inter-Italic-Variable.woff2") format("woff2"), url("../fonts/inter/Inter-Italic-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans/OpenSans-Variable.woff2") format("woff2"), url("../fonts/open-sans/OpenSans-Variable.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans/OpenSans-Italic-Variable.woff2") format("woff2"), url("../fonts/open-sans/OpenSans-Italic-Variable.ttf") format("truetype");
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root,
:root body {
  scroll-behavior: smooth !important;
}

html,
body {
  width: 100%;
  background: var(--color-white);
  margin: 0;
  padding: 0;
}

html {
  font-family: "Open Sans", var(--font-fallback);
  font-weight: 400;
  font-size: var(--font-size-p);
  line-height: 1.7;
  color: var(--color-black);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

p,
.paragraph {
  font-weight: 400;
  font-size: var(--font-size-p);
  line-height: 1.7;
}

h1,
.heading-1 {
  font-weight: 400;
  font-size: var(--font-size-h1);
  line-height: 1.2;
}
h1 strong,
.heading-1 strong {
  font-weight: 700;
  text-transform: uppercase;
}

h2,
.heading-2 {
  font-weight: 400;
  font-size: var(--font-size-h2);
  line-height: 1.25;
}

h3,
.heading-3 {
  font-weight: 400;
  font-size: var(--font-size-h3);
  line-height: 1.25;
}

h4,
.heading-4 {
  font-weight: 400;
  font-size: var(--font-size-h4);
  line-height: 1.25;
}

h5,
.heading-5 {
  font-weight: 400;
  font-size: var(--font-size-h5);
  line-height: 1.25;
}

h6,
.heading-6 {
  font-weight: 400;
  font-size: var(--font-size-h6);
  line-height: 1.25;
}

.layout-small {
  max-width: 956px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.layout-default {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.layout-full-width {
  max-width: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.spacing-vertical-small {
  margin-top: var(--spacing-vertical-small);
  margin-bottom: var(--spacing-vertical-small);
}

.spacing-vertical-medium {
  margin-top: var(--spacing-vertical-medium);
  margin-bottom: var(--spacing-vertical-medium);
}

.spacing-vertical-large {
  margin-top: var(--spacing-vertical-large);
  margin-bottom: var(--spacing-vertical-large);
}

.spacing-horizontal-small {
  padding-left: var(--spacing-horizontal-small);
  padding-right: var(--spacing-horizontal-small);
}

.spacing-horizontal-medium {
  padding-left: var(--spacing-horizontal-medium);
  padding-right: var(--spacing-horizontal-medium);
}

.button {
  display: inline-block;
  padding: 12px 32px;
  font-family: "Inter", var(--font-fallback);
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  background-color: var(--color-primary);
  color: var(--color-primary-light);
  border: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.button.button-secondary {
  background-color: var(--color-secondary);
  color: var(--color-secondary-light);
}
.button.button-white {
  background-color: var(--color-white);
  color: var(--color-black);
}
.button.button-arrow::after {
  content: "→";
  margin-left: 0.3em;
}

.heading-group {
  margin-bottom: var(--spacing-vertical-small);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.heading-group .heading-group__subtitle {
  font-size: var(--font-size-h6);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--color-primary);
}
.heading-group .heading-group__title {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.25;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__surtitle {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section__title {
  font-weight: 600;
  color: var(--color-black);
}

.frm-fluent-form {
  --fluentform-primary: var(--color-primary);
}

.frm-fluent-form .ff-el-input--label {
  color: var(--color-primary);
  margin-left: 12px;
}

.frm-fluent-form .ff-el-input--content .ff-el-form-control {
  background-color: var(--color-primary-light);
  border-radius: 8px;
  padding: 12px 32px;
  border: 1px solid var(--color-grey);
  font-size: 16px;
  line-height: 1.7;
}

.frm-fluent-form .ff-btn-submit {
  display: inline-block;
  padding: 12px 32px;
  font-family: "Inter", var(--font-fallback);
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  background-color: var(--color-primary);
  color: var(--color-primary-light);
  border: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 16px;
}
.frm-fluent-form .ff-btn-submit:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.hero-accueil {
  width: 100%;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: var(--spacing-vertical-small);
}
@media (max-width: 767px) {
  .hero-accueil {
    padding: 0;
  }
}

.hero-accueil__background {
  position: relative;
  width: 100%;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: calc(100vh - 92px);
  max-height: 900px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-accueil__background {
    height: auto;
    max-height: none;
    border-radius: 0;
  }
}

.hero-accueil__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-accueil__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media (max-width: 1024px) {
  .hero-accueil__content {
    padding: 75px 24px;
  }
}
@media (max-width: 767px) {
  .hero-accueil__content {
    padding: 56px 16px 80px;
  }
}

.hero-accueil__title {
  color: var(--color-white);
  margin: 0;
}

.hero-accueil__title-start {
  display: inline;
}

.hero-accueil__title-end {
  display: block;
}

.hero-accueil__title-animated {
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
  position: relative;
  vertical-align: bottom;
}

.hero-accueil__title-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero-accueil__title-slide {
  display: block;
  height: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-accueil__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}

.hero-accueil__box-link {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
@media (max-width: 375px) {
  .hero-accueil__box-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
}

.hero-accueil__box-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hero-accueil__box-image img {
  display: block;
  height: 48px;
  width: auto;
}
@media (max-width: 767px) {
  .hero-accueil__box-image img {
    height: 40px;
  }
}

.hero-accueil__box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.hero-accueil__box-text {
  margin: 0;
  color: var(--color-white);
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
}

.hero-accueil__box-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-accueil__star {
  width: 16px;
  height: 16px;
  display: block;
}

.hero-page {
  width: 100%;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: var(--spacing-vertical-small);
}
@media (max-width: 767px) {
  .hero-page {
    padding: 0;
  }
}

.hero-page__background {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-page__background {
    min-height: 300px;
    border-radius: 0;
  }
}

.hero-page__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-page__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media (max-width: 1024px) {
  .hero-page__content {
    padding: 120px 24px;
  }
}
@media (max-width: 767px) {
  .hero-page__content {
    padding: 60px 16px;
  }
}

.hero-page__title {
  color: var(--color-white);
  margin: 0;
}

.hero-page__description {
  color: var(--color-white);
  margin: 0;
  max-width: 630px;
}

.hero-contact {
  width: 100%;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: var(--spacing-vertical-small);
}
@media (max-width: 767px) {
  .hero-contact {
    padding: 0;
  }
}

.hero-contact__background {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-contact__background {
    min-height: 300px;
    border-radius: 0;
  }
}

.hero-contact__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-contact__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.hero-contact__image {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-contact__text {
  color: var(--color-white);
  text-align: center;
  width: 100%;
}

.hero-contact__text p {
  font-size: var(--font-size-h5);
}

.hero-contact__text a {
  color: var(--color-white);
}

.hero-contact__text p:not(:first-child) {
  margin-top: 16px;
}

.hero-contact__text p strong {
  font-weight: 900;
}

.liste-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.liste-logos__container {
  width: 100%;
}

.liste-logos__grid {
  display: grid;
  grid-template-columns: repeat(var(--cols-desktop, 6), 1fr);
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
@media (max-width: 1024px) {
  .liste-logos__grid {
    grid-template-columns: repeat(var(--cols-tablet, 3), 1fr);
    gap: 64px;
  }
}
@media (max-width: 767px) {
  .liste-logos__grid {
    grid-template-columns: repeat(var(--cols-mobile, 2), 1fr);
    gap: 40px 20px;
  }
}

.liste-logos__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.liste-logos__item img {
  padding: 9px;
}

.liste-logos__image {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (max-width: 767px) {
  .liste-logos--auto-scroll {
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .liste-logos--auto-scroll .liste-logos__container {
    overflow: hidden;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .liste-logos--auto-scroll .liste-logos__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 40px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    will-change: transform;
  }
}
@media (max-width: 767px) {
  .liste-logos--auto-scroll .liste-logos__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: auto;
  }
}
@media (max-width: 767px) {
  .liste-logos--auto-scroll .liste-logos__image {
    width: auto;
    max-width: none;
    height: 60px;
  }
}

.boxes-empilees {
  padding: 0 80px;
}
@media (max-width: 1024px) {
  .boxes-empilees {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .boxes-empilees {
    padding: 0 16px;
  }
}

.boxes-empilees__box {
  border-radius: 16px;
  min-height: 500px;
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  .boxes-empilees__box {
    position: sticky;
  }
}
.boxes-empilees__box.bg-black {
  background-color: var(--color-black);
  color: var(--color-white);
}
.boxes-empilees__box.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.boxes-empilees__box.bg-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.boxes-empilees__box.bg-custom {
  color: var(--color-white);
}
.boxes-empilees__box:last-child {
  margin-bottom: 0;
}

.boxes-empilees__box-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 80px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 500px;
  height: 100%;
}

.boxes-empilees__box-content {
  -ms-flex-preferred-size: 61%;
      flex-basis: 61%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding: 56px 32px;
}
@media (max-width: 1024px) {
  .boxes-empilees__box-content {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .boxes-empilees__box-content {
    padding: 16px;
  }
}

.boxes-empilees__box-title {
  font-weight: 700;
  margin: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.boxes-empilees__box-description {
  margin: 0;
}

.boxes-empilees__box-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.boxes-empilees__box-icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.boxes-empilees__box-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.boxes-empilees__box-icon i {
  font-size: 24px;
  color: inherit;
}

.boxes-empilees__box-icon-text {
  text-align: center;
  font-weight: 700;
  line-height: 1.15;
}

.boxes-empilees__box-icon-sub-text {
  margin: 0;
  font-style: italic;
  line-height: 1.15;
  text-align: center;
}

.boxes-empilees__box-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

.boxes-empilees__box-image-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.boxes-empilees__box-image-item:first-child {
  padding-right: 64px;
}
.boxes-empilees__box-image-item:nth-child(n+2) {
  padding-left: 64px;
  border-left: 3px solid var(--color-white);
}

.boxes-empilees__box-image-link {
  display: block;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.boxes-empilees__box-image-link:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.9;
}

.boxes-empilees__box-image {
  max-width: 200px;
  height: auto;
  border-radius: 16px;
  display: block;
}

.boxes-empilees__box-button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.boxes-empilees__box-media {
  position: relative;
  -ms-flex-preferred-size: 39%;
      flex-basis: 39%;
  max-width: 502px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.boxes-empilees__box-media iframe {
  width: 100%;
  height: 100%;
  border-radius: 0 16px 16px 0;
}
@media (max-width: 1024px) {
  .boxes-empilees__box-media {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    max-height: 32.55vw;
  }
  .boxes-empilees__box-media iframe {
    border-radius: 16px 16px 0 0;
  }
}
@media (max-width: 767px) {
  .boxes-empilees__box-media {
    max-height: 80vw;
  }
}
@media (max-width: 430px) {
  .boxes-empilees__box-media {
    max-height: 420px;
  }
}

.boxes-empilees__box-media-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0 16px 16px 0;
}

@media (max-width: 1024px) {
  .boxes-empilees__box {
    position: relative;
    min-height: 0;
    margin-bottom: 24px;
  }
  .boxes-empilees__box-inner {
    min-height: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 0;
  }
  .boxes-empilees__header {
    margin-bottom: 32px;
  }
  .boxes-empilees__box-media-image {
    border-radius: 16px 16px 0 0;
  }
}
@media (max-width: 767px) {
  .boxes-empilees__box-icons {
    grid-template-columns: 1fr 1fr;
  }
  .boxes-empilees__box-button {
    margin: 0 auto;
  }
  .boxes-empilees__box-images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
  .boxes-empilees__box-image-item:first-child {
    padding: 0;
    border: none;
  }
  .boxes-empilees__box-image-item:nth-child(n+2) {
    padding: 0;
    border: none;
  }
  .boxes-empilees__box-image-item:nth-child(n+2)::before {
    content: "";
    display: block;
    width: 75%;
    max-width: 132px;
    margin: 32px auto;
    height: 3px;
    background-color: var(--color-white);
  }
}
.boxes-horizontales__header {
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .boxes-horizontales__header {
    margin-bottom: 32px;
  }
}

.boxes-horizontales__surtitle {
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 16px 0;
}

.boxes-horizontales__title {
  color: var(--color-black);
  margin: 0;
}

.boxes-horizontales__blocs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  height: 600px;
}
@media (max-width: 1024px) {
  .boxes-horizontales__blocs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    height: auto;
    overflow: visible;
    position: relative;
  }
}

.boxes-horizontales__bloc {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-box-flex 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-flex 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transition: flex 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transition: flex 0.9s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-flex 0.9s cubic-bezier(0.4, 0, 0.2, 1), -ms-flex 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11.4%;
          flex: 0 0 11.4%;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .boxes-horizontales__bloc {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: auto;
    min-height: 80px;
    cursor: pointer;
    background-size: cover;
    -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
  }
}

@media (max-width: 1024px) {
  .boxes-horizontales__bloc:not(.is-active) {
    height: 80px;
    overflow: hidden;
    -ms-touch-action: auto;
        touch-action: auto;
  }
}

.boxes-horizontales__bloc.is-active {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  cursor: default;
}
@media (max-width: 1024px) {
  .boxes-horizontales__bloc.is-active {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    height: auto;
    min-height: 80px;
    overflow: visible;
    -ms-touch-action: auto;
        touch-action: auto;
    padding-top: 40vw;
    background-position-y: -40vw;
  }
}

.boxes-horizontales__bloc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .boxes-horizontales__bloc-overlay {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
}

.boxes-horizontales__bloc-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .boxes-horizontales__bloc-inner {
    min-height: 80px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.boxes-horizontales__bloc-title-vertical {
  position: absolute;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-writing-mode: sideways-lr;
      -ms-writing-mode: sideways-lr;
          writing-mode: sideways-lr;
  text-orientation: mixed;
  white-space: normal;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 24px;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
  max-height: calc(100% - 80px);
  overflow: hidden;
  text-align: center;
  font-weight: 700;
  z-index: 5;
}
@media (max-width: 1024px) {
  .boxes-horizontales__bloc-title-vertical {
    position: static;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-orientation: initial;
    -webkit-transform: none;
            transform: none;
    padding: 0 24px;
    max-height: none;
    -webkit-transition: none;
    transition: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    text-align: left;
  }
}

.boxes-horizontales__bloc.is-active .boxes-horizontales__bloc-title-vertical {
  opacity: 0;
}

.boxes-horizontales__bloc-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 24px;
  padding: 40px;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease 0.3s;
  transition: opacity 0.4s ease 0.3s;
}
@media (max-width: 1024px) {
  .boxes-horizontales__bloc-content {
    padding: 0 24px;
    padding-bottom: 0;
    gap: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: none;
    transition: none;
    -webkit-overflow-scrolling: auto;
    background-color: var(--color-primary);
    border-radius: 0 0 8px 8px;
  }
}

.boxes-horizontales__blocs--count-1 .boxes-horizontales__bloc-content {
  min-width: clamp(500px, 100vw - 160px, 1200px);
}
@media (max-width: 1024px) {
  .boxes-horizontales__blocs--count-1 .boxes-horizontales__bloc-content {
    min-width: 0;
  }
}

.boxes-horizontales__blocs--count-2 .boxes-horizontales__bloc-content {
  min-width: clamp(450px, 100vw - 242px, 1118px);
}
@media (max-width: 1024px) {
  .boxes-horizontales__blocs--count-2 .boxes-horizontales__bloc-content {
    min-width: 0;
  }
}

.boxes-horizontales__blocs--count-3 .boxes-horizontales__bloc-content {
  min-width: clamp(400px, 100vw - 404px, 956px);
}
@media (max-width: 1024px) {
  .boxes-horizontales__blocs--count-3 .boxes-horizontales__bloc-content {
    min-width: 0;
  }
}

.boxes-horizontales__blocs--count-4 .boxes-horizontales__bloc-content {
  min-width: clamp(350px, 100vw - 566px, 794px);
}
@media (max-width: 1024px) {
  .boxes-horizontales__blocs--count-4 .boxes-horizontales__bloc-content {
    min-width: 0;
  }
}

.boxes-horizontales__blocs--count-5 .boxes-horizontales__bloc-content {
  min-width: clamp(300px, 100vw - 728px, 632px);
}
@media (max-width: 1024px) {
  .boxes-horizontales__blocs--count-5 .boxes-horizontales__bloc-content {
    min-width: 0;
  }
}

.boxes-horizontales__bloc.is-active .boxes-horizontales__bloc-content {
  opacity: 1;
}
@media (max-width: 1024px) {
  .boxes-horizontales__bloc.is-active .boxes-horizontales__bloc-content {
    visibility: visible;
    pointer-events: auto;
    max-height: 2000px;
    padding: 24px;
    padding-top: 24px;
    overflow: visible;
    -webkit-transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.2s, padding 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.2s, padding 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
    -webkit-overflow-scrolling: auto;
  }
}

.boxes-horizontales__bloc-title {
  margin: 0;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .boxes-horizontales__bloc-title {
    font-size: 20px;
  }
}

.boxes-horizontales__bloc-description {
  margin: 0;
  color: var(--color-white);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .boxes-horizontales__bloc-description {
    font-size: 15px;
  }
}

.boxes-horizontales__bloc-button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 1024px) {
  .boxes-horizontales__bloc-button {
    -ms-flex-item-align: self-start;
        align-self: self-start;
    text-align: center;
  }
}

.contenu-texte {
  scroll-margin-top: 95px;
}

.contenu-texte__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .contenu-texte__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.contenu-texte--with-image .contenu-texte__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
@media (max-width: 1024px) {
  .contenu-texte--with-image .contenu-texte__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contenu-texte--full-width .contenu-texte__container {
  max-width: 100%;
}

.contenu-texte__image {
  width: 100%;
  height: auto;
}
.contenu-texte__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.contenu-texte--image-gauche .contenu-texte__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .contenu-texte--image-gauche .contenu-texte__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.contenu-texte--image-gauche .contenu-texte__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .contenu-texte--image-gauche .contenu-texte__content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.contenu-texte--image-droite .contenu-texte__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .contenu-texte--image-droite .contenu-texte__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.contenu-texte--image-droite .contenu-texte__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .contenu-texte--image-droite .contenu-texte__content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.contenu-texte__content {
  width: 100%;
}
.contenu-texte__content p {
  line-height: 1.7;
}
.contenu-texte__content p:not(:first-child) {
  margin-top: 16px;
}
.contenu-texte__content h2:not(:first-child) {
  margin-top: 32px;
}

.contenu-texte__shortcode:not(:first-child) {
  margin-top: 32px;
}

.contenu-texte__button {
  margin-top: 32px;
}

.contenu-texte-long {
  scroll-margin-top: 95px;
}

.contenu-texte-long__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
}
@media (max-width: 1024px) {
  .contenu-texte-long__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.contenu-texte-long--with-image .contenu-texte-long__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
@media (max-width: 1024px) {
  .contenu-texte-long--with-image .contenu-texte-long__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contenu-texte-long--full-width .contenu-texte-long__container {
  max-width: 100%;
}

.contenu-texte-long__image {
  width: 100%;
  height: auto;
}
.contenu-texte-long__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.contenu-texte-long--image-gauche .contenu-texte-long__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .contenu-texte-long--image-gauche .contenu-texte-long__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.contenu-texte-long--image-gauche .contenu-texte-long__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .contenu-texte-long--image-gauche .contenu-texte-long__content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.contenu-texte-long--image-droite .contenu-texte-long__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .contenu-texte-long--image-droite .contenu-texte-long__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.contenu-texte-long--image-droite .contenu-texte-long__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .contenu-texte-long--image-droite .contenu-texte-long__content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.contenu-texte-long__content {
  width: 100%;
}
.contenu-texte-long__content p {
  line-height: 1.7;
}
.contenu-texte-long__content p:not(:first-child) {
  margin-top: 16px;
}
.contenu-texte-long__content h2:not(:first-child) {
  margin-top: 32px;
}

.contenu-texte-long__shortcode:not(:first-child) {
  margin-top: 32px;
}

.contenu-texte-long__button {
  margin-top: 32px;
}

.contenu-texte-icones {
  scroll-margin-top: 95px;
}

.contenu-texte-icones__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .contenu-texte-icones__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.contenu-texte-icones--with-image .contenu-texte-icones__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
@media (max-width: 1024px) {
  .contenu-texte-icones--with-image .contenu-texte-icones__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contenu-texte-icones--full-width .contenu-texte-icones__container {
  max-width: 100%;
}

.contenu-texte-icones__image {
  width: 100%;
  height: auto;
}
.contenu-texte-icones__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.contenu-texte-icones--image-gauche .contenu-texte-icones__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .contenu-texte-icones--image-gauche .contenu-texte-icones__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.contenu-texte-icones--image-gauche .contenu-texte-icones__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .contenu-texte-icones--image-gauche .contenu-texte-icones__content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.contenu-texte-icones--image-droite .contenu-texte-icones__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .contenu-texte-icones--image-droite .contenu-texte-icones__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.contenu-texte-icones--image-droite .contenu-texte-icones__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .contenu-texte-icones--image-droite .contenu-texte-icones__content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.contenu-texte-icones__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.contenu-texte-icones__text-1 p {
  line-height: 1.7;
}
.contenu-texte-icones__text-1 p:not(:first-child) {
  margin-top: 16px;
}
.contenu-texte-icones__text-1 h2:not(:first-child) {
  margin-top: 32px;
}

.contenu-texte-icones__icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .contenu-texte-icones__icons {
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: auto;
       -moz-column-gap: auto;
            column-gap: auto;
    row-gap: 32px;
  }
}
@media (max-width: 767px) {
  .contenu-texte-icones__icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contenu-texte-icones__icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-align: center;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .contenu-texte-icones__icon-item {
    gap: 12px;
  }
}

.contenu-texte-icones__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .contenu-texte-icones__icon {
    width: 40px;
    height: 40px;
  }
}
.contenu-texte-icones__icon i {
  font-size: 24px;
  color: inherit;
}
@media (max-width: 767px) {
  .contenu-texte-icones__icon i {
    font-size: 20px;
  }
}

.contenu-texte-icones__icon-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.contenu-texte-icones__icon-text {
  font-weight: 700;
  line-height: 1.15;
}
@media (max-width: 767px) {
  .contenu-texte-icones__icon-text {
    font-size: 14px;
  }
}

.contenu-texte-icones__icon-sub-text {
  margin: 0;
  font-style: italic;
  line-height: 1.15;
  font-size: 14px;
}
@media (max-width: 767px) {
  .contenu-texte-icones__icon-sub-text {
    font-size: 12px;
  }
}

.contenu-texte-icones__text-2 p {
  line-height: 1.7;
}
.contenu-texte-icones__text-2 p:not(:first-child) {
  margin-top: 16px;
}
.contenu-texte-icones__text-2 h2:not(:first-child) {
  margin-top: 32px;
}

.contenu-texte-icones__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.contenu-simple-fond__container {
  max-width: 632px;
  padding: 64px 0;
}

.contenu-simple-fond__container h2:not(:first-child) {
  margin-top: 32px;
}

.contenu-simple-fond__container h3:not(:first-child) {
  margin-top: 24px;
}

.contenu-simple-fond__container h4:not(:first-child) {
  margin-top: 20px;
}

.contenu-simple-fond__container h5:not(:first-child),
.contenu-simple-fond__container h6:not(:first-child) {
  margin-top: 16px;
}

.contenu-simple-fond__container p:not(:first-child),
.contenu-simple-fond__container ul:not(:first-child),
.contenu-simple-fond__container ol:not(:first-child) {
  margin-top: 16px;
}

.contenu-simple-fond__container h2,
.contenu-simple-fond__container h3,
.contenu-simple-fond__container h4,
.contenu-simple-fond__container h5,
.contenu-simple-fond__container h6 {
  font-weight: 700;
}

.temoignages {
  overflow: hidden;
  background-color: var(--color-background);
}

.temoignages__container {
  width: 100%;
  position: relative;
}

.temoignages__ligne {
  position: relative;
  margin-bottom: 16px;
}
.temoignages__ligne:last-child {
  margin-bottom: 0;
}

.temoignages__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.temoignages--static .temoignages__track {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.temoignages--single-scroll .temoignages__track, .temoignages--double-scroll .temoignages__track {
  -webkit-animation: scroll-horizontal 40s linear infinite;
          animation: scroll-horizontal 40s linear infinite;
}
.temoignages__ligne--2 .temoignages__track {
  animation-direction: reverse;
  -webkit-animation-duration: 45s;
          animation-duration: 45s;
}

.temoignages__card {
  background: var(--color-primary-light);
  border-radius: 16px;
  padding: 32px;
  min-width: 400px;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid var(--color-grey);
}
@media (max-width: 768px) {
  .temoignages__card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.5rem;
  }
}

.temoignages__card-quote {
  color: var(--color-primary);
  width: 40px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.temoignages__card-quote svg {
  width: 100%;
  height: 100%;
}

.temoignages__card-content {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-black);
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.temoignages__card-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.temoignages__card-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.temoignages__card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.temoignages__card-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-black);
  margin: 0;
}

.temoignages__card-company {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--color-black);
  margin: 0;
}

.temoignages__empty {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--color-black);
  font-style: italic;
}

@-webkit-keyframes scroll-horizontal {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-horizontal {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .temoignages__info {
    font-size: 0.8125rem;
    margin-bottom: 2rem;
  }
  .temoignages__ligne {
    margin-bottom: 1.5rem;
  }
  .temoignages__track {
    gap: 16px;
  }
}
.liens-icones {
  margin: 32px auto;
}

.liens-icones__list {
  padding: 16px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  background-color: var(--color-primary);
  border-radius: 16px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .liens-icones__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 32px;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    padding: 16px 24px;
  }
}

.liens-icones__item {
  padding: 8px 0;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.liens-icones__item:hover .liens-icones__item-text {
  text-decoration: underline;
}

.liens-icones__item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.liens-icones__item-text {
  white-space: nowrap;
}

.carrousel-images {
  overflow-x: hidden;
}

.carrousel-images__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  overflow: visible;
}

.carrousel-images__swiper {
  width: 100%;
  overflow: visible !important;
  margin-bottom: 40px;
  padding: 40px 150px;
}
.carrousel-images__swiper .swiper-wrapper {
  overflow: visible;
}
.carrousel-images__swiper .swiper-slide {
  width: 100%;
  max-width: 900px;
}
@media (max-width: 1024px) {
  .carrousel-images__swiper .swiper-slide {
    max-width: 700px;
  }
}
@media (max-width: 768px) {
  .carrousel-images__swiper .swiper-slide {
    max-width: 85%;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .carrousel-images__swiper {
    margin-bottom: 32px;
  }
}

.carrousel-images__slide {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 30px;
}
.carrousel-images__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .carrousel-images__slide {
    border-radius: 16px;
  }
}

.carrousel-images__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.carrousel-images__nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--color-primary);
}
.carrousel-images__nav svg {
  width: 11px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.carrousel-images__nav:hover:not(.swiper-button-disabled) {
  background: var(--color-primary);
  color: var(--color-white);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.carrousel-images__nav:active:not(.swiper-button-disabled) {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.carrousel-images__nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.carrousel-images__nav:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .carrousel-images__nav {
    width: 48px;
    height: 48px;
  }
}

.carrousel-images__nav--next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.titre-image__image-wrapper {
  width: 100%;
}

.titre-image__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.titre-image-onglets__container {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 16px;
}
@media (max-width: 1024px) {
  .titre-image-onglets__container {
    grid-template-columns: 1fr;
  }
}

.titre-image-onglets__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .titre-image-onglets__list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.titre-image-onglets__item {
  text-align: left;
  padding: 12px;
  border-radius: 8px;
  background: var(--color-primary-light);
  border: 1px solid var(--color-grey);
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .titre-image-onglets__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc((100% - 64px) / 5);
            flex: 1 1 calc((100% - 64px) / 5);
    min-width: 120px;
  }
}

.titre-image-onglets__item.is-active {
  background: var(--color-primary);
  color: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  border-color: var(--color-primary);
  border-radius: 8px;
}

.titre-image-onglets__item-title {
  display: block;
  font-weight: 700;
  color: var(--color-black);
}

.titre-image-onglets__item-desc {
  display: block;
  margin-top: 8px;
  color: var(--color-black);
}

@media (max-width: 1024px) {
  .titre-image-onglets__item-desc--desktop {
    display: none;
  }
}

.titre-image-onglets__item-desc--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .titre-image-onglets__item-desc--mobile {
    display: block;
  }
}

.titre-image-onglets__item.is-active .titre-image-onglets__item-title {
  color: var(--color-white);
}

.titre-image-onglets__item.is-active .titre-image-onglets__item-desc {
  color: rgba(255, 255, 255, 0.9);
}

.titre-image-onglets__image {
  width: 100%;
}
@media (max-width: 1024px) {
  .titre-image-onglets__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.titre-image-onglets__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}

.offre__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 1024px) {
  .offre__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.offre__bloc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 16px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 32px;
  gap: 48px;
  border: 1px solid var(--color-grey);
}
@media (max-width: 767px) {
  .offre__bloc {
    padding: 64px 16px;
  }
}

.offre__bloc--primary {
  background-color: var(--color-primary-light);
}

.offre__bloc--secondary {
  background-color: var(--color-secondary-light);
}

.offre__bloc-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.offre__bloc-image {
  height: auto;
  margin: 0 auto;
}
.offre__bloc-image img {
  max-width: 180px;
  height: auto;
  display: block;
}
.offre__bloc-image::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 24px auto;
}

.offre__bloc--secondary .offre__bloc-image::after {
  background-color: var(--color-secondary);
}

.offre__bloc-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .offre__bloc-content {
    padding: 0;
  }
}

.offre__bloc-text {
  text-align: center;
}
.offre__bloc-text p {
  line-height: 1.7;
}
.offre__bloc-text p:not(:first-child) {
  margin-top: 16px;
}
.offre__bloc-text h3 {
  margin-bottom: 16px;
}

.offre__bloc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 60px;
}
@media (max-width: 767px) {
  .offre__bloc-list {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.offre__bloc-list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-align: center;
  font-weight: 700;
}

.offre__bloc-check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
  width: 32px;
  height: 32px;
}

.offre__bloc--primary .offre__bloc-check {
  color: var(--color-primary);
}

.offre__bloc--secondary .offre__bloc-check {
  color: var(--color-secondary);
}

.offre__bloc-button {
  margin-top: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0 auto;
}

.offre__bloc--primary .offre__bloc-button {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.offre__bloc--primary .offre__bloc-button:hover {
  background-color: var(--color-black);
}

.offre__bloc--secondary .offre__bloc-button {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.offre__bloc--secondary .offre__bloc-button:hover {
  background-color: var(--color-black);
}

.offre-detaillee__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 1024px) {
  .offre-detaillee__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .offre-detaillee__container {
    gap: 48px;
  }
}

.offre-detaillee__bloc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  scroll-margin-top: 75px;
}

.offre-detaillee__bloc--secondary {
  background-color: var(--color-secondary-light);
  color: var(--color-black);
}

.offre-detaillee__bloc--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 40px;
}
@media (max-width: 1024px) {
  .offre-detaillee__bloc--primary {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .offre-detaillee__bloc--primary {
    padding: 24px 16px;
  }
}

.offre-detaillee__bloc-header {
  text-align: center;
  background-color: var(--color-secondary);
  padding: 48px 16px 36px;
}
.offre-detaillee__bloc-header img {
  max-width: 250px;
  height: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .offre-detaillee__bloc-header img {
    max-width: 180px;
  }
}

.offre-detaillee__bloc-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 32px;
}
@media (max-width: 1024px) {
  .offre-detaillee__bloc-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .offre-detaillee__bloc-content {
    padding: 24px 8px;
  }
}

.offre-detaillee__colonne {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.offre-detaillee__colonne--1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}

@media (max-width: 767px) {
  .offre-detaillee__colonne--2 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.offre-detaillee__texte p {
  font-weight: 700;
  margin-bottom: 16px;
}
.offre-detaillee__texte p:last-child {
  margin-bottom: 0;
}
.offre-detaillee__texte strong {
  color: var(--color-secondary);
}
.offre-detaillee__texte ul,
.offre-detaillee__texte ol {
  margin: 16px 0;
  padding-left: 24px;
}
.offre-detaillee__texte ul:last-child,
.offre-detaillee__texte ol:last-child {
  margin-bottom: 0;
}
.offre-detaillee__texte li {
  margin-bottom: 16px;
}
.offre-detaillee__texte li:last-child {
  margin-bottom: 0;
}
.offre-detaillee__texte ul {
  list-style: none;
  padding-left: 0;
}
.offre-detaillee__texte ul li {
  position: relative;
  padding-left: 32px;
}
.offre-detaillee__texte ul li::before {
  content: "";
  position: absolute;
  display: inline-block;
  -webkit-mask: url("../icons/check.svg") no-repeat center center;
          mask: url("../icons/check.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
}
.offre-detaillee__texte strong {
  font-weight: 700;
}
.offre-detaillee__texte em {
  font-style: italic;
}

.offre-detaillee__bloc--secondary .offre-detaillee__texte ul li::before {
  background-color: var(--color-secondary);
}

.offre-detaillee__bloc--primary .offre-detaillee__texte ul li::before {
  background-color: var(--color-white);
}

.offre-detaillee__tableau {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-white);
  table-layout: fixed;
  font-weight: 700;
  border-collapse: collapse;
}

.offre-detaillee__tableau td,
.offre-detaillee__tableau th {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .offre-detaillee__tableau td,
  .offre-detaillee__tableau th {
    width: 50%;
  }
}

.offre-detaillee__tableau tr:last-child td {
  border-bottom: none;
}

.offre-detaillee__tableau thead th,
.offre-detaillee__tableau tbody td {
  text-align: center;
}

.offre-detaillee__tableau thead {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.offre-detaillee__tableau th,
.offre-detaillee__tableau td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .offre-detaillee__tableau th,
  .offre-detaillee__tableau td {
    padding: 12px;
  }
}

.offre-detaillee__tableau-row--highlighted {
  color: var(--color-primary);
}

.offre-detaillee__button {
  margin-top: 8px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.offre-detaillee__bloc-content-simple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  height: 100%;
}
@media (max-width: 1024px) {
  .offre-detaillee__bloc-content-simple {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .offre-detaillee__bloc-content-simple {
    gap: 24px;
  }
}

.offre-detaillee__image {
  text-align: center;
}
.offre-detaillee__image img {
  max-width: 250px;
  height: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .offre-detaillee__image img {
    max-width: 180px;
  }
}

.offre-detaillee__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 1024px) {
  .offre-detaillee__button-wrapper {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.appel-action--primary .appel-action__container {
  background-color: var(--color-primary);
}

.appel-action--secondary .appel-action__container {
  background-color: var(--color-secondary);
}

.appel-action--black .appel-action__container {
  background-color: var(--color-black);
}

.appel-action__container {
  border-radius: 16px;
  padding: 48px 32px;
  color: var(--color-white);
  text-align: center;
}

.appel-action__title {
  font-weight: 600;
  margin-bottom: 16px;
}

.appel-action__button {
  margin-top: 40px;
}

.grille-services__grid {
  display: grid;
  gap: 2rem;
  gap: 16px;
}

.grille-services__grid:has(.grille-services__item:nth-child(1):last-child) {
  grid-template-columns: 1fr;
}

.grille-services__grid:has(.grille-services__item:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}

.grille-services__grid:has(.grille-services__item:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}

.grille-services__grid:has(.grille-services__item:nth-child(4)) {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grille-services__grid:has(.grille-services__item:nth-child(1):last-child),
  .grille-services__grid:has(.grille-services__item:nth-child(2):last-child),
  .grille-services__grid:has(.grille-services__item:nth-child(3):last-child) {
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
  }
  .grille-services__grid:has(.grille-services__item:nth-child(4)) {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 32px;
  }
}
@media (max-width: 767px) {
  .grille-services__grid:has(.grille-services__item:nth-child(4)) {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 32px;
  }
}
.grille-services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.grille-services__item-image img {
  border-radius: 8px;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.grille-services--ratio-force .grille-services__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.grille-services--ratio-force .grille-services__grid:has(.grille-services__item:nth-child(4)) img {
  aspect-ratio: 1/1;
}

.grille-services__item-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.grille-services__item-title {
  font-size: var(--font-size-h5);
  font-weight: 700;
  line-height: 1.4;
}

.grille-services__item-description {
  margin-top: 8px;
}

.grille-services__item-prix {
  margin-top: auto;
  padding-top: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.etapes {
  position: relative;
}

.etapes__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .etapes__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.etapes__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .etapes__navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    width: 100%;
    -ms-flex-item-align: auto;
        align-self: auto;
  }
}
@media (max-width: 767px) {
  .etapes__navigation {
    gap: 16px;
  }
}
@media (max-width: 375px) {
  .etapes__navigation {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.etapes__number {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .etapes__number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
.etapes__number:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.etapes__number.is-active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.etapes__line {
  background-color: var(--color-primary);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 2px;
  min-height: 20px;
}
@media (max-width: 1024px) {
  .etapes__line {
    width: 40px;
    height: 2px;
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .etapes__line {
    width: 24px;
  }
}
@media (max-width: 375px) {
  .etapes__line {
    display: none;
  }
}

.etapes__content-wrapper {
  position: relative;
  min-height: 400px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media (max-width: 1024px) {
  .etapes__content-wrapper {
    min-height: 300px;
  }
}

.etapes__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .etapes__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    position: relative;
    display: none !important;
  }
}
.etapes__item.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
@media (max-width: 1024px) {
  .etapes__item.is-active {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.etapes__item--with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .etapes__item--with-image {
    grid-template-columns: 1fr;
    gap: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .etapes__item--with-image.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.etapes__item--full-width {
  max-width: 100%;
  display: block;
}
.etapes__item--full-width .etapes__text {
  max-width: 800px;
}

.etapes__image {
  width: 100%;
  height: auto;
}
.etapes__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.etapes__item--image-gauche .etapes__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .etapes__item--image-gauche .etapes__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.etapes__item--image-gauche .etapes__text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .etapes__item--image-gauche .etapes__text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.etapes__item--image-droite .etapes__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .etapes__item--image-droite .etapes__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.etapes__item--image-droite .etapes__text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .etapes__item--image-droite .etapes__text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.etapes__text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.etapes__step-title {
  font-size: var(--font-size-h4);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .etapes__step-title {
    font-size: 20px;
  }
}

.etapes__step-content p {
  line-height: 1.7;
  margin: 0;
}
.etapes__step-content p:not(:first-child) {
  margin-top: 16px;
}
.etapes__step-content h2:not(:first-child),
.etapes__step-content h3:not(:first-child) {
  margin-top: 24px;
}

.etapes__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.titre-h1-contenu__titre {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 48px;
}

.titre-h1-contenu__content h2:not(:first-child) {
  margin-top: 32px;
}

.titre-h1-contenu__content h3:not(:first-child) {
  margin-top: 24px;
}

.titre-h1-contenu__content h4:not(:first-child) {
  margin-top: 20px;
}

.titre-h1-contenu__content h5:not(:first-child),
.titre-h1-contenu__content h6:not(:first-child) {
  margin-top: 16px;
}

.titre-h1-contenu__content p:not(:first-child),
.titre-h1-contenu__content ul:not(:first-child),
.titre-h1-contenu__content ol:not(:first-child) {
  margin-top: 16px;
}

.titre-h1-contenu__content h2,
.titre-h1-contenu__content h3,
.titre-h1-contenu__content h4,
.titre-h1-contenu__content h5,
.titre-h1-contenu__content h6 {
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color-white);
  padding: 0 16px;
}

.site-header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  position: relative;
}

.site-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 2;
}
.site-header__logo .custom-logo-link {
  display: block;
  line-height: 0;
}
.site-header__logo .custom-logo {
  max-height: 50px;
  width: auto;
  height: auto;
}
@media (max-width: 1024px) {
  .site-header__logo .custom-logo {
    max-height: 45px;
  }
}
.site-header__logo .site-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.site-header__burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
@media (max-width: 1024px) {
  .site-header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-header__burger.is-active .site-header__burger-line:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.site-header__burger.is-active .site-header__burger-line:nth-child(2) {
  opacity: 0;
}
.site-header__burger.is-active .site-header__burger-line:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

.site-header__burger-line {
  width: 28px;
  height: 3px;
  background-color: var(--color-black);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.site-header__burger-line:not(:last-child) {
  margin-bottom: 6px;
}

.site-header__nav-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}
@media (max-width: 1024px) {
  .site-header__nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 120px 32px 60px;
    gap: 40px;
  }
  .site-header.menu-open .site-header__nav-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

.site-header__mobile-logo {
  display: none;
}
@media (max-width: 1024px) {
  .site-header__mobile-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
  }
  .site-header__mobile-logo .custom-logo-link {
    display: block;
    line-height: 0;
  }
  .site-header__mobile-logo .custom-logo {
    max-height: 50px;
    width: auto;
    height: auto;
  }
  .site-header__mobile-logo .site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
  }
}

.site-header__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .site-header__nav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
}

.site-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
@media (max-width: 1024px) {
  .site-header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
.site-header__menu li {
  margin: 0;
}
@media (max-width: 1024px) {
  .site-header__menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.site-header__menu a {
  text-decoration: none;
  color: var(--color-black);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
}
.site-header__menu a:hover {
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  .site-header__menu a {
    padding: 20px 0;
  }
}
.site-header__menu .current-menu-item a,
.site-header__menu .current_page_item a {
  color: var(--color-primary);
  font-weight: 700;
}
.site-header__menu .menu-item-has-children {
  position: relative;
}
.site-header__menu .menu-item-has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.site-header__menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../icons/chevron-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1024px) {
  .site-header__menu .menu-item-has-children > a {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1025px) {
  .site-header__menu .menu-item-has-children:hover > .sub-menu {
    display: block;
  }
  .site-header__menu .menu-item-has-children:hover > a::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@media (max-width: 1024px) {
  .site-header__menu .menu-item-has-children.is-open > a::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .site-header__menu .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }
}
.site-header__menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  border: 1px solid var(--color-grey);
  background: var(--color-white);
}
@media (min-width: 1025px) {
  .site-header__menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    border-radius: 8px;
    overflow: hidden;
  }
}
@media (max-width: 1024px) {
  .site-header__menu .sub-menu {
    padding-left: 20px;
    border: none;
  }
}
.site-header__menu .sub-menu li {
  padding: 0;
}
@media (max-width: 1024px) {
  .site-header__menu .sub-menu li {
    border-bottom: none;
  }
}
@media (min-width: 1025px) {
  .site-header__menu .sub-menu a {
    padding: 10px 20px;
  }
  .site-header__menu .sub-menu a:hover {
    background-color: var(--color-primary-light);
  }
}
@media (max-width: 1024px) {
  .site-header__menu .sub-menu a {
    padding: 15px 0;
  }
}

.site-header__cta {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1024px) {
  .site-header__cta {
    width: 100%;
    padding-top: 20px;
  }
  .site-header__cta .button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

body {
  padding-top: 75px;
}

body.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}

.site-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0 40px 24px;
}
@media (max-width: 1024px) {
  .site-footer {
    padding: 0 40px 24px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding: 0 16px 32px;
  }
}

.site-footer__container {
  max-width: 1440px;
  margin: 0 auto;
}

.site-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  padding-top: 120px;
  padding-bottom: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 80% auto;
}
@media (max-width: 1024px) {
  .site-footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 0;
    border-bottom: none;
    background-position: bottom 16px center;
    background-size: 100% auto;
  }
}
@media (max-width: 767px) {
  .site-footer__main {
    padding-top: 32px;
    margin-bottom: 0;
  }
}

.site-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 64px;
}
@media (max-width: 1024px) {
  .site-footer__top {
    width: 100%;
    margin-bottom: 32px;
    padding: 0 0 32px;
    border-bottom: 1px solid var(--color-white);
  }
}
@media (max-width: 767px) {
  .site-footer__top {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    gap: 20px;
  }
}

.site-footer__logo img {
  max-width: 110px;
  width: 100%;
  height: auto;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .site-footer__social {
    gap: 20px;
  }
}

.site-footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: 24px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.site-footer__social-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.site-footer__social-link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.8;
}

.site-footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 728px;
  gap: 60px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 1024px) {
  .site-footer__content {
    width: 100%;
    max-width: 100%;
    gap: 40px;
    padding: 0 0 40px;
    border-bottom: 1px solid var(--color-white);
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}

.site-footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .site-footer__column {
    gap: 16px;
  }
}

.site-footer__column-title {
  font-weight: 700;
  margin: 0;
}

.site-footer__nav .site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.site-footer__nav .site-footer__menu li {
  margin: 0;
  padding: 0;
}
.site-footer__nav .site-footer__menu a {
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.site-footer__nav .site-footer__menu a:hover {
  opacity: 0.8;
}

.site-footer__info {
  font-weight: 400;
}
.site-footer__info p {
  margin: 0 0 12px 0;
}
.site-footer__info p:last-child {
  margin-bottom: 0;
}
.site-footer__info a {
  color: var(--color-white);
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.site-footer__info a:hover {
  opacity: 0.8;
}

.site-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 12px;
}
@media (max-width: 767px) {
  .site-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
  }
}

.site-footer__copyright {
  font-weight: 400;
  font-size: inherit;
  margin: 0;
}

.site-footer__legal-nav .site-footer__legal-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .site-footer__legal-nav .site-footer__legal-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}
.site-footer__legal-nav .site-footer__legal-menu li {
  margin: 0;
  padding: 0;
}
.site-footer__legal-nav .site-footer__legal-menu a {
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.site-footer__legal-nav .site-footer__legal-menu a:hover {
  opacity: 0.8;
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */