:root {
  --primary-h: 144;
  --primary-s: 42%;
  --primary-l: 39%;

  --accent-h: 339;
  --accent-s: 100%;
  --accent-l: 82%;

  --text-h: 0;
  --text-s: 0%;
  --text-l: 24%;

  --background-h: 0;
  --background-s: 0%;
  --background-l: 100%;

  --text-color-menu:hsla(0, 0%, 12%, 1);
  --title-color:hsla(147, 45%, 20%, 1);
  --text-color-2:hsla(0, 0%, 36%, 1);
  --background-1:hsla(140, 43%, 96%, 1);
  --background-2:hsla(342, 87%, 97%, 1);
  --vert-2:hsla(140, 36%, 61%, 1);
  --vert-3:hsla(144, 42%, 39%, 1);
  --vert-4:hsla(142, 32%, 52%, 1);

  --primary-font: "Inter", sans-serif;
  --secondary-font: "Playfair Display", serif;

  --h1-font-size: 3.8125rem;
  --h2-font-size: 2.5rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.5rem;

  --headings-line-height: 1.333333;
  --link-color: var(--primary-color-20);

  --border-radius: 12px;
  --button-border-radius: 87px;
  --transition: 0.3s all ease-in-out;
}

/* ================================== GENERAL ================================== */

#blocHorsLigne {
  z-index: 9999 !important;
}

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

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

p {
  margin-block: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h1.h1-geoloc span,
[class*="title"] {
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--title-color);
}
h1, .title-1 {
  color: var(--vert-3);
}
h1 span,
h1.h1-geoloc span {
  margin: .75rem 0 0;
  color: var(--vert-3);
}

.card-title {
  font-size: 1.75rem;
  color: hsla(147, 43%, 16%, 1);
}

a {
  transition: var(--transition);
}

.pos-relative {
  position: relative;
}

.paginationControl {
  text-align: center;
  margin: 60px auto 28px;
}

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

@media screen and (min-width:993px) {
  h1,
h2,
h3,
h4,
h5,
h6,
[class*="title"] {
margin: 0;
}
h1 span,
h1.h1-geoloc span {
  font-size: var(--h3-font-size);
}

}
@media screen and (max-width:992px) {
  h1 {
    margin: 1.875rem 0;
  }
}

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

@media screen and (min-width: 993px) {
  .index-page main .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media screen and (min-width: 1280px) {
  .index-page main .section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}


/* ================================== 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;
}

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

.card {
  position: relative;
  display: block;
  transition: var(--transition);
}

.card:not(#encart-contact .card) a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 4;
}

.card a {
  text-decoration: none;
  display: block;
}

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

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

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

/* ================================== DIVERS ================================== */

h1.h1-geoloc span::before,
.title-1.h1-geoloc span::before {
  display: none;
}

@media screen and (max-width: 992px) {
  .blocs img,.realisation_img,
  .page-interne #encart-faq .ac-doubleColonne .ac-colonne img,.actualites-detail .detail-actu-image {
    display: block;
    max-width: 450px;
    max-height: 400px;
    margin: 30px auto;
    object-fit: cover;
    width: 100%;
  }
  .realisation_img .bloc-titre-im {
    width: 100%;
  }
  .header-content .nav ul li a.selected {
    background: transparent;
  }
}


/* ================================== BOUTONS ================================== */

[class*="btn"] a.btn,
.btn.accent,
#formulaire_5 input#field_3 {
  padding: 15px 24px;
  line-height: 100%;
  font-weight: 600;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  gap: 1rem;
}

.icon-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 28px;
  height: 28px;
  text-align: center;
  background-color: white;
  border-radius: 100%;
}

.icon-1,
.icon-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  transition: var(--transition);
}

