:root {
  --primary-h: 39; /* hue */
  --primary-s: 78%; /* saturation */
  --primary-l: 73%; /* lightness */

  --secondary-h: 43; /* hue */
  --secondary-s: 78%; /* saturation */
  --secondary-l: 96%; /* lightness */

  --accent-h: 356; /* hue */
  --accent-s: 37%; /* saturation */
  --accent-l: 45%; /* lightness */

  --title-color: hsla(0, 0%, 12%, 1);

  --text-h: 0; /* hue */
  --text-s: 0%; /* saturation */
  --text-l: 24%; /* lightness */

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

  --primary-font: "Nunito", sans-serif;
  --secondary-font: "Marcellus", serif;

  --marge-section-mobile: 2.5rem;
  --marge-section-desck: 7.5rem;

  --h1-font-size: 3.813rem;
  --h2-font-size: 2.5rem;
  --h3-font-size: 2.0625rem;
  --h4-font-size: 1.5rem;

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

  --border-radius: 0.75rem;
  --button-border-radius: 3.75rem;
  --border-radius-anim: 6.25rem;

  --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,
main p u {
  color: var(--accent-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h1.h1-geoloc span,
[class*="title"] {
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-Regular);
}
h1,
h1 span,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
}
h1 span {
  margin-top: 0.75rem;
}
[id*="bloc"] .btn-contact {
  margin-top: 3rem;
}

p {
  margin: 1.5rem 0;
  line-height: 1.625rem;
}

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

.sitemap-nav li {
  margin: 0.625rem 0;
}
.pos-relative {
  position: relative;
  z-index: 3;
}

#blocHorsLigne {
  z-index: 9999 !important;
}
body :where(address) {
  margin: 0;
}
.index-page main p em {
  font-style: normal;
}
.index-page main p em u,
.bg-notes p {
  display: block;
  text-decoration: none;
  background-color: var(--primary-color);
  padding: 1rem;
  color: var(--texte-color);
}

/* ================================== PAGINATION ================================== */
.paginationControl {
  text-align: center;
  margin: 2rem 0;
}
.paginationControl a,
.paginationControl span {
  font-weight: var(--font-weight-semi-bold);
  font-size: 1.125rem;
  padding: 0 0.313rem;
  color: var(--primary-color-40);
}
.paginationControl span.disabled {
  color: var(--primary-color);
}
.paginationControl span.selected,
.paginationControl a:hover {
  color: var(--accent-color-40);
}

