/*******************/
/*      Fonts      */

@font-face {
	font-family: 'Arco';
    src: url('../fonts/Arco/Arco.ttf');
  font-display: swap;
}

@font-face {
	font-family: 'ChangaSemiBold';
    src: url('../fonts/Changa/Changa-SemiBold.ttf');
  font-display: swap;
}

@font-face {
	font-family: 'ChangaMedium';
    src: url('../fonts/Changa/Changa-Medium.ttf');
  font-display: swap;
}

@font-face {
	font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.ttf');
  font-display: swap;
}

@font-face {
	font-family: 'RobotoBold';
    src: url('../fonts/Roboto/Roboto-Bold.ttf');
  font-display: swap;
}

/*                 */
/*******************/

/* Reset CSS
	http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
  max-width: 1920px;
  margin: auto;
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

input {
  /* Réinitialisation des styles par défaut */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  letter-spacing: normal;
  font-weight: normal;
}

input[type="radio"] {
  /* Rétablissement des styles spécifiques pour les radio buttons */
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  margin-right: 5px;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #DFDFDF;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #D1D1D1;
}

/*** Buttons ***/

.buttonBase div {
  display: inline-flex;
  align-items: center;
  font-family: 'ChangaSemiBold';
  font-size: 18px;
  padding: 21px 24px;
  border-radius: 10px;
  user-select: none;
  cursor: pointer;
  gap: 14px;
}

.blueWhite div {
  background-color: #7DC2EC;
  color: white;
}

.blueWhite .material-symbols-outlined {
  color: white;
  font-size: 20px;
}

.buttonBase:has(.material-symbols-outlined) div {
  padding: 17px 24px;
}

.blueWhite:hover div, .blueWhite:focus div {
  background-color: #3e74d7;
}

.whiteBlue div {
  background-color: white;
  color: #7DC2EC;
}

.whiteBlue:hover div, .whiteBlue:focus div {
  background-color: #E8F5FC;
}

.whiteDarkBlue div {
  background-color: white;
  color: #2A377E;
}

.whiteDarkBlue .material-symbols-outlined {
  color: #2A377E;
  font-size: 20px;
}

.whiteDarkBlue:hover div, .whiteDarkBlue:focus div {
  opacity: 0.7;
}

.white div {
  border: 2px solid white;
  color: white;
}

.white:hover div, .white:focus div {
  border: 2px solid #E8F5FC;
  color: #E8F5FC;
  background-color: rgba(0, 0, 0, 0.05);
}

.black div {
  border: 1px solid #434343;
  color: #434343;
}

.black:hover div, .black:focus div {
  opacity: 0.7;
}

.darkBlueWhite div {
  background-color: #2A377E;
  color: white;
}

.darkBlueWhite:hover div, .darkBlueWhite:focus div {
  background-color: #3e74d7;
}

.darkBlue div {
  border: 2px solid #2A377E;
  color: #2A377E;
}

.darkBlue:hover div, .darkBlue:focus div {
  border: 2px solid #3e74d7;
  color: #3e74d7;
  background-color: rgba(0, 0, 0, 0.05);
}

.button-loading div {
  cursor: progress !important;
}

.button-disabled div {
  cursor: not-allowed !important;
}

.buttonBase.darkBlueWhite.button-disabled:hover div,
.buttonBase.darkBlueWhite.button-loading:hover div {
  background-color: #2A377E;
}

/** Animation **/

@keyframes spin {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.spinner {
  display: inline-block;
  animation: spin 1s linear infinite;
  font-size: 1.2em;
}

/****** START *******/
  
#containerHeader {
  margin: 48px 90px 0 90px;
}

#logoTop {
  user-select: none;
  display: flex;
  align-items: center;
  font-family: 'Arco';
  font-size: 28px;
  color: #7DC2EC;
}

#logoTop img {
  margin-top: 4px;
  margin-right: 8px;
  height: 56px;
}

#topHeader {
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #434343;
}

#buttonsContact {
  display: flex;
  gap: 40px;
}

#navTop {
  padding: 32px 48px;
  font-family: 'RobotoBold';
  color: #434343;
  font-size: 15px;
}

#navTop ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#navTop ul a {
  padding: 10px;
}

#navTop ul a:hover, #navTop ul a:focus {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

#selectedPage {
  color: #A1A1A1;
  opacity: 1 !important;
}

#navTop ul a#selectedPage:hover,
#navTop ul a#selectedPage:focus {
  opacity: 1 !important;
}

#burgerNavTop .buttonBase div {
  padding: 6px 8px;
}

#burgerNavTop {
  display: none;
}

@media (max-width: 1030px) {
  #burgerNavTop {
    display: block;
  }

  #navTop li:nth-child(7) {
    display: none;
  }
}

@media (max-width: 950px) {
  #navTop li:nth-child(6) {
    display: none;
  }
}

@media (max-width: 840px) {
  #navTop li:nth-child(5) {
    display: none;
  }
}

@media (max-width: 750px) {
  #navTop li:nth-child(4) {
    display: none;
  }
}

@media (max-width: 600px) {
  #navTop li:nth-child(3) {
    display: none;
  }
}

@media (max-width: 355px) {
  #navTop li:nth-child(2) {
    /*display: none;*/
  }
}

/*** Header 2 ***/

#containerHeader2 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

#containerHeader2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -1px;
  width: 100.25%;
  height: 127px; /* hauteur du SVG */
  z-index: 1; /* au-dessus de la vidéo mais sous le contenu si besoin */
  pointer-events: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='142' viewBox='0 0 1920 142' fill='none'%3E%3Cpath d='M90 113.382C0 113.382 0 109.882 0 0V141.5H1920V0C1920 101.5 1920 113.382 1826 113.382C1804.3 113.382 939.741 112.214 943.136 113.382H90Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
}

#containerHeader2 .background-video,
#containerHeader2 .background-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -50;
}

.video-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -40; /* entre la vidéo (-50) et le contenu (+1) */
  pointer-events: none;
}

/* Masque vertical */
.vertical-mask {
  background: linear-gradient(180deg, rgba(67, 67, 67, 0.20) 0%, rgba(153, 153, 153, 0.00) 100%);
}

