:root {
  /* pack variables style*/
  /* color */
  --brand: #4594b2;
  --accent: #b28640;
  --base-gray: #7d6a67;

  --gray0: white;
  --gray50: #fafaf9;
  --gray100: #f5f5f4;
  --gray200: #e8e3e3;
  --gray300: #d8d0cf;
  --gray400: #ac9c9a;
  --gray500: #7d6a67;
  --gray600: #5b4f4a;
  --gray700: #3f3532;
  --gray800: #2b2223;
  --gray900: #1e1615;
  --gray950: #0d0808;

  --brand50: #f4f8fb;
  --brand100: #e7f1f7;
  --brand200: #b9d8e6;
  --brand300: #9dcadc;
  --brand400: #68aec8;
  --brand500: #4594b2;
  --brand600: #337896;
  --brand700: #2a607a;
  --brand800: #265266;
  --brand900: #244556;
  --brand950: #182d39;

  --accent50: #f9f6ed;
  --accent100: #efe8d2;
  --accent200: #e1d2a7;
  --accent300: #d0b474;
  --accent400: #c6a15b;
  --accent500: #b28640;
  --accent600: #996a35;
  --accent700: #7b502d;
  --accent800: #68422b;
  --accent900: #5a3929;
  --accent950: #331e15;

  --orange: #f3b38f;
  --orange50: #fdf5ef;

  --pink300: #eec6cf;
  --pink800: #80314f;

  --shade-background: var(--orange50);
  --shade-text: var(--gray700);

  --img-radius: var(--spacing7);
  --card-radius: var(--radius6);
  --card-inner-img-radius: 0;
  --button-radius: var(--spacing7);
  --input-radius: 0;
  --icon-radius: 0;
  --transition: 0.3s all ease-in-out;
  --link-color: var(--link-default-color);
  --section-padding-block: var(--spacing10);

  --button-padding-block: var(--spacing3-5);
  --button-padding-inline: var(--spacing6);
  --button-font-size: var(--text-md);
  --button-line-height: var(--line-height-md);
  --text-icon-icon-size: var(--text-icon-md-icon-size);

  /* font-size */
  /* font de base (pour les textes) */
  --font-size: 16px;
  --font-size-sm: 14px;

  --text-xs: 11px;
  --text-sm: 13px;
  --text-md: var(--font-size);
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 28px;

  --display-xs: 20px;
  --display-sm: 24px;
  --display-md: 28px;
  --display-lg: 33px;
  --display-xl: 40px;
  --display-2xl: 61px;

  /* pour la gestion des classes */
  --h1-font-size: var(--display-2xl);
  --h2-font-size: var(--display-xl);
  --h3-font-size: var(--display-lg);
  --h4-font-size: var(--display-md);
  --h5-font-size: var(--display-sm);
  --h6-font-size: var(--display-xs);

  --h1-mobile-font-size: var(--display-xl);
  --h2-mobile-font-size: var(--display-lg);
  --h3-mobile-font-size: var(--display-md);
  --h4-mobile-font-size: var(--display-sm);
  --h5-mobile-font-size: var(--display-xs);
  --h6-mobile-font-size: var(--text-lg);

  /* font-family */
  --font-text: "DM Sans", sans-serif;
  --font-menu: "DM Sans", sans-serif;
  --font-display: "Fraunces", serif;
  --font-accent: "Caveat", cursive;

  /* font-weight */
  --display-default: var(--font-regular);
  --display-heavy: var(--font-semibold);
  --display-font-weight: var(--display-heavy);

  --menu-default: var(--font-regular);
  --menu-heavy: var(--font-semibold);

  --text-default: var(--font-regular);
  --text-heavy: var(--font-bold);

  /* BUTTONS */
  --button-font-family: var(--font-display);
  --button-font-weight: var(--menu-heavy);

  /* BUTTON PRIMARY */
  /* default */
  --button-primary-default-color: var(--pink800);
  --button-primary-default-background: var(--gray0);
  --button-primary-default-border: 2px solid var(--pink300);
  /* hover */
  --button-primary-hover-color: var(--pink800);
  --button-primary-hover-background: var(--pink300);
  --button-primary-hover-border: 2px solid var(--pink800);
  /* active */
  --button-primary-active-color: var(--accent500);
  --button-primary-active-background: var(--accent400);
  --button-primary-active-border: 2px solid var(--accent500);
  /* disabled */
  --button-primary-disabled-color: var(--accent300);
  --button-primary-disabled-background: var(--gray10);
  --button-primary-disabled-border: 2px solid var(--accent500);

  /* BUTTON SECONDARY */
  /* default */
  --button-secondary-default-color: var(--gray0);
  --button-secondary-default-background: var(--gray950);
  --button-secondary-default-border: 2px solid var(--gray950);
  /* hover */
  --button-secondary-hover-color: var(--gray950);
  --button-secondary-hover-background: var(--gray0);
  --button-secondary-hover-border: 2px solid var(--gray950);
  /* active */
  --button-secondary-active-color: var(--gray800);
  --button-secondary-active-background: var(--gray500);
  --button-secondary-active-border: 2px solid var(--gray950);
  /* disabled */
  --button-secondary-disabled-color: var(--gray300);
  --button-secondary-disabled-background: var(--gray100);
  --button-secondary-disabled-border: 2px solid var(--gray950);

  /* BUTTON CONVERSION */
  /* default */
  --button-conversion-default-color: var(--gray950);
  --button-conversion-default-background: linear-gradient(
    85.58deg,
    #c6a15b 7.77%,
    #e1d2a7 50%,
    #c6a15b 92.23%
  );
  --button-conversion-default-border: none;
  /* hover */
  --button-conversion-hover-color: var(--gray0);
  --button-conversion-hover-background: linear-gradient(
    106deg,
    #c6a15b 25.77%,
    #e1d2a7 137%,
    #c6a15b 100.23%
  );
  --button-conversion-hover-border: none;
  /* active */
  --button-conversion-active-color: var(--gray0);
  --button-conversion-active-background: var(--accent900);
  --button-conversion-active-border: none;
  /* disabled */
  --button-conversion-disabled-color: var(--accent300);
  --button-conversion-disabled-background: var(--accent100);
  --button-conversion-disabled-border: none;

  /* LINK */
  /* default */
  --link-default-color: var(--brand500);
  --link-default-text-decoration: underline;
  /* hover */
  --link-hover-color: var(--brand400);
  --link-hover-text-decoration: none;
  /* active */
  --link-active-color: var(--brand600);
  --link-active-text-decoration: none;
  /* visited */
  --link-visited-color: var(--link-default-color);
  /* disabled */
  --link-disabled-color: var(--brand200);

  /* TAG PRIMARY */
  /* default */
  --tag-primary-default-color: var(--gray0);
  --tag-primary-default-background: var(--brand500);
  --tag-primary-default-border: none;
  /* hover */
  --tag-primary-hover-color: var(--gray0);
  --tag-primary-hover-background: var(--brand400);
  --tag-primary-hover-border: none;
  /* active */
  --tag-primary-active-color: var(--gray0);
  --tag-primary-active-background: var(--brand600);
  --tag-primary-active-border: none;

  /* TAG CONVERSION */
  /* default */
  --tag-conversion-default-color: var(--gray0);
  --tag-conversion-default-background: var(--accent500);
  --tag-conversion-default-border: none;
  /* hover */
  --tag-conversion-hover-color: var(--gray0);
  --tag-conversion-hover-background: var(--accent400);
  --tag-conversion-hover-border: none;
  /* active */
  --tag-conversion-active-color: var(--gray0);
  --tag-conversion-active-background: var(--accent600);
  --tag-conversion-active-border: none;

  /* TAG INFO */
  /* default */
  --tag-info-default-color: var(--gray0);
  --tag-info-default-background: var(--info500);
  --tag-info-default-border: none;
  /* hover */
  --tag-info-hover-color: var(--gray0);
  --tag-info-hover-background: var(--info400);
  --tag-info-hover-border: none;
  /* active */
  --tag-info-active-color: var(--gray0);
  --tag-info-active-background: var(--info600);
  --tag-info-active-border: none;
}
@media screen and (992px <= width) {
  :root {
    --section-padding-block: var(--spacing30);
    --section-padding-block-small: var(--spacing20);
  }
}
.card {
  /* text */
  --card-text-color: var(--gray800);
  /* direction : vertical */
  --image-aspect-ratio: 16 / 9;
  /* direction : horizontal */
  --card-horizontal-image-width: 50%;
  --card-horizontal-content-width: calc(
    100% - var(--card-horizontal-image-width)
  );
  /* image : background */
  --image-background-overlay: linear-gradient(transparent, black 125%);
  --image-background-text-color: var(--gray0);
  /* card background */
  --card-background-color: var(--gray0);
  /* icon */
  --card-icon-size: var(--display-sm);
}