.icon-1 {
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-2 {
  left: -100px; /* cachée à gauche */
}

.btn * {
  transition: var(--transition);
}

.btn:hover .icon-1 {
  transform: translate(100px, -50%); /* sort vers la droite */
}

.btn:hover .icon-2 {
  transform: translate(-50%, -50%); /* revient au centre */
  left: 50%;
}
.btn.accent {
  border: 1px solid var(--accent-color);
}
.btn.accent:hover {
  background-color: white;
  color: var(--vert-4);
  border: 1px solid var(--vert-4);
}
.btn.accent:hover .icon-arrows,.btn-white .btn.accent .icon-arrows, .btn.outlined .icon-arrows{
  background-color: var(--vert-4);
}

.btn.accent:hover svg path,.btn-white .btn.accent svg path, .btn.outlined svg path {
  stroke: white;
}

.btn-white .btn.accent, .btn.outlined {
  background-color: white;
  color: var(--vert-4);
  border-color: white;
}
.btn.outlined:hover {
  border-color: white;
}
.btn-white .btn.accent:hover, .btn.outlined:hover {
  background-color: var(--accent-color);
  color: white;
}
.btn-white .btn.accent:hover .icon-arrows, .btn.outlined:hover .icon-arrows {
background-color: white;
}
.btn-white .btn.accent:hover svg path, .btn.outlined:hover svg path {
  stroke: var(--accent-color);
}

.politique-de-confidentialite main .btn-contact {
  margin-top: 1rem;
}
@media screen and (max-width: 992px) {
  .fold-top {
    margin-block: 1rem;
  }
}
@media screen and (max-width: 600px) {
  [class*="btn"] a.btn, .btn.accent, #formulaire_5 input#field_3 {
    width: 100%;
  }
  .fold .btn-rdv {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 601px) and (max-width: 992px) {
  .btn:not(.fluid) {
    width: auto;
  }
}


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

@media screen and (max-width: 992px) {
  .menu-mobile {
    height: 90px;
  }
  .menu-mobile .btn-menu {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 100%;
  }
  .menu-mobile .brand {
    margin-left: -11px;
  }
  .topbar-brand.col,
  .phone span.material-icons {
    margin: 0;
  }
  .menu-mobile .row {
    width: 100%;
    margin: 0;
    flex-wrap: nowrap;
  }
  .menu-mobile .brand.col {
    padding: 0;
  }
  .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: 993px) {
  .header-content a.tel {
    font-weight: 600;
   color: var(--text-color-menu);
  }
  .header-content nav a {
    color: var(--text-color-menu);
  }
  .header-content {
padding-top: 58px;
background-color: var(--background-2);
  }
  .index-page .header-content {
    background-color: transparent;
  }
  .sticky-active .header-content {
    background-color: white;
  }
  .main-header-content {
    position: relative;
    width: 90vw;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 5rem;
  }
  .index-page .main-header-content {
    background-color: var(--background-1); 
  }
  .main-header-content .container {
    padding-block: .55rem;
  }
  .header-content #nav-container,
  .header-content .row {
    margin: 0;
    flex-wrap: nowrap;
  }
  .header-content .nav#main-nav ul {
    justify-content: center;
  }
  .header-content nav li:not(.sousLi) {
    margin: 0 3px;
  }
  .header-content .nav#main-nav > ul > li > a, .header-content .nav#topbar-nav > ul > li > a {
    position: relative;
    padding: 3px;
    font-size: 13px;
  }
  .header-content nav ul.dropdown a {
    font-size: 10px;
  }
  .header-content .nav#main-nav > ul > li > a:hover,
  .header-content .nav#main-nav > ul > li > a.selected,
 .header-content .nav ul li:hover > a {
    color: var(--primary-color);
  }
  .header-content .nav#main-nav > ul > li > a::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    height: 2px;
    width: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
  }
  .header-content .nav#main-nav > ul > li > a::before {
    background-color: var(--primary-color); 
  }

  .header-content .nav#main-nav > ul > li > a.selected::before,
  .header-content .nav#main-nav > ul > li > a:hover::before
  {
    width: 100%;
    left: 0;
    right: 0;
  }

  .header-content .nav ul li.sous_menu ul.dropdown > li > a:hover,
  .header-content .nav ul li.sous_menu ul.dropdown > li > a.selected, .header-content .nav ul li.sous_menu ul.ssdropdown > li > a:hover,
  .header-content .nav ul li.sous_menu ul.ssdropdown > li > a.selected {
    color: var(--primary-color);
  }
  .row-header {
    flex-direction: column;
    gap: 1rem;
  }
  .main-header-content {
    margin-top: 14px;
  }
}

