:root {
  --primary-h: 21; /* hue */
  --primary-s: 26%; /* saturation */
  --primary-l: 98%; /* lightness */

  --primary2-color: hsla(11, 26%, 89%, 1);
  --primary3-color: hsla(15, 29%, 97%, 1);

  --secondary-h: 23; /* hue */
  --secondary-s: 27%; /* saturation */
  --secondary-l: 94%; /* lightness */

  --accent-h: 22; /* hue */
  --accent-s: 23%; /* saturation */
  --accent-l: 71%; /* lightness */

  --bg-color: hsla(23, 18%, 35%, 1);
  --bg2-color: hsla(24, 19%, 15%, 1);

  --text-h: 13; /* hue */
  --text-s: 7%; /* saturation */
  --text-l: 26%; /* lightness */

  --background-h: 15; /* hue */
  --background-s: 29%; /* saturation */
  --background-l: 97%; /* lightness */

  --title-color: hsla(10, 8%, 14%, 1);
  --primary-font: "Inter", sans-serif;
  --secondary-font: "the-seasons",  serif;
  --marge-section-mobile: 40px;
  --marge-section-desck: 120px;
  --h1-font-size: 3.625rem;
  --h2-font-size: 2.5rem;
  --h3-font-size: 2.0625rem;
  --h4-font-size: 1.75rem;
  --headings-line-height: 1.333333;
  --link-color: var(--primary-color-40);
  --border-radius: 1.25rem;
  --button-border-radius: 5rem;
  --border-radius-img: 50rem;
  --transition: 0.5s all ease-in-out;
  --font-weight-light: 300;
  --font-weight-Regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
}

/* ================================== GENERAL ================================== */
a[href="#"] {
  cursor: default;
}

