:root {
  --primary-h: 33; /* hue */
  --primary-s: 22%; /* saturation */
  --primary-l: 74%; /* lightness */

  --accent-h: 0; /* hue */
  --accent-s: 0%; /* saturation */
  --accent-l: 31%; /* lightness */
 
  --text-h: 30; /* hue */
  --text-s: 2%; /* saturation */
  --text-l: 24%; /* lightness */

  --background-h: 0; /* hue */
  --background-s: 0%; /* saturation */
  --background-l: 100%; /* lightness */

  --title-color: hsla(35, 5%, 23%, 1);
  --background-2: hsla(33, 22%, 74%, 0.3);
  --link-color: var(--primary-color-40);

  --brand50: hsla(30, 23%, 95%, 1);
  --brand100: hsla(30, 23%, 90%, 1);
  --brand200: hsla(35, 22%, 85%, 1);
  --brand300: hsla(34, 22%, 79%, 1);
  --brand400: hsla(33, 22%, 74%, 1);
  --brand500: hsla(34, 11%, 59%, 1);
  --brand600: hsla(35, 7%, 45%, 1);
  --brand700: hsla(30, 8%, 30%, 1);
  --brand800: hsla(30, 8%, 15%, 1);

  /* font size */
  /* ===== */

  --display2xl: 60px;
  --displayxl: 50px;
  --displaylg: 40px;
  --displaymd: 25px;
  --displaysm: 20px;
  --displayxs: 18px;

  --textxl: 30px;
  --textlg: 25px;
  --textmd: 15px;
  --textsm: 13px;
  --textxs: 10px;

  --h1-font-size: var(--display2xl);
  --h2-font-size: var(--displayxl);
  --h3-font-size: var(--displaylg);
  --h4-font-size: var(--displaymd);
  --h5-font-size: var(--displaysm);
  --h6-font-size: var(--displayxs);

  --h1-mobile-font-size: var(--textxl);
  --h2-mobile-font-size: var(--displaysm);
  --h3-mobile-font-size: var(--displayxs);
  --h4-mobile-font-size: var(--textlg);
  --h5-mobile-font-size: var(--textsm);
  --h6-mobile-font-size: var(--textxs);

  /* FONT FAMILY */
  /* ===== */
  --primary-font: "Manrope", serif;
  --secondary-font: "Cormorant", serif;

  /* RADIUS */
  /* ===== */
  --border-radius: 0px;
  --button-border-radius: 5px;

  /* FONT WEIGHT */
  /* ===== */
  --font-weight-regular: 400;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height: 1.5rem;

  --transition: 0.3s all ease-in-out;
}