/* ================================== 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 {
  text-decoration: none;
  display: block;
}

.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: 0.75rem 1.5rem;
  font-weight: var(--font-weight-semi-bold);
  letter-spacing: 0px;
}

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

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

[class*="btn"] a.btn:not(.accent) {
  color: var(--primary-color);
  background: var(--title-color);
  border: 1px solid var(--primary-color);
}

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

a.btn .content {
  position: relative;
  bottom: 0%;
  transition: var(--transition);
  height: 100%;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 993px) {
  a.btn:has(.content):hover .content {
    bottom: 101%;
  }
}

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

@media screen and (min-width: 601px) {
  a.btn,
  .btn.primary {
    width: auto;
  }
}

/* ================================== HEADER ================================== */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s;
  z-index: 100;
}
.sticky-header .sticky.scroll_down {
  transform: translateY(-100%);
}
.contact-page .fold {
  display: none;
}
@media screen and (max-width: 992px) {
  .menu-mobile {
    height: 5.625rem;
    background: white;
  }
  .menu-mobile .btn-menu {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 100%;
  }

  .menu-mobile .row {
    width: 100%;
    margin: 0;
  }
  .fold {
    padding: 1.25rem 0px;
  }
  .fold address {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  header a.tel {
    display: block;
  }
  .header-content .nav .dropdown,
  .header-content .nav .ssdropdown {
    top: 5.625rem;
  }
  .header-content #nav-container {
    margin-top: 5.625rem;
  }
  .header-content .nav#topbar-nav li:not(.opened) a,
  .header-content .nav#main-nav li:not(.opened) a {
    padding: 0.75rem;
  }
  .topbar-brand .brand {
    width: 60%;
  }

  .menu-title {
    color: var(--accent-color);
  }
  .header-content .nav > ul > .sous_menu.opened > a,
  .header-content .nav .dropdown > .sous_menu.opened > a {
    height: 5.625rem;
    color: var(--accent-color);
  }
}
@media screen and (min-width: 993px) {
  .header-content:not(.sticky-active .header-content) {
    background-color: transparent;
    color: white;
  }

  .header-content #nav-container,
  .header-content .row {
    margin: 0;
    justify-content: center;
    gap: 0.5rem;
  }
  .header-nav .col {
    padding: 0 0.25rem;
  }

  .header-content .nav ul li a.selected,
  .header-content .nav ul li:hover > a {
    color: white;
  }
  .sticky-active .header-content .nav ul li a.selected,
  .sticky-active .header-content .nav ul li:hover > a,
  .header-content .nav ul li.sous_menu ul.dropdown,
  .header-content .nav ul li.sous_menu ul.ssdropdown {
    color: var(--text-color);
  }

  .header-content .nav#main-nav ul {
    justify-content: center;
  }
  .header-content nav ul li a {
    font-size: 14px;
  }
  .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 {
    position: relative;
    padding: 0.2rem;
  }
  .header-content nav ul.dropdown a {
    font-size: 0.625rem;
  }

  .header-content .contact {
    display: none;
  }

  .header-content .nav#main-nav > ul > li > a::before,
  .header-content .nav#topbar-nav > ul > li > a::before,
  .nav-footer a::before {
    content: "";
    position: absolute;
    bottom: -0.375rem;
    left: 50%;
    height: 0.125rem;
    width: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
  }

  .header-content .nav#main-nav > ul > li > a.selected::before,
  .header-content .nav#main-nav > ul > li > a:hover::before,
  .header-content .nav#topbar-nav > ul > li > a.selected::before,
  .header-content .nav#topbar-nav > ul > li > a:hover::before,
  .nav-footer a:hover::before,
  .nav-footer a.selected::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 {
    color: var(--accent-color);
  }
  body {
    padding-top: 0 !important;
  }
  .header-content .nav ul li a.selected {
    background: transparent;
  }
  .fold,
  .no-desk {
    display: none;
  }

  .header-content a.tel {
    font-weight: 600;
    color: white;
  }
  header.sticky-active .header-content a.tel {
    color: var(--accent-color);
  }

  .header-nav .col {
    padding: 0 0.25rem;
  }

  .main-header-content .container {
    padding-block: 1.5rem;
  }
  .header-content .nav#main-nav ul {
    justify-content: center;
  }
  .header-content nav li:not(.sousLi) {
    margin: 0 0.5rem;
  }

  .header-content nav ul.dropdown a {
    font-size: 0.625rem;
  }

  .header-content .contact {
    display: none;
  }

  .header-content .nav#main-nav > ul > li > a::before,
  .header-content .nav#topbar-nav > ul > li > a::before,
  .nav-footer a::before {
    content: "";
    position: absolute;
    bottom: -0.375rem;
    left: 50%;
    height: 0.125rem;
    width: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
  }

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

@media screen and (min-width: 1400px) {
  .header-content .col {
    padding: 0 0.75rem;
  }
  .header-content nav a {
    font-size: 1rem;
  }
  .header-content nav ul.dropdown a {
    font-size: 0.75rem;
  }

  .header-content #nav-container,
  .header-content .row {
    justify-content: space-between;
    gap: 0rem;
  }
}

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

.slider-slick {
  width: 100%;
  position: relative;
  z-index: 0;
}
.slide-img .container {
  min-height: auto;
  z-index: 5;
}
.slide-img .title-1 span,
.slide-img .animated-line,
.bg-interne .animated-line {
  display: inline-block;
  margin: 0;
  font-size: 2.1875rem;
}
.slide-img .title-1 span,
.slide-img .animated-line,
.ac-doubleColonne.hero-bg .animated-line {
  display: inline-block;
  margin: 0;
  font-size: 2.1875rem;
}
.slide-img {
  min-height: auto;
  background-size: cover;
  background-position: center;
}
.slide-img:before,
.bg-interne:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #00000080;
  z-index: 4;
}

.slider-slick video,
.bg-interne video {
  height: 100%;
  transform: scale(1) translate(0%, 0vh);
  width: 100vw;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: 2;
}
.slide-content .title-1,
.bg-interne .title-1,
.bg-interne h1 {
  color: white;
}
.slide-content .btn-contact {
  margin-top: 1.5rem;
}
.slide-content {
  position: relative;
  z-index: 4;
}
.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: 1rem;
}
.slick-dots li button {
  height: 1rem;
  width: 1rem;
  border-radius: var(--border-radius-anim);
  padding: 0;
}

