:root {
  --font-Inter: "Inter", sans-serif;
  --font-Lobster: "Lobster", sans-serif;
}

body .Mypage {
  overflow: hidden;
}

body .site-main-diag {
  background-color: #ffffff;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/preloader.svg);
  background-size: 140px;
}

/* Navigateur */

.section-navigateur {
  position: absolute;
  width: 100%;
  padding: 0 0;
  z-index: 10;
}

.ul-lien {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  height: 90px;
  overflow: hidden;
}

.lien-mobile {
  display: flex;
  flex-direction: column;
  gap: 27px;
  width: 100%;
}

.has-dropdown > a {
  width: 100%;

  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: clamp(13px, calc(0.139vw + 1rem), 18px);
  line-height: 100%;
  text-transform: uppercase;
  color: #1e1e1e;
}

.email-nav {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  background: #1d3c1d;
}

.email-nav:hover {
  background: #449d35;
  color: #ffffff;
}

.btn-nav:hover {
  color: #449d35;
}

.btn-nav:hover svg path {
  fill: #449d35;
}

.li-lien3 a,
.email-nav {
  padding: 40px 24px;
}

.li-lien1 img {
  padding: 0 18px;
}

.btn-nav {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #1e1e1e;

  border-right: 1px solid #d5d5d5;
}

.li-lien1 {
  display: flex;
  height: 100%;
}

.li-lien3 ul {
  display: flex;
  align-items: center;
}

.li-lien1 a {
  display: flex;
  align-items: center;
}