@media screen and (min-width: 1440px) {
  .row-header {
    flex-direction: row;
  }
  .header-content .col {
    padding: 0 0.75rem;
  }
  .top-bar nav a {
    font-size: 1rem;
  }
  .header-content nav a {
    font-size: 1rem;
  }
  .header-content nav ul.dropdown a {
    font-size: 0.75rem;
  }
}
@media screen and (min-width:1440px) and (max-width:1770px) {
  .header-content .btn.accent {
    padding: 15px 12px;
    font-size: 14px;
}
.top-bar nav a, .header-content nav a {
  font-size: 13px;
  min-width: max-content;
}
}
@media screen and (min-width:1800px) {
  .main-header-content .brand img {
    min-width: 155px;
  }
}
/* ================================== BLOC 01 ================================== */

div#bloc-01 .btn-rdv a {
  margin: auto;
}
#bloc-01 img, .blocs img {
  border-radius: var(--border-radius);
}
#bloc-01 .row-text {
  padding: 22px 0 31px;
    }
@media screen and (min-width:993px) {
  #bloc-01 .btn-rdv {
    display: flex;
    justify-content: center;
  }
  .slick-photos {
    margin-top: 50px;
  }
  #bloc-01 {
    margin-top: 58px;
  }
  #bloc-01::before {
    position: absolute;
    content: '';
    right: 0;
    top: -100px;
    background-image: url('../assets/gifs/before-bloc-1.png');
    width: 507px;
    height: 1013px;
  }
  .img-margin {
    margin-top: 5.25rem;
    height: 417px;
  }
}
@media screen and (max-width:992px) {
.slick-photos img {
  height: 250px;
  object-fit: cover;
}
}


/* ================================== ENCART POINTS FORT ================================== */

#encart-points-fort {
  color: var(--text-color-2);
}
.card-title-image {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.pt-fort {
  padding: 1.5rem 0;
}
.slick-points-fort {
  row-gap: 1.5rem;
}
.slick-points-fort .card-text {
  margin-top: .75rem;
}
@media screen and (min-width:993px) {
  #encart-points-fort {
    padding: 5rem 0;
  }
  .pt-fort .card-title {
    line-height: 100%;
}
}

/* ================================== BLOC 02 ================================== */

#bloc-02 .bloc-text{
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1rem;
}
#bloc-02 .btn-rdv {
  margin-top: 2rem;
}
@media screen and (min-width:993px) {
  #bloc-02 .container {
    z-index: 0;
    padding: 2.5rem 0;
  }
  #bloc-02 .container::before {
    position: absolute;
    content: '';
    z-index: -1;
    left: 0;
    top: 0;
    width: 70%;
    max-width: 950px;
    height: 100%;
    background-image: url('../assets/gifs/bloc-02.jpg');
    background-size: cover;
    border-radius: var(--border-radius);
  }
  #bloc-02 .bloc-text::before {
    position: absolute;
    content: '';
    top: 0;
    right: -64rem;
    width: 64rem;
    height: 64rem;
    background-image: url('../assets/gifs/before-bloc-2.png');
    opacity: 14%;
    z-index: -1;
  }
  #bloc-02 .bloc-text{
    position: relative;
    padding: 35px;
    z-index: 1;
    margin-right: 4%;
  }
}

/* ================================== ENCART PRESTATIONS  ================================== */

.slick-prestations {
  margin-top: 4rem;
  row-gap: 1.5rem;
}
#encart-prestations .bloc-top p {
  color: hsla(0, 0%, 36%, 1);
  margin: 1.25rem auto 0;
}
#encart-prestations .card-title {
  color: white;
}
.prestations-card-image {
  min-height: 30rem;
  border-radius: var(--border-radius); 
}
.slick-prestations img {
  min-height: 30rem;
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: var(--border-radius); 
}
.prestations-card-image a::after {
  position: absolute;
  content: '';
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
linear-gradient(180deg, rgba(255, 161, 194, 0) 0%, #3A8F5C 100%);
}
.prestations-card-content {
  color: white;
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}
.prestations-card-text {
  color: hsla(0, 0%, 96%, 1);
  margin: .5rem 0 1.25rem;
}
.icon-presta {
  background-color: var(--vert-2);
  border-radius: var(--border-radius);
  margin-bottom: 8px;
  padding: 5px 22.5px;
  color: hsla(342, 87%, 97%, 1);
  line-height: 1.625rem;
  width: max-content;
}
.link {
  font-weight: 600;
}
@media screen and (min-width:993px) {
  #encart-prestations::before {
    position: absolute;
    content: '';
    right: -950px;
    top: -120px;
    background-image: url('../assets/gifs/before-prestation.png');
    width: 1250px;
    height: 1000px;
    z-index: -1;
    opacity: 10%;
  }
}