/* Masque horizontal */
.horizontal-mask {
  background: linear-gradient(90deg, rgba(67, 67, 67, 0.15) 0%, rgba(153, 153, 153, 0.00) 100%);
}

/* Masque radial */
.radial-mask {
  border-radius: 1444px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.10) 0%, rgba(22, 22, 22, 0.07) 47%, rgba(102, 102, 102, 0.00) 100%);
}


#containerTopHeaderAndNavTop {
  margin: 32px 90px 0 90px;
  position: relative;
  z-index: 1;
}

#containerHeader2 #topHeader {
  border-bottom: 1px solid white;
}

#containerHeader2 #navTop {
  color: white;
}

#contentHeroBanner {
  margin: 5% 0 0 10%;
  width: 50%;
  max-width: 850px;
  color: white;
}

#contentHeroBanner h2 {
  font-family: 'RobotoBold';
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* limite à 3 lignes */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#contentHeroBanner p {
  font-family: 'Roboto';
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 48px;
}

#listLinksHeroBanner {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 24px 48px;
}

#carwash #containerHeader2::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='142' viewBox='0 0 1920 142' fill='none'%3E%3Cpath d='M90 113.382C0 113.382 0 109.882 0 0V141.5H1920V0C1920 101.5 1920 113.382 1826 113.382C1804.3 113.382 939.741 112.214 943.136 113.382H90Z' fill='rgba(125, 194, 236, 100)'/%3E%3C/svg%3E");
}

#buttonsContact a:first-child i, #buttonsContact a:last-child i {
  display: none;
}

#containerHeader2 #selectedPage {
  color: #7DC2EC;
}

@media (max-width: 1440px) {
  #containerTopHeaderAndNavTop, #containerHeader {
    margin: 48px 48px 0 48px;
  }
}

@media (max-width: 1350px) {
  #contentHeroBanner {
    width: 60%;
    margin: 4% 0 0 8%;
  }
}

@media (max-width: 1150px) {
  #navTop {
    padding: 24px 16px;
  }
}

@media (max-width: 1080px) {
  #contentHeroBanner {
    width: 80%;
    margin: 7% 0 0 6%;
  }
}

@media (max-width: 1030px) {
  #navTop {
    padding: 24px 0;
  }
}

@media (max-width: 920px) {
  #buttonsContact a:first-child b {
    display: none;
  }

  #buttonsContact a:first-child i {
    display: block;
  }
}

@media (max-width: 850px) {
  #buttonsContact a:last-child b {
    display: none;
  }

  #buttonsContact a:last-child i {
    display: block;
  }
}

@media (max-width: 710px) {
  #buttonsContact a:first-child i {
    display: none;
  }

  #buttonsContact {
    gap: 25px;
  }
}

@media (max-width: 800px) {
  #contentHeroBanner {
    width: 95%;
    margin: 7% auto 0 auto;
  }

  #contentHeroBanner h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 32px;
  }

  #contentHeroBanner p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
  }

  #listLinksHeroBanner .buttonBase div {
    font-size: 15px;
    padding: 18px 20px;
  }
}

@media (max-width: 590px) {
  #logoTop {
    font-size: 22px;
  }

  #logoTop img {
    margin-top: 3px;
    margin-right: 6px;
    height: 48px;
  }

  #buttonsContact .buttonBase:has(.material-symbols-outlined) div {
      padding: 12px 14px;
  }

  #navTop {
    padding: 16px 0;
  }

  #topHeader {
    padding-bottom: 24px;
  }
}

@media (max-width: 499px) {
  #containerTopHeaderAndNavTop, #containerHeader {
    margin: 32px 24px 0 24px;
  }

  #buttonsContact {
    gap: 16px;
  }

  #logoTop {
    font-size: 18px;
  }

  #logoTop img {
    margin-top: 3px;
    margin-right: 6px;
    height: 36px;
  }

  .buttonBase div {
    gap: 8px;
}

  #buttonsContact .buttonBase:has(.material-symbols-outlined) div {
      padding: 10px 12px;
  }

  #contentHeroBanner h2 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 24px;
  }

  #contentHeroBanner p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 32px;
  }

  #listLinksHeroBanner .buttonBase div {
    font-size: 14px;
    padding: 13px 14px;
  }
}

@media (max-height: 800px) {
  #containerTopHeaderAndNavTop, #containerHeader {
    margin-top: 24px;
  }

  #contentHeroBanner {
    margin-top: 3%;
  }

  #contentHeroBanner h2 {
    margin-bottom: 24px;
  }

  #contentHeroBanner p {
    margin-bottom: 32px;
  }
}

/*** SubHeader ***/

#subHeader {
  padding: 40px 90px;
  color: white;
  background-color: #7DC2EC;
}

#subHeaderLegal {
  padding: 32px 90px;
  color: #434343;
  background-color: white;
}

#ariane {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-family: 'Roboto';
}

#ariane a:hover, #ariane a:focus {
  opacity: 0.7;
}

.dot {
  user-select: none;
  font-size: 20px;
}

#subHeader h1, #subHeaderLegal h1 {
  margin-top: 24px;
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  line-height: 30px;
}

#carwash #subHeader {
  padding: 10px 90px 40px 90px;
}

@media (max-width: 1440px) {
  #subHeader {
    padding: 56px 48px;
  }

  #carwash #subHeader {
    padding: 10px 48px 40px 48px;
  }

  #subHeaderLegal {
    padding: 32px 48px;
  }
}

@media (max-width: 1150px) {
  #carwash #subHeader {
    padding-top: 24px;
  }
}

@media (max-width: 700px) {
  #subHeader h1, #subHeaderLegal h1 {
    font-size: 20px;
    line-height: 25px;
  }
}

@media (max-width: 499px) {
  #subHeader {
    padding: 56px 24px;
  }

  #carwash #subHeader {
    padding: 24px 24px 40px 24px;
  }

  #subHeaderLegal {
    padding: 32px 24px;
  }
}

/*** Footer ***/

#containerFooter {
  padding: 104px 90px 32px 90px;
}

#topFooter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid #434343;
}

#topFooter a:hover, #topFooter a:focus {
  opacity: 0.7;
}

#logoFooterAndSocial {
  padding-right: 32px;
}