/* ============== */
/* === BLOCS BIBLIOTHEQUE === */
/* ============== */

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

.menu-mobile {
  background-color: var(--shade-background);
}

.menu-mobile .btn-menu {
  height: auto;
  color: var(--shade-text);
}

#menu-burger span,
.close-menu span {
  padding: var(--spacing3);
}

.menu_opened .no-menu-opened,
.top-bar-cta {
  display: none;
}

.fold-actions {
  padding-block: var(--header-padding);
  text-align: center;
}

.fold-actions .contactInfos--phone {
  padding-block: var(--header-padding);
  align-items: center;
}

@media screen and (max-width: 992px) {
  .header-content .nav#main-nav li:not(.opened) a,
  .header-content .nav#topbar-nav li:not(.opened) a {
    padding: 0.75rem 5%;
    border-bottom: none;
  }

  .header-content .nav ul li {
    border-bottom: solid 1px var(--gray200);
  }

  .header-content .nav ul li a.selected {
    color: var(--gray0);
    background-color: var(--brand);
  }

  .header-content .nav .sous_menu .btnMenuLevel2,
  .header-content .nav .sous_menu .btnMenuLevel3 {
    right: 0;
    border-left: solid 1px var(--gray200);
  }

  .header-content #nav-container,
  .dropdown,
  .ssdropdown {
    border-top: solid 1px var(--gray200);
  }

  .header-content .nav > ul > .sous_menu.opened > a,
  .header-content .nav .dropdown > .sous_menu.opened > a {
    justify-content: center;
    max-width: 500px;
    text-align: center;
    color: var(--shade-text);
    font-size: 14px;
  }

  .header-content .nav > ul > .sous_menu.opened > a.selected,
  .header-content .nav .dropdown > .sous_menu.opened > a.selected {
    background: transparent;
  }

  .header-content .nav#main-nav li.sous_menu:not(.opened) > a,
  .header-content .nav#topbar-nav li.sous_menu:not(.opened) > a {
    padding-right: calc(5% + 3rem);
  }
}

@media screen and (min-width: 768px) {
  .fold-actions {
    display: none;
  }
  .top-bar-cta {
    display: block;
  }
}

@media screen and (min-width: 993px) {
  .header-content .nav#main-nav > ul > li,
  .header-content .nav#topbar-nav > ul > li {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .header-content .nav > ul > li > ul.dropdown > li a {
    font-size: var(--font-size-sm);
    position: relative;
  }
  .header-content .nav#main-nav > ul > li > a,
  .header-content .nav#topbar-nav > ul > li > a {
    padding: 0.25rem;
    position: relative;
    color: var(--gray950);
  }

  .main-header-content {
    padding-block: var(--spacing6);
  }

  #topbar-nav {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .top-bar {
    padding-block: 10px;
    font-size: var(--font-size-sm);
  }
  .top-bar .socialLinkList a.RS {
    padding-block: 0;
  }
}

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

.footer {
  padding-block: calc(2 * var(--footer-padding));
}

.footer > .container {
  display: flex;
  flex-direction: column;
  gap: calc(2 * var(--footer-padding));
}

.footer__mainContent.row {
  width: 100%;
  row-gap: var(--contact-infos-list-gap);
  border-bottom: 1px solid #3f353210;
}

@media (width <= 992px) {
  .footer__mainContent.row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media screen and (992px <= width) {
  .footerLogoCenter > .container {
    align-items: center;
  }
}

@media (992px < width <= 1199px) {
  .footerLogoLeft .footer__brand {
    width: 100%;
    margin-bottom: var(--footer-padding);
    text-align: center;
  }

  .footer.footerLogoLeft .footer__brand .socialLinkList {
    justify-content: center;
  }
}

.footer__socialLinks {
  display: flex;
  flex-direction: column;
  gap: var(--spacing2);
}

.footer .socialLinkList {
  justify-content: flex-start;
}

.footer__socialLinks p:not(.textBlock p) {
  width: max-content;
  margin-bottom: 0;
}

.footerLogoLeft--b .socialLinkList,
.footerLogoLeft--d .socialLinkList,
.footerLogoLeft--e .socialLinkList,
.footerLogoCenter--d .socialLinkList,
.footerLogoBottom--b .socialLinkList {
  margin-top: var(--paragraph-gap-md);
}

@media screen and (992px <= width) {
  .footerLogoCenter--a .socialLinkList {
    justify-content: center;
  }
}

/* footer__siteNav : navigation du site dans le footer */

.footer__siteNav ul {
  margin-block: 0;
}

.footer__siteNav .dropdown,
.footer__siteNav .ssdropdown {
  flex-direction: column;
  gap: 0;
  padding-left: var(--spacing6);
  font-size: var(--text-sm);
  border-top: none;
}

@media screen and (992px <= width) {
  .footer__siteNav--horizontal ul {
    display: flex;
    justify-content: center;
    gap: var(--text-list-gap-md);
    text-align: left;
    flex-direction: column;
    gap: 1rem;
  }
}

.footer__paragraph {
  margin-bottom: var(--text-list-gap-md);
}
nav.footer__legalNav a {
  color: var(--link-color, var(--link-default-color));
}

.footer__legalNav a:not(:last-child),
.footer__siteNav li:not(:last-child) a {
  display: inline-block;
}

/* .footer__siteNav li:not(:last-child) a {
  margin-bottom: calc(var(--text-list-gap-md) - var(--spacing1));
} */

@media (width < 992px) {
  .footer__nav a {
    padding-block: var(--spacing1);
  }
  .footer__legalNav .buttonGroup {
    flex-direction: column;
  }
  .footer__legalNav .buttonGroup .link:not(:first-child) {
    margin-left: 0;
  }
  .footerLogoBottom .footer__legalInfos {
    margin-top: var(--footer-gap);
  }
}

@media screen and (992px <= width) {
  .footer__paragraph {
    text-align: center;
  }
  /* .footer__siteNav li:not(:last-child) a {
    margin-bottom: var(--text-list-gap-sm);
  } */
  .footerLogoLeft--e .footer__legalNav .buttonGroup {
    flex-direction: column;
  }
  .footerLogoLeft--e .footer__legalNav .buttonGroup .link:not(:first-child) {
    margin-left: 0;
  }
}

/* Footer contact infos */

.footer address {
  margin-block: 0;
}
.footer .contactInfos--address2lines .lien-maps span {
  display: block;
}

/* Footer menu dropdown */
.footer__siteNav ul li.sous_menu {
  position: relative;
}
.footer__siteNav 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;
  z-index: 1;
  background-color: var(--shade-background);
  border: 1px solid var(--gray100);
}