main p a {
  color: var(--accent-color);
  transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h1.h1-geoloc span,
[class*="title"] {
  font-family: var(--secondary-font);
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

h1 span {
  margin-top: 0.75rem;
}

p {
  margin: 1.5rem 0;
}

.sitemap-nav li {
  margin: 10px 0;
}

#blocHorsLigne {
  z-index: 9999 !important;
}
body :where(address) {
  margin: 0;
}
.index-page main p u {
  text-decoration: none;
}
.index-page main p u em,
.bg-notes p {
  display: block;
  border: 2px solid var(--accent-color-80);
  padding: 1rem;
  font-style: normal;
  border-radius: 1.25rem;
}

/* ================================== BRAND ================================== */

.brand img,
.brand svg {
  position: relative;
  transition: var(--transition);
}

.brand a:hover img,
.brand a:hover svg {
  transform: scale(0.9);
}

.brand a {
  display: block;
  transition: opacity 0.3s;
}

header .brand img.footer-only,
footer .brand img.header-only,
.rappel_telephonique .brand img.footer-only {
  display: none;
}

/* ================================== SECTIONS ================================== */

.index-page main .section {
  padding-block: var(--marge-section-mobile);
}

@media screen and (min-width: 993px) {
  .index-page main .section {
    padding-block: var(--marge-section-desck);
  }
}

/* ================================== CARDS ================================== */

.card {
  position: relative;
  display: block;
  transition: var(--transition);
}
.card a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 4;
  text-decoration: none;
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card-image img,
.card * {
  transition: var(--transition);
}

.card:hover img {
  transform: scale(1.1);
  transition: var(--transition);
}

/*=========== BOUTONS=========*/
[class*="btn"] a.btn {
  padding: 1rem 1.5rem;
  font-weight: var(--font-weight-semi-bold);
  letter-spacing: 0px;
}

[class*="btn"] .accent.btn {
  color: var(--title-color);
}

[class*="btn"] a.btn svg {
  margin-left: 0.5rem;
}

[class*="btn"] a.btn:not(.accent),
[id*="formulaire"] .btn.primary {
  color: hsla(0, 0%, 12%, 1);
  background: transparent;
  border: 2px solid var(--accent-color);
  padding: 11px 15px;
}

[class*="btn"] a.btn:not(.accent):hover,
[id*="formulaire"] .btn.primary:hover {
  background-color: var(--bg-color);
  color: white;
  border: 2px solid var(--bg-color);
}

a.btn:has(.content) {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: 0.3s;
  height: 47px;
  border: none;
  padding: 0;
}

a.btn .content {
  position: relative;
  transition: 0.5s;
  left: 0;
  height: 100%;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 993px) {
  a.btn .content:last-of-type {
    left: 100%;
    bottom: 100%;
  }
  a.btn:hover .content:first-of-type {
    left: -100%;
  }
  a.btn:hover .content:last-of-type {
    left: 0%;
  }
}

@media screen and (max-width: 992px) {
  a.btn .content:last-of-type {
    display: none;
  }
}

@media screen and (min-width: 601px) {
  .btn:not(.fluid) {
    width: auto;
  }
}

/* ================================== HEADER ================================== */

@media screen and (max-width: 992px) {
  .menu-mobile .brand {
    width: 80%;
  }
  .menu-mobile {
    height: 90px;
  }
  .map-container {
    margin-top: 2rem;
  }
  .menu-mobile .btn-menu {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 100%;
  }

  .menu-mobile .row {
    width: 100%;
    margin: 0;
    flex-wrap: nowrap;
  }
  .fold {
    padding: 20px 0px;
  }
  .fold address {
    margin-bottom: 0.5rem;
    text-align: center;
  }
  header a.tel {
    display: block;
  }
  .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 {
    padding: 0.75rem;
  }
  .header-content .nav > ul > .sous_menu.opened > a,
  .header-content .nav .dropdown > .sous_menu.opened > a {
    height: 90px;
  }
}
@media screen and (min-width: 601px) {
  .fold address {
    margin-bottom: 0rem;
  }
}

@media screen and (min-width: 993px) {
  .header-content {
    background: transparent;
  }
  .sticky-active .header-content {
    background: var(--background-color);
  }
  .top-bar {
    background: var(--background-color);
  }
  .top-bar .row {
    justify-content: center;
    gap: 0.5rem;
  }
  .main-header-content {
    margin-block: 31px;
  }
  .fold {
    display: none;
  }

  .header-content a.tel {
    font-weight: var(--font-weight-semi-bold);
    color: var(--title-color);
  }

  .header-nav .col {
    padding: 0 0.25rem;
  }
  .top-bar .container {
    padding-block: 0.625rem;
  }
  .header-content .nav ul li a.selected,
  .header-content .nav ul li:hover > a {
    background: #ebe2dd;
    color: inherit;
    border-radius: var(--button-border-radius);
  }

  .header-content .nav ul li.sous_menu ul.dropdown,
  .header-content .nav ul li.sous_menu ul.ssdropdown {
    color: var(--text-color);
  }
  .main-header-content .container {
    border-radius: 5rem;
    background: white;
  }
  .header-content .nav#main-nav ul {
    justify-content: center;
  }
  .header-content nav li:not(.sousLi) {
    margin: 0 8px;
  }
  .header-content .nav#main-nav > ul > li > a,
  .header-content .nav#topbar-nav > ul > li > a,
  .nav-footer a {
    padding: 9px;
  }

  .header-content .nav#main-nav > ul > li > a {
    padding: 9px 4px;
    font-size: 14px;
  }
  .header-content nav ul.dropdown a {
    font-size: 10px;
  }

  .header-content .nav ul li.sous_menu ul.dropdown > li > a:hover,
  .header-content .nav ul li.sous_menu ul.dropdown > li > a.selected {
    color: var(--accent-color);
  }
}

@media screen and (min-width: 1400px) {
  .top-bar .row {
    justify-content: space-between;
    gap: 0rem;
  }
  .header-content .col {
    padding: 0 0.75rem;
  }
  .header-content .nav#main-nav > ul > li > a {
    padding: 9px 21px;
  }
  .header-content nav a,
  .header-content .nav#main-nav > ul > li > a {
    font-size: 1rem;
  }
  .header-content nav ul.dropdown a {
    font-size: 0.75rem;
  }
}

/* ================================== SLIDER ================================== */

.slider-slick {
  width: 100%;
  position: relative;
  z-index: 0;
  max-width: 98%;
  margin: auto;
}
.slide-img .container {
  min-height: auto;
}