.li-lien3 a {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* section-slide */

section.section-slide {
  padding: 0 0;
}

.item-slide {
  position: relative;
  width: 100%;
  height: 558px;
  min-height: 500px;
  max-height: calc(100vh - 200px);
}

.Mypage.page .item-slide {
  height: 373px;
  min-height: unset;
  max-height: unset;
}

.item-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.Mypage.page .item-slide::before {
  display: none;
}

.Mypage.page .text-slide {
  color: #1e1e1e;
}

.Mypage.page .bloc-titre-slide {
  top: 0;
}

.item-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bloc-titre-slide {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.bloc-titre-slide .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.titre-slide {
  font-family: var(--font-Inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: #ffffff;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff;
}

.text-slide {
  font-family: var(--font-Inter);
  font-weight: 700;
  font-size: clamp(26px, 3.06vw + 1rem, 60px);
  line-height: 100%;
  color: #ffffff;
  max-width: 867px;
}

.bloc-rx-slide {
  position: absolute;
  bottom: 23px;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
}

.rx-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.rx-slide a {
  pointer-events: all;
}

.rx-slide a:hover svg g,
.rx-slide a:hover svg path {
  opacity: 0.9;
}

.btn-slide {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}

.owl-carousel.accueil .owl-item .btn-slide,
.owl-carousel.accueil .owl-item .text-slide,
.owl-carousel.accueil .owl-item .titre-slide {
  transform: translateY(50px);
}

.owl-carousel.accueil .owl-item .titre-slide {
  transition: all 1s ease 0.1s;
}

.owl-carousel.accueil .owl-item .text-slide {
  transition: all 1s ease 0.2s;
}

.owl-carousel.accueil .owl-item .btn-slide {
  transition: all 1s ease 0.3s;
}

.owl-carousel.accueil .owl-item.active .btn-slide,
.owl-carousel.accueil .owl-item.active .text-slide,
.owl-carousel.accueil .owl-item.active .titre-slide {
  transform: translateY(0);
}

.bloc-dots {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 80px;
}

#customDots {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

#customDots .owl-dot {
  width: 55px;
  height: 1px;
  background: #ffffff80;
}

#customDots .owl-dot.active {
  background: #ffffff;
}

/* formulaire */

.section-formulaire {
  padding: 30px 0;
  background: #449d35;
  overflow: hidden;
}

.titre-form {
  font-family: var(--font-Inter);
  font-weight: 800;
  font-size: clamp(18px, 0.556vw + 1rem, 24px);
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
}

.titre-form span {
  font-weight: 500;
  font-size: 20px;
}

.titre-type {
  font-family: var(--font-Inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;

  color: #ffffff;
  margin-bottom: 4px;
}

.banner-form {
  padding: 14px 20px;
  background: #1d3c1d;

  border-radius: 24px;
}

.icon-form {
  width: 50px;
  min-width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.champ-form button {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  transition: all 0.3s ease;
  width: 109px;
}

.champ-form {
  width: 100%;
  display: flex;
  justify-content: center;
}

.champ-form button.active .icon-form,
.champ-form button:hover .icon-form {
  background: #449d35;
}

.champ-form button.active .icon-form svg path,
.champ-form button:hover .icon-form svg path {
  fill: #ffffff;
}

.label-btn {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;

  color: #ffffff;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-form {
  width: 61px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #ffffff;

  margin-top: 30px;
  transition: all 0.4s ease;
}

.btn-form:hover {
  background: transparent;
}

.btn-form svg rect,
.btn-form svg path {
  transition: all 0.1s ease;
}

.btn-form:hover svg rect,
.btn-form:hover svg path {
  stroke: #ffffff;
}

/* presentation */

.section-presentation {
  position: relative;
  overflow: hidden;
}

.img-float {
  float: left;
  margin-right: 168px;
}

.img-pre {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 1;

  margin: 40px 0;
}

img.img-presentation {
  object-fit: cover;
}

.para-pre {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4d4d4d;
}

.deco-pre {
  position: absolute;
  bottom: 0;
  left: 0px;
  opacity: 10%;
}

/* valeur */

.section-valeur {
  background: #eaf0e8;
}

.banner-valeur {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.titre-valeur {
  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.text-valeur {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #4d4d4d;
}

.img-valeur {
  position: relative;
  display: inline-block;
}

.img-valeur > img {
  object-fit: cover;
  border-radius: 50%;
}

.deco-valeur {
  position: absolute;
  inset: -8px;
  z-index: 5;
}

.deco-valeur img {
  width: 100%;
  height: 100%;
}

/* service */
.section-service {
  background: #1d3c1d;
  overflow: hidden;
}

.item-service {
  padding: 17px 13px;
  width: 100%;
}

.banner-service {
  position: relative;
  z-index: 1;
  width: 100%;
}

.banner-service::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 20px;
  transform: rotate(0deg);
  background: #449d35;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  opacity: 0;
}

.item-service:hover .banner-service::before {
  transform: rotate(-3deg);
  top: 8px;
  left: -8px;
  opacity: 1;
}

.bloc-service {
  display: inline-block;
  height: 100%;
  width: 100%;
}

.img-service {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
}

.img-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-buttom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-buttom button {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.custom-buttom button:hover {
  background: #449d35;
  border: 2px solid #449d35;
}

.flex-service {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.item-service:hover .img-service::before {
  opacity: 1;
}

.img-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background: #1d3c1d4d;
  opacity: 0;
  z-index: 2;
  transition: all 0.4s ease;
}

.titre-service {
  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
  transition: all 0.4s ease;
}

.item-service:hover .titre-service {
  opacity: 1;
}

.owl-carousel.service .owl-stage-outer {
  overflow: visible;
}

.section-service .container {
  position: relative;
}

.section-service .container::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 100vw;
  height: 100vh;
  background: #1d3c1d;
  z-index: 5;

  transform: translateY(-50%);
}

/* avis */
.section-avis {
  padding: 0;
}

.img-avis {
  width: 100%;
  height: 400px;
}

.img-avis img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bloc-avis {
  position: relative;
  background: #449d35;
  padding: 36px 70px;
  border-top-left-radius: 20px;

  margin-top: -176px;
}

.btn-avis {
  position: absolute;
  bottom: 0;
  right: 100%;
  padding: 15px 20px;
  background: #449d35;
  border-bottom-left-radius: 10px;
  border-right: 1px solid #ffffff80;
}

.btn-avis a {
  display: flex;
  align-items: center;
  gap: 39px;

  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.titre-avis {
  font-family: var(--font-Lobster);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 25px;
}

.text-avis {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;

  max-width: 665px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* secteur */
.section-secteur {
  padding-bottom: 0;
}

.text-secteur {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4d4d4d;
  margin-bottom: 40px;
}

.bloc-secteur {
  width: 100%;
  max-width: 558px;
  margin-left: auto;
}

/* referencement */

.img-ref img {
  object-fit: cover;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

/* paiement */

.section-paiement {
  position: relative;
  z-index: 1;
}

.section-paiement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("../images/paiement/bg.png");
  opacity: 20%;
}

.img-p {
  position: relative;
  display: inline-block;
  min-height: 474px;
  min-width: 632px;
}

.img-p img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.img-p img,
.img1-p img,
.img2-p img,
.img3-p img {
  border-radius: 16px;
}

.img1-p,
.img2-p,
.img3-p {
  position: relative;
  z-index: 2;
  border: 15px solid #fdfdfd;
  display: inline-block;
  border-radius: 20px;
  background: #fdfdfd;
  height: max-content;
}

.flex-img-p {
  display: flex;
  gap: 10px;
}

.img1-p {
  left: 172px;
  margin-bottom: -140px;
}

.text-paiement {
  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: clamp(18px, 0.833vw + 1rem, 28px);
  line-height: 1.3;
  color: #1e1e1e;

  margin-bottom: 40px;
}

.banner-paiement {
  position: absolute;
  inset: 24px;
  top: unset;
  padding: 50px;
  border-radius: 16px;
  background: #ffffff;
}

/* actualite */
.section-actu {
  background: #eaf0e8;
}

.img-actu {
  overflow: hidden;
  width: 266px;
  min-width: 266px;
  height: 354px;
  border-radius: 20px;
}

.img-actu img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.bloc-actu {
  display: flex;
  align-items: flex-end;
  width: 100%;
}

.banner-actu {
  background: #eaf0e8;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  min-width: 331px;
  margin-left: -133px;
  border-top-left-radius: 20px;
}

.date-actu {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4d4d4d;
}

.text-actu {
  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #1e1e1e;
}

.text-actu span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;

  background-image: linear-gradient(to left, #1e1e1e, #1e1e1e);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 1.2s;
  display: inline;
}

.bloc-actu:hover .text-actu span {
  background-size: 100% 1px;
}

.btn-actu {
  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #4d4d4d;
  display: flex;
  gap: 14px;
  align-items: center;
}

.bloc-actu:hover .btn-actu {
  color: #449d35;
}

.bloc-actu:hover .btn-actu svg path {
  stroke: #449d35;
}

.btn2-actu {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.btn2-actu .btn-1 {
  border: 1px solid #1e1e1e;
}

/* contact */
.img-contact {
  width: 100%;
  height: 500px;
}

.img-contact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bloc-contact {
  background: #449d35;
  border-radius: 20px;
  padding: 50px;
}

.label-contact {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 8px;
}

.champ-contact textarea,
.champ-contact input {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4d4d4d;

  height: 48px;
  border-radius: 25px;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 12px 20px;
}

.champ-contact textarea {
  height: 180px;
}

.champ-contact textarea::placeholder,
.champ-contact input::placeholder {
  color: #d5d5d5;
}

.text-form-contact {
  font-family: var(--font-Inter);
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #d5d5d5;
}

.text-form-contact a {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.btn-contact .btn-1 {
  border: 1px solid #f0f0f0;
}

.les-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.les-info span,
.les-info a {
  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #1e1e1e;

  display: flex;
  align-items: center;
  gap: 12px;

  white-space: nowrap;
}

.icon-info {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1d3c1d;
}

/* footer */

footer {
  background: #1d3c1d;
}

.ct-footer {
  background: #449d35;
  padding: 38px 0;
}

.text-ct {
  font-family: var(--font-Lobster);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
}

.flex-contact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-ct a {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: #ffffff;
}

.contact-ct a:hover {
  color: #ffffffc0;
}

.footer-g {
  padding: 80px 0;
}

.logo-footer {
  display: flex;
  justify-content: center;
}

.info-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;

  font-family: var(--font-Inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
}

.info-footer span:last-child {
  margin-top: 20px;
}

.lien-info-footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.icon-if {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lien-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.lien-footer a {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-align: right;
  color: #ffffff;
}

.info-footer a:hover,
.lien-footer a:hover {
  color: #449d35;
}

.arobiz,
.copyright {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #828282;
}

.arobiz a:hover,
.copyright a:hover {
  color: #449d35;
}

.arobiz span,
.copyright span {
  color: #ffffff;
}

.arobiz {
  text-align: right;
}

.rx-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.rx-footer a {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #ffffff80;
  transition: all 0.4s ease;
}

.rx-footer a:hover {
  background: #449d35;
}

.champ-footer {
  position: relative;
}

/* template mobile */

/* menu */

ul.menu {
  list-style: none;
}

ul.menu > li {
  position: relative;
}

.section-navigateur.fixed ul.dropdown,
.section-navigateur ul.dropdown {
  top: 100%;
}

ul.dropdown {
  position: absolute;
  left: 0;
  min-width: 180px;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: left;

  z-index: 1;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);

  /* transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s; */
}

ul.dropdown.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

ul.dropdown li a {
  width: 100%;
  display: block;
  padding: 12px 0;
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0%;
  color: #1e1e1e;
  transform: translateY(5px);
}

ul.dropdown li:last-child {
  border-bottom: none;
}

ul.dropdown li:hover a {
  color: #449d35;
  padding-left: 20px;
}

.show-dropdown {
  display: block !important;
}

.has-dropdown > a:hover {
  color: #449d35;
}

/* ul.menu>li:hover .dropdown {
        transform: translateY(0px);
        visibility: visible;
        opacity: 1;
    } */

/* navigateur mobile */

.icon-bar {
  width: 100%;
  height: 6px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle {
  width: 40px;
  height: 33px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0;
  z-index: 1001;
}

.menu-toggle.open .top {
  transform: rotate(45deg) translate(10px, 6px);
}

.menu-toggle.open .middle {
  opacity: 0;
}

.menu-toggle.open .bottom {
  transform: rotate(-45deg) translate(13px, -12px);
}

/* fixed */
.nav-wrapper {
  position: relative;
}

.section-navigateur.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: auto;
}

.has-submenu > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: relative;
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.has-submenu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.has-submenu > a.active::after,
.has-dropdown .active i,
.has-dropdown .active img {
  transform: rotate(180deg);
}

/* Bloc offcanvas */

body.offcanvas-open {
  overflow: hidden;
}

.offcanvas-custom {
  position: fixed;
  top: 0;
  left: -460px;
  width: 460px;
  height: 100vh;
  background: #ffffff;
  transition: left 0.4s ease;
  z-index: 1060;
}

body.active .offcanvas-custom {
  left: 0;
  overflow-y: auto;
}

body.active .offcanvas-custom::-webkit-scrollbar {
  display: none;
}

/* Backdrop flou */
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10101060;
  backdrop-filter: blur(1px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1055;
  pointer-events: none;
  overflow: hidden;
}

body.active {
  overflow: hidden;
}

body.active .offcanvas-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.offcanvas-header {
  position: absolute;
  top: 50px;
  right: 50px;
}

button.close {
  background: transparent;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 1;
}

.btn-navigateur {
  background: transparent;
  transition: all 0.4s ease;
}

.btn-navigateur:hover {
  scale: 1.2;
}

.offcanvas-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* justify-content: space-between; */
  gap: 38px;
  padding: 60px;
}

.reseaux-offc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
}

.reseaux-offc a:hover svg path {
  fill: #449d35;
}

.offcanvas-header {
  opacity: 0;
}
.para-pre p:first-of-type img:first-of-type {
  display: none;
}
.para-pre h2 {
  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: clamp(22px, 0.68vw + 1rem, 26px);
  line-height: 1.3;
  color: #1E1E1E;
}