#logoTopFooter {
  margin-bottom: 48px;
  user-select: none;
  display: flex;
  align-items: center;
  font-family: 'Arco';
  font-size: 28px;
  color: #7DC2EC;
}

#logoTopFooter img {
  margin-top: 4px;
  margin-right: 8px;
  height: 56px;
}

.linksBottomFooter {
  color: #434343;
  font-family: 'Roboto';
  font-size: 15px;
}

.linksBottomFooter li {
  margin-bottom: 24px;
}

.linksBottomFooter h3 {
  font-family: 'RobotoBold';
  font-size: 17px;
  margin-bottom: 24px;
}

#containerLinksSocial ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  max-width: 200px;
}

#containerLinksSocial li {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

#containerLinksSocial i {
  margin-right: 8px;
}

#containerLinksSocial a {
  white-space: nowrap;
}

#bottomFooter {
  display: flex;
  justify-content: space-between;
  gap: 24px 48px;
  padding: 32px 0 40px 0;
  font-size: 13px;
  font-family: 'Roboto';
  color: #434343;
  line-height: 20px;
}

#bottomFooter ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  gap: 16px 40px;
  font-size: 13px;
}

#bottomFooter a {
  font-family: 'RobotoBold';
}

#bottomFooter a:hover, #bottomFooter a:focus {
  opacity: 0.7;
}

#credits {
  font-family: 'Roboto';
  font-size: 13px;
  color: #434343;
}

#credits a {
  font-family: 'RobotoBold';
}

#credits a:hover, #credits a:focus {
  opacity: 0.7;
}

@media (max-width: 1440px) {
  #containerFooter {
    padding: 104px 48px 32px 48px;
  }
}

@media (max-width: 1200px) {
  #topFooter {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1000px) {
  #topFooter {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  #topFooter {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 730px) {
  #bottomFooter {
    flex-wrap: wrap;
  }

  #bottomFooter ul {
    justify-content: left;
  }

  #bottomFooter {
    padding-bottom: 56px;
  }
}

@media (max-width: 600px) {
  #topFooter {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 499px) {
  #containerFooter {
    padding: 104px 24px 32px 24px;
  }
}

/** Avis **/

#containerAvisClients {
  padding: 192px 90px;
  background: url('../../ressources/img/background_shampoo_tout.webp') center/cover no-repeat;
  color: #434343;
}

#topContentAvisClients {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
  gap: 48px
}

#topContentAvisClients h2 {
  flex: 1;
  color: white;
  font-family: 'RobotoBold';
  font-size: 30px;
}

#topContentAvisClients div {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: right;
}

#listAvisClient {
  margin-bottom: 136px;
}

#listAvisClient ul {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

#listAvisClient li {
  box-sizing: border-box;
  min-width: 310px;
  width: 100%;
  background-color: white;
  padding: 24px 24px 32px 24px;
  border-radius: 10px;
}

.topAvisClient {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}

.topAvisClient p {
  font-family: 'RobotoBold';
  font-size: 17px;
  margin-bottom: 16px;
  color: black;
}

.topAvisClient span {
  font-family: 'Roboto';
  font-size: 14px;
  margin-bottom: 16px;
}

.containerPicAvisClient {
  width: 75px;
  height: 75px;
  aspect-ratio: 1/1;
}

.containerPicAvisClient img {
  width: 100%;
  height: 100%;
}

.contentAvisClient h3 {
  font-family: 'RobotoBold';
  font-size: 15px;
  margin-bottom: 25px;
  color: black;
}

.contentAvisClient h3 span {
  font-family: 'Roboto';
  display: inline-block;
  margin-left: 8px;
}

.contentAvisClient h3 span i {
  color: #FFD700;
}

.contentAvisClient p {
  font-family: 'Roboto';
  font-size: 15px;
  line-height: 25px;
}

#bottomAvisClient {
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  font-family: 'RobotoBold';
  color: white;
  user-select: none;
}

#avisClientsNote {
  font-size: 92px;
  line-height: 125px;
}

#avisClientsNote b {
  font-size: 152px;
}

#avisClientsStars {
  color: #FFD700;
  font-size: 75px;
  display: flex;
  gap: 16px;
}

#avisClientStarsAndNumber {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#avisClientsNumber {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
}

#avisClientsNumber img {
  height: 50px;
}

#buttonsAvisClientBottom {
  display: none;
}

@media (max-width: 1440px) {
  #containerAvisClients {
    padding: 192px 48px;
  }

  #topContentAvisClients h2 {
    font-size: 25px;
  }
}

@media (max-width: 1150px) {
  #listAvisClient ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  #listAvisClient li {
    min-width: inherit;
  }
}

@media (max-width: 1020px) {
  #topContentAvisClients {
    align-items: start;
  }

  #topContentAvisClients div {
    flex-direction: column;
    align-items: end;
  }

  #bottomAvisClient {
    gap: 24px;
  }

  #avisClientsNote {
    font-size: 50px;
    line-height: 80px;
  }

  #avisClientsNote b {
    font-size: 100px;
  }

  #avisClientsStars {
    font-size: 50px;
    display: flex;
    gap: 16px;
  }

  #avisClientsNumber {
    font-size: 18px;
  }

  #avisClientsNumber img {
    height: 40px;
  }
}

@media (max-width: 770px) {
  #topContentAvisClients {
    align-items: inherit;
    flex-direction: column;
  }

  #topContentAvisClients div {
    flex: 1;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
  }

  #topContentAvisClients {
    gap: 120px
  }
}

@media (max-width: 700px) {
  #topContentAvisClients {
    margin-bottom: 80px;
  }

  #listAvisClient ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 80px;
  }

  #topContentAvisClients div {
    display: none;
  }

  #buttonsAvisClientBottom {
    display: block;
    margin-top: 136px;
  }

  #buttonsAvisClientBottom div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap-reverse;
    gap: 48px;
  }

  #bottomAvisClient {
    gap: 10px;
  }

  #avisClientsNote {
    font-size: 40px;
    line-height: 70px;
  }

  #avisClientsNote b {
    font-size: 90px;
  }

  #avisClientsStars {
    font-size: 42px;
    display: flex;
    gap: 10px;
  }

  #avisClientsNumber {
    font-size: 16px;
  }

  #avisClientsNumber img {
    height: 38px;
  }
}