.slide-img {
  min-height: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
  border-radius: 1.25rem;
}
.slide-content a.btn.accent {
  background: var(--primary3-color);
}
.slide-content .btn-rdv {
  margin-top: 1.5rem;
}
.slide-img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: hsla(23, 17%, 31%, 0.6);
  top: 0;
  z-index: -1;
  border-radius: 1.25rem;
}

.slide-content .title-1,
.bg-interne .title-1,
.bg-interne h1 {
  color: white;
}
.slide-content .btn-rdv {
  margin-top: 1.5rem;
}
.slide-img.slide-01 {
  background-image: url("../assets/gifs/slider/slide-01.jpg");
}
.slick-actualites,
.slick-avis,
.row.slick-prestations {
  margin-top: 4rem;
}
.slick-dots li {
  margin: 0 0.25rem;
  padding: 0.25rem;
}
.slick-dots li button .slick-dot-icon:before {
  font-size: 16px;
}
.slick-dots li button {
  height: 1rem;
  width: 1rem;
  border-radius: var(--border-radius-anim);
  padding: 0;
}

.bg-interne {
  position: relative;
  z-index: 0;
  padding-block: 4rem;
  max-width: 98%;
  margin: auto;
  margin-bottom: 3rem;
}
#container {
  padding-top: 0;
}
.slick-slider {
  margin-bottom: 0;
}
.bg-interne:before {
  position: absolute;
  content: "";
  left: 0.5%;
  width: 100%;
  background-image: url(../assets/gifs/slider/slide-01.jpg);
  top: 0;
  height: 100%;
  background-position: center top;
  z-index: -2;
  border-radius: 1.25rem;
  background-size: cover;
}
.bg-interne:after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0.5%;
  background: hsla(23, 17%, 31%, 0.6);
  top: 0;
  height: 100%;
  background-position: center top;
  z-index: -1;
  border-radius: 1.25rem;
}
@media screen and (max-width: 992px) {
  .slide-content [class^="btn-"],
  .bg-interne [class^="btn-"] {
    display: none;
  }
  .slide-content {
    padding-block: 6rem;
  }
  .slide-content .title-1 {
    margin: 0;
  }
  h1 span,
  .title-1 span {
    font-size: calc(var(--h2-font-size) - var(--h2-font-size) / 2);
  }
  h1 {
    font-size: 2rem;
  }
  h2,
  .title-2 {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 993px) {
  .bg-interne {
    padding-block: 144px 5rem;
    margin-top: -5rem;
  }
  .slider-slick:before {
    left: 2rem;
    background-image: url(../assets/gifs/before-slide.png);
    width: 140px;
    height: 242px;
    bottom: -2rem;
  }

  .slider-slick:after {
    right: 0rem;
    background-image: url(../assets/gifs/after-slide.png);
    width: 186px;
    height: 361px;
    bottom: -6rem;
  }
  .slider-slick {
    margin-top: -5rem;
    margin-right: 0.6%;
  }

  .slide-img .title-1 span,
  .bg-interne .title-1 span {
    font-size: var(--h1-font-size);
  }
  .slide-content {
    padding-block: 14.906rem;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  h1 span,
  h1.h1-geoloc span,
  [class*="title"] {
    margin: 0;
  }
  h1.h1-geoloc {
    font-size: 3.438rem;
  }
  .title-1,
  .title-1 span {
    font-size: 3.625rem;
  }
}

/************************************************ PRESTATIONS******************************************************* */

#encart-prestations .encart-text {
  margin-bottom: 4rem;
}

#encart-prestations .title-2 {
  margin: 0 0 20px;
}

.prestations-card-title a,
.title-pf {
  text-decoration: none;
  line-height: 100%;
  font-weight: bold;
  font-size: 1.5rem;
}
.prestations-card-title {
  margin-top: 1.25rem;
}
#first-card:before {
  position: absolute;
  content: "";
  background-image: url(../assets/gifs/first-card.png);
  width: 154px;
  height: 326px;
  left: -50px;
  top: -30px;
}