#container {
  padding-top: 0;
}
.slick-slider {
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  [id*="bloc"] img,
  .encart-formulaire img {
    display: block;
    width: auto;
    margin: 2rem auto;
  }
  h1,
  h1.h1-geoloc span {
    margin-bottom: 0;
  }

  .slide-content {
    padding-block: 6rem;
  }
  .slide-content .title-1 {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 993px) {
  .slide-img .title-1 span,
  .bg-interne .title-1 span {
    font-size: var(--h1-font-size);
  }
  .slide-content {
    padding-block: 346px 207px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  h1 span,
  h1.h1-geoloc span,
  [class*="title"] {
    margin: 0;
  }
  h1 span,
  h1.h1-geoloc span {
    font-size: 1.5rem;
    margin-top: 0.75rem;
  }
  .title-1,
  .title-1 span {
    font-size: 3.688rem;
    line-height: 4.2rem;
  }
}

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

#encart-points-fort {
  padding-top: 1.5rem;
}
.pt-fort {
  padding: 3rem;
}
.last-pt:before {
  display: none;
}
.card-title,
h1 span {
  font-size: 1.1rem;
}
.pt-fort .card-title {
  margin: 1.25rem 0 1rem;
  color: var(--title-color);
}
@media screen and (min-width: 993px) {
  .card-title,
  h1 span {
    font-size: 1.5rem;
  }
  .pt-fort::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    height: 12.5rem;
    width: 0.0625rem;
    background-color: hsla(0, 0%, 82%, 1);
    right: -0.0625rem;
  }
  .pt-fort-end::before {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .card-title {
    margin: 1.25rem auto;
  }
  #encart-points-fort {
    text-align: center;
  }
}

/* ================================== BLOC 1 ================================== */
.bloc-img img,
.bloc-img video,
.bloc-img,
.bloc-img .card-image,
.actualites-card-image {
  border-radius: 37.5rem 37.5rem 0 0;
}

h1.h1-geoloc span::before,
.title-1.h1-geoloc span::before {
  display: none;
}
@media screen and (min-width: 993px) {
  #bloc-01 .animated-line {
    margin-bottom: 7.875rem;
  }
  h1.h1-geoloc {
    min-width: 712px;
  }
}

/* ================================== ENCART PRESTATIONS ================================== */
#encart-prestations .bloc-top p {
  margin: 1.25rem auto 0;
  max-width: 33.5rem;
}
.slick-prestations {
  margin-top: 4rem;
  row-gap: 1.5rem;
}
.prestations-card a {
  z-index: 0;
}
#encart-prestations .bloc-img-bas {
  margin-top: 0;
}

#encart-prestations .bloc-img {
  margin-bottom: 0;
}
.prestations-card > a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: var(--transition);
  border-radius: 37.5rem 37.5rem 0 0;
}

.bloc-img-bas,
.bloc-img-bas img,
.bloc-img-bas .card-image,
.prestations-card.bloc-img-bas > a::after,
.prestations-card.bloc-img-bas:not(.card-contact):hover a::after {
  border-radius: 0 0 37.5rem 37.5rem;
}
.bloc-img-bas {
  margin-top: 3rem;
}

.bloc-img {
  margin-bottom: 3rem;
}
.prestations-card:not(.card-contact):hover a::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 37.5rem 37.5rem 0 0;
}
.prestations-card.card-contact::after {
  display: none;
}
.bloc-img-bas .prestations-card-content {
  top: 1.5rem;
}
.prestations-card-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: white;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.prestations-card-title {
  color: white;
  transition: transform 0.3s ease;
  transform: translateY(0);
  margin-bottom: 0.5rem;
}

.prestations-card-text,
.prestations-card-content .link {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
  pointer-events: none;
  max-height: 0;
}

.prestations-card:hover .prestations-card-title {
  transform: translateY(-10px);
}
.prestations-card:hover .prestations-card-text,
.prestations-card:hover .link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: none;
}
.link {
  font-family: var(--tertiary-font);
  font-weight: 600;
}

.prestations-card:hover .link {
  margin-top: 1.25rem;
}

