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

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

  --accent-h: 35; /* hue */
  --accent-s: 59%; /* saturation */
  --accent-l: 58%; /* lightness */

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

  --background-h: 45; /* hue */
  --background-s: 5%; /* saturation */
  --background-l: 15%; /* lightness */

  --primary-font: "Inter", sans-serif;
  --secondary-font: "ivypresto-display", serif;

  --headings-line-height: 1.333333;

  --link-color: var(--accent-color);

  --border-radius: 4px;
  --button-border-radius: 4px;

  --marge-section-mobile: 40px;
  --marge-section-desck: 120px;

  --transition: 0.7s all ease-in-out;

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

  --font-weight-light: 300;
  --font-weight-Regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;

  --display2xl: 60px;
  --displayxl: 58px;
  --displaylg: 42px;
  --displaymd: 32px;
  --displaysm: 24px;
  --displayxs: 20px;

  --textlg: 18px;
  --textmd: 16px;
  --textsm: 13px;
  --textxs: 10px;

  --h1-font-size: var(--display2xl);
  --h2-font-size: var(--displaylg);
  --h3-font-size: var(--displaymd);
  --h1-font-size-s: var(--displaysm);
  --h2-font-size-s: var(--displayxs);
  --h3-font-size-s: var(--textlg);
}

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

.card {
  position: relative;
  display: block;
}
.card a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 4;
}
a[href="#"] {
  cursor: default;
}
a {
  transition: var(--transition);
}

a,
p {
  line-height: 26px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.card-title,
[class*="title"] {
  font-weight: var(--font-weight-Regular);
  font-family: var(--secondary-font);
}

.fil-ariane,
#fil_ariane {
  margin-bottom: 2rem;
  font-size: 14px;
}

#fil_ariane {
  margin: 3rem 0;
}
h1.h1-geoloc span::before,
.title-1.h1-geoloc span::before {
  display: none;
}

body :where(address) {
  margin: 0;
}

.plan-site .sitemap-nav ul li a {
  margin-bottom: 0.5rem;
  display: inline-block;
}
.bg-notes p {
  margin: 0;
}
.bg-notes {
  margin-bottom: 1.5rem;
}
.index-page main p u,
.bg-notes {
  display: block;
  text-decoration: none;
  border-left: 1px solid hsla(45, 78%, 60%, 1);
  margin-block: 20px;
  padding-left: 20px;
}
/* ============== PAGINATION ==============*/
/* ========================================= */
.paginationControl {
  text-align: center;
  margin: 2rem 0;
}
.paginationControl a,
.paginationControl span {
  font-weight: 600;
  font-size: 18px;
  padding: 0 5px;
  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;
}

/*=========== BOUTONS=========*/
/* ============================*/
[class*="btn"] a.btn {
  padding: 10px 23px;
  font-weight: bold;
  letter-spacing: 0px;
}

[class*="btn"] .accent.btn {
  color: hsla(45, 5%, 15%, 1);
  background: linear-gradient(90deg, #f3be3f 0%, #f3dfa5 55.02%, #eeb530 100%);
}

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

[class*="btn"] a.btn:not(.accent),
[id*="formulaire"] .btn.primary {
  color: white;
  background: transparent;
  border: 2px solid hsla(45, 78%, 60%, 1);
  backdrop-filter: blur(2px);
}

[class*="btn"] a.btn:not(.accent):hover,
[id*="formulaire"] .btn.primary:hover {
  background-color: hsla(50, 78%, 77%, 1);
  color: hsla(45, 5%, 15%, 1);
}

a.btn:has(.content) {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: 0.3s;
  height: 48px;
  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: 601px) {
  .btn:not(.fluid) {
    width: auto;
  }
}
@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;
  }
}

/*================ FANCY BOX ============*/