#child-card:before {
  position: absolute;
  content: "";
  background-image: url(../assets/gifs/child-card.png);
  width: 157px;
  height: 196px;
  left: -93px;
  bottom: 24px;
}

#last-card:before {
  position: absolute;
  content: "";
  background-image: url(../assets/gifs/last-card.png);
  width: 148px;
  height: 191px;
  right: -70px;
  top: -33px;
}

.prestations-card-image,
.prestations-card img {
  border-radius: var(--border-radius-img);
}

.btn-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  background-color: var(--primary2-color);
  padding: 11px 21px;
  border-radius: var(--button-border-radius);
  text-align: center;
  color: var(--bg2-color);
  z-index: 2;
}

.prestations-card:hover .btn-card {
  opacity: 1;
}
.prestations-card {
  max-width: 312px;
  margin: auto;
}
.prestations-card:hover .prestations-card-image {
  position: relative;
  z-index: 0;
}

.prestations-card:hover .prestations-card-image:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: hsla(22, 19%, 51%, 0.4);
  top: 0;
  z-index: 1;
}
.prestations-card:hover img {
  transform: scale(1.1);
}

@media screen and (min-width: 993px) {
  .prestations-card-title a,
  .title-pf {
    font-size: 1.75rem;
  }
  #encart-prestations {
    padding-bottom: 10rem;
  }
}

/* ****************************************** POINT FORTS ********************************************* */
.points-forts {
  position: relative;
  padding: 1.25rem 0;
}
.points-forts .container {
  background: hsla(23, 25%, 82%, 1);
  padding: 2.5rem;
  border-radius: 543.75rem;
}
.page-interne .points-forts:before {
  left: -23%;
}
.points-forts:before {
  position: absolute;
  content: "";
  width: 2000px;
  height: 437px;
  left: 0;
  right: 0;
  margin: auto;
  top: -50px;
  z-index: -1;
  background-image: url(../assets/gifs/before-pf.png);
  background-position: center;
}

.card-pf {
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}

/* ================================== BLOC 01 ================================== */
#bloc-01 img,
#bloc-04 img,
.bloc-img {
  border-radius: var(--border-radius-img);
}
#bloc-01 .rs {
  background: var(--primary3-color);
  border-radius: var(--border-radius-img);
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  width: max-content;
  margin: auto;
  padding: 10px 30px;
}
#bloc-01 .rs .row {
  justify-content: center;
}
.reseaux-sociaux svg {
  fill: black;
}

#bloc-left {
  position: relative;
}
[id*="bloc"] .btn-rdv {
  margin-top: 2rem;
}

/* ************************************************ENCART CONTACT **********************************************/

.page-interne #encart-contact,
.contact-interne {
  position: relative;
}
.contact-page .fold address {
  display: none;
}
.page-interne #encart-contact::before {
  position: absolute;
  content: "";
  width: 140%;
  height: 100%;
  left: -20%;
  top: 0;
  z-index: -1;
  background: var(--accent-color);
  border-radius: 1.25rem;

  background-size: cover;
}
.page-interne .contact-interne:before {
  left: -16rem;
  bottom: -8rem;
}
.page-interne .contact-interne:after {
  right: -16rem;
  top: -3rem;
}
.contact-interne:before {
  position: absolute;
  content: "";
  left: -16rem;
  bottom: -8rem;
  background-image: url(../assets/gifs/before-contact.png);
  width: 204px;
  height: 356px;
}

.contact-interne:after {
  position: absolute;
  content: "";
  right: 0;
  top: -3rem;
  background-image: url(../assets/gifs/after-contact.png);
  width: 237px;
  height: 333px;
}

#encart-contact .reseaux-sociaux svg {
  fill: var(--bg2-color);
}

#encart-contact .reseaux-sociaux {
  margin: 1.5rem 0;
}
#encart-contact a.btn.accent {
  background: var(--primary3-color);
}
#encart-contact p {
  margin-bottom: 1.5rem;
}

#encart-contact address {
  margin: 0;
}

#encart-contact h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: var(--font-weight-semi-bold);
  font-family: var(--primary-font);
}