/* =============================== */
/*           GENERAL                 */
/* =============================== */
.card-image {
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-interne .sc-content .clear_both {
  margin-bottom: 60px;
}
.politique-de-confidentialite main .btn-contact {
  margin-top: 1rem;
}
a,
.card-image img {
  transition: var(--transition);
}
p {
  margin: 1.5rem 0;
}
body :where(address) {
  margin: 0;
}
.paginationControl {
  text-align: center;
  margin: 60px auto 28px;
}
.sitemap-nav li {
  margin: 10px 0;
}
h1.h1-geoloc span::before,
.title-1.h1-geoloc span::before {
  display: none;
}
@media screen and (min-width: 601px) and (max-width: 992px) {
  .btn:not(.fluid) {
    width: auto;
  }
}
@media screen and (max-width: 992px) {
  .blocs img,
  .page-interne .sc-content .ac-doubleColonne .ac-colonne img,
  .ac-colonne img {
    display: block;
    max-width: 600px;
    max-height: 400px;
    margin: 30px auto;
    object-fit: cover;
    width: 100%;
  }
  .header-content .nav ul li a.selected {
    background: transparent;
  }
}
@media screen and (min-width: 993px) {
  .page-interne .sc-content .clear_both {
    margin-bottom: 80px;
  }
  .index-page main .section {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-interne .sc-content .clear_both {
    margin-bottom: 120px;
  }
  .index-page main .section {
    padding: 120px 0;
  }
}
/* =============================== */
/*           BOUTONS                 */
/* =============================== */

[class*="btn"] a.btn ,.btn-primary {
  padding: 13px 20px;
  border-radius: var(--button-border-radius);
  position: relative;
  z-index: 0;
}
.btn.outlined {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}
.btn.outlined:hover {
  color: var(--background-color);
  background-color: var(--accent-color);
}
.btn.accent:hover {
  background-color: var(--accent-color-60);
}
.outlined-white {
  border: 1px solid var(--text-color);
  color: var(--text-color);
  gap: 5px;
  padding: 13px 32px;
}
.outlined-white:hover {
  background-color: var(--accent-color);
  border-color:var(--accent-color);
  color: var(--background-color);
}
.outlined-white:hover a {
   color: var(--background-color);
}
form#formulaire_5 input#field_3:hover {
  background-color: var(--accent-color);
  color: var(--background-color);
}
/* =============================== */
/*           BRAND                 */
/* =============================== */

.brand a {
  display: inline-block;
  transition: opacity 0.3s;
}
.brand a:hover {
  opacity: 0.75;
}
header .brand img.footer-only,
footer .brand img.header-only,
.rappel_telephonique .brand img.footer-only {
  display: none;
}
/* =============================== */
/*           HEADER                 */
/* =============================== */
.menu-mobile .btn-menu {
  color: var(--primary-color);
  border: 1px solid var(--background-2);
  border-radius: 100px;
}
.menu-mobile,.header-content .nav > ul > .sous_menu.opened > a,
.header-content .nav .dropdown > .sous_menu.opened > a {
  height: 90px;
  background-color:transparent;
}
.menu-mobile {
  background-color: var(--background-color);
}
.menu-mobile .row {
  width: 100%;
  margin: 0;
}
.phone,.outlined-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.phone a {
  font-weight: 900;
  font-size: 17px;
  line-height: 28px;
}
a.lien-maps {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .header-content .nav .dropdown,
  .header-content .nav .ssdropdown {
    top: 90px;
  }
  .header-content #nav-container {
    margin-top: 90px;
  }
  .header-content .nav#topbar-nav li:not(.opened) a,.header-content .nav#main-nav li:not(.opened) a,.header-content .nav#main-nav li.index-link a {
    padding: 1.5rem;
    border-bottom: solid 1px var(--background-2);
  }
  .header-content .nav > ul > .sous_menu.opened > a,
  .header-content .nav .dropdown > .sous_menu.opened > a {
    color: var(--primary-color-50);
    font-size: 13px;
  }
  .header-content nav ul li {
    margin: 0 4px;
  }
}
@media screen and (min-width: 993px) {
  .header-contact a.lien-maps:hover {
    color var(--background-color-20);
    text-decoration: none;
}
  .header-content .brand {
    margin-bottom: 20px;
  }
  .cabinet.bold {
    font-size:13px;
    line-height: normal;
}
 .header-content .reseaux-sociaux {
    min-width: 24px;
}
  .row-coordonnees .col {
    padding: 0 6px;
  }
  .header-content .lien-maps {
    font-size: 13px;
  }
  .header-content .lien-maps:hover {
    text-decoration: underline;
  }
  .row-nav {
    margin-top: 26px;
  }
  .main-header-content .container {
    padding: 19px 0;
  }
  .header-icon {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    background-color: var(--background-2);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .header-content .nav ul li a.selected,
  .header-content .nav ul li:hover > a,
  .header-content .nav ul.dropdown li a.selected,
  .header-content .nav ul.dropdown li:hover > a,
  footer ul.dropdown li a.selected,
  footer ul.dropdown li:hover > a, .header-content .nav ul li.sous_menu ul.ssdropdown li a.selected {
    color: #000;
  }
  .header-content .nav#topbar-nav > ul > li > a,
  .header-content .nav#main-nav > ul > li > a,
  .nav-footer a {
    padding: 0.25rem 0.75rem;
    position: relative;
  }
  .header-content .nav > ul > li > a:before,
  .nav-footer a:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    translate: -50% 50%;
    height: 2px;
    width: 0%;
    background: var(--accent-color);
    transition: var(--transition) ease-in-out;
  }
  .nav-footer ul.dropdown a:before {
    display: none;
  }
  .header-content .nav > ul > li > a:hover:before,
  .header-content .nav > ul > li > a.selected:before,
  .nav-footer a:hover:before,
  .nav-footer a.selected:before {
    width: 80%;
  }
  .header-content .nav ul li.sous_menu > a::after {
    content: url("../assets/gifs/after-nav.svg");
  }
  .header-content .contact {
    display: none;
  }
  .main-header-content nav a {
    font-size: var(--textmd);
    line-height: 11px;
    font-weight: 500;
  }
  .main-header-content nav ul.dropdown a,
  footer ul.dropdown a {
    font-size: var(--textsm);
  }
  .main-header-content nav ul.ssdropdown a,
  footer ul.ssdropdown a {
    font-size: var(--textxs);
  }
  .header-contact .lien-maps {
    font-size: var(--textsm);
    line-height: 21px;
  }
  .row-header {
    flex-direction: column;
  }
}
@media screen and (min-width: 1440px) {
  .row-header {
    flex-direction: row;
  }
  .header-content .brand {
    margin-bottom: 0px;
    max-width: 400px;
  }
}
/* =============================== */
/*           FOLD + SLIDER         */
/* =============================== */
.slider-slick {
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  z-index: 0;
}
.slider-slick .slick {
  height: 100%;
}
.slide-img {
  position: relative;
  min-height: auto;
  background-size: cover;
  z-index: 0;
}
.slide-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(285.08deg, rgba(0, 0, 0, 0) 5.83%, rgba(0, 0, 0, 0.7) 83.48%);
  z-index: -1;
}
.slide-content {
  position: relative;
  padding-block: 30px;
  max-width: 692px;
  color: var(--background-color);
}
.slide-content h2 {
    margin-top: 16px;
}
.slide-img.slide-01 {
  background-image: url("../assets/gifs/slider/slide-01.jpg");
}
.slide-img .container {
  min-height: auto;
}
.fold .slick-slider {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .slide-content {
    text-align: center;
    margin: 0 auto;
  }
  .slide-content .btn-contact {
    display: none;
  }
  .fold-top,
  .fold-interne {
    padding: 12px 5%;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .fold .btn-contact {
    margin-top: 10px;
  }
  .row-bdd .btn-contact {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 993px) {
  .slide-img::before {
    display: none;
  }
  .slide-content .btn-contact {
    margin-top: 1.5rem;
  }
  .slide-content {
    padding-block: 283px;
  }
}
/* =============================== */
/*        STYLE COMMUN            */
/* =============================== */
.blocs .btn-contact {
  margin-top: 24px;
}
.blocs p:nth-of-type(1):not(.blocs .note p, #bloc-03 p),.ac-doubleColonne p:nth-of-type(1) {
  font-weight: var(--font-weight-semi-bold);
}
main p a {
  color: inherit;
  text-decoration: underline;
}
h1,
.title-1,.page-interne h1 span {
  font-weight: var(--font-weight-semi-bold);
  font-size: var(--h1-mobile-font-size);
  display: inline-block;
}
h2,
.title-2, .index-page h1 {
  font-size: var(--h2-mobile-font-size);
}
.slide-content h2 {
  color: var(--background-color);
  padding-bottom: 0;
}
.slide-content h2::before {
  display: none;
}
h3,
.title-3,h1.h1-geoloc span {
  font-size: var(--h3-mobile-font-size);
}
h4,
.title-4 {
  font-size: var(--h4-mobile-font-size);
}
h1,
h2,
h3,
h4,
h5,
[class*="title"],
[class*="title"] a,
h1 span,
h1.h1-geoloc span,
#relance a {
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-regular);
  margin: 0;
}
h1.h1-geoloc span {
  margin: 16px 0 0;
}
h2,h3 {
  color: var(--title-color);
}
h2, .title-2.align-center {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.card-title,
.card-title a {
  font-size: var(--textlg);
  line-height: var(--textlg);
  text-decoration: none;
}
h2::before,.title-2.align-center::before{
  position: absolute;
  content: '';
  height: 1px;
  width: 80%;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
}
.title-2.align-center {
  max-width: 500px;
  margin: 0 auto;
}
.title-2.align-center::before {
  width: 100%;
  right: 0;
}
.sur-title {
  position: relative;
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 24px;
  max-width: max-content;
  font-weight: var(--font-weight-bold);
  font-family: var(--primary-font);
}
.sur-title.align-center {
  margin: 0 auto 24px;
}
.note {
  padding: 24px;
  margin-top: 24px;
  background-color: var(--background-2);
}
.note p {
  font-size: var(--displaymd);
  line-height: var(--displaymd);
  font-family: var(--secondary-font);
  margin: 0 0 1rem;
  font-weight: 400;
  color: var(--title-color);
}
#encart-prestations::before, #encart-prestations::after,div#encart-formulaire::before ,div#encart-formulaire::after,footer::before, footer::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
#encart-prestations::after,div#encart-formulaire::after,footer::after {
  opacity: 1;
  background-color: var(--background-2);
  background-image: none;
}
.page-interne div#encart-formulaire::before,.page-interne div#encart-formulaire::after,.page-interne #encart-prestations::before,.page-interne #encart-prestations::after,.page-interne footer::before,.page-interne footer::after {
  left: -300px;
  right: -300px;
  width: 1920px;
  margin: 0 auto;
}
@media screen and (min-width: 993px) {
  .note p {
    font-size: var(--displaylg);
    line-height: 34.2px;
  }
  .card-title,
  .card-title a {
    font-size: var(--textxl);
    line-height: 34.2px;
  }
  h1,
  .title-1, .page-interne h1 span {
    font-size: var(--h1-font-size);
    line-height: 70.2px;
  }
  h2,
  .title-2, .index-page h1 {
    font-size: var(--h2-font-size);
    line-height: 53.2px;
    font-weight: var(--font-weight-regular);
  }
  h3,
  .title-3,
  h1.h1-geoloc span,
  .title-1.h1-geoloc span {
    font-size: var(--h3-font-size);
    line-height: 34.2px;
  }
  h4,
  .title-4 {
    font-size: var(--h4-font-size);
    line-height: var(--h4-font-size);
  }
}
/* =============================== */
/*            BLOC 01            */
/* =============================== */
#bloc-01 .bloc-text {
margin-top: 20px;
}
#bloc-01 .bloc-text p:nth-of-type(1) {
  margin-top: 0;
}
@media screen and (min-width:993px){
  #bloc-01 .bloc-text {
    margin-top: 0;
    border-left: 2px solid var(--brand400);
    padding-left: 24px;
  }
}
/* =============================== */
/*        ENCART PRESTATIONS       */
/* =============================== */
#encart-prestations {
  position: relative;
  z-index: 0;
}
#encart-prestations::before {
  background-image: url('../assets/gifs/bg-prestation.jpg');
  opacity: 12%;
}
.slick-prestations {
  margin-top: 2rem;
}
#encart-prestations .container {
  position: relative;
}
#encart-prestations a {
  display: block;
  text-decoration: none;
  background-color: var(--background-color);
  padding: 30px 24px;
  color: var(--text-color);
}
#encart-prestations a:hover img {
  transform: scale(1.1);
}
.prestations-card-image {
  max-height: 215px;
  overflow: hidden;
}
.prestations-card-image img {
  min-height: 280px;
  width: 100%;
  object-fit: cover;
}
.prestations-card-title {
  margin: 24px 0;
}
/* =============================== */
/*            BLOC              */
/* =============================== */ 
#bloc {
  position: relative;
  z-index: 0;
}
#bloc::before {
position: absolute;
content: '';
z-index: -1;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('../assets/gifs/bg.jpg');
background-size: cover;
transform: rotateY(-180deg);
background-position: left;
}
#bloc .bloc-text {
  padding: 82px 44px;
  background: hsla(0, 0%, 100%, 0.8);
}
#bloc .bloc-text h2 {
  padding-bottom:0;
}
#bloc .bloc-text h2::before {
  display: none;
}
#bloc .bloc-text span {
  color: var(--accent-color);
  font-size: var(--textsm);
  line-height: 21px;
  text-transform: uppercase;
}
.bloc-map.map-1 {
  margin-bottom: 24px;
}
@media screen and (min-width: 993px) {
  #bloc-02 .bloc {
    display: flex;
    flex-direction: column;
  }
  div#bloc-03 p {
    font-weight: var(--font-weight-regular);
    margin-bottom: 0;
  }
}
/* =============================== */
/*         BLOC FORMULAIRE        */
/* =============================== */
div#encart-formulaire{
  position: relative;
  z-index: 0;
}
div#encart-formulaire .container{
  position: relative;
  z-index: 2;
}
div#encart-formulaire .title {
  margin-bottom: 3;
  font-size: var(--displayxs);
  line-height: var(--displayxs);
}
div#encart-formulaire::before {
  background-image: url('../assets/gifs/bg-contact.jpg');
  filter: grayscale(100%);
  opacity: 15%;
}
form#formulaire_5 {
  background-color: var(--background-color);
  border: 1px solid hsla(214, 32%, 91%, 1);
  box-shadow: 0px 10px 15px 0px hsla(0, 0%, 0%, 0.03);
  box-shadow: 0px 3px 11px 0px hsla(0, 0%, 0%, 0.06);
  margin: 2rem 0;
  padding: 32px;
}
form#formulaire_5 p input,
form#formulaire_5 textarea {
  border-radius: 0;
  border: 1px solid hsla(240, 6%, 90%, 1);
  background-color: var(--background-color);
  width: 100%;
}
label.noFloatingLabel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
label.noFloatingLabel input {
  width: auto;
}
.g-recaptcha {
  margin-bottom: 24px;
}
form#formulaire_5 textarea {
  min-height: 130px;
}
div#encart-formulaire {
  position: relative;
}
form#formulaire_5 .row .col label {
  max-height: 19px;
}
label.required {
  font-size: var(--textmd);
  margin-bottom: 8px;
}
form#formulaire_5 p {
  margin-top: 0;
}
label.noFloatingLabel,
.divGenerateurRequired {
  font-size: var(--textmd);
}
.divGenerateur label.optional {
  display: none;
}
.divGenerateur {
  margin: 0;
}
form#formulaire_5 input#field_3 {
  padding: 13px 20px;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  background-color: var(--background-color);
}
.divGenerateur label {
  font-size: var(--textsm);
}
.outlined-white span {
  font-size: 24px;
}
div#encart-formulaire .boutons,.bloc-contact {
  display: flex;