.fancy-box-body {
  padding-top: 0;
}
.rappel_telephonique h2 {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.rappel_telephonique form.generateur p {
  padding: 0 0;
}
.rappel_telephonique input[type="text"]:not(.browser-default),
.rappel_telephonique input[type="tel"]:not(.browser-default) {
  height: 2rem !important;
}
.rappel_telephonique .btn {
  padding: 6px 20px;
}

/*================ titre mobile============*/
/* ======================================== */

.page-interne h1 span {
  font-size: 16px;
  margin-block: 8px 0;
  letter-spacing: 0;
}
.title-1 {
  margin: 0;
  color: white;
}
h1 span,
.title-1 span {
  margin-block: 10px;
}
h1,
.title-1 {
  font-size: var(--h1-font-size-s);
  margin-bottom: 1.5rem;
  line-height: var(--h1-font-size-s);
}

h2,
.title-2 {
  margin-top: 0;
  font-size: var(--h2-font-size-s);
  line-height: var(--h2-font-size-s);
  margin-block: 1.5rem;
}
h3,
.title-3 {
  font-size: var(--h3-font-size-s);
  line-height: var(--h3-font-size-s);
}

/*================ titre descktop ============*/
/* ======================================== */
@media screen and (min-width: 993px) {
  h1,
  .title-1 {
    font-size: var(--h1-font-size);
    line-height: 81px;
    margin-block: 0 1.5rem;
  }
  .slide-content p {
    font-weight: var(--font-weight-medium);
    font-size: 1.5rem;
    line-height: 33px;
  }
  .title-1 {
    font-size: var(--displayxl);
  }
  h1.h1-geoloc span,
  h1 span,
  .title-1 span {
    font-size: 33px;
    line-height: 37px;
    margin: 0;
    text-transform: none;
    margin-top: 0.5rem;
  }
  .page-interne h1 span {
    margin: 0;
    font-weight: 400;
    font-size: 35px;
    line-height: 43.2px;
    letter-spacing: 0px;
  }
  h2,
  .title-2 {
    font-size: var(--h2-font-size);
    line-height: 53px;
    margin-block: 0 1.5rem;
  }
  h3,
  .title-3 {
    font-size: var(--h3-font-size);
    line-height: var(--h3-font-size);
    margin-block: 0 1.5rem;
  }
}

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

body:not(.index-page) .bloc-interne .row-btn {
  justify-content: center;
}

body:not(.index-page) .top-bar .row-btn {
  margin-top: 0;
}
.bloc-interne {
  max-width: 1001px;
  margin: auto;
}
header nav#topbar-nav a.selected {
  font-weight: bold;
  color: var(--accent-color);
}
body:not(.index-page) .row-btn a.tel {
  color: var(--text-color);
  font-weight: 600;
}

body:not(.index-page) .bg-interne .row-btn svg path {
  fill: var(--text-color);
}

.header-content .nav ul li a.selected,
.header-content .nav ul li a:hover,
.header-content .nav ul li:hover > a {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: var(--accent-color);
}

.header-content .nav#topbar-nav > ul > li,
.header-content #nav-container .nav ul li {
  border-bottom: 2px solid transparent;
}
.fold {
  padding: 20px 0px;
}
header a.tel.gtm-global-tel {
  display: block;
}
.fold address {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.menu-mobile {
  height: 6.5rem;
  background: var(--background-color);
}
.menu_opened .menu-mobile {
  height: 3.5rem;
}
.menu-mobile .brand {
  max-width: 70%;
}
button#menu-burger,
button#menu-back {
  color: var(--primary-color-70);
  border: 2px solid var(--accent-color);
}
.header-content .nav > ul > .sous_menu.opened > a {
  color: var(--primary-color-70);
}
span.menu-title {
  color: var(--primary-color-70);
}

.header-content .nav ul li a.selected {
  color: var(--accent-color-80);
  background-color: transparent;
}
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s;
  z-index: 100;
}
.sticky-header .sticky.scroll_down {
  transform: translateY(-100%);
}
header .btn-contact {
  margin-top: 10px;
}
.contact-page .fold {
  display: none;
}

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