#encart-contact .card-contact {
  margin-bottom: 30px;
  color: var(--bg2-color);
}
#encart-contact #last {
  margin-bottom: 0;
}
.page-interne #encart-contact .container,
.page-interne .points-forts .container {
  width: 100%;
}
#encart-contact .container {
  position: relative;
  z-index: 1;
}
#encart-contact {
  width: 98%;
  margin: auto;
  border-radius: 1.25rem;
  margin-right: 0.3%;
  padding-block: 60px;
}
@media screen and (max-width: 993px) {
  #encart-contact .btn-rdv {
    margin-bottom: 1.5rem;
  }
}
/* ================================== BLOC 02 ================================== */
#bloc-02 img,
#bloc-05 img {
  border-radius: var(--border-radius-img) 0 0 var(--border-radius-img);
}
@media screen and (min-width: 992px) {
  .col-img {
    position: relative;
  }

  #bloc-02 img,
  #bloc-05 img {
    width: 155%;
    max-width: none;
    height: 100%;
  }
  [id*="bloc"] h2:not(:first-of-type) {
    margin-top: 3rem;
  }
}
/* ================================ ENCART AVIS ================================== */

.slick-avis .card-content .row {
  flex-wrap: nowrap;
}
.avis-card {
  padding: 1rem;
  border-radius: var(--border-radius);
  background: var(--primary2-color);
}
.avis-card .avis-card-text {
  padding-left: 4.75rem;
  height: 6.5rem;
  margin-top: 0.5rem;
}
.avis-name {
  font-weight: 700;
  color: var(--title-color);
}
.encart-avis .align-right button.show-more.btn.small,
.encart-avis .avis-card.js-more .avis-card-text::after {
  display: none;
}
.avis-date {
  margin-left: -1rem;
  font-size: 0.625rem;
}
.encart-avis .row.s-middle.s-start {
  padding-top: 0.25rem;
}

.slick-avis,
.slick-actualites {
  position: relative;
}

.slick-avis:before {
  position: absolute;
  content: "";
  width: 2000px;
  height: 338px;
  left: -22%;
  right: 0;
  margin: auto;
  z-index: -1;
  background-image: url(../assets/gifs/before-avis.png);
  background-position: center;
  top: 0;
  bottom: 0;
}

@media screen and (min-width: 993px) {
  .encart-avis.section.gtm-encart-avis {
    padding-block: 5rem;
  }
}
/* ================================== BLOC 03 ================================== */
#bloc-03 img,
.img-interne {
  border-radius: 0 var(--border-radius-img) var(--border-radius-img) 0;
}
@media screen and (min-width: 992px) {
  #bloc-03 img {
    position: relative;
    left: -52%;
    width: 150% !important;
    max-width: none;
    z-index: 1;
    object-fit: cover;
  }
}
/* ============================== ENCART ACTUALITES ========================== */

.actualites-card * {
  transition: var(--transition);
}
.actualites-card-image {
  border-radius: 0.625rem;
}

.actualites-card {
  background: var(--primary2-color);
  border-radius: 1.25rem;
  padding: 1.25rem;
}
.encart-btn {
  margin-top: 3.75rem;
}
.actualites-card-content {
  padding-top: 20px;
}
.actualites-card-title a {
  color: var(--title-color);
  text-decoration: none;
  font-size: 1.5rem;
}
.actualites-card-text {
  margin: 8px 0;
}

.actualites-card-image a {
  display: block;
  position: relative;
}

.link a {
  color: var(--text-color);
}

.slick-actualites:before {
  position: absolute;
  content: "";
  width: 2000px;
  height: 432px;
  left: -22%;
  right: 0;
  margin: auto;
  z-index: -1;
  background-image: url(../assets/gifs/before-actu.png);
  background-position: center;
  top: 0;
  bottom: 0;
}

/* ================================ ACTUALITES LISTING/DETAIL ========================== */

#listing-autres-actus-categorie ul {
  text-align: center;
  padding-inline-start: 0;
}