.footer__siteNav 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__siteNav ul li.sous_menu ul.dropdown > li:not(:last-child) {
  border-bottom: 1px solid var(--gray100);
}

.footer__siteNav ul li.sous_menu:hover ul.dropdown {
  display: flex;
}

.footer__siteNav ul li.sous_menu ul.dropdown > li a {
  padding: 0.5rem;
  margin: 0;
  font-size: var(--text-sm);
  display: block;
}

.footer__siteNav ul li a {
  border-bottom: 2px solid transparent;
}

@media screen and (min-width: 992px) {
  .footer__siteNav ul li.sous_menu ul.dropdown {
    bottom: 100%;
  }
}

/* @media screen and (max-width: 992px) {
  .footer__siteNav ul li.sous_menu ul.dropdown {
    min-width: 18%;
    top: 100%;
  }
} */

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

/* ============== */
/* === HERO 1 === */
/* ============== */

.hero1__image img {
  display: block;
  width: 100%;
  height: auto;
}

.hero1--imageSizeFullWidth .hero1__image img {
  width: 100%;
}

@media screen and (992px <= width) {
  .hero1__content {
    align-content: center;
  }

  .hero1__image > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-position: center;
  }
}

@media screen and (width < 992px) {
  .hero1--textPositionLeft .hero1__content {
    margin-bottom: var(--section-gap-md);
  }
  .hero1--textPositionRight .hero1__content {
    margin-top: var(--section-gap-md);
  }
}

.hero1--textPositionLeft .hero1__backgroundBlock {
  margin-bottom: calc(-1 * var(--section-padding-block));
  margin-top: calc(3 * var(--section-padding-block));
}

.hero1--textPositionRight .hero1__backgroundBlock {
  margin-top: calc(-1 * var(--section-padding-block));
  margin-bottom: calc(3 * var(--section-padding-block));
}

@media screen and (992px <= width) {
  .hero1--textPositionLeft .hero1__backgroundBlock,
  .hero1--textPositionRight .hero1__backgroundBlock {
    margin-block: calc(-1 * var(--section-padding-block));
  }
}
@media screen and (601px <= width < 992px) {
  .hero1__image img {
    object-fit: cover;
    background-position: center;
    max-height: 500px;
  }
}
/* ============== */
/* === HERO 2 === */
/* ============== */

.html-block.hero2 {
  padding-block: 0;
}
.hero2__content {
  margin-block: var(--section-padding-block);
}
@media screen and (992px <= width) {
  .html-block.padding-small .hero2__content {
    margin-block: var(--section-padding-block-small);
  }
}
/* =================== */
/* === CARDS SET 1 === */
/* =================== */

.cardsSet1__cards {
  margin-block: var(--section-gap-md);
}

@media screen and (1200px <= width < 1500px) {
  .cardsSet1--directionCarrousel .grid .xl-col-end-13 {
    --col-end: 12;
  }
  .cardsSet1--directionCarrousel .grid .xl-col-start-1 {
    --col-start: 2;
  }
}

/* =================== */
/* === CARROUSEL 1 === */
/* =================== */

.html-block.carrousel1 {
  padding-block: 0;
}

.carrousel1 [class^="slide-"] .container .cell {
  min-height: 30rem;
  padding-block: var(--section-padding-block);
  align-content: center;
  text-align: center;
}

.carrousel1 .cell {
  position: relative;
}

.carrousel1 .slick-slide .cell > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carrousel1 .slick-slider {
  margin: 0 !important;
  z-index: 0;
}

.carrousel1 .slick-slider.slick-dotted {
  margin: 0 !important;
}

.carrousel1 .slick-dots {
  position: absolute;
  bottom: calc(var(--section-padding-block) / 2) !important;
  width: 100%;
  max-width: 640px;
  left: 50%;
  transform: translateX(-50%);
}

@media not (pointer: fine) {
  .carrousel1-slick-prev,
  .carrousel1-slick-next {
    display: none;
  }
}

@media (992px <= width) {
  .carrousel1-slick-prev,
  .carrousel1-slick-next {
    position: absolute;
    top: 50%;
    z-index: 1;
  }

  .carrousel1-slick-prev {
    right: calc(50% + var(--container) / 2);
    left: auto !important;
    transform: translate(100%, -50%) !important;
  }

  .carrousel1-slick-next {
    right: auto !important;
    left: calc(50% + var(--container) / 2);
    transform: translate(-100%, -50%) !important;
  }
}

/* ====================== */
/* === TESTIMONIALS 1 === */
/* ====================== */

.testimonials1__cards {
  margin-block: var(--section-gap-md);
}

@media screen and (992px <= width) {
  .testimonials1:not(.testimonials1--textPositionTop) .testimonials1__cards {
    margin-block: 0;
  }
}
/* ===================== */
/* === IMAGES LIST 1 === */
/* ===================== */

.imagesList1__imagesList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--grid-gutter);
  padding-left: 0;
  margin-block: 0;
}

.imagesList1--textPositionTop .imagesList1__imagesList {
  margin-block: var(--section-gap-md);
}

.imagesList1--textPositionLeft .imagesList1__imagesList,
.imagesList1--textPositionRight .imagesList1__imagesList {
  margin-top: var(--section-gap-md);
}

.imagesList1__imagesList .imageText__media {
  max-height: 10rem;
}

@media screen and (400px <= width) {
  .imagesList1__imagesList {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .imagesList1__imagesList .imageText {
    flex-basis: calc(50% - (var(--grid-gutter) / 2));
  }
}

@media screen and (768px <= width) {
  .imagesList1--textPositionTop .imagesList1__imagesList .imageText {
    flex-basis: calc(33% - (2 * (var(--grid-gutter)) / 3));
  }
  .imagesList1--textPositionLeft .imagesList1__imagesList,
  .imagesList1--textPositionRight .imagesList1__imagesList {
    margin-block: 0;
  }
}

@media screen and (992px <= width) {
  .imagesList1--textPositionTop .imagesList1__imagesList {
    flex-wrap: nowrap;
  }
}
/* ====================== */
/* ==== contactSection === */
/* ====================== */

.contactSection__content1 {
  margin-bottom: var(--section-gap-md);
}
.contactSection__content2 {
  margin-top: var(--section-gap-md);
}
.contactSection .socialLinkList {
  justify-content: flex-start;
}
.contactSection .textBlock__col {
  flex-basis: 50%;
}

@media screen and (min-width: 768px) {
  .contactSection .textBlock__col2 {
    align-items: end;
  }
}
/* ============== */
/* === HERO 4 === */
/* ============== */

.hero4__content1 {
  margin-bottom: var(--section-gap-md);
}
.hero4__content2 {
  margin-top: var(--section-gap-md);
}

.hero4__image img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 14rem;
}

@media screen and (768px <= width) {
  .hero4__image img {
    max-height: 24rem;
  }
}
/* ====================== */
/* === CUSTOM === */
/* ====================== */