.top-bar .row {
  justify-content: center;
}

.page-interne .sc-content #relance {
  margin-top: 6rem;
}

@media screen and (min-width: 601px) {
  header .btn-contact {
    margin-top: 0px;
  }
}

@media screen and (min-width: 993px) {
  body:not(.index-page) .row-btn {
    margin-top: 3rem;
  }
  .index-page .header-content,
  .contact-page .header-content,
  .page-interne .header-content,
  .actualites-detail .header-content,
  .actualites-listing .header-content,
  .catalogue-listing .header-content,
  .catalogue-detail .header-content,
  .plan-site .header-content,
  .politique-de-confidentialite .header-content {
    background-color: transparent;
  }
  .index-page,
  .contact-page,
  .page-interne,
  .actualites-detail,
  .actualites-listing,
  .catalogue-listing,
  .catalogue-detail,
  .plan-site,
  .politique-de-confidentialite {
    padding-top: 0 !important;
  }
  .sticky-active .header-content {
    background-color: var(--background-color);
  }
  .header-content .nav#main-nav > ul > li > a {
    color: #fff;
  }
  .main-header-content {
    padding: 1.5rem 0;
  }

  .top-bar {
    padding-block: 1.5rem 0.5rem;
  }
  .row-btn {
    display: flex;
    align-items: center;
    justify-content: start;
    color: var(--background-color);
    gap: 12px;
    margin-top: 2rem;
  }
  header .no-header {
    display: none;
  }

  .header-content .nav ul li.sous_menu ul.ssdropdown li a,
  .header-content .nav ul li.sous_menu ul.ssdropdown li:not(:last-child) a,
  .header-content .nav ul li.sous_menu ul.ssdropdown li a:hover,
  .header-content
    .nav
    ul
    li.sous_menu
    ul.ssdropdown
    li:not(:last-child)
    a:hover,
  .header-content
    .nav
    ul
    li.sous_menu
    ul.dropdown
    > li.sous_menu:not(.empty-link):hover
    > a {
    color: white;
  }

  li.firstLi.sous_menu a {
    color: var(--text-color);
  }
  .header-content .nav#topbar-nav > ul > li > a {
    position: relative;
    transition: 0.3s ease-in-out;
  }
  .fold {
    display: none;
  }
  .header-content .nav ul li.sous_menu > a::after {
    text-decoration: none;
  }
  .header-content #nav-container {
    margin: 0;
  }
  .main-header-content .nav ul li:hover > a {
    color: white;
  }

  header .main-header-content nav#main-nav ul.dropdown,
  header .main-header-content nav#main-nav ul.ssdropdown {
    color: hsla(45, 5%, 15%, 1);
    background: linear-gradient(
      90deg,
      #f3be3f 0%,
      #f3dfa5 55.02%,
      #eeb530 100%
    );
  }
  div#nav-container ul.dropdown a {
    color: hsla(45, 5%, 15%, 1);
  }
  .header-content .nav#main-nav > ul > li > a {
    position: relative;
    padding-block: 12px;
    font-size: 15px;
  }
  div#style {
    border-block: 1px solid hsla(45, 78%, 60%, 1);
    max-width: 1156px;
    margin: auto;
  }
  .slide-content [class^="btn-"],
  .bg-interne [class^="btn-"] {
    display: block;
  }
  header a.tel {
    display: block;
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 20px;
  }
  header .btn-contact {
    margin-top: 0px;
  }
  table.horaires tr td + td {
    display: block;
    margin-left: 10px;
  }
  .header-content .nav ul li.sous_menu ul.dropdown > li a {
    font-size: 12px;
  }
  li.firstLi.no-desk {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .header-content .nav#main-nav > ul > li > a {
    font-size: 1rem;
    padding-left: 20px;
    padding-right: 20px;
  }
  .top-bar .row {
    justify-content: space-between;
  }
}

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