flex-direction: column;
row-gap: 16px;
}
.bloc-contact,.bloc-contact a {
  color: var(--text-color);
}
.bloc-contact .lien-maps span {
  display: block;
}
.bloc-contact p strong {
  display: block;
  margin-bottom: 5px;
}
.bloc-contact p {
    margin: 0;
}
.bloc-contact a.lien-maps {
    display: block;
    margin: 16px 0;
}
.bloc-contact a.lien-maps span {
    display: inline-block;
}
@media screen and (max-width: 992px) {
  div#encart-formulaire .row.row-1,div#encart-formulaire .row.row-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
}
@media screen and (min-width: 601px) {
  div#encart-formulaire .boutons {
    margin: 0;
    flex-direction: row;
    gap: 24px;
    flex-wrap: nowrap;
    min-width: max-content;
  }
}
@media screen and (min-width: 993px) {
  .page-interne div#encart-formulaire {
    padding: 120px 0;
  }
  .bloc-contact .title {
    font-size: var(--displaysm);
    line-height: 34.2px;
  }
  form#formulaire_5 {
    margin: 0;
  }
}
/* =============================== */
/*           ENCART ACTUALITES     */
/* =============================== */
.slick-actualites {
  margin-top: 40px;
}
.actualites-card-content {
  margin-top: 14px;
}
.actualites-date {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: var(--font-weight-regular);
  line-height: 21px;
  transition: var(--transition);
  margin-bottom: 14px;
}