.button--conversion {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  z-index: 1;
  background: transparent;
}

.button--conversion::before {
  content: "";
  position: absolute;
  inset: 0%;
  background: linear-gradient(
    85.58deg,
    #c6a15b 7.77%,
    #e1d2a7 50%,
    #c6a15b 92.23%
  );

  z-index: -1;
  transition: transform 0.8s ease;
}

.button--conversion:hover::before {
  background: linear-gradient(
    180.58deg,
    #c6a15b 7.77%,
    #e1d2a7 50%,
    #c6a15b 92.23%
  );
  animation: rotateGradient 0.8s linear;
  inset: -150%;
}
.button--conversion:hover::before {
  animation: rotateGradient 0.2s linear;
}

@keyframes rotateGradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

.font-accent {
  font-family: var(--font-accent);
}

.bg-orange {
  background: var(--orange);
}
.bg-orange50 {
  background: var(--orange50);
}
ul.socialLinkList svg path {
  fill: var(--gray950);
}
.color-gray950 {
  color: var(--gray950);
}
.paragraph__text p {
  line-height: 26px;
  margin-bottom: var(--spacing6);
  color: #3f3532;
}

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

header .tel {
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  color: var(--gray950);
}

.menu-mobile {
  height: 6.5rem;
}

.menu_opened .menu-mobile {
  height: 3.5rem;
}

.card--clickable * {
  transition: var(--transition);
}

h1:not(.textBlock h1) {
  margin-bottom: 0;
}
:where(
    .title-1,
    h1,
    .display-2xl,
    h2,
    .title-2,
    .display-xl,
    h3,
    .title-3,
    .display-lg,
    h4,
    .title-4,
    .display-md,
    h5,
    .title-5,
    .display-sm,
    h6,
    .title-6,
    .display-xs
  ) {
  color: var(--gray950);
}

@media only screen and (min-width: 992px) {
  .html-block .grid {
    --container: calc(100% - 100px);
    max-width: 1920px;
    margin: auto;
  }
  .bloc-note {
    box-shadow: 0px 12px 32px 0px #3f353210;
    border-radius: var(--radius6);
    position: absolute;
    bottom: 22px;
    max-width: 92%;
    left: 0;
    right: 0;
    margin: auto;
  }
}

@media only screen and (min-width: 1600px) {
  .html-block .grid {
    --container: calc(100% - 239px);
    max-width: 1920px;
    margin: auto;
  }
  .container {
    max-width: 1736px;
    width: 90%;
  }
}

/* ========================= header ======================= */

header .contactInfos {
  font-family: var(--font-display);
}
.top-bar .contactInfos--address {
  font-size: 13px;
  color: #2b2223;
  font-weight: 500;
  font-family: var(--font-menu);
}

@media screen and (min-width: 993px) {
  .main-header-content .row {
    justify-content: center;
  }

  .title-1 {
    line-height: 75px;
  }

  .bg-accent950 {
    background: var(--accent950);
  }
}
@media screen and (min-width: 993px) {
  .header-content .nav ul li a.selected,
  .header-content .nav ul li a:hover {
    color: var(--gray950);
  }
  .nav > ul > li > a::before,
  .nav ul li.sous_menu ul.dropdown > li > a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    height: 2px;
    width: 0;
    background-color: var(--accent500);
    transition: var(--transition);
  }
  .nav ul li.sous_menu ul.dropdown > li > a::before {
    bottom: -1px;
  }
  .nav > ul > li > a.selected:before,
  .nav > ul > li > a:hover:before,
  .nav ul li.sous_menu ul.dropdown > li > a:hover:before,
  .nav ul li.sous_menu ul.dropdown > li > a.selected:before {
    width: 100%;
    left: 0;
    right: 0;
  }
}

.menu_opened .menu-mobile {
  height: 3.5rem;
}

.menu-mobile {
  height: 4.5rem;
}

@media screen and (min-width: 1600px) {
  .main-header-content .row {
    justify-content: space-between;
    align-items: center;
  }
  div#no-add {
    padding-left: 0 !important;
  }
}

/* ========================================= HERO ======================================= */

#hero .hero1__image {
  z-index: 0;
}
div#blochero:before {
  left: -9%;
  position: absolute;
  content: "";
  margin: auto;
  top: 48px;
  background-image: url(../assets/gifs/before-hero.png);
  width: 120%;
  background-position: center;
  height: 62%;
  z-index: -1;
  background-size: contain;
}
.bloc-note-hero {
  margin: auto;
  border: 1px solid #c6a15b30;
  box-shadow: 0px 12px 32px 0px #3f353208;
  background: #ffffff;
  border-radius: 24px;
  margin-top: 1rem;
}
@media screen and (max-width: 992px) {
  .title-1 {
    font-size: 34px;
  }

  section#hero .container {
    padding-block: 2rem;
  }
  .title-2 {
    font-size: 27px;
  }
  section#hero img {
    object-position: top;
  }
  section#hero {
    padding-top: 14px;
  }
  section#encart-methode svg {
    margin-inline: auto;
    display: block;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 992px) {
  #hero .hero1__image {
    padding-top: 48px;
  }
  .bloc-note-hero {
    max-width: 414px;
    position: absolute;
    bottom: 36px;
    left: 30px;
    margin-top: 0rem;
  }
}

@media screen and (max-width: 1600px) and (min-width: 992px) {
  section#hero .hero1__content {
    padding-block: 60px;
  }

  section#hero img {
    object-fit: contain;
  }
}

/**************************************** ENCART POINTS FORTS **************************************/
@media (width < 992px) {
  #point-fort .cardsList--mobileCarrousel.slick-slider .slick-slide > div {
    padding-bottom: var(--spacing3);
  }
}

/* ========================================= BLOC 01 ======================================= */
div#before-b1 {
  z-index: 0;
}

#before-b1:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../assets/gifs/before-b1.png);
  background-position: center top;
  top: -71px;
  width: 100%;
  height: 90%;
  z-index: -1;
  background-size: contain;
}
#bloc-01 img {
  border-radius: 360px 360px 32px 32px;
}

/* ======================================= ENCART METHODE ============================== */
section#encart-methode li .paragraph__text p {
  min-height: 78px;
  color: #3f3532;
  font-size: 14px;
}

@media screen and (max-width: 992px) {
  section#encart-methode,
  section#encart-prestations {
    padding-block: 0;
  }
}
@media screen and (min-width: 993px) {
  #encart-methode .imagesList1__imagesList {
    margin-block: 64px 0;
    max-width: 1416px;
    margin-inline: auto;
  }
  section#encart-methode p.display-xs {
    font-size: 22px;
    color: #2b2223;
  }
}

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

#encart-prestations li.card {
  padding: var(--spacing6);
  border-radius: 40px;
}
section#encart-prestations img {
  border-radius: 28px;
}
section#encart-prestations {
  background-image: url(../assets/gifs/bg-prestation.jpg);
  background-position-x: center;
  background-repeat: repeat-x;
}
.cat {
  padding: 8px 16px;
  border-radius: 100px;
  text-align: center;
  background: #faf6f1;
  font-family: var(--font-display);
}
#encart-prestations .card__footer a {
  padding-block: 12px;
}

#encart-prestations .card__footer {
  margin-top: 24px;
}