/* ================================ ENCART AVIS ================================== */

.encart-avis {
  color: var(--text-color-menu);
}
.slick-avis {
  margin-top: 4rem;
}
.slick-avis .card-content .row {
  flex-wrap: nowrap;
}
.avis-card {
  padding: 1rem;
}
.avis-card .avis-card-text {
  padding-left: 4.75rem;
  height: 6.5rem;
  margin-top: 0.5rem;
}
.avis-name {
  font-weight: 600;
}
.encart-avis .avis-card.js-more .avis-card-text::after {
  display: none;
}
.avis-date {
  margin-left: -1rem;
  font-size: .625rem;
}
.encart-avis .row.s-middle.s-start {
  padding-top: 0.25rem;
}
@media screen and (min-width:993px) {
  .encart-avis::before, #encart-actualites::before {
    position: absolute;
    content: '';
    left: -850px;
    top: -216px;
    background-image: url('../assets/gifs/before-prestation.png');
    width: 1250px;
    height: 1000px;
    z-index: -1;
    opacity: 16%;

  }
  .index-page .encart-avis.section {
    padding: 5rem 0;
  }
}

/* ================================ BLOC 04 ================================== */

#boutons {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  margin-top: 2rem;
  row-gap: 1rem;
}

@media screen and (min-width:1440px) {
  #boutons {
    flex-direction: row;
    gap: .75rem;
    justify-content: flex-start;
  }
}
@media screen and (min-width:601px) and (max-width:992px) {
  #boutons {
    flex-direction: row;
    gap: .75rem;
    justify-content: flex-start;
  }
}

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

#encart-contact .bloc-text {
  border-radius: var(--border-radius);
  background-color: hsla(338, 93%, 95%, 1);
  color: var(--title-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}
#encart-contact p {
  margin: 1.5rem 0 .75rem;
}
#encart-contact #boutons {
  margin-top: 3rem;
}
#encart-contact address {
  margin: 0;
}
@media screen and (min-width:993px) {
  .page-interne #encart-contact .container {
    width: 100%;
  }
  #encart-contact .bloc-text {
    padding: 3rem 10rem 3rem 3rem;
  }
}

/* ================================ BLOC 06/07 ================================== */

@media screen and (min-width:993px) {
  #bloc-07 p:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  #bloc-06::before {
    position: absolute;
    content: '';
    right: -700px;
    bottom: -45px;
    background-image: url('../assets/gifs/before-prestation.png');
    width: 1250px;
    height: 1000px;
    z-index: -1;
    opacity: 16%;
    transform: rotateY(-180deg);
  }
}

/* ================================== SECTION FAQ ================================== */

#encart-faq .ac-doubleColonne.ac-accordeon {
  display: revert; }
  #encart-faq .ac-doubleColonne.ac-accordeon.active .ac-accordeon-item {
    position: relative; }
    #encart-faq .ac-doubleColonne.ac-accordeon.active .ac-accordeon-item::after {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      content: url('../assets/gifs/icon-plus.png');
      font-family: var(--icon-font);
      font-size: 1.5rem; }
  #encart-faq:not(#encart-faq-_cnt_0) .ac-doubleColonne.ac-accordeon.active .ac-accordeon-item {
    cursor: pointer; }
    #encart-faq:not(#encart-faq-_cnt_0) .ac-doubleColonne.ac-accordeon.active .ac-accordeon-item.open::after {
      content: url('../assets/gifs/icon-moins.png');}
  #encart-faq:not(#encart-faq-_cnt_0) .ac-doubleColonne.ac-accordeon.active .ac-accordeon-value {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-in-out; }
    
    .ac-accordeon {
      padding: 1.5rem 0;
      border-bottom: 1px solid hsla(0, 0%, 82%, 1);
    }

    .ac-accordeon-item {
      color: var(--text-color-menu);
    }
    .ac-accordeon-item p.bold {
      margin-bottom: .5rem;
    }
    .ac-accordeon-value {
      padding-right: 1.5rem;
      color: hsla(0, 0%, 43%, 1);
    }
    .ac-accordeon-value p {
      margin-top: 0;
    }
    #encart-faq .bloc-top p {
      margin: 1.25rem auto 1rem;
      color: hsla(0, 0%, 43%, 1);
    }
    @media screen and (max-width:992px) {
      section.ac-doubleColonne.ac-accordeon p {
        max-width: 90%;
    }
    }


