@charset "UTF-8";
/**
 * @file main.scss
 * @description Point d'entrée SCSS principal
 */
/**
 * @file _tokens.scss
 * @description Variables de design (couleurs, typo, espacements, breakpoints)
 */
/**
 * @file _reset.scss
 * @description Modern CSS reset (2026)
 * Inspiré de Andy Bell, Josh Comeau et les pratiques actuelles.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-height: 100svh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

a {
  color: inherit;
  text-decoration-skip-ink: auto;
}

table {
  border-collapse: collapse;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/**
 * @file main.scss
 * @description Point d'entrée SCSS principal
 */
/**
 * @file _header.scss
 * @description Styles pour l'en-tête du site
 */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}
.main-header .header-section {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .main-header .header-section--left .menu-toggle {
    display: none;
  }
}
.main-header .header-section--center {
  display: none;
}
@media (min-width: 768px) {
  .main-header .header-section--center {
    display: block;
  }
}
.main-header .header-section--center ul {
  display: flex;
  gap: 0.5rem 2vw;
  margin-inline: 2vw;
  flex-wrap: wrap;
}
.main-header .header-section--center ul a {
  font-size: clamp(1rem, 2.15vw, 1.25rem);
  color: #323232;
}
.main-header .header-section--center ul a:hover, .main-header .header-section--center ul a.active {
  color: #F48C34;
}
.main-header .header-section--center ul li.button--download {
  display: none;
}
.main-header .header-section--right .button--text {
  padding-inline: 1.5em;
}
.main-header .header-section--right .button--icon img {
  width: 20px;
}

/**
 * @file main.scss
 * @description Point d'entrée SCSS principal
 */
/**
 * @file _offcanvasmenu.scss
 * @description Styles pour le menu mobile off canvas
 */
.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.offcanvas__header {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.offcanvas__content {
  position: absolute;
  display: grid;
  justify-items: left;
  gap: 2rem;
  top: 0;
  left: -23ch;
  width: 23ch;
  height: max-content;
  background: #ffffff;
  padding: 1rem;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  transition: left 0.3s ease;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}
.offcanvas__content nav ul li {
  margin-bottom: 1rem;
}
.offcanvas__content nav ul li a {
  color: #323232;
  font-weight: 500;
}
.offcanvas__content nav ul li a:hover, .offcanvas__content nav ul li a.active {
  color: #F48C34;
}
.offcanvas__content nav ul li a.button--download {
  background-color: #CDCDCD;
  color: #323232;
  margin-top: 1rem;
  text-align: center;
  border-radius: 10px;
}
.offcanvas__content nav ul li a.button--download:hover {
  background-color: #9B9B9C;
  color: #ffffff;
}
.offcanvas[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}
.offcanvas[aria-hidden=false] .offcanvas__content {
  left: 0;
}

/**
 * @file main.scss
 * @description Point d'entrée SCSS principal
 */
/**
 * @file _footer.scss
 * @description Styles pour le bas de page
 */
.main-footer {
  background-color: #323232;
  color: #ffffff;
  padding: 2rem 0;
  margin-top: 4rem;
}
.main-footer .container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  gap: 2rem;
  justify-items: center;
}
@media (min-width: 768px) {
  .main-footer .container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-inline: auto;
  }
}
.main-footer p {
  margin: 0 0 1rem 0;
}
@media (min-width: 768px) {
  .main-footer p {
    margin: 0;
  }
}
.main-footer .footer__hours {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .main-footer .footer__hours {
    width: fit-content;
    border-bottom: none;
  }
}
.main-footer .footer__hours .hours__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  width: fit-content;
}
.main-footer .footer__hours .hours__grid dt, .main-footer .footer__hours .hours__grid dd {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
}
.main-footer .footer__hours .hours__grid dt:not(:last-of-type), .main-footer .footer__hours .hours__grid dd:not(:last-of-type) {
  border-bottom: 1px solid #ffffff;
}
.main-footer .footer__hours .hours__grid dt:first-of-type, .main-footer .footer__hours .hours__grid dd:first-of-type {
  padding-top: 0;
}
.main-footer .footer__hours .hours__grid dd {
  padding-inline: 2rem;
}
.main-footer .footer__contact {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: 0 1rem;
  font-size: 1.25rem;
}
.main-footer .footer__contact a {
  text-decoration: none;
}
.main-footer .footer__contact a:hover {
  text-decoration: underline;
}
.main-footer .footer__contact .contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.main-footer .footer__contact .contact__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 0.1em;
}
.main-footer .footer__services {
  padding: 0 1rem 1rem;
  font-size: 1.25rem;
}
.main-footer .footer__services nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 2rem;
  display: grid;
  justify-content: center;
  gap: 0.5rem;
}
.main-footer .footer__services nav ul a {
  text-decoration: none;
}
.main-footer .footer__services nav ul a:hover {
  text-decoration: underline;
}
.main-footer .footer__about {
  font-size: 0.875rem;
}