#encart-prestations .card__text p {
  color: #756865;
  margin: 0;
  font-size: 15px;
}
#encart-prestations li.card:hover {
  border: 4px solid var(--Accent-400, #c6a15b);
  background: var(--accent50);
}
#encart-prestations .card__title a {
  color: var(--gray700);
  font-size: 22px;
}
section#encart-prestations .card__content {
  gap: 1rem;
  justify-content: start;
  height: max-content;
  gap: 1rem;
}
#encart-prestations li.card {
  position: sticky;
  top: 0;
  border: 4px solid transparent;
}

#encart-prestations .card__title span {
  display: inline-block;
  font-size: 22px;
}

@media screen and (min-width: 993px) {
  section#encart-prestations .card__content {
    justify-content: center;
  }
  #encart-prestations .card__title a {
    font-size: 33px;
  }
  #encart-prestations li.card {
    padding: var(--spacing12);
  }
  section#encart-prestations .cardsList {
    gap: 120px;
  }
}
@media screen and (max-width: 992px) {
  section#encart-prestations {
    background-size: cover;
  }
}

@media screen and (min-width: 1700px) {
  #encart-prestations .card__image {
    height: 237px;
    max-width: 560px;
  }
}

/* ===================================== ENCART AVIS ======================== */
#encart-avis .text {
  color: var(--gray950);
}

#encart-avis .testimonials1__cards {
  margin: 0;
}

#encart-avis ul.cardsList__carrousel {
  margin-block: 24px;
}

.testimonialCard__content {
  padding: 1rem !important;
  background: var(--gray0);
  border-bottom: 4px solid var(--pink300);
  border-radius: 24px;
}

li.testimonialCard {
  background: transparent;
}

.avis-card .avis-card-text {
  color: var(--gray700);
}

.testimonialCard__name {
  color: var(--gray950);
}

.avis-card.js-more .avis-card-text::after {
  display: none !important;
}

@media screen and (max-width: 992px) {
  section#encart-avis {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 993px) {
  #encart-avis ul.cardsList__carrousel {
    margin-block: 64px 24px;
    max-width: 1328px;
    margin-inline: auto;
  }

  .nav-bas a {
    font-size: 15px;
  }

  .testimonials1__cards {
    margin-block: var(--spacing16);
  }
}

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

#bloc-02 img {
  border-radius: 32px 360px 32px 32px;
}
section#bloc-02 li {
  border-radius: 1rem;
  border: 1px solid #3f353205;
  background: var(--gray0);
  padding: 1rem 1rem 1rem 50px;
  list-style: none;
  position: relative;
  color: #2b2223;
}
section#bloc-02 li:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  background-image: url(../assets/gifs/before-list.svg);
  left: 1rem;
  margin: auto;
}
#before-b2 {
  z-index: 0;
}

section#bloc-02 ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 2rem 0;
}

@media screen and (min-width: 993px) {
  div#before-b2:before {
    position: absolute;
    content: "";
    right: -82px;
    width: 97%;
    height: 78%;
    background-image: url(../assets/gifs/before-b2.png);
    top: -66px;
    z-index: -1;
  }
}

/* =======================================ENCART INDEX============================== */

section#bloc-index:before {
  position: absolute;
  content: "";
  bottom: 0;
  height: 14%;
  width: 100%;
  background-image: url(../assets/gifs/before-index.png);
  left: 0;
  right: 0;
  margin: auto;
  background-size: cover;
  background-position: bottom;
}
svg.sou-ligne {
  width: stretch;
}
li#bloc-pink {
  border: 1.5px solid #eec6cf;
  background-image: url(../assets/gifs/bg-pink.jpg);
  background-size: auto;
  background-position: center;
}

section#bloc-index .card {
  padding: 10px;
}
#bloc-index .card__content {
  justify-content: flex-start;
}
.note-bas {
  color: #756865;
}
#bloc-index .card__title {
  color: #0d0808;
  font-weight: var(--font-semibold);
  font-family: var(--font-display);
  font-size: 24px;
}
section#bloc-index .card__content li svg {
  min-width: 24px;
  min-height: 24px;
}
section#bloc-index .card__content li {
  list-style: none;
  display: flex;
  gap: 12px;
}
.note.active p {
  margin: 0;
}

#blocs .note.active svg {
  min-width: 18px;
  min-height: 18px;
}

#blocs span.texte-blue span {
  font-size: 12px;
}
.note p em {
  border: 1px solid var(--Accent-400, #c6a15b);
  background: url(../assets/gifs/bg-note.jpg);
  padding: 28px 32px;
  color: #756865;
  font-size: 13px;
  font-family: var(--font-menu);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
span.texte-blue span {
  border-radius: 10px;
  padding: 5px 12px;
  color: #3f3532;
}

span.texte-blue {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
}
.ligne-prest {
  line-height: 3px;
}

.note u:after {
  position: absolute;
  content: "";
  left: 43.5px;
  bottom: 0;
  width: 24px;
  background: var(--orange);
  height: 2px;
}
.note u {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  margin-bottom: 17px;
  padding-bottom: 3px;
  position: relative;
  font-family: var(--font-display);
}

.note p em:before {
  display: none;
}
section#bloc-index .card__content ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
li#bloc-blue {
  border: 1.5px solid #b9d8e6;
  background-image: url(../assets/gifs/bg-blue.jpg);
  background-size: auto;
  background-position: center;
}
.btn-col-1 {
  background: #eec6cf40;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 100px;
}
.btn-col-2 {
  background: #b9d8e640;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 100px;
}
@media screen and (max-width: 992px) {
  section#bloc-index {
    padding-block: 0;
  }
  section#bloc-index .card {
    background-size: cover;
  }
}
@media screen and (min-width: 992px) {
  span.texte-blue span {
    font-weight: 500;
    border-radius: 100px;
    padding: 5px 12px;
    color: #3f3532;
  }
  section#bloc-index .cardsSet1__cards {
    margin-block: 64px 0;
  }
  section#bloc-index .card {
    padding: 40px;
  }
}
@media screen and (max-width: 1600px) and (min-width: 992px) {
  section#bloc-index .card {
    background-size: cover;
  }
}
/* ======================================= ENCART CONTACT ============================== */
section#encart-contact p {
  color: var(--gray0);
}
#bg-left {
  background-image: url(../assets/gifs/bg-contact-left.jpg);
  background-position: center left;
  background-size: cover;
  padding: 24px;
  flex-basis: 78%;
  border-radius: 24px 0 0 24px;
}
section#encart-contact img {
  border-radius: 0;
  object-fit: cover;
  height: 100%;
}
section#encart-contact:before {
  position: absolute;
  content: "";
  margin: auto;
  inset: 0;
  background-image: url(../assets/gifs/bg-contact-1.png);
  background-size: cover;
  background-position: center;
  height: 100%;
  z-index: -1;
}

#last-card img:last-of-type {
  border-radius: 0 24px 24px 0;
}
#encart-contact .buttonGroup {
  width: -webkit-fill-available;
}
@media screen and (min-width: 992px) {
  section#encart-contact img {
    min-height: 480px;
  }
  #bg-left {
    flex-basis: 78%;
    padding-block: 80px;
    padding-left: 28px;
  }
  .page-interne #encart-contact {
    padding-bottom: 120px;
  }

  section#encart-contact .title-1 {
    line-height: 73px;
  }
  section#encart-contact #col-center img {
    min-height: 526px;
  }
}

@media screen and (max-width: 767px) {
  .index-page section#encart-contact {
    padding-block: 0;
  }
}
/* ======================== BLOC ACCORDEON 03 + 04 + 05 + 06  ====================== */