.bg-interne {
  position: relative;
  z-index: 0;
  padding-block: 120px;
}
#container {
  padding-top: 0;
}
.bg-interne:before {
  position: absolute;
  content: "";
  left: -50%;
  width: 200%;
  background-image: url(../assets/gifs/slider/slide-01.jpg);
  top: 0;
  height: 100%;
  background-position: center top;
  z-index: -1;
  background-size: cover;
}
.slide-content .bloc-title {
  align-items: stretch;
}

.slide-content .lign-left {
  margin-top: 1rem;
}

.slide-content .row-btn {
  justify-content: center;
}
.slider-slick {
  width: 100%;
  position: relative;
  z-index: 0;
}
.slide-img .container {
  min-height: auto;
}

.slide-img {
  min-height: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}
.slide-img:before,
.bg-interne:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  background: linear-gradient(
    360deg,
    rgb(13 13 12 / 24%) 0%,
    rgb(13 13 12 / 67%) 100%
  );
  /* background: linear-gradient(
    360deg,
    rgba(13, 13, 12, 0.6) 0%,
    rgba(13, 13, 12, 0.8) 100%
  ); */
  top: 0;
  height: 100%;
}

.bg-interne:after {
  left: -50%;
  width: 200%;
  z-index: -1;
}

.slide-img.slide-01 {
  background-image: url("../assets/gifs/slider/slide-01.jpg");
}
.slide-img.slide-02 {
  background-image: url("../assets/gifs/slider/slide-02.jpg");
}
.slide-img.slide-03 {
  background-image: url("../assets/gifs/slider/slide-03.jpg");
}
.slick-actualites,
.slick-avis,
.row.slick-prestations {
  margin-top: 64px;
}
.slick-dots li {
  margin: 0 4px;
  padding: 4px;
}
.slick-dots li button .slick-dot-icon:before {
  font-size: 16px;
}
.slick-dots li button {
  height: 1rem;
  width: 1rem;
  border-radius: 100px;
  background-color: var(--brand100);
  padding: 0;
}
.slick-slider {
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  .slide-content {
    padding-block: 6rem;
  }
  h1 span,
  .title-1 span {
    font-size: calc(var(--h2-font-size) - var(--h2-font-size) / 2);
  }
  .slide-content [class^="btn-"],
  .bg-interne [class^="btn-"] {
    display: none;
  }

  .slide-content .title-1 {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 993px) {
  .bg-interne {
    padding-block: 260px 150px;
  }
  h1 {
    position: relative;
  }

  .page-interne h1:before,
  .page-interne h1:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    background: #e9c04a;
    left: 0;
    margin: auto;
    top: 0;
    bottom: 0;
  }

  .page-interne h1:after {
    right: 0;
    left: auto;
  }
  .bloc-center {
    padding-block: 353px 1.5rem;
  }
}

/*============ TITRE TOP ======================*/

.titre-top {
  padding-block: 80px;
}

.titre-top .container {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 993px) {
  .titre-top .container:before {
    position: absolute;
    content: "";
    left: -183px;
    bottom: 0;
    width: 465px;
    height: 370px;
    background-image: url(../assets/gifs/before-title.png);
    top: -83px;
  }
  .titre-top .container:after {
    position: absolute;
    content: "";
    right: -170px;
    bottom: 0;
    width: 408px;
    height: 403px;
    background-image: url(../assets/gifs/aftertitle.png);
    top: 14px;
    background-size: contain;
  }
}
/*============ ENCART PRESTATIONS ======================*/

.container-max {
  max-width: 1920px;
  margin: auto;
  width: 99%;
}
.bloc-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.prestations-card-title {
  margin-block: 1rem 8px;
}
#encart-prestations .title-2 {
  margin: 0 0 20px;
}
.slick-prestations {
  gap: 1.5rem 0;
}
.prestations-card-title a {
  text-decoration: none;
  color: #fff;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 0px;
}
.lign-left {
  display: none;
}
.prestations-card .card-text {
  margin: 8px 0 16px;
  overflow: hidden;
  transition: 0.8s;
}