.prestations-card-image {
  max-height: 30rem;
}
.prestations-card-image img {
  min-height: 30rem;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.prestations-card.card-contact {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 1.5rem;
  height: 100%;
}
.prestations-card.card-contact p {
  margin-top: 0.375rem;
  min-height: 127px;
}
.prestations-card.card-contact {
  gap: 20px;
}

.prestations-card.card-contact a.btn.accent svg path {
  stroke: var(--accent-color);
}

.prestations-card.card-contact a.btn.accent {
  background-color: white;
  width: 100%;
  color: var(--accent-color);
}
#encart-prestations .text {
  padding: 0.625rem 3.5625rem;
}

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

.slick-avis {
  margin-top: 4rem;
}
.slick-avis .card-content .row,
.contact-page .row,
.menu-mobile .row {
  flex-wrap: nowrap;
}
.avis-card {
  padding: 1rem;
  border-radius: var(--border-radius);
  border: 1px solid hsla(39, 78%, 73%, 1);
}
.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;
  color: hsla(0, 0%, 27%, 1);
}
.encart-avis .row.s-middle.s-start {
  padding-top: 0.25rem;
}

.page-interne .encart-avis:before {
  position: absolute;
  content: "";
  left: -50%;
  width: 200%;
  height: 100%;
  top: 0;
  background: var(--secondary-color);
  z-index: -1;
}

.encart-avis.section.gtm-encart-avis {
  padding-block: 5rem;
}

/* ================================== BLOC 2/3 ================================== */
.vd {
  width: 100%;
  height: 648px;
  overflow: hidden;
  position: relative;
}

.vd video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media screen and (max-width: 992px) {
  .vd.bloc-img {
    margin-top: 3rem;
  }
}
/* ================================== ENCART CONTACT ================================== */
#encart-contact::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: var(--accent-color);
  z-index: -1;
}
#encart-contact .coordonnees-contact {
  display: flex;
  flex-direction: column;
  row-gap: 1.875rem;
  text-align: center;
}
#encart-contact {
  padding-bottom: 0;
  position: relative;
}
#bloc-bg {
  background: white;
  border-radius: 37.5rem 37.5rem 0 0;
  color: var(--text-color);
  padding: 92px 24px 75px 50px;
  margin-top: 2rem;
}
.titre {
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.coordonnees-contact :where(address) {
  margin: 0;
}
#encart-contact .reseaux-sociaux svg {
  fill: white;
}
#encart-contact .btn-contact {
  margin-top: 1.5rem;
}

#encart-contact .btn.accent {
  background-color: white;
  color: var(--accent-color);
}
#encart-contact .btn.accent svg path {
  stroke: var(--accent-color);
}
@media screen and (min-width: 993px) {
  #encart-contact .coordonnees-contact {
    text-align: left;
  }
  #bloc-bg {
    margin-top: 0rem;
  }
  .texte-left {
    padding-top: 3rem;
  }
  .page-interne #encart-contact {
    padding-block: var(--marge-section-desck) 0;
  }
}

/* ================================== BLOC 4 ================================== */
.img-4 img {
  border-radius: 37.5rem;
}
@media screen and (min-width: 993px) {
  .texte-4 {
    column-count: 2;
    column-gap: 136px;
    margin-top: 3rem;
  }
}

/* ================================== BLOC 6/7/8/9 ================================== */

#bloc-07 {
  padding-block: 3rem;
}
p.no-marge {
  margin: 0;
}

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

.actualites-card * {
  transition: var(--transition);
  margin: 0;
}

.actualites-card:hover {
  background-color: var(--primary-color);
}
.actualites-card {
  border-radius: 37.5rem 37.5rem 0 0;
}
.encart-btn {
  margin-top: 3.75rem;
}
.actualites-card-content {
  padding: 2.75rem 1.5rem 1.5rem 1.5rem;
}
.actualites-card-title a {
  color: var(--title-color);
}
.actualites-card-text {
  margin: 8px 0;
}

.actualites-card-image a {
  display: block;
  position: relative;
}
.actualites-card-image a::after {
  position: absolute;
  content: "";
  inset: 0;
  background: hsla(0, 0%, 0%, 0.3);
  transition: var(--transition);
  opacity: 0;
}
.actualites-card:hover .actualites-card-image a::after {
  opacity: 1;
}
.link a {
  color: var(--text-color);
  font-weight: 400;
  font-family: var(--tertiary-font);
}