div#blocs .note p em {
  background-size: cover;
  background-image: url(../assets/gifs/not-accord.jpg);
  color: #3f3532;
}
div#blocs span.texte-blue {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #c6a15b;
}

.accord-1:before {
  position: absolute;
  content: "";
  top: 0;
  height: 14%;
  width: 100%;
  background-image: url(../assets/gifs/before-bloc-accord.png);
  left: 0;
  right: 0;
  margin: auto;
  background-size: cover;
  background-position: top;
}
.bloc-accordeon .bloc {
  cursor: pointer;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #3f353210;
  background: var(--orange);
}
.bloc-accordeon .bloc::after {
  position: absolute;
  right: 24px;
  top: 30px;
  bottom: 30px;
  content: "";
  transition: var(--transition);
  background-image: url("../assets/gifs/plus.svg");
  width: 14px;
  height: 14px;
  margin: auto;
}
div#blocs svg {
  min-width: 48px;
  min-height: 48px;
}
#blocs span.texte-blue svg {
  min-width: 18px;
  min-height: 18px;
}
/*div#blocs:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  background-image: url(../assets/gifs/before-bloc.png);
  width: 100%;
  height: 30%;
  z-index: -2;
}*/
.bloc-accordeon .bloc.open::after {
  background-image: url("../assets/gifs/moins.svg");
}
div#blocs.accord-1 p {
  font-size: 14px;
}
#blocs .bloc-accordeon .bloc p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin: 0;
}
#blocs .bloc-accordeon .bloc.open p:has(em) {
  margin: var(--spacing6) 0 0;
}
#blocs .bloc-accordeon .bloc.open p {
  max-height: 800px;
  opacity: 1;
  padding-top: 12px;
}
#blocs .bloc-accordeon .bloc p:has(em) {
  padding: var(--spacing0);
}
.accord-1 h2 {
  margin: 0 !important;
  color: var(--gray950);
}
#blocs .bloc.open img {
  height: 100%;
}
.bloc-accordeon .paragraph__text {
  max-width: 95%;
}
#blocs img {
  border-radius: 2rem;
}

.accord-2 .open p {
  padding-top: 12px !important;
}

#blocs .hero1__image {
  position: relative;
  overflow: hidden;
}

#blocs .hero1__image .accordion-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

#blocs .hero1__image .accordion-img.active {
  opacity: 1;
}

#blocs .hero1__image .accordion-img.active {
  opacity: 1;
  z-index: 2;
}

@media screen and (min-width: 993px) {
  .img-3 .note,
  .img-5 .note {
    display: none;
  }

  .img-3 .accordion-img.active + .note,
  .img-5 .accordion-img.active + .note {
    display: block;
  }
  .img-3,
  .img-4,
  .img-5,
  .img-6 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .img-3,
  .img-5 {
    z-index: 2;
  }

  .img-3 .note,
  .img-5 .note {
    position: absolute;
    left: 31px;
    bottom: 46px;
    z-index: 10;
    max-width: 480px;
  }
  .bloc-accordeon .bloc::after {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  h2 {
    margin-bottom: 8px;
  }
  .bloc-accordeon .paragraph__text p {
    max-width: 93%;
  }

  #blocs img {
    aspect-ratio: 1.9;
  }
}
@media screen and (max-width: 992px) {
  .bloc-accordeon .bloc.open::after {
    bottom: auto;
  }
  .accord-2 {
    background-size: cover;
  }
  div#blocs .note {
    margin-top: 24px;
  }
  .bloc-accordeon .paragraph__text h2 {
    font-size: var(--display-sm);
  }
  .bloc-accordeon .paragraph__text {
    max-width: 95%;
  }
  .bloc-accordeon .paragraph__text h2 {
    max-width: 90%;
  }
}

/******************************************* BLOC 07 ********************************/

section#bloc-07 img {
  min-height: 220px;
  margin: auto;
}
section#bloc-07 .textBlock__col {
  width: -webkit-fill-available;
}

section#bloc-07 h2 {
  margin: 0 !important;
}
div#bloc7:before {
  position: absolute;
  content: "";
  left: -52px;
  bottom: -13px;
  background-image: url(../assets/gifs/before-7.png);
  width: 332px;
  height: 273px;
  z-index: -1;
}

div#bloc7 {
  z-index: 0;
}
@media screen and (min-width: 768px) {
  section#bloc-07 img {
    border-radius: 32px 360px 32px 360px;
  }
}

@media screen and (min-width: 992px) {
  div#bloc7:after {
    position: absolute;
    content: "";
    right: -67px;
    top: -16px;
    background-image: url(../assets/gifs/after-7.png);
    width: 332px;
    height: 273px;
    z-index: -1;
  }
  section#bloc-07 img {
    border-radius: 32px 360px 32px 360px;
    min-height: 420px;
  }
}
@media screen and (min-width: 1860px) {
  section#bloc-07 {
    position: sticky;
    top: 0;
  }
}
/******************************************* BLOC ACCORDEON 08 + 09 + 10 + bloc-plus ********************************/
.accord-2 {
  background-image: url(../assets/gifs/bg-accord2.png);
  background-position: center;
  background-size: cover;
}

.accord-2 .bloc-accordeon .bloc {
  background: var(--brand200);
  padding: var(--spacing6);
  transition: all 0.6s ease;
  border-radius: 1rem;
  border: 1px solid #3f353210;
}
.accord-2 h2 {
  margin: auto;
  margin-bottom: 16px;
}
.accord-2 .bloc-accordeon .bloc h2 {
  margin-bottom: 0 !important;
  font-size: 24px;
}

.accord-2 h3 {
  color: var(--gray50);
  margin-bottom: 0;
  transition: all 0.4s ease;
}

@media screen and (min-width: 992px) {
  .accord-2 h2 {
    margin: auto;
    margin-bottom: 48px;
  }
  .accord-2 .paragraph__text p {
    max-width: none;
    font-size: 14px;
  }

  .accord-2 .paragraph__text {
    max-width: none;
  }

  .accord-2 .bloc.open::after {
    top: 24px;
    margin: inherit;
  }
}

@media screen and (max-width: 992px) {
  .accord-2 h3 {
    font-size: 26px;
  }
}
/* =======================================ACTUALITES============================== */

section#encart-actualites {
  position: relative;
  background: var(--orange50);
  z-index: 0;
}

section#encart-actualites:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  top: -4px;
  background-image: url(../assets/gifs/before-actu.png);
  width: 100%;
  height: 20%;
  z-index: -1;
}

#encart-actualites .paragraph__content {
  max-width: 755px;
  margin: auto;
  color: var(--gray700);
}
div#bg-form img {
  margin: initial;
}
.cardActualite__image img {
  min-height: 324px;
  border-radius: 0;
  transition: var(--transition);
  border-radius: 12px;
}

.cardActualite {
  border-radius: 0;
  background: transparent;
}

.cardActualite span.link__label {
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
}
.cardActualite__image {
  border-radius: 2rem;
}
.cardActualite__content {
  background: var(--gray0);
  padding: var(--spacing6) !important;
  border-radius: 24px;
  border-bottom: 4px solid var(--pink-300, #eec6cf);
}

.card:hover .cardActualite__content {
  background-color: #fcf4f5;
}

.cardActualite .card__title a {
  color: #0a0a0a;
}

.cardActualite:hover .link__label {
  text-decoration: underline;
}

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

.cardActualite .card__image a::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.cardActualite:hover .card__image a::after {
  background: #00000099;
}

a.lightbox img {
  border-radius: var(--img-radius);
}

@media screen and (601px > width) {
  .actualites-listing .cardActualite {
    margin-bottom: var(--spacing10);
  }
}

@media screen and (min-width: 992px) {
  #encart-actualites .cardsSet1__cards {
    margin-block: 60px;
  }
}