.prestations-card {
  border: 1px solid hsla(42, 6%, 34%, 1);
  padding: 1.5rem;
}
.prestations-card:hover .btn-card {
  height: auto;
  animation: mymove 0.6s linear;
  display: block;
}

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

.prestations-card:hover .btn-card {
  animation: mymove 0.6s linear;
  opacity: 1;
}

@keyframes mymove {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media screen and (min-width: 993px) {
  .btn-card,
  .prestations-card:hover .card-image {
    opacity: 0;
  }
  /* .prestations-card {
    padding: 40px 80px 92px 80px;
  } */
  .prestations-card {
    padding: 40px 80px 40px 80px;
    height: 322px;
  }
  .prestations-card-title a {
    font-size: 28px;
  }
  .lign-left {
    display: block;
  }
}

@media screen and (max-width: 992px) {
  .prestations-card {
    height: 282px;
  }
}

/*============ BLOC 01 ======================*/

h1.h1-geoloc span,
.title-1.h1-geoloc span {
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  [id*="bloc"] img {
    display: block;
    width: auto;
    margin: 2rem auto;
  }
}

@media screen and (min-width: 993px) {
}

@media screen and (min-width: 1400px) {
}
/* ============ POINTS FORTS ========= */
.card-pf span {
  font-family: var(--primary-font);
  font-size: 20px;
}

.card-pf .title-2 {
  margin-bottom: 0.5rem;
}
.points-forts {
  margin-top: 40px;
}
.points-forts .row {
  gap: 3rem;
}
s-forts {
  margin-top: 40px;
}
.card-pf span {
  font-family: var(--primary-font);
  font-size: 20px;
}

.text {
  line-height: 26px;
}

.card-pf .title-2 {
  margin-bottom: 0.5rem;
}

.points-forts .row {
  gap: 3rem;
}

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

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

#encart-contact .container {
  border: 1px solid hsla(49, 7%, 53%, 1);
  padding: 2rem;
}
div#encart-contact .row-btn {
  margin-top: 1.5rem;
}
.page-interne #encart-contact .container {
  width: 100%;
}

.page-interne #encart-contact::before,
.page-interne #encart-contact::after {
  width: 200%;
  left: -50%;
}

#encart-contact .reseaux-sociaux svg {
  fill: white;
}

.card-contact {
  margin-bottom: 30px;
  margin-top: 1.5rem;
}
#encart-contact h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-family: var(--primary-font);
}

#encart-contact .title-2 {
  color: white;
}

@media screen and (min-width: 993px) {
  .card-contact {
    margin-top: 0rem;
  }
  #encart-contact .container {
    padding: 40px 112px;
  }
  .card-pf .title-2 {
    margin-bottom: 0.5rem;
    min-height: 63px;
  }
  .page-interne #encart-contact {
    padding-block: var(--marge-section-desck);
  }
}

/* =========== BLOC 03 ============ */
div#bloc-03 {
  background-image: url(../assets/gifs/bloc-03.jpg);
  background-position: center;
  background-size: cover;
}

@media screen and (min-width: 993px) {
}

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

.slick-actualites {
  justify-content: center;
}

.actualites-card-content {
  padding-top: 20px;
}
#encart-actualites .encart-btn .btn.outlined {
  border: 2px solid #837f73;
}
.actualites-card-image {
  overflow: hidden;
}

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

.card-image a {
  position: relative;
}

.card-image a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  transition: 0.6s;
}

.actualites-card:hover .card-image a::before {
  background-color: #262e26b2;
}

.card-image img,
.card-image a {
  display: block;
  object-fit: cover;
  transition: 0.6s;
  margin: auto;
}

.actualites-card-title a {
  text-decoration: none;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0px;
}

.actualites-card .card-text {
  margin: 0.5rem 0;
}

.actualites-encart-btn {
  margin-top: 60px;
}

#listing-autres-actus-categorie ul a {
  font-size: 15px;
  text-decoration: none;
}