/**
 * @file main.scss
 * @description Point d'entrée SCSS principal
 */
/**
 * @file _avantages.scss
 * @description Styles pour la grille d'avantages
 */
.avantages {
  max-width: 100vw;
  padding: 0 1rem;
}
.avantages .avantages__intro {
  padding-inline: 1rem;
  margin-block: 1rem 2rem;
}
@media (min-width: 768px) {
  .avantages .avantages__intro {
    padding-inline: 4rem;
  }
}
.avantages .avantages__items {
  overflow-x: scroll;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .avantages .avantages__items {
    max-width: 1024px;
  }
}
.avantages .avantages__items .grid {
  display: grid;
  gap: 4rem;
  width: max-content;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
}
.avantages .avantage {
  padding: 2rem 0.5rem;
  text-align: center;
  display: grid;
  align-content: start;
  gap: 2rem;
  width: 80vw;
  max-width: 385px;
}
.avantages .avantage .icon {
  max-width: 55px;
  height: auto;
  margin-inline: auto;
}
.avantages .avantage h3 {
  max-width: 23ch;
  margin-inline: auto;
}
.avantages .avantage p {
  max-width: 30ch;
}

body {
  font-family: "Roboto", Arial, Helvetica, Nimbus Sans, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #323232;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1rem;
}

.fs-11 {
  font-size: 0.6875rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-15 {
  font-size: 0.9375rem;
}

.fs-16 {
  font-size: 1rem;
}

.fs-20 {
  font-size: 1.25rem;
}

.fs-21 {
  font-size: 1.3125rem;
}

.fs-22 {
  font-size: 1.375rem;
}

.fs-27 {
  font-size: 1.6875rem;
}

.fs-28 {
  font-size: 1.75rem;
}

.fs-31 {
  font-size: 1.9375rem;
}

.fs-33 {
  font-size: 2.0625rem;
}

.text-primary {
  color: #F48C34;
}

.text-secondary {
  color: #72C6F0;
}

.text-black {
  color: #323232;
}

.text-white {
  color: #ffffff;
}

.text-gray {
  color: #646464;
}

.text-dark-gray {
  color: #2F3335;
}

.text-medium-gray {
  color: #9B9B9C;
}

.text-light-gray {
  color: #CDCDCD;
}

.text-dark-blue {
  color: #122E5C;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-bold {
  font-weight: 700;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

a.logo {
  font-size: 1rem;
  color: #323232;
  text-decoration: none;
}

nav ul {
  list-style: none;
  padding: 0;
}
nav ul a {
  text-decoration: none;
}

.button {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.5em 1.5em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button--text {
  background: #72C6F0;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 80vw;
}
@media (min-width: 768px) {
  .button--text {
    min-width: unset;
    padding-inline: 3em;
  }
}
.button:hover {
  background-color: rgb(50.0076923077, 172.1307692308, 233.1923076923);
}
.button--primary {
  background-color: #F48C34;
}
.button--primary:hover {
  background-color: rgb(224.6280373832, 109.5476635514, 12.1719626168);
}
.button--icon {
  padding: 0.5rem;
  display: grid;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.button--icon svg, .button--icon img {
  display: block;
  min-width: 20px;
}
.button--icon:hover {
  background-color: rgb(235.62, 240.66, 243.18);
}