@media (max-width: 499px) {
  #containerAvisClients {
    padding: 192px 24px;
  }

  #bottomAvisClient {
    gap: 10px;
  }

  #avisClientsNote {
    font-size: 30px;
    line-height: 50px;
  }

  #avisClientsNote b {
    font-size: 70px;
  }

  #avisClientsStars {
    font-size: 30px;
    display: flex;
    gap: 8px;
  }

  #avisClientsNumber {
    font-size: 13px;
  }

  #avisClientsNumber img {
    height: 30px;
  }

  .contentAvisClient p {
    font-size: 13px;
    line-height: 20px;
  }
}

/*** Zone service ***/

#aeraServiceContainer {
  padding: 270px 90px;
}

#aeraServiceContent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

#aeraSerivceImgContainer {
  width: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
}

#aeraSerivceImgContainer img {
  width: 100%;
}

#aeraServiceTxtContainer {
  flex: 1;
  max-width: 800px;
  color: #434343;
  display: flex;
  flex-direction: column;
  gap: 54px;
}

#aeraServiceTxtContainer h2 {
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  line-height: 30px;
}

#aeraServiceTxtContainer p {
  font-family: 'Roboto';
  font-size: 17px;
  line-height: 27px;
}

#aeraServiceLinks {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 40px;
}

@media (max-width: 1440px) {
  #aeraServiceContainer {
    padding: 270px 48px;
  }
}

@media (max-width: 1130px) {
  #aeraServiceContent {
    align-items: inherit;
    flex-direction: column;
    gap: 40px;
  }

  #aeraSerivceImgContainer {
    width: 80%;
  }
}

@media (max-width: 700px) {
  #aeraSerivceImgContainer {
    width: 100%;
  }
}

@media (max-width: 700px) {
  #aeraServiceContainer {
    padding: 270px 32px;
  }
}

@media (max-width: 499px) {
  #aeraServiceContainer {
    padding: 270px 24px;
  }
}

/*** Pages légales ***/

#containerLegal {
  padding: 0 90px 100px 90px;
}

#contentLegal {
  font-family: 'Roboto';
  color: #434343;
  max-width: 850px;
}

#contentLegal h2 {
  font-family: 'RobotoBold';
  font-size: 17px;
  margin-bottom: 16px;
}

#contentLegal h3 {
  font-family: 'RobotoBold';
  font-size: 15px;
  margin-bottom: 16px;
}

#contentLegal p, #contentLegal li {
  font-size: 15px;
  line-height: 22px;
}

#contentLegal p {
  margin-bottom: 48px;
}

#contentLegal ul {
  margin-bottom: 48px;
}

#contentLegal li {
  margin-bottom: 8px;
}

#contentLegal li:last-child {
  margin: 0;
}

#contentLegal a {
  text-decoration: underline;
}

#contentLegal a:hover, #contentLegal a:focus {
  opacity: 0.7;
  text-decoration: none;
}

#legalPublicationDate {
  font-family: 'RobotoBold';
}

@media (max-width: 1440px) {
  #containerLegal {
    padding: 0 48px 100px 48px;
  }
}

@media (max-width: 499px) {
  #containerLegal {
    padding: 0 24px 100px 24px;
  }
}

/*** Contact ***/

#containerContact {
  padding: 127px 90px 360px 90px;
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 128px;
}

#containerContact aside {
  width: 15%;
  min-width: 300px;
  max-width: 500px;
  border-radius: 15px;
  background: linear-gradient(180deg, #7AC0EE 0%, rgba(27, 48, 130, 0.20) 100%);
  padding: 40px;
  color: white;
  font-family: 'Roboto';
  font-size: 17px;
}

#containerContact aside h2 {
  font-family: 'ChangaSemiBold';
  font-size: 20px;
  margin-bottom: 40px;
}

#otherContact {
  margin-bottom: 72px;
}

#otherContact a {
  display: block;
  margin-bottom: 24px;
}

#otherContact a:last-child {
  margin-bottom: 0;
}

#otherContact a:hover, #otherContact a:focus {
  opacity: 0.7;
}

#gridReseaux {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 18px;
}

#gridReseaux i {
  margin-right: 8px;
}

#gridReseaux a:hover, #gridReseaux a:focus {
  opacity: 0.7;
}

#containerContact #contentContact {
  flex: 1;
  min-width: 640px;
  color: #434343;
}

#contentContact h2 {
  margin: 15px 0 72px 0;
  font-family: 'ChangaSemiBold';
  font-size: 25px;
}

#contentContact form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 213px;
}

.contentInputLabel {
  display: flex;
  flex-direction: column;
}

.contentInputLabel label {
  font-family: 'ChangaSemiBold';
  font-size: 17px;
  margin-bottom: 16px;
}

.contentInputLabel input, .contentInputLabel textarea {
  font-family: 'Roboto';
  font-size: 15px;
  color: #434343;
  padding: 16px 20px;
  border: 1px solid #CECECE;
  border-radius: 10px;
}

input::placeholder, textarea::placeholder {
  color: #D9D9D9
}

#contentContact textarea {
  resize: none;
  height: 300px;
}

.containerTwoInput {
  display: flex;
  gap: 80px;
}

.containerTwoInput div {
  width: 100%;
}

#containerSubmitContactForm {
  display: flex;
  justify-content: right;
}

#submitFormContact, #businessName {
  display: none;
}

#formMessage {
  font-family: "RobotoBold";
  text-align: right;
}

@media (max-width: 1440px) {
  #containerContact {
    padding: 127px 48px 360px 48px;
    gap: 64px;
  }

  .containerTwoInput {
    gap: 48px;
  }
}

@media (max-width: 736px) {
  #containerContact {
    flex: inherit;
    flex-direction: column-reverse;
    flex-wrap: inherit;
  }

  #containerContact #contentContact {
    width: 100%;
    min-width: unset;
  }

  .containerTwoInput {
    flex-direction: column;
  }
}

@media (max-width: 499px) {
  #containerContact {
    padding: 127px 24px 360px 24px;
  }

  #containerContact aside {
    width: 100%;
    box-sizing: border-box;
    min-width: unset;
  }
}