#listing-autres-actus-categorie ul a:hover {
  text-decoration: underline;
}

.actualites-detail .detail-btn {
  text-align: center;
}

.actualites-detail .detail-actu-reseaux-sociaux {
  align-items: center;
}

.detail-actu-reseaux-sociaux > div {
  display: flex;
}

.detail-actu-image img {
  border-radius: var(--border-radius);
}

.actualites-listing #fil_ariane {
  margin: 0 0 2rem;
}

@media screen and (max-width: 1400px) and (min-width: 993px) {
  #listing-autres-actus-categorie a.btn {
    padding: 12px 12px;
    font-size: 12px;
  }
}

.actualites-detail #listing-autres-actus-categorie {
  padding: 1rem;
  border-radius: var(--border-radius);
  background: var(--background-color-20);
}

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

/* ***************** BLOC 5 ************ */

#bloc-05 {
  background-image: url(../assets/gifs/bg-bloc5.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
}
#bloc-05:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  background: #0d0d0ccc;
  top: 0;
  z-index: -1;
}

/* *****************FOURNISSEURS************ */
.encart-fournisseurs {
  padding-block: 40px;
}
.slick-fournisseurs img {
  margin: auto;
  display: block;
}
@media screen and (min-width: 993px) {
  .slick-fournisseurs.row {
    flex-wrap: nowrap;
  }
  .slick-fournisseurs {
    gap: 150px;
  }
}

/* ************* FORMULAIRE ****************/
.encart-formulaire {
  position: relative;
  z-index: 0;
}

.encart-formulaire:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  background-image: url(../assets/gifs/bg-form.jpg);
  height: 100%;
  z-index: -2;
  top: 0;
  background-size: cover;
  background-position: center;
}
.encart-formulaire:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  background: linear-gradient(90deg, rgba(39, 38, 35, 0) 0%, #272623 100%),
    linear-gradient(180deg, rgba(39, 38, 35, 0) 50%, #272623 100%);
}
.page-interne .encart-formulaire:after,
.page-interne .encart-formulaire:before {
  left: -50%;
  width: 200%;
  z-index: -1;
}
span.erreur {
  font-size: 10px;
}
.form {
  padding: 3rem;
  height: 100%;
  box-shadow: 0px 4px 24px 0px #0000001a;
}
.g-recaptcha {
  margin-block: 1.5rem;
}
.infos {
  padding: 3rem 80px;
  height: 100%;
  color: hsla(0, 0%, 12%, 1);
}

#bg-form {
  background-image: url(../assets/gifs/bg-form.jpg);
  background-size: cover;
  background-position: center;
}
.infos .text {
  margin-bottom: 1.5rem;
  color: #3d3d3d;
}
.infos a.tel {
  color: #3d3d3d;
}
.infos .reseaux-sociaux svg,
footer svg {
  fill: hsla(0, 0%, 100%, 1);
}

.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;
}
.divGenerateur label.optional {
  display: none;
}
.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;
}
.divGenerateur label.optional {
  display: none;
}

.encart-formulaire .container {
  width: 100%;
}

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

  .encart-formulaire .col:has(.form) {
    padding: 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: 4px;
  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) {
  .title-2 br,
  .title-3 br {
    display: none;
  }
  .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 ************** */

body:not(.index-page) footer .section.footer-1 {
  padding: 2rem 0 1.5rem;
}

@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;
}

footer .footer-1 .title-4 {
  line-height: 24px;
  margin: 0 0;
  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 ul.dropdown a {
  color: hsla(45, 5%, 15%, 1) !important;
}
#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;
  border: 1px solid var(--accent-color);
  background: linear-gradient(90deg, #f3be3f 0%, #f3dfa5 55.02%, #eeb530 100%);
  color: hsla(45, 5%, 15%, 1);
}

#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 {
  text-decoration: underline;
}

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

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

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

/* =================Page-interne ===========*/