/* ==================================ENCART FORMULAIRE============================== */
.phone a {
  color: #0d0808;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: normal;
}
.btn-linda a {
  color: #3f3532;
  font-family: var(--font-menu);
  font-size: 14px;
  border: 1px solid var(--Gray-700, #3f3532);
}

.btn-linda a:hover {
  border: 1px solid var(--button-hover-color);
}
.phone {
  margin-block: 20px;
}
section#encart-formulaire .container {
  background: #fbe7d9;
  border: 4px solid var(--orange-300, #f3b38f);
  padding: 8px;
  border-radius: 24px;
}
.note-formulaire {
  border: 1px solid #efe8d2;
  padding: 24px;
  border-radius: 20px;
}
.note-formulaire svg {
  min-width: 40px;
  min-height: 40px;
}
.btn-linda svg {
  min-width: 16px;
  min-height: 16px;
}
.map-container iframe {
  min-height: 214px;
  border-radius: 24px;
}
#encart-formulaire label {
  font-weight: var(--font-bold);
  color: var(--gray700);
}
#encart-formulairep: has(textarea) {
  margin-bottom: var(--spacing5);
  margin-top: var(--spacing4);
}
#encart-formulaire ul label {
  font-weight: var(--font-regular);
}
.erreur p {
  color: red;
}

.page-interne #encart-formulaire {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding-block: 0 80px;
}
#encart-formulaire input:not([type="checkbox"]):not([type="submit"]),
#encart-formulaire textarea {
  padding-block: 12px;
  box-shadow: 0px 1px 2px 0px #1018280d;
  background: var(--gray0);
  border-radius: 8px;
}

@media screen and (max-width: 993px) {
  section#encart-formulaire {
    padding-top: 0;
  }
}

@media screen and (min-width: 992px) {
  .phone a {
    font-size: 44px;
  }
  section#encart-formulaire .container {
    padding: 48px;
    align-items: center;
  }
}

/* ==================================FOOTER============================== */
footer {
  background-image: url(../assets/gifs/bg-footer.jpg);
  background-size: cover;
}
footer .contactInfos a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
footer .contactInfos a:hover {
  border-bottom: 2px solid var(--accent600);
  width: fit-content;
}
footer .contactInfos {
  gap: 1rem;
}
.ligne-footer svg {
  text-align: center;
  width: stretch;
  height: auto;
}

.ligne-footer {
  text-align: center;
}

.footer > .container {
  gap: var(--spacing8);
}

.footer__legalNav .link__label {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
}

.footer__legalNav .link__label:hover {
  text-decoration: underline;
}

footer .socialLinkList path {
  fill: var(--gray950);
}

footer * {
  line-height: 26px;
}

.socialLinkList a:hover svg path {
  fill: #1180d3;
}

.footer__siteNav ul li a {
  border-bottom: 2px solid transparent;
  color: var(--gray950);
}

.footer__siteNav ul li.sous_menu ul.dropdown > li a {
  text-align: left;
  color: var(--gray900);
}

.footer__siteNav ul li a.selected,
.footer__siteNav ul li a:hover,
.footer__siteNav ul li:hover > a,
.footer__siteNav ul li.sous_menu ul.dropdown > li:last-child > a:hover,
.footer__siteNav ul li.sous_menu ul.dropdown > li:last-child > a.selected {
  border-bottom: 2px solid var(--accent600);
}

.footer__legalNav a:hover .link__label {
  text-underline-offset: var(--spacing2);
  text-decoration: underline var(--accent600) 2px;
}

.footer__siteNav ul li.sous_menu ul.dropdown {
  background-color: var(--accent50);
  z-index: 3;
}

footer .contactInfos__textIcon {
  line-height: 26px;
}

footer .no-menu {
  display: none;
}

body:not(.index-page):not(.page-interne) .footer-form #encart-formulaire {
  display: none;
}

@media screen and (min-width: 992px) {
  .footer__mainContent.row {
    padding-bottom: 96px;
  }
  .footer__legalNav {
    margin: auto;
  }

  .footer {
    padding-bottom: var(--spacing6);
  }

  footer .text-sm {
    max-width: 288px;
  }
}

@media screen and (max-width: 992px) {
  footer .text-sm {
    font-size: var(--text-md);
  }

  footer .contact-link {
    min-height: 36px;
  }

  footer .row.l-top {
    display: flex;
    flex-direction: column;
    gap: var(--spacing8);
  }
}

@media screen and (max-width: 1400px) and (min-width: 992px) {
  .footer__siteNav a,
  .footer__legalNav .link__label {
    font-size: 12px;
  }

  footer .footer__siteNav--horizontal ul {
    gap: 9px;
  }
}

/* ====================================PAGES INTERNE====================== */
.cards.bloc-border .ac-colonne {
  background: var(--gray50);
}

section.ac-doubleColonne.no-padd {
  padding-block: 0 !important;
}
p em:before {
  position: absolute;
  content: "";
  left: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url(../assets/gifs/liste.svg);
}

p em {
  display: block;
  font-style: normal;
  padding: var(--spacing6) var(--spacing6) var(--spacing6) 64px;
  background: var(--brand200);
  height: stretch;
  color: var(--gray700);
  border-radius: var(--radius6);
  font-size: var(--text-2xl);
  font-family: var(--font-accent);
  position: relative;
}

p em u {
  display: block;
  font-style: normal;
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing4);
  text-decoration: none;
  color: var(--gray800);
}

.hero-interne h1,
.hero-interne .title-1 {
  margin-block: var(--spacing6) 0;
  text-align: center;
}

.hero-bg nav,
.hero-interne nav {
  font-size: var(--font-size-sm);
  line-height: 27px;
}

.sitemap-nav li {
  margin-bottom: 1rem;
}

.bloc-border .buttonGroup {
  margin-top: 1.5rem;
}

.hero-bg {
  position: relative;
}

.hero-bg .title-1,
.hero-interne .title-1 {
  margin-block: 1.5rem 0;
  color: var(--gray950);
}

section.ac-doubleColonne.esuipe.text-center {
  padding-block: 0 !important;
}

section.ac-doubleColonne.esuipe.text-center h3 {
  margin-top: 24px;
}

.bg-hero {
  position: relative;
}
section.ac-doubleColonne.ac-accordeon.active {
  padding-block: 1rem 0;
}

section.ac-doubleColonne.ac-accordeon.active h2 {
  margin: 0;
}

.contact-hero:before {
  background-image: url(../assets/gifs/bg-hero.jpg);
  background-size: cover;
  background-position: center;
  left: 50%;
}
section.ac-doubleColonne img {
  border-radius: 2rem;
}

.hero-bg nav,
.hero-interne nav {
  font-size: var(--font-size-sm);
}

.hero-interne nav,
.hero-bg nav,
div#fil_ariane {
  color: #c6a15b;
  font-family: var(--font-accent);
  font-style: italic;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

body:not(.contact-page) main > .section {
  padding-top: 0;
}

body.devis-page .section {
  padding-top: 48px !important;
}

.page-interne #container {
  padding-bottom: 0;
}

.sc-content .ac-doubleColonne.bloc-border .ac-colonne {
  border: 1px solid var(--accent700);
  padding: var(--spacing5);
  border-radius: 24px;
  position: relative;
  z-index: 2;
}