/*** A propos ***/

#containerAbout {
  padding: 127px 90px 358px 90px;
  color: #434343;
}

#contentAboutIntro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
}

#contentAboutIntro div {
  max-width: 1000px;
}

#contentAboutIntro h2 {
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  margin-bottom: 56px;
}

#contentAboutIntro p {
  font-family: 'Roboto';
  font-size: 17px;
  line-height: 23px;
}

#buttonForContactAbout {
  margin-top: 120px;
  display: flex;
  justify-content: center;
}

#contentAbout {
  margin-top: 216px;
}

#contentAbout h2 {
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  line-height: 55px;
  color: #1F1F1F;
  margin-bottom: 30px;
}

#contentAbout ul {
  display: grid;
}

#contentAbout li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 88px 0 88px 0;
  max-width: 1500px;
}

#contentAbout ul li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  justify-self: end;
}

#contentAbout ul li:nth-child(odd) {
  justify-self: start;
}

#contentAbout li img {
  margin-right: 90px;
  width: 35%;
  border-radius: 10px;
}

#contentAbout ul li:nth-child(even) img {
  margin-left: 90px;
  margin-right: 0 !important;
}

#contentAbout h3 {
  font-family: 'ChangaSemiBold';
  font-size: 20px;
  line-height: 50px;
  color: #434343;
}

#contentAbout p {
  margin-top: 40px;
  font-family: 'Roboto';
  font-size: 17px;
  line-height: 30px;
  color: #434343;
}

#contentAbout a {
  display: inline-block;
  margin-top: 40px;
  font-family: 'ChangaSemiBold';
  font-size: 18px;
  line-height: 37px;
  color: #3E74D7;
}

#contentAbout a:hover, #contentAbout a:focus {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

#contentAbout a i {
  margin-left: 10px;
  color: #3E74D7;
  font-size: 16px;
  line-height: 37px;
}

@media (max-width: 1440px) {
  #containerAbout {
    padding: 127px 48px 358px 48px;
  }

  #contentAbout li img {
    margin-right: 48px;
  }
}

@media (max-width: 1270px) {
  #contentAboutIntro {
    align-items: start;
  }

  #containerTxtContentAboutIntro {
    flex: 1;
  }

  #containerImgContentAboutIntro {
    position: relative;
    width: 40%;
    overflow: hidden;
    border-radius: 15px;
  }

  #containerImgContentAboutIntro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1075px) {
  #contentAbout ul li {
    flex-direction: column !important;
    gap: 48px;
  }

  #contentAbout li img {
    margin: 0 !important;
  }

  #contentAbout li img {
    width: 50%;
  }
}

@media (max-width: 930px) {
  #contentAboutIntro {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media (max-width: 795px) {
  #contentAbout li img {
    width: 80%;
  }
}

@media (max-width: 650px) {
  #contentAbout li img {
    width: 100%;
  }
}

@media (max-width: 499px) {
  #containerAbout {
    padding: 127px 24px 358px 24px;
  }
}


/*** FAQ ***/

#containerFAQPagesServices {
  margin: 312px auto 100px auto;
  display: flex;
  justify-content: center;
}

#containerFAQPagesServices h2 {
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  color: #434343;
  margin-bottom: 72px;
}

#containerFAQ {
  padding: 124px 90px 358px 90px;
  display: flex;
  gap: 72px;
  color: #434343;
}

#contentFAQ h2 {
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  color: #434343;
  margin: 104px 0 72px 0;
}

#contentFAQ h2:first-child {
  margin-top: 0;
}

#containerFAQ aside {
  flex: 1;
}

#containerFAQ aside h2 {
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  margin-bottom: 32px;
}

#containerFAQ aside p {
  margin-bottom: 56px;
}

#containerFAQ aside p, #containerFAQ aside a {
  font-family: 'Roboto';
  font-size: 17px;
  line-height: 22px;
}

#containerFAQ aside a {
  display: inline-block;
  margin-bottom: 12px;
  color: #3E74D7;
}

#containerFAQ aside a:hover, #containerFAQ aside a:focus {
  opacity: 0.7;
}

#contentFAQ {
  width: 80%;
  max-width: 1300px;
}

#listFAQ {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-item {
  border: 2px solid #EAEAEA;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 16px 24px;
}

.faq-question h3 {
  margin: 0;
  font-size: 17px;
  line-height: 22px;
  font-family: 'ChangaSemiBold';
}

.faq-question span {
  transition: transform 0.3s ease;
  font-size: 36px;
}

.faq-item.open .faq-question span {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px; /* suffisamment grand pour tout afficher */
  padding: 10px 24px 32px 24px;
}

.faq-answer p, .faq-answer li {
  margin: 0;
  font-size: 17px;
  line-height: 22px;
  font-family: 'Roboto';
  color: #58595D;
}

.faq-answer ul {
  margin: 16px 0 32px 16px;
}

.faq-answer li {
  margin-bottom: 16px;
}

.faq-answer a {
  color: #3E74D7;
}

.faq-answer a:hover, .faq-answer a:focus {
  opacity: 0.7;
}

@media (max-width: 1440px) {
  #containerFAQ {
    padding: 124px 48px 358px 48px;
  }
}

@media (max-width: 940px) {
  #containerFAQ {
    flex-direction: column;
  }

  #containerFAQ #contentFAQ {
    width: 100%;
  }
}

@media (max-width: 499px) {
  #containerFAQ {
    padding: 124px 24px 358px 24px;
  }
}

/*** Princing ***/

#containerLavageAuto, #containerLavageTextiles, #containerLavageDomicile {
  padding: 124px 90px 250px 90px;
}

.introPricing {
  display: flex;
  gap: 56px;
  margin-bottom: 118px;
}

.containerImgIntro {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
}

.containerImgIntro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contentInfosIntro {
  flex: 1;
  color: #434343;
}

.contentInfosIntro h2 {
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  margin-bottom: 34px;
}

.contentInfosIntro p {
  font-family: 'Roboto';
  font-size: 17px;
  line-height: 22px;
}

#containerFormulesLavageAuto {
  margin-bottom: 96px;
}

#listFormulesLavageAuto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 96px 48px;
}

.containerFormule {
  width: 100%;
}