/* ================================== ENCART ACTUALITES  ================================== */

.actualites-card {
  transition: var(--transition);
  padding: 15px;
  overflow: hidden;
}
.actualites-card-content {
  margin-top: 1.25rem;
}
.actualites-card-title a {
  color: var(--title-color);
}
.actualites-card-text {
  margin: .5rem 0;
}
.actualites-card .link a {
  font-weight: 400;
  text-decoration: none;
  color: var(--text-color-menu);
}

.actualites-card .card-image a::after {
  position: absolute;
  content: '';
  inset: 0;
  background:hsla(144, 42%, 39%, 0.3);
  transition: var(--transition);
}
.actualites-card .card-image a::after,.actualites-card-image,.actualites-card-image img,.actualites-card-image a {
  border-radius: var(--border-radius);
}
.actualites-card:hover .card-image a::after {
 background: hsla(339, 100%, 82%, 0.4);
}
.slick-actualites, #encart-actualites .encart-btn {
  margin-top: 3.75rem;
}
#encart-actualites .encart-btn {
  display:flex;
  justify-content: center;
}
.actualites-card-image {
  overflow: hidden;
}
.actualites-card img {
  max-height: 324px;
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width:993px) {
 #encart-actualites::before {
   top: auto;
   bottom: 3.75rem;
 }
  #encart-actualites {
    padding: 7.5rem 0;
  }
}
/* ================================== ACTUALITES DETAIL  ================================== */

#listing-autres-actus-categorie ul {
  text-align: center;
  padding-inline-start: 0;
}
#listing-autres-actus-categorie span.title-4 {
  margin: 20px auto;
  display: block;
  text-align: center;
  color: white;
}
.actualites-detail .detail-actu-image {
  max-width: 50%;
}
#listing-autres-actus-categorie li {
  margin-top: 0.5rem;
}
body.actualites-detail .listing-autres-actus-categorie {
  height: max-content;
  padding: 24px;
}
#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;
}

/* ================================== BLOC FORMULAIRE ================================== */

#bloc-formulaire label {
  font-weight: 600;
}
#bloc-formulaire input:not(#bloc-formulaire p.submit .btn),
#bloc-formulaire textarea {
  box-shadow: 0px 1px 2px 0px hsla(220, 43%, 11%, 0.05);
  border: 1px solidhsla(0, 0%, 82%, 1);
  border-radius: .5rem;
}
#bloc-formulaire textarea {
  min-height: 5.375rem;
}
#bloc-formulaire .divGenerateur {
  margin: 0;
}
#bloc-formulaire .info {
  font-size: 1rem;
}
.col.bloc-formulaire {
  padding: 3rem;
  background-color: white;
  box-shadow: 0px 4px 24px 0px hsla(0, 0%, 0%, 0.1);
}
#bloc-formulaire #field_20 p,#bloc-formulaire #field_28 p {
  margin: 0;
}
#bloc-formulaire label.noFloatingLabel {
  font-weight: 400;
}
.col.bloc-info  img {
  height: 100%;
  object-fit: cover;
}
#bloc-formulaire iframe {
  min-height: 100%;
}
span.erreur {
  font-size: 13px;
}
.blocs .bloc-info img {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
.bloc-info {
  z-index: 0;
}
.bloc-info::after {
  position: absolute;
  content: '';
  top: -5rem;
  left: -0.75rem;
  background-image: url('../assets/gifs/before-img-formulaire.png');
  z-index: 1;
  transform: rotate(0.09deg);
  width: 584px;
  height: 584px;
}
#formulaire_5 input#field_3 {
  width: 100%;
  border-radius: .5rem;
  background-color: var(--accent-color);
}
#formulaire_5 input#field_3:hover {
  background-color: white;
}
@media screen and (max-width: 992px) {
  .col.bloc-formulaire {
    padding: 1.5625rem;
    margin-top: 20px;
  }
}
@media screen and (min-width: 993px) {
  #bloc-formulaire::before {
    position: absolute;
    content: '';
    background-image: url('../assets/gifs/before-formulaire.png');
    width: 282px;
    height: 495px;
    right: 0;
    bottom: -172px;
    z-index: -1;
  }
  .col.bloc-info {
    padding: 0;
  }
  .col.bloc-formulaire {
    padding: 97.5px 48px;
  }
  .page-interne #bloc-formulaire .container {
    width: 100%;
  }
 #bloc-formulaire .col.bloc-formulaire {
    padding-block: 7.5rem;
  }
}


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