.page-interne .sc-content .ac-inlink {
  padding: 1rem;
}

.ac-doubleColonne h2:not(:first-of-type),
.ac-doubleColonne:has(h1) h2 {
  margin-top: var(--spacing8);
}

.ac-doubleColonne.bloc-border.align-center
  + .ac-doubleColonne.bloc-border.align-center {
  padding-top: 0;
}

.page-interne .ac-doubleColonne.bloc-border.align-center .ac-colonne {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 992px) and (min-width: 768px) {
  .page-interne #container .sc-content .ac-doubleColonne img {
    width: 50%;
    margin-inline: auto;
  }
}

@media only screen and (max-width: 992px) {
  .hero-interne {
    padding-block: 40px;
  }

  .sc-content #container .clear_both,
  .sc-content #relance {
    margin-bottom: var(--spacing10);
  }

  .page-interne .sc-content h1 {
    font-size: 2rem;
    margin-block: 24px;
  }

  .page-interne .sc-content h1 span {
    margin-top: 8px;
    font-size: 1.5rem;
  }

  .page-interne .sc-content h2 {
    font-size: 1.7rem;
  }

  .page-interne .sc-content .ac-doubleColonne + .ac-doubleColonne {
    margin-top: 0;
  }

  .ac-doubleColonne:has(+ #relance) {
    padding-bottom: var(--section-padding-block);
  }

  #container .sc-content .ac-doubleColonne.bloc-border .ac-colonne.ac-colonne_1,
  .sc-content .ac-doubleColonne.bloc-border .ac-colonne {
    margin-bottom: var(--spacing4);
  }

  .page-interne .ac-include + .ac-doubleColonne {
    margin-top: 0;
  }

  section.ac-doubleColonne.bg-bas,
  section.ac-doubleColonne.bg-top {
    padding-block: 2rem;
  }

  .page-interne .ac-doubleColonne:has(+ .ac-include) {
    padding-bottom: var(--spacing4);
  }

  .page-interne #container h2 {
    margin-top: var(--spacing2);
    font-size: 24px;
  }

  .sc-content #relance li {
    margin-bottom: var(--spacing4);
  }

  .hero-bg {
    padding-block: var(--spacing10) 0;
  }
}

@media screen and (min-width: 993px) {
  nav.fil-ariane.gtm-fil-ariane {
    font-size: 28px;
  }
  .ac-doubleColonne.hero-bg::before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 100%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    background-image: url(../assets/gifs/bg-interne.jpg);
    background-position: center;
  }

  .hero-interne::before,
  .contact-hero::before,
  .bg-hero:before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 100%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    background-image: url(../assets/gifs/bg-hero.jpg);
    background-position: center;
  }
  section.ac-doubleColonne.ac-accordeon.active {
    padding-block: 3rem 0;
  }
  .hero-interne nav,
  .hero-bg nav,
  div#fil_ariane {
    font-size: 28px;
  }

  .sc-content .ac-doubleColonne:has(img) .ac-colonne {
    flex-basis: 47%;
  }

  .hero-bg section.ac-colonne.ac-colonne_1.ui-sortable {
    padding-bottom: 3rem;
  }
  section.ac-doubleColonne.bg-hero {
    padding-block: 0 !important;
  }

  section.ac-doubleColonne.bg-hero img {
    border-radius: 0;
  }

  .sc-content .ac-doubleColonne.bg-hero {
    display: flex;
    align-items: center;
  }

  .sc-content .ac-doubleColonne.bg-hero .ac-colonne_1 {
    flex: 9 0 40%;
    max-width: 41%;
  }

  .sc-content .ac-doubleColonne.bg-hero .ac-colonne_2 {
    flex: 0 0 60%;
    max-width: 65%;
    margin-right: calc((100vw - 100%) / -2);
  }

  .sc-content .ac-doubleColonne.bg-hero .ac-colonne_2 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: static;
  }

  h1 span {
    font-size: 24px;
    margin-block: 8px 0;
  }

  .article-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .article-content p {
    margin-block: 0;
  }

  .page-interne .sc-content h1 {
    margin-block: var(--spacing6);
  }

  .hero-bg,
  .hero-interne {
    padding-block: 53px 0 !important;
    text-align: left;
  }

  .page-interne .sc-content .ac-doubleColonne + .ac-doubleColonne {
    margin-top: 0;
    z-index: 1;
    flex-direction: row-reverse;
  }

  .sc-content .ac-doubleColonne {
    justify-content: space-between;
  }
  .page-interne .ac-doubleColonne.hero-bg:has(img) {
    flex-direction: row !important;
  }

  .page-interne .sc-content .ac-doubleColonne:has(img) {
    align-items: center;
    padding-block: var(--spacing20);
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 993px) and (max-width: 1200px) {
  .contact-hero {
    padding-block: 80px;
  }
  .page-interne .sc-content h1 {
    font-size: 3rem;
  }
}

/* =================================  CONTACT PAGE ================================= */
.divGenerateur label.optional {
  display: none;
}

body.contact-page .contact-hero {
  padding-block: 60px;
  margin-top: 1rem;
}

nav.fil-ariane.gtm-fil-ariane {
  font-family: var(--font-accent);
  line-height: 27px;
  color: var(--accent500);
}

span.lien-maps span {
  /* display: block; */
}
.contact-hero {
  padding-block: 80px;
}
.valide p {
  margin: 0;
}

div#mail a {
  color: var(--gray200);
}

.valide {
  color: green;
  border: 1px solid green;
  padding: 1rem;
  margin-top: 1rem;
}

a.link.ML_box:hover {
  color: var(--accent500);
}

input#field_5 {
  width: -webkit-fill-available;
}

#formulaire_1 .row {
  align-items: flex-end;
}

a.lien-maps:hover {
  opacity: 0.7;
}

div#field_27 {
  align-items: end;
}

body.contact-page h1 {
  line-height: normal;
}

.g-recaptcha {
  overflow: hidden;
  margin-top: 1rem;
}
p.p-small {
  font-size: 14px;
}
.contact-page-infos-pratiques p {
  margin-bottom: 0;
}
#encart-formulaire .font-smibold.display-sm {
  margin-bottom: 4px;
}
.contact-page #formulaire_1 .divGenerateurRequired {
  margin: var(--spacing6) 0;
}
p.italic.text-form {
  font-size: 14px;
  color: #2b2223;
}
.contact-page .fold {
  display: none;
}
.contact-page .col.no-mobile.no-menu-opened {
  display: none;
}
.menu-mobile .brand {
  width: 70%;
}
@media screen and (min-width: 601px) {
  body.contact-page .contact-hero {
    margin-top: 0rem;
  }
  .contact-page-horaires {
    margin-top: 0;
  }
}

@media screen and (max-width: 1200px) {
  #mail {
    font-size: 14px;
  }
}

/* CHATBOT */
.chat-zone .cbi-accroche {
  max-width: unset !important;
}
.chat-zone {
  position: relative;
  border-radius: var(--card-radius);
}
.chat-zone::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../assets/gifs/bg-chatbot.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: var(--card-radius);
}
#chatbot {
  padding-block: var(--section-padding-block-small);
}
#chatbot .cbi-send {
  background-color: var(--accent500) !important;
}
#chatbot .cbi-send:hover {
  background-color: var(--accent300) !important;
}
.page-interne #chatbot .container {
  width: 100%;
}