/* ================================ ACTUALITES LISTING/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;
}
.actualites-detail .detail-actu-image {
  max-width: 50%;
}
#listing-autres-actus-categorie li {
  margin-top: 0.5rem;
}
#act {
  width: 120%;
  left: -6%;
}

#act video {
  width: 200%;
  height: -webkit-fill-available;
}
.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;
}
[class*="actualites-"] main > .section,
.politique-de-confidentialite main > .section,
.plan-site main > .section {
  padding-top: 0;
}
.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: 1400px) {
  #act {
    width: 200%;
    left: -50%;
  }
}

/* ============================= FORMULAIRE ======================== */
span.erreur {
  font-size: 10px;
}
.form {
  padding: 3rem;
  height: 100%;
  box-shadow: 0px 4px 24px 0px #0000001a;
  border-radius: 0 3.75rem 3.75rem 0;
}
.g-recaptcha {
  margin-block: 1.5rem;
}
.infos {
  padding: 3rem 80px;
  height: 100%;
  color: hsla(0, 0%, 12%, 1);
}
.encart-formulaire {
  padding-block: var(--marge-section-desck);
  position: relative;
  z-index: 1;
}

.page-interne .encart-formulaire:before {
  position: absolute;
  content: "";
  left: -50%;
  width: 200%;
  background: hsla(0, 0%, 96%, 1);
  height: 100%;
  top: 0;
  z-index: -1;
}
#bg-form {
  background-image: url(../assets/gifs/bg-info.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 3.75rem 0 0 3.75rem;
}
.infos .text {
  margin-bottom: 1.5rem;
}

.card-contact-form .bold,
.card-contact-form a,
.infos a.tel,
.infos .text {
  color: white;
}

.infos .reseaux-sociaux svg {
  fill: white;
}

.infos .reseaux-sociaux {
  margin-bottom: 80px;
}

.infos .title-4 {
  font-weight: 500;
  font-size: 1rem;
  margin: 24px 0 12px;
}

.infos .title-2 {
  margin: 0 0 1.5rem;
  color: white;
}

.encart-formulaire label {
  font-weight: var(--font-weight-semi-bold);
  line-height: 24px;
}
.divGenerateurRequired {
  display: none;
}

.encart-formulaire #map {
  min-height: 450px;
  border-radius: 60px;
}

@media screen and (min-width: 993px) {
  .form p {
    margin-bottom: 1.5rem;
  }

  .encart-formulaire .col:has(.form) {
    padding: 0;
    border-radius: 0 3.75rem 3.75rem 0;
  }
  .encart-formulaire .map-container iframe {
    height: 463px;
    margin-top: 88px;
  }
}

#formulaire_1 .divGenerateur ul label {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display: flex;
  align-items: flex-start;
}

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

span.note {
  font-size: 16px;
  line-height: 26px;
  display: block;
  margin-bottom: 12px;
}

input:not([type]),
input[type="text"],
input[type="email"],
input[type="time"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="tel"],
input[type="number"],
input[type="search"],
textarea {
  border-radius: 8px;
  border: 1px solid hsla(0, 0%, 82%, 1);
  min-height: 50px;
  box-shadow: 0px 1px 2px 0px hsla(220, 43%, 11%, 0.05);
}

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

#formulaire_1 p.submit .btn.primary {
  width: 100%;
}

@media screen and (min-width: 601px) {
  #formulaire_1 .cp_ville {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  #formulaire_1 .cp_ville > p {
    width: calc(50% - 6px);
  }
}

@media screen and (max-width: 992px) {
  .encart-formulaire .form {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }
  .encart-formulaire .infos {
    padding: 2rem 1rem;
  }
  .infos .reseaux-sociaux {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 993px) and (max-width: 1200px) {
  .encart-formulaire .infos {
    padding: 2rem;
  }
}

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

footer svg {
  fill: black;
}
footer {
  background-color: hsla(0, 0%, 96%, 1);
}

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;
  }
  footer #footer-nav .nav ul li.sous_menu ul.dropdown {
    bottom: 100%;
  }
}

@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: 3rem 0 1.5rem;
}
.col-brand {
  margin-right: 3rem;
}
footer .footer-1 .title-4 {
  line-height: 24px;
  margin: 0 0;
  color: var(--accent-color);
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: bold;
}

.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(--accent-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;
  vertical-align: middle;
  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 {
  border-bottom: 2px solid var(--accent-color);
}

#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;
}
.rs {
  margin-top: 58px;
}
.footer-2 {
  padding: 24px 0 48px;
}

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

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

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