.containerFormule h3 {
  color: #434343;
  font-family: 'ChangaSemiBold';
  font-size: 20px;
  margin-bottom: 32px;
}

.contentFormule {
  background-color: white;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  height: 600px;
  position: relative;
}

#shampoo1 h4, #shampoo1 .ctaFormule a {
  background-color: #7AC0EE;
}

#shampoo2 h4, #shampoo2 .ctaFormule a {
  background-color: #6A9BD7;
}

#shampoo3 h4, #shampoo3 .ctaFormule a {
  background-color: #3E74D7;
}

#shampoo4 h4, #shampoo4 .ctaFormule a {
  background-color: #1B3082;
}

.contentFormule h4 {
  padding: 24px 32px;
  font-family: 'ChangaSemiBold';
  font-size: 20px;
  color: white;
  border-radius: 10px 10px 0 0;
}

.contentFormule ul {
  padding: 24px 32px;
}

.contentFormule li {
  font-family: 'Roboto';
  font-size: 17px;
  line-height: 22px;
  color: #434343;
  margin-bottom: 24px;
}

.ctaFormule {
  text-align: center;
  margin: auto;
  position: absolute;
  bottom: 32px;
  width: 100%;
}

.ctaFormule span {
  display: inline-block;
  font-family: 'ChangaSemiBold';
  font-size: 20px;
  margin-bottom: 24px;
  color: #434343;
}

.ctaFormule a {
  display: block;
  width: 80%;
  margin: auto;
  padding: 16px;
  border-radius: 10px;
  font-family: 'ChangaSemiBold';
  font-size: 18px;
  color: white;
}

.ctaFormule a:hover, .ctaFormule a:focus {
  opacity: 0.7;
}

#containerOptionsLavageAuto, #containerForfaitDomicile {
  margin-bottom: 96px;
}

#containerOptionsLavageAuto h3, #containerForfaitDomicile h3, #containerOptionsDomicile h3, #containerFormulesTextiles h3, #containerFormulesTextilesMatelas h3, #containerFormulesOtherCanapes h3, #containerFormulesTapisMoquettes h3 {
  color: #434343;
  font-family: 'ChangaSemiBold';
  font-size: 20px;
  margin-bottom: 48px;
}

#containerOptionsLavageAuto ul, #containerForfaitDomicile ul, #containerOptionsDomicile ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
}

#containerFormulesOtherCanapes ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px 162px;
}

#containerFormulesTapisMoquettes ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px 90px;
}

#containerOptionsLavageAuto li, #containerForfaitDomicile li, #containerOptionsDomicile li, #containerFormulesOtherCanapes li, #containerFormulesTapisMoquettes li {
  padding: 32px 32px 72px 32px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
  color: #434343;
  font-size: 17px;
  font-family: 'Roboto';
  position: relative;
}

#containerOptionsLavageAuto h4, #containerForfaitDomicile h4, #containerOptionsDomicile h4, #listFormulesTextiles h4, #listFormulesTextilesMatelas h4, #containerFormulesOtherCanapes h4, #containerFormulesTapisMoquettes h4 {
  font-family: 'RobotoBold';
  margin-bottom: 8px;
}

#containerOptionsLavageAuto span, #containerForfaitDomicile span, #containerOptionsDomicile span, #listFormulesTextiles span, #listFormulesTextilesMatelas span, #containerFormulesOtherCanapes span, #containerFormulesTapisMoquettes span {
  position: absolute;
  right: 32px;
  bottom: 32px;
}

#containerForfaitDetailing h3 {
  color: #434343;
  font-family: 'ChangaSemiBold';
  font-size: 20px;
  margin-bottom: 32px;
}

#containerForfaitDetailing div {
  padding: 32px 32px 72px 32px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
  color: #434343;
  font-size: 17px;
  font-family: 'Roboto';
  position: relative;
  height: 80px;
  overflow: hidden;
}

#containerForfaitDetailing h4 {
  font-family: 'RobotoBold';
  margin-bottom: 8px;
}

#containerForfaitDetailing span {
  position: absolute;
  left: 32px;
  bottom: 32px;
}

#containerForfaitDetailing img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.containerCtaSection {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.containerCtaSection div {
  width: 500px;
  justify-content: center;
}

.colorCTA1 div {
  background-color: #7AC0EE;
  color: white;
}

.colorCTA2 div {
  background-color: #6A9BD7;
  color: white;
}

.colorCTA3 div {
  background-color: #3E74D7;
  color: white;
}

.colorCTA4 div {
  background-color: #1B3082;
  color: white;
}

.colorCTA1:hover, .colorCTA1:focus, .colorCTA2:hover, .colorCTA2:focus, .colorCTA3:hover, .colorCTA3:focus, .colorCTA4:hover, .colorCTA4:focus {
  opacity: 0.7;
}

#contentFormulesTextiles, #contentFormulesTextilesMatelas {
  display: flex;
  gap: 90px;
}

#containerImgFormulesTextiles, #containerImgFormulesTextilesMatelas {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
}

#containerFormulesTextilesMatelas {
  margin-top: 200px;
}

#containerImgFormulesTextiles img, #containerImgFormulesTextilesMatelas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#listFormulesTextiles, #listFormulesTextilesMatelas {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

#listFormulesTextiles ul, #listFormulesTextilesMatelas ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
  flex: 1;
}

#listFormulesTextiles li, #listFormulesTextilesMatelas li {
  padding: 32px 32px 72px 32px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
  color: #434343;
  font-size: 17px;
  font-family: 'Roboto';
  position: relative;
}

.containerCtaColumn div {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

#containerFormulesOtherCanapes, #containerFormulesTapisMoquettes {
  margin-top: 200px;
}

@media (max-width: 1440px) {
  #containerLavageAuto, #containerLavageTextiles, #containerLavageDomicile {
    padding: 124px 48px 250px 48px;
  }

  #contentFormulesTextiles, #contentFormulesTextilesMatelas {
    gap: 48px;
  }
}

@media (max-width: 1230px) {
  #listFormulesTextiles, #listFormulesTextilesMatelas {
    width: 40%;
  }
}

@media (max-width: 970px) {
  #listFormulesTextiles, #listFormulesTextilesMatelas {
    width: 50%;
  }
}