.actualites-card-title a {
  color: var(--title-color);
  text-decoration: none;
}
.card-image {
  overflow: hidden;
}
.actualites-card-text {
  margin-top: 14px;
  max-height: 68px;
  overflow: hidden;
}
.actualites-card:hover img,#encart-prestations a:hover img {
  transform: scale(1.1);
}
.actualites-card-image {
  max-height: 341px;
}
.actualites-card-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
  min-height: 341px;
}
body.actualites-listing footer {
  margin-top: 80px;
}
.actualites-detail h2 {
  width: max-content;
}
.actualites-detail h2::before {
  width: 100%;
}
.actualites-listing h1, .actualites-detail h1 {
  margin-bottom: 20px;
}
@media screen and (min-width: 601px) {
  .actualites-listing .recherche_actu #recherche_actu_submit {
    margin-left: 0;
  }
}
@media screen and (min-width: 993px) {
  .actualites-card-title {
    height: 69px;
    overflow: hidden;
  }
}
/* =============================== */
/*      PAGE ACTUALITES DETAIL     */
/* =============================== */
.actualites-detail .detail-actu-image {
  max-width: 50%;
}
div#listing-autres-actus-categorie ul {
  padding-inline-start: 0;
}
div#listing-autres-actus-categorie li {
  margin-top: 0.5rem;
}
body.actualites-detail .listing-autres-actus-categorie {
  height: max-content;
  padding: 24px;
  margin-bottom: 24px;
  background-color: var(--background-2);
  border-radius: var(--border-radius);
}
body.actualites-detail .listing-autres-actus-categorie .detail-btn {
  text-align: center;
}
#listing-autres-actus-categorie ul li ul li {
  list-style: none !important;
}
#listing-autres-actus-categorie ul li a {
  text-decoration: none;
}
#listing-autres-actus-categorie ul li a:hover {
  text-decoration: underline;
}
.actualites-detail .detail-actu-reseaux-sociaux {
  align-items: flex-start;
}
.detail-actu-reseaux-sociaux > div {
  display: flex;
}
.detail-actu-contenu p {
  margin: 0;
}