footer {
  background-color: var(--background-2);
}
.footer-horaire {
  margin-bottom: 1rem;
}
footer p {
  margin-top: 12px;
}
#footer-nav a {
  position: relative;
}
#footer-nav a::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  height: 2px;
  width: 0;
  background-color: var(--accent-color);
  transition: var(--transition);
}

#footer-nav a:hover::before,
#footer-nav a.selected::before {
  width: 100%;
  left: 0;
  right: 0;
}
#footer-nav ul.dropdown a:hover::before,
#footer-nav ul.dropdown a.selected::before {
  bottom: 0;
}
.label-footer {
  font-weight: 600;
}
footer .horaire {
  margin-block: 1rem;
}
#footer-nav .nav ul li.no-menu,
#footer-nav .nav ul li.contact {
  display: none;
}
footer .section {
  padding-top: 3rem;
}
a.lien-maps:hover {
  opacity: 0.7;
}
#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: #fff;
  border: 2px solid var(--accent-color);
}
footer ul.ssdropdown {
  position: absolute;
  top: -1px;
  left: 100%;
  display: none;
  width: max-content;
  max-width: 20rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
  list-style-type: none;
  background-color: var(--background-color);
  border: solid 1px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
 }

#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: '\e5cf';
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin: -0.125em 0 0 0.25em;
  text-decoration: none;
}
footer ul.ssdropdown a {
  font-size: 11px;
}
footer .ssdropdown {
  border: none;
}
#footer-nav  ul li.sous_menu ul.dropdown > li.sous_menu > a::after {
  content: '\e5cc';
  position: absolute;
  margin-top: 10px;
  pointer-events: none; }
  #footer-nav  ul li.sous_menu ul.dropdown > li.sous_menu:hover ul.ssdropdown {
  display: block; }

#footer-nav .nav > ul > 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;
  color: var(--text-color);
}
#footer-nav a:hover {
  color: inherit;
}

footer a.lien-maps span {
  display: block;
}
#footer-nav {
  padding-top: 1.5rem;
}
#footer-nav .nav > ul {
  padding-bottom: 3px;
}
.footer-2 {
  margin-top: 30px;
  font-weight: 600;
}
.footer-2 a:hover {
  text-decoration: underline;
}
.footer-section-1 {
  margin-bottom: 90px;
}

@media screen and (min-width: 993px) {
 .footer-reseaux {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
  footer tr.horaire-info {
    max-width: 306px;
  }
  footer .row {
    flex-wrap: nowrap;
  }
  .footer-2,#footer-nav  {
    font-size: 13px;
  }
 footer .col-adresses {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
  }
  #footer-nav .nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-block-end: 0;
  }
  footer #footer-nav .nav ul li.sous_menu ul.dropdown {
    bottom: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .footer-2,#footer-nav  {
    font-size: 16px;
  }
}

@media screen and (max-width: 992px) {
  footer table.horaires {
    margin-top: 1rem;
    text-align: left;
    max-width: 203px;
    margin: 2rem auto;
}

footer tr.horaire-info {
    text-align: center;
}
 footer .bloc-adresse > div {
    justify-content: center;
}
footer .bloc-adresse {
    row-gap: 20px;
    margin: 15px 0;
}
  .footer-brand {
    margin: 1rem auto;
  }
  #footer-nav .nav > ul > li {
    margin-bottom: 30px;
  }
 .footer-2 li {
    margin-block: 10px;
  }
  footer .section {
    text-align: center;
  }
  footer .reseaux-sociaux .row {
    justify-content: center;
  }
  #footer-nav nav ul {
    flex-direction: column;
  }
  span.lien-maps {
    align-items: center;
  }
}


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