.actualites-listing main > .section,
.actualites-detail main > .section {
  padding-top: 0;
}
#listing-autres-actus-categorie span.title-4 {
  margin: 0 auto 20px auto;
  display: block;
}
.actualites-detail .detail-actu-image {
  max-width: 50%;
}
#listing-autres-actus-categorie li {
  margin-top: 0.5rem;
}
.actualites-detail .listing-autres-actus-categorie {
  height: max-content;
  padding: 24px;
  background: var(--accent-color-90);
  border-radius: var(--border-radius);
  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-listing .bg-interne:before,
.actualites-listing .bg-interne:after,
.actualites-detail .bg-interne:before,
.actualites-detail .bg-interne:after,
.page-interne .bg-interne:before,
.page-interne .bg-interne:after {
  width: 144%;
  left: -22%;
}
[class*="actualites-"] main > .section,
.politique-de-confidentialite main > .section,
.plan-site main > .section {
  padding-top: 0;
}
.actualites-listing .bg-interne {
  margin-top: -2rem;
}
.actualites-detail .detail-actu-reseaux-sociaux {
  align-items: flex-start;
}
.detail-actu-reseaux-sociaux > div {
  display: flex;
}
.detail-actu-contenu p {
  margin: 0;
}

@media screen and (min-width: 601px) {
  .actualites-listing .recherche_actu #input_recherche_actu {
    width: calc(100% - 5.25rem);
  }
}

@media screen and (min-width: 993px) {
  .actualites-listing .bg-interne {
    margin-top: -6rem;
  }
}

/* ============================= FOOTER ======================== */

footer {
  background-color: var(--primary2-color);
  width: 98%;
  margin: auto;
  border-radius: 1.25rem;
  margin-right: 0.3%;
}

body:not(.index-page) footer .section.footer-1 {
  padding: 2rem 0 1.5rem;
}
.page-404 footer {
  margin-top: auto;
  background: var(--primary-color);
}

.page-404 .brand {
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}
@media screen and (min-width: 993px) {
  #footer-nav .nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
  }
  #footer-nav nav a {
    font-size: 14px;
  }
  footer #footer-nav .nav ul li.sous_menu ul.dropdown {
    bottom: 100%;
  }
}

@media screen and (min-width: 1400px) {
  #footer-nav .nav > ul {
    text-align: left;
  }
  #footer-nav nav a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 992px) {
  footer #footer-nav .nav ul li.sous_menu ul.dropdown {
    min-width: 18%;
    top: 100%;
  }
  .footer-contact {
    margin-top: 2rem;
  }
  #footer-nav nav a {
    font-size: 14px;
  }
}
rs.footer-contact {
  margin-top: 58px;
}

.footer-row-contact {
  display: flex;
  gap: 6px;
}

footer address {
  margin: 0;
}

footer .section.footer-1 {
  padding: 2.438rem 0 1.5rem;
}

footer .footer-1 .title-4 {
  line-height: 24px;
  margin: 0 0;
  color: var(--bg-color);
  font-family: var(--primary-font);
  font-size: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.footer-1 address a,
.footer-1 .text {
  font-weight: 400;
  line-height: 24px;
  font-size: 14px;
}

footer .siret {
  font-weight: 400;
  line-height: 24px;
}

#footer-nav .nav ul li.sous_menu ul.dropdown {
  position: absolute;
  left: 0;
  display: none;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  font-weight: normal;
  z-index: 1;
  background-color: white;
  border: 1px solid var(--primary-color);
}

#footer-nav .nav ul li.sous_menu > a::after {
  position: absolute;
  right: 0.625rem;
  display: block;
  font-family: var(--icon-font);
  line-height: 0;
  content: "\e5c5";
  position: static;
  display: inline-block;
  margin: -0.125em 0 0 0.25em;
  text-decoration: none;
}

#footer-nav nav a {
  font-weight: 400;
  line-height: 24px;
}

#footer-nav .nav ul li a.selected,
#footer-nav .nav ul li:hover > a {
  text-decoration: underline;
}

footer li {
  margin-bottom: 8px;
}

#footer-nav .nav ul li.sous_menu ul.dropdown > li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

#footer-nav .nav ul li.sous_menu {
  position: relative;
}

#footer-nav .nav ul li.sous_menu:hover ul.dropdown {
  display: flex;
}