.catalogue-detail main > .section,
.catalogue-listing main > .section,
.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;
}

.bloc-timeline {
  position: relative;
}

body:not(.index-page) main .row-btn {
  justify-content: start;
  margin-bottom: 1rem;
}
.cards {
  margin-bottom: 1rem;
}
.bloc-timeline::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  height: 100%;
  bottom: 0;
  width: 1px;
  background: var(--accent-color);
  opacity: 25%;
}
section.ac-doubleColonne .white {
  background: var(--accent-color);
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
}
.act h1,
.bg-interne h1 {
  color: white;
  margin: 0;
}
.act {
  padding-block: 80px;
}
.page-interne .sc-content .clear_both {
  margin-bottom: var(--marge-section-mobile);
}

.sc-content #relance {
  margin: 40px auto;
}

#listing-autres-actus-categorie span.title-4 {
  padding-top: 15px;
  display: block;
}

#listing-autres-actus-categorie .detail-btn {
  text-align: center;
}
.detail-btn a {
  font-size: 13px;
}
.fb-like.fb_iframe_widget {
  position: relative;
  top: 7px;
}

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

#relance p.titre-relance {
  font-size: 1rem;
  font-weight: 700;
  background-color: transparent;
}

#listing-autres-actus-categorie a {
  text-decoration: none;
}
.cards .white p {
  margin: 0;
}
.cards .white p,
.white h3 {
  color: black;
}
.reseaux-sociaux a:hover svg path {
  fill: hsla(45, 78%, 60%, 1);
}
.header-content .row-btn {
  margin-top: 0;
}
.row-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sc-content #relance ul {
  padding-inline-start: 0px;
  justify-content: center;
  display: block;
  text-align: center;
  margin: auto;
}
#rs-footer .row {
  justify-content: start;
}
section#relance li {
  list-style: none;
  margin: 20px 10px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .page-interne main .btn-rdv {
    margin-bottom: 1.5rem;
  }
  .row-btn {
    flex-direction: column;
    row-gap: 1rem;
    align-items: normal;
  }
}
@media screen and (max-width: 992px) {
  .page-interne .sc-content #relance {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 993px) {
  .row-btn {
    margin-top: 3rem;
  }
  section.ac-doubleColonne.top img {
    max-width: 83%;
  }

  .page-interne .top img {
    height: 100%;
    object-fit: cover;
  }
  .page-interne .top .ac-colonne_2.ui-sortable img {
    margin: auto 0 auto auto;
    height: 100%;
    object-fit: cover;
  }

  .act {
    padding-block: 250px 112px;
  }
  .page-interne .sc-content .clear_both {
    margin-bottom: var(--marge-section-desck);
  }

  .politique-de-confidentialite #act,
  .plan-site #act {
    margin-top: -4rem;
  }

  .interne {
    max-width: 648px;
  }

  .page-interne p.intro {
    margin-bottom: 60px;
  }
}

/* ===========Contact-page==========*/
/* ================================== */
.devis-page h1.title-2 {
  color: white;
}
a.lien-maps:hover {
  opacity: 0.7;
}
span.lien-maps span {
  display: block;
}
.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;
}
.col.contact-page-horaires .row,
.contact-page-coordonnees.reset .row,
.contact-page-infos-pratiques .row {
  flex-wrap: nowrap;
}

.page-404 footer {
  margin-top: auto;
  background: var(--primary-color);
}
.page-404 .brand {
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
}

.contact-page .contact-page-infos-pratiques {
  margin-bottom: 2rem;
}

#mess_newsletter {
  color: var(--accent-color);
  display: block;
  margin-top: 1rem;
}

.devis .btn-devis {
  display: none;
}

.fil-ariane .first {
  display: inline-block;
}

.date.card-date {
  margin-bottom: 12px;
  display: none;
}

.devis-page a.lien-maps span {
  display: inline-flex;
}

:where(a) {
  color: inherit;
}
.contact-page .fold {
  display: none;
}