@media (max-width: 900px) {
  .introPricing {
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }

  .containerImgIntro {
    aspect-ratio: inherit;
    width: 40%;
    height: 200px;
  }

  #listFormulesLavageAuto {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 820px) {
  #contentFormulesTextilesMatelas {
    flex-direction: column-reverse;
  }

  #contentFormulesTextiles {
    flex-direction: column;
  }

  #listFormulesTextiles, #listFormulesTextilesMatelas {
    width: 100%;
  }

  #containerImgFormulesTextiles, #containerImgFormulesTextilesMatelas {
    height: 250px;
    flex: inherit;
  }
}

@media (max-width: 670px) {
  #containerForfaitDetailing img {
    right: -150px;
  }
}

@media (max-width: 640px) {
  #containerPrestations ul {
    grid-auto-rows: minmax(450px, 500px);
    gap: 2% 6%;
  }

  .containerCtaSection {
    display: block;
  }

  .containerCtaSection div {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 499px) {
  #containerLavageAuto, #containerLavageTextiles, #containerLavageDomicile {
    padding: 124px 24px 250px 24px;
  }

  .containerImgIntro {
    aspect-ratio: inherit;
    min-width: 280px;
    height: 200px;
  }
}

@media (max-width: 440px) {
  #containerForfaitDetailing img {
    right: -240px;
  }
}

/*** Nos réalisations ***/

#containerRealisations {
  padding: 124px 90px 360px 90px;
}

.sectionOurWork {
  margin-top: 280px;
}

.sectionOurWork:first-child {
  margin-top: 0;
}

.sectionOurWork h2 {
  font-family: 'ChangaSemiBold';
  font-size: 20px;
  color: #434343;
  margin-bottom: 80px;
}

.sectionOurWork ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 56px 48px;
  margin-bottom: 152px;
}

.containerMediaReal {
  overflow: hidden;
  border-radius: 10px;
}

.containerMediaReal video {
  width: 100%;
  cursor: pointer;
}

.sectionOurWork img {
  width: 100%;
  cursor: pointer;
}

.sectionOurWork h3 {
  font-family: 'Roboto';
  font-size: 17px;
  margin-top: 16px;
  color: #434343;
}

.ctaOurWork {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  color: white;
  border-radius: 20px;
  background-color: #2A377E;
  gap: 32px 24px;
}

.ctaOurWork p {
  font-family: 'ChangaSemiBold';
  font-size: 20px;
  line-height: 28px;
}

.ctaOurWork .buttonBase {
  white-space: nowrap;
}

@media (max-width: 1440px) {
  #containerRealisations {
    padding: 124px 48px 360px 48px;
  }
}

@media (max-width: 1200px) {
  .ctaOurWork p {
    font-size: 17px;
    line-height: 25px;
  }
}

@media (max-width: 1000px) {
  .ctaOurWork {
    flex-direction: column;
  }
}

@media (max-width: 670px) {
  .sectionOurWork ul {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }
}

@media (max-width: 499px) {
  #containerRealisations {
    padding: 124px 24px 360px 24px;
  }

  .sectionOurWork ul {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 56px 24px;
  }
}


/*** Realisations Mini ***/

#realisationsMiniContainer {
  padding: 32px 0 0 0;
}

#realisationsMiniContent {
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../img/realisations-background-lavage-auto-metz-woippy-shampootout.jpg') center/cover no-repeat;
}

#realisationsMiniContent h2 {
  padding: 72px 90px;
  background-color: #7DC2EC;
  color: white;
  font-family: 'ChangaSemiBold';
  font-size: 25px;
}

#realisationsList ul {
  padding: 72px 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7%;
}

.containerMediaRealisation {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
}

.containerMediaRealisation img {
  width: 100%;
}

#realisationsList h3 {
  font-family: 'RobotoBold';
  font-size: 17px;
  line-height: 22px;
  color: #434343;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#containerVoirPlusReal {
  position: relative;
  background-color: #2A377E;
  height: 100%;
  border-radius: 10px;
}

#containerVoirPlusReal p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: 'ChangaSemiBold';
  font-size: 17px;
  width: 80%;
  text-align: center;
  line-height: 30px;
}

#containerDiscoverReal {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  color: white;
  font-family: 'ChangaSemiBold';
  font-size: 17px;
}

#containerDiscoverReal span {
  display: inline-block;
  margin-left: 8px;
  font-size: 20px;
}

#realisationsList li:last-child a:hover #containerVoirPlusReal, #realisationsList li:last-child a:focus #containerVoirPlusReal {
  background-color: #3e74d7;
}

@media (max-width: 1440px) {
  #realisationsMiniContent h2 {
    padding: 72px 48px;
  }

  #realisationsList ul {
    padding: 72px 48px;
    gap: 48px;
  }

  #realisationsList h3 {
    font-size: 14px;
    line-height: 22px;
  }

  .containerMediaRealisation {
      margin-bottom: 8px;
  }

  #containerVoirPlusReal p, #containerDiscoverReal {
    font-size: 15px;
    line-height: 25px;
  }
}

@media (max-width: 1050px) {
  #realisationsList ul {
    grid-template-columns: repeat(3, 1fr);
  }

  #containerSupprForThree {
    display: none;
  }

  #containerVoirPlusReal p, #containerDiscoverReal {
    font-size: 17px;
    line-height: 30px;
  }
}

@media (max-width: 800px) {
  #realisationsList ul {
    grid-template-columns: repeat(2, 1fr);
  }

  #containerSupprForThree {
    display: list-item;
  }
}

@media (max-width: 550px) {
  #realisationsList h3 {
    font-size: 13px;
    line-height: 18px;
  }

  .containerMediaRealisation {
    margin-bottom: 4px;
  }

  #containerVoirPlusReal p, #containerDiscoverReal {
    font-size: 12px;
    line-height: 22px;
  }

  #containerDiscoverReal {
    bottom: 1%;
  }
}

@media (max-width: 499px) {
  #realisationsMiniContent h2 {
    padding: 72px 24px;
    font-size: 20px;
  }

  #realisationsList ul {
    padding: 72px 24px;
    gap: 72px 24px;
  }
}

/*** Prestations Index ***/