/* =============================== */
/*              FOOTER             */
/* =============================== */
footer {
  font-size: 14px;
 position: relative;
 z-index: 0;
}
footer::before {
  background-image: url('../assets/gifs/bg-footer.jpg');
  filter: grayscale(100%);
  opacity: 6%;
  z-index: 0;
}
footer::after {
  background-color: #a79c90;
}
footer .lien-maps span {
  display: block;
}
footer .ligne {
  display: block;
  height: 1px;
  width: 100%;
  border-bottom: 1px solid var(--text-color);
  margin: 56px 0;
}
footer .section.footer-1 {
  position: relative;
  padding: 117.5px 0;
  z-index: 2;
}
.footer-row-contact svg {
    min-height: 40px;
    min-width: 40px;
}
footer nav li {
  line-height: 28px;
  margin-bottom: 10px;
}
.footer-1 li svg:not(.footer-1 .reseaux-sociaux li svg) {
  margin-right: 13.56px;
}
.footer-1 .reseaux-sociaux .col {
  padding: 0 5px;
}
.footer-row-contact svg {
  width: 20px;
}
.footer-row-contact address {
  margin: 0;
}
.footer-row-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
footer .siret {
  font-size: 14px;
  font-weight: 400;
  line-height: 27.2px;
}
.footer-row-contact a {
  text-decoration: none;
}
.footer-row-contact .tel {
  font-size: var(--textlg);
  line-height: 34.2px;
  font-family: var(--secondary-font);
}
footer .title-4 {
  position: relative;
  font-size:var(--textxl);
  line-height: 34.2px;
  margin-bottom: 34px;
}
footer .title-4::before {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  width: 126px;
  height: 1px;
  background-color: var(--accent-color);
}
.liste-1 li a,
.liste-2 li a,
.footer-row-contact a,
.footer-row-contact .lien-maps {
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
}
.footer-1 a:hover, footer address:hover .lien-maps {
  color: var(--background-color);
  text-decoration: underline;
}
footer .reseaux-sociaux ul {
  margin-top: 24px;
}
footer .title.bold {
  font-weight: var(--font-weight-bold);
  font-family: var(--primary-font);
}
@media screen and (max-width: 600px) {
  .footer-row-contact {
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .footer-text {
    margin-bottom: 20px;
}
.bloc-top-footer .btn-contact {
    margin-top: 20px;
}
  footer .title-4::before {
    right: 0;
    margin: 0 auto;
  }
  footer .section.footer-1 {
    padding: 54px 0 25px;
  }
  footer {
    text-align: center;
    padding: 0 0 1.5rem;
  }
  .siret {
    margin-top: 1.5rem;
  }
.reseaux-sociaux ul,
  .footer-row-contact {
    justify-content: center;
  }
  .footer-row-contact {
    flex-direction: column;
  }
  .footer-text {
    max-width: 600px;
    margin: 0 auto;
}
}
@media screen and (min-width: 993px) {
  footer .row {
    flex-wrap: nowrap;
}
  .footer-nav {
    gap: 20px;
    flex-wrap: nowrap;
  }
  footer .col:has(.reseaux-sociaux) {
    max-width: 306px;
  }
  .contact-page .intro {
    margin-bottom: 0;
  }
  footer nav ul {
    margin-top: 0;
    margin-bottom: 0;
  }
  .liste-2 {
    margin-left: 80px;
  }
  footer nav li {
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  .footer-text {
    min-width: 300px;
}
}
@media screen and (min-width: 993px) and (max-width: 1335px) {
  footer nav li svg {
    margin-right: 4.56px;
  }
  footer .footer-row-contact {
    gap: 6px;
  }
  footer .liste-2 {
    margin-left: 8px;
  }
}
/* =============================== */
/*           CONTACT PAGE    */
/* =============================== */
.section-contact {
  padding-top: 0;
}
.section-hero h1{
  margin: 0;
  font-size: var(--h3-font-size);
  line-height: normal;
}
.section-hero {
  position: relative;
  background-image: url('../assets/gifs/slider/slide-01.jpg');
  background-size: cover;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 0;
}
.section-hero::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(199, 23%, 21%, 0.5);
  z-index: -1;
}
.section-info {
  background-color: var(--background-2);
}
.col.contact-page-horaires .row,
.contact-page-coordonnees.reset .row,
.contact-page-infos-pratiques .row {
  flex-wrap: nowrap;
}
.contact-page .contact-page-infos-pratiques {
  margin-bottom: 2rem;
}
.contact-page-infos-pratiques .title-2 {
  margin: 0;
}
.contact-page .map-container iframe {
  max-height: 400px;
}
/* =============================== */
/*          PAGES INTERNE    */
/* =============================== */
.page-interne #encart-actualites {
  padding-bottom: 0;
}
.ac-doubleColonne p:nth-of-type(2) {
  position: relative;
}
.ac-doubleColonne p:nth-of-type(2)::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url('../assets/gifs/check.svg');
  width: 14px;
  height: 14px;
}
.page-interne div#container {
  padding-top: 0;
}
.ac-doubleColonne.hero-bg p {
  color: var(--background-color);
  margin: 1rem 0 0;
}
body[class*="listing"] .hero-interne,
.actualites-detail .hero-interne, .politique-de-confidentialite .hero-interne,.plan-site .hero-interne {
  position: relative;
  margin-bottom: 60px;
  height: 351px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-interne .title-1,.hero-interne h1 {
  max-width: 900px;
  margin: 0;
}
body[class*="listing"] .fold {
  margin-top: -2px;
}
body[class*="listing"] main > .section,
.actualites-detail main > .section,.politique-de-confidentialite main > .section,.plan-site main > .section {
  padding-top: 0;
}
.sc-content .ac-doubleColonne.hero-bg {
  position: relative;
  flex-direction: column;
  justify-content: center;
  min-height: 351px;
  padding: 80px 0;
}
.section-hero {
  position: relative;
}
.hero-bg::before,
.hero-interne::before,
.hero-interne::after,
.hero-bg::after {
  position: absolute;
  content: "";
  background: url(../assets/gifs/slider/slide-01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 130%;
  left: -23%;
  max-width: 1920px;
  top: 0;
  height: 100%;
  z-index: -1;
  background-position: top;
}

nav#fil_ariane,
#fil_ariane,
.fil-ariane {
  margin: 0 0 3em;
}
.page-interne #encart-actualites .container, .page-interne #encart-points-fort .container,.page-interne .encart-avis .container,.page-interne div#encart-formulaire .container {
  width: 100%;
}
@media screen and (max-width: 992px)  {
  .hero-bg::after, .hero-interne::after {
background: hsla(199, 23%, 21%, 0.5);
    background-image: none;
  }
}
@media screen and (min-width: 993px) {
  .hero-bg p {
    max-width: 55%;
  }
  .ac-doubleColonne.hero-bg h1 {max-width: 76%;}
  section.ac-doubleColonne p:nth-of-type(1):not(.ac-doubleColonne.hero-bg p) {
    margin-top: 0;
}
.sc-content .ac-doubleColonne.section-interne-3 .ac-colonne_1,.sc-content .ac-doubleColonne.section-interne-3-right .ac-colonne_2 {
    width: 58%;
}
.sc-content .ac-doubleColonne.section-interne-3 .ac-colonne_2,.sc-content .ac-doubleColonne.section-interne-3-right .ac-colonne_1 {
    width: 42%;
}
  .hero-bg::before,
  .hero-interne::before,
  .hero-interne::after,
  .hero-bg::after {
    width: 300%;
  }
  .page-interne nav#fil_ariane {
    margin-top: -32px;
  }
.page-interne #encart-points-fort {
    padding: 120px 0;
  }
  .page-interne #encart-actualites {
    padding: 120px 0 0;
  }
  .page-interne .encart-avis {
    padding: 120px 0 50px;
  }
  .section.section-hero {
    margin-bottom: 28px;
  }
  .page-interne
    .sc-content
    img:not(.page-interne #encart-actualites img, .page-interne
      #encart-tarifs
      img) {
    height: 100%;
    object-fit: cover;
  }
  h2.western,
  .sc-content .ac-doubleColonne h2 {
    margin-top: 0;
  }
  div#container:not(.devis div#container) {
    padding-bottom: 0;
  }
  .page-interne
    section:not(section.ac-doubleColonne, section.ac-doubleColonne
      section, #relance, .ac-include)
    p,
  section.ac-doubleColonne p:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  .page-interne p.intro {
    margin-bottom: 30px;
  }
  #fil_ariane,
  nav#fil_ariane,
  .fil-ariane {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .page-interne nav#fil_ariane {
    margin-top: -60px;
  }
}