#footer-nav .nav ul li.sous_menu ul.dropdown > li a {
  padding: 0.5rem;
  margin: 0;
  font-size: 13px;
  display: block;
}
footer .rs {
  margin-top: 58px;
}
.footer-2 {
  padding-bottom: 2.438rem;
}

.footer-2 nav a,
.page-404 footer a {
  font-weight: var(--font-weight-semi-bold);
  line-height: 24px;
  color: var(--title-color);
}

.footer-2 nav a:hover,
.page-404 footer a:hover {
  color: var(--title-color);
  text-decoration: underline;
}

/* =============================== PAGE INTERNE ==========================*/

.sitemap-nav.row li {
  margin-bottom: 0.5rem;
}
#relance ul {
  padding-left: 0;
}
p.titre-relance {
  text-align: center;
}

section.ac-doubleColonne .white {
  font-weight: var(--font-weight-medium);
  border: 2px solid var(--accent-color);
  background: transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

nav#fil_ariane,
#fil_ariane,
.fil-ariane {
  margin: 0 0 3em;
}

.clear_both {
  margin-bottom: 40px;
}
.page-interne .sc-content #relance {
  margin-top: 3.5rem;
  margin-bottom: 4rem;
  text-align: center;
}

.cards .white p {
  margin: 0;
}

.row-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
}
.sc-content #relance ul {
  padding-inline-start: 0px;
  justify-content: center;
  display: block;
  text-align: center;
  margin: auto;
}
.page-interne #container {
  padding-block: 0;
}
section#relance li {
  list-style: none;
  margin: 20px 10px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .row-btn {
    flex-direction: column;
    row-gap: 1rem;
    align-items: normal;
  }
}
@media screen and (max-width: 992px) {
  .page-interne main .btn-rdv {
    margin-bottom: 1.5rem;
  }

  .page-interne .sc-content #relance {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 993px) {
  .ac-colonne_1.col-img img {
    position: relative;
    left: -43%;
    width: 142% !important;
    max-width: none;
    z-index: 1;
    object-fit: cover;
    height: 750px;
    top: -8%;
  }
  .page-interne .sc-content .ac-doubleColonne .ac-colonne_2 img,
  .ac-colonne_2 h2,
  .ac-colonne_2 .btn-rdv,
  .ac-colonne_2 p,
  .ac-colonne_2 .btn-contact {
    width: 90%;
    margin-left: auto;
  }
  .clear_both {
    margin-bottom: 120px;
  }

  .page-interne #encart-contact {
    margin-bottom: 13rem;
  }
  .page-interne p.intro {
    margin-bottom: 60px;
  }
  #fil_ariane,
  nav#fil_ariane,
  .fil-ariane {
    font-size: 14px;
  }
}

/* ====================== Contact-page =======================*/

a.lien-maps:hover {
  opacity: 0.7;
}
.contact-page h1 {
  color: white;
}
.contact-page .row.s-start {
  flex-wrap: nowrap;
}
.contact-page-coordonnees address svg {
  display: none;
}
#horaire-contact {
  margin-top: 20px;
}
.sitemap-nav.row li.firstLi.no-desk {
  display: block;
}
.plan-site .sitemap-nav ul li a {
  margin-bottom: 0.5rem;
  display: inline-block;
}
a.lien-maps span {
  display: block;
}

.fil-ariane .first {
  display: inline-block;
}
:where(a) {
  color: inherit;
}

@media screen and (max-width: 992px) {
  .contact-page-horaires {
    margin-top: 1.5rem;
  }
}

/* ============================= FORMULAIRE page contact ======================== */
span.erreur {
  font-size: 10px;
}

.g-recaptcha {
  margin-block: 1.5rem;
}

.divGenerateurRequired {
  display: none;
}

#formulaire_1 .divGenerateur > label {
  display: none;
}

#formulaire_1 p.submit {
  margin-top: 1rem;
  width: 100%;
  margin-bottom: 0;
}

@media screen and (min-width: 601px) {
  #formulaire_1 .cp_ville > p {
    width: calc(50% - 6px);
  }
}