#containerPrestations {
  padding: 32px 90px 0px 90px;
  margin: 0 0 283px 0;
  display: flex;
  flex-direction: column;
}

#containerPrestations h2 {
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  color: #434343;
  margin-bottom: 88px;
}

#containerPrestations ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5% 6%;
  padding-bottom: 142px;
  grid-auto-rows: minmax(450px, 550px);
}

#containerPrestations li {
  height: 100%;
}

.containerPrestation {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

.containerPrestation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.containerPrestation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 215px;
  background: linear-gradient(0deg, rgba(217, 217, 217, 0) 0%, #737373 100%);
  pointer-events: none;
}

.containerPrestation h3 {
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  line-height: 35px;
  text-align: center;
}

#ctaPrestations {
  width: 100%;
  display: flex;
  justify-content: center;
}

#ctaPrestations div {
    width: 500px;
    justify-content: center;
}

@media (max-width: 1440px) {
  #containerPrestations {
    padding: 32px 48px 0px 48px;
  }
}

@media (max-width: 1310px) {
  #containerPrestations ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 5% 10%;
  }
}

@media (max-width: 1080px) {
  #containerPrestations ul {
    gap: 5% 6%;
  }
}

@media (max-width: 990px) {
  #containerPrestations ul {
    gap: 5% 4%;
  }
}

@media (max-width: 950px) {
  .containerPrestation h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 840px) {
  #containerPrestations ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 2% 10%;
  }
}

@media (max-width: 640px) {
  #containerPrestations ul {
    grid-auto-rows: minmax(450px, 500px);
    gap: 2% 6%;
  }

  #ctaPrestations {
    display: block;
  }

  #ctaPrestations div {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 540px) {
  #containerPrestations ul {
    gap: 2% 4%;
  }

  .containerPrestation h3 {
    top: 3%;
    font-size: 18px;
    line-height: 25px;
    padding: 0 16px;
  }
}

@media (max-width: 599px) {
  #containerPrestations {
    padding: 32px 24px 0px 24px;
  }

  #containerPrestations ul {
    grid-auto-rows: minmax(250px, 350px);
    gap: 2% 6%;
  }

  #containerPrestations h2 {
    font-size: 20px;
  }
}


/*** Avantages ***/

#containerAdvantages {
  padding: 240px 90px 440px 90px;
}

#contentAdvantages ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  gap: 6%;
}

#contentAdvantages ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contentAdvantage img {
  width: 128px;
  margin-bottom: 24px;
}

.contentAdvantage span {
  font-family: 'RobotoBold';
  font-size: 17px;
  color: #434343;
  margin-bottom: 40px;
}

.contentAdvantage p {
  font-family: 'Roboto';
  font-size: 17px;
  line-height: 22px;
  color: #434343;
}

@media (max-width: 1440px) {
  #containerAdvantages {
    padding: 240px 48px 440px 48px;
  }
}

@media (max-width: 900px) {
  #contentAdvantages ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 15% 10%;
  }
}

@media (max-width: 599px) {
  #containerAdvantages {
    padding: 240px 24px 440px 24px;
  }

  .contentAdvantage p {
    font-size: 15px;
    line-height: 20px;
  }
}

/*** A propos top page ***/

#aProposTopContent {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

#txtAProposTopContent {
  width: 35%;
  max-width: 800px;
}

#txtAProposTopContent h2 {
  font-family: 'ChangaSemiBold';
  font-size: 25px;
  line-height: 30px;
  color: #434343;
  margin-bottom: 54px;
}

#txtAProposTopContent p {
  font-family: 'Roboto';
  font-size: 17px;
  color: #434343;
  line-height: 27px;
  margin-bottom: 54px;
}

#containerImgAProposTopContent {
  width: 30%;
  border-radius: 10px;
  overflow: hidden;
}

#aProposTopContent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1550px) {
  #containerImgAProposTopContent {
    width: 20%;
    height: 550px;
  }

  #txtAProposTopContent {
    width: 50%;
    max-width: 800px;
  }
}

@media (max-width: 1440px) {
  #containerAdvantages {
    padding: 240px 48px 440px 48px;
  }
}

@media (max-width: 1000px) {
  #containerImgAProposTopContent {
    width: 30%;
  }
}

@media (max-width: 900px) {
  #contentAdvantages ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 15% 10%;
  }
}

@media (max-width: 820px) {
  #aProposTopContent {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  #containerImgAProposTopContent {
    width: 80%;
    height: 250px;
  }

  #txtAProposTopContent {
    width: 80%;
    max-width: 800px;
  }

  #aProposTopContent.toBottom {
    gap: 80px;
  }
}

@media (max-width: 570px) {
  #containerImgAProposTopContent {
    height: 200px;
  }
}

@media (max-width: 599px) {
  #containerAdvantages {
    padding: 240px 24px 440px 24px;
  }

  .contentAdvantage p {
    font-size: 15px;
    line-height: 20px;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  height: 85dvh;
}

.modal-content video, .modal-content img {
  height: 100%;
  max-width: 100%;
  border-radius: 10px;
}

.modal-bg {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.3); /* optionnel pour assombrir */
  z-index: 0;
}

.close {
  position: absolute;
  top: -20px;
  right: -10px;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

.blur {
  filter: blur(5px);
  transition: filter 0.3s ease;
}

body.no-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}


/*** Estimate ***/

#contentEstimateContact {
  padding: 135px 90px;
}

@media (max-width: 1440px) {
  #contentEstimateContact {
    padding: 135px 48px;
  }
}

@media (max-width: 499px) {
  #contentEstimateContact {
    padding: 135px 24px;
  }
}



#mobileMenuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: white;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 60px;
}

#mobileMenuOverlay ul {
  list-style: none;
  padding: 0;
  text-align: center;
  flex-direction: column;
}

#mobileMenuOverlay ul li {
  margin: 20px 0;
}

#navTop #mobileMenuOverlay li {
  display: list-item;
}

#mobileMenuOverlay ul li a {
  font-size: 20px;
  color: #7DC2EC;
  text-decoration: none;
  font-weight: bold;
}

#mobileMenuOverlay ul li a:hover, #mobileMenuOverlay ul li a:focus {
  opacity: 0.7;
}

#closeMobileMenu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}