.actualites-listing main > .section,
.actualites-detail main > .section {
  padding-top: 0;
}
.sitemap-nav.row li {
  margin-bottom: 0.5rem;
}
#relance ul {
  padding-left: 0;
}
p.titre-relance {
  text-align: center;
}
.cards h3 {
  color: white;
}

section.ac-doubleColonne .white {
  background: var(--accent-color);
  font-weight: var(--font-weight-medium);
  margin-block: 1.5rem;
  color: white;
}

.page-interne .sc-content .clear_both,
.clear_both {
  margin-bottom: var(--marge-section-mobile);
}

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

.page-interne .sc-content #relance {
  margin-top: 6rem;
  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;
}

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-contact {
    margin-bottom: 1.5rem;
  }

  .page-interne .sc-content #relance {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 993px) {
  .bg-interne .slide-content {
    padding-block: 290px 72px;
  }
  .page-interne .sc-content .ac-doubleColonne .ac-colonne_2 img,
  .ac-colonne_2 h2,
  .ac-colonne_2 p,
  .ac-colonne_2 .btn-contact {
    width: 90%;
    margin-left: auto;
  }

  .page-interne #encart-contact .container,
  .page-interne #bloc-formulaire .container {
    width: 100%;
  }
  .page-interne .sc-content .clear_both,
  .clear_both {
    margin-bottom: var(--marge-section-desck);
  }
  .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;
}
body.contact-page h1 {
  color: white;
}
.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;
}

#mess_newsletter {
  color: var(--accent-color);
  display: block;
  margin-top: 1rem;
}
.devis .btn-devis {
  display: none;
}
.fil-ariane .first {
  display: inline-block;
}
:where(a) {
  color: inherit;
}

/* ================================ Animated-line ================================== */
main .animated-line:not(main .ac-doubleColonne.hero-bg .animated-line) {
  display: block;
  margin-bottom: 3rem;
  position: relative;
}
.index-page main span.animated-line {
  width: max-content;
}
#encart-prestations .animated-line,
#encart-equipes .animated-line {
  margin-bottom: 3.75rem;
}
.animated-line::before {
  position: absolute;
  content: "";
  left: -5000px;
  right: 100%;
  background-color: white;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.animated-rtl .animated-line::before {
  left: 100%;
  right: -5000px;
}
.index-page
  main
  .animated-line:not(main .ac-doubleColonne.hero-bg .animated-line)::before {
  background-color: var(--title-color);
}
#act span.text {
  color: white;
}
.animated-line .text {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  opacity: 0;
  transform: scale(0.95);
}

main .animated-line:not(main .ac-doubleColonne.hero-bg .animated-line) .text {
  color: hsla(0, 0%, 53%, 1);
}
.animated-line .text::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid white;
  border-radius: var(--border-radius-anim);
  opacity: 0;
  transform: scale(0.8);
}

.index-page
  main
  .animated-line:not(main .ac-doubleColonne.hero-bg .animated-line)
  .text::before {
  border: 1px solid var(--title-color);
}
.animated-line-wrapper.is-visible .animated-line::before {
  animation: growLine 0.8s ease-out forwards;
}
.animated-line-wrapper.animated-rtl.is-visible .animated-line::before {
  animation: growLineRtL 0.8s ease-out forwards;
}
.animated-line-wrapper.is-visible .text {
  animation: fadeInText 0.6s ease-out forwards;
  animation-delay: 0.8s;
  margin-block: 1rem;
}
.animated-line-wrapper.is-visible .text::before {
  animation: showBorder 0.4s ease-out forwards;
  animation-delay: 1.3s;
}

/* Animations */
@keyframes growLine {
  from {
    opacity: 0;
    right: 1000%;
  }
  to {
    opacity: 1;
    right: 100%;
  }
}

@keyframes growLineRtL {
  from {
    opacity: 0;
    left: 1000%;
  }
  to {
    opacity: 1;
    left: 100%;
  }
}

@keyframes fadeInText {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes showBorder {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media screen and (min-width: 1500px) {
  .scroll-image-block .col.pos-relative {
    overflow: hidden;
  }

  .scroll-image-block .img-2.bloc-img-bas {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
  }

  .scroll-image-block .kobido-left {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    height: 943px;
    transition: width 1s ease, height 1s ease;
  }

  .scroll-image-block.scrolled .kobido-left {
    width: 648px;
    height: 644px;
  }
}