.note,.ac-doubleColonne p em {
  display: block;
  font-style: normal;
  background-color: var(--background-2);
  border-radius: var(--border-radius);
  padding: 15px;
}
.sc-content .ac-doubleColonne.hero-bg,.hero-interne {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  margin-bottom: 4rem;
  padding: 4% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  row-gap: 10px;
background-color: var(--background-2);
}

.contact-page .hero-interne {
  text-align: left;
  padding: 5% 0 4%;
}
.contact-page .hero-interne h1 {
  text-align: left;
}
.contact-page .section-interne {
  margin: 2.5rem 0 0;
}
nav#fil_ariane, #fil_ariane,.fil-ariane {
  margin: 0 0 3em;
}
[class*="actualites-"] main > .section,.politique-de-confidentialite main > .section,.plan-site main > .section {
  padding-top: 0;
}
.page-interne #container {
  padding-block: 0;
}
.page-interne .ac-doubleColonne .white {
  padding: 1.25rem;
border-radius: var(--border-radius);
border: 2px solid var(--accent-color);
}
.page-interne .ac-doubleColonne .white,.page-interne .ac-doubleColonne .white section {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.page-interne .ac-doubleColonne .white p {
  margin: 0;
}
.ac-1v1 .ac-colonne {
  border: 2px solid var(--accent-color);
  padding: 1rem;
}
.hero-bg .title-1, .hero-interne h1 , .hero-interne .title-1 {
  max-width: 80%;
  margin: 2rem auto;
  text-align: center;
}
.contact-page .hero-interne h1 {
  max-width: none;
}
.sc-content .ac-doubleColonne .btn-contact {
  margin-top: 2rem;
}
.sc-content .ac-doubleColonne.hero-bg .ac-colonne img {
  max-width: 300px;
  margin: 0 auto;
  display: block;
}
.sc-content .ac-doubleColonne img {
  border-radius: var(--border-radius);
}
@media screen and (min-width: 993px) {
  .hero-interne:not(.contact-page .hero-interne) {
    padding: 8% 0 4%;
  }
 .page-interne #container {
    margin-top: 58px;
  }
  .page-interne .ac-doubleColonne img {
    height: 100%;
    object-fit: cover;
  }
  .page-interne .sc-content .ac-doubleColonne.section-interne-1 .ac-colonne_2 {
    padding-right: 100px;
      }
      .page-interne .sc-content .ac-doubleColonne.section-interne-2 .ac-colonne_1 {
        padding-left: 100px;
          }
  .hero-bg .title-1, .hero-interne .title-1 {
    max-width: 60%;
  }
  .contact-page .hero-interne h1 {
    max-width: none;
  }
  .page-interne .sc-content .clear_both {
    margin-bottom: 7.5rem; }

 .hero-bg .title-1, .hero-interne .title-1  {
    font-size: 3.4375rem;
  }
  .page-interne h1 {
    font-size: 3.125rem;
  }
  .page-interne section:not(section.ac-doubleColonne, section.ac-doubleColonne section, #relance, .ac-include) p,section.ac-doubleColonne:not(section.ac-doubleColonne.ac-timeline) p:nth-last-of-type(1) {
    margin-bottom: 0;
  }
  #fil_ariane, nav#fil_ariane, .fil-ariane {
    font-size: 14px;
  }
}

@media screen and (max-width:992px) {
  .hero-bg .title-1, .hero-interne h1 , .hero-interne .title-1 {
    margin: 2rem auto;
  }
  .page-interne .ac-doubleColonne .white {
    margin-block: 1.25rem;
  }
  section.ac-doubleColonne.ac-1v1 .ac-colonne {
    margin-top: 2rem;
}
}
/* ******************************************** PAGE CONTACT ****************************************** */
.contact-page .divGenerateurRequired {
  margin-bottom: 1rem;
}
@media screen and (min-width:993px) {
  .contact-page h1 {
    font-size: var(--h2-font-size);
  }
}

.main-header-content .container{
  max-width: 1500px;
}