:root {
  --font-dm-sans: "DM Sans", sans-serif;
  --font-exo: "Exo", sans-serif;
}

body .Mypage {
  overflow: hidden;
}


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


.preloader {
  position: fixed;
  left: 0px;
  top: 0x;
  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;
}



.lien-nav-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;

}

.lien-nav-contact a:hover {
  color: #62B22F;
}

.lien-nav-contact li:last-child {
  margin-left: auto;
}

.lien-nav-contact a,
.lien-nav-contact span {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;

  padding: 14px 0;

}

.icon-lc {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #62B22F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ul-lien {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.lien-mobile {
  display: flex;
  align-items: center;
  gap: 50px;
}

.banner-nav-contact {
  padding: 0 30px;
}

.bloc-navigateur {
  position: relative;
  background: #FFFFFF;
  padding: 0 30px;
  border-radius: 10px;
}

.has-dropdown>a {
  padding: 45px 0;
  font-family: var(--font-dm-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #808181;

}

.li-lien3 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}


/* section-slide */

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

.item-slide {
  position: relative;
  width: 100%;
  height: 800px;
  max-height: calc(100vh - 20px);
  min-height: 600px;

  border-bottom-right-radius: 45px;
  border-bottom-left-radius: 45px;
  overflow: hidden;
}

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

.item-slide::after,
.item-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 46, 47, 0.75) 0%, rgba(7, 46, 47, 0) 27.94%);

  z-index: 1;
}

.item-slide::after {
  background: linear-gradient(0deg, rgba(7, 46, 47, 0.2), rgba(7, 46, 47, 0.2));
}
.Mypage.page.intern .item-slide::after{
  background: #072E2F80;
}
.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;
  padding-top: 15px;
}

.Mypage.page .bloc-titre-slide {
  padding-top: 85px;
}



.titre-slide {
  font-family: var(--font-exo);
  font-weight: 900;
  font-size: clamp(13px, 3vw + 1rem, 64px);
  line-height: 1.15;
  letter-spacing: -1.28px;
  text-align: center;
  color: #FFFFFF;
}
.Mypage.page .titre-slide{
    font-size: clamp(32px, 3vw + 1rem, 64px);
}


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

#customDots {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  bottom: 120px;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
}

#customDots .owl-dot {
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
}

#customDots .owl-dot.active {
  background: #19ABAE;
  width: 24px;
  border-radius: 4px;
}



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

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

.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.2s;
}

.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);
}




/* formulaire */

.form-rdv {
  padding: 24px 30px;
  border: 4px solid #19ABAE;
  backdrop-filter: blur(20px);
  border-radius: 16px;
  background: #FFFFFF;

  pointer-events: all;
}

.titre-form {
  font-family: var(--font-exo);
  font-weight: 900;
  font-size: clamp(24px, 1vw + 1rem, 30px);
  line-height: 1.2;
  color: #19ABAE;

  padding-right: 24px;
  border-right: 0.5px solid #808181;
}

.champ-form button {
  height: 48px;
  border: 1px solid #19ABAE;
  border-radius: 8px;
  background: transparent;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 16px;

  font-family: var(--font-dm-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #808181;
  transition: all 0.3s ease;
}


.champ-form button:hover,
.champ-form button.active {
  background: #19ABAE;
  color: #FFFFFF;
}

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

.champ-form button svg path,
.champ-form button.active svg path {
  transition: all 0.3s ease;
}

.label-form {
  font-family: var(--font-dm-sans);
  font-weight: 900;
  font-size: clamp(16px, 0.5714vw + 1rem, 24px);
  line-height: 1.2;
  color: #808181;
}

.row-form1 {
  margin-right: -12px;
  margin-left: -12px;
}

.row-form1 .col-12 {
  padding: 0 12px;
}

.row-form {
  margin-right: -5px;
  margin-left: -5px;
}

.row-form .col-12,
.row-form .col-4,
.row-form .col-xl-4 {
  padding: 0 5px;
}

/* presentation */


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


.img-pre {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  z-index: 1;
  max-width: 630px;
}

.image-pre {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}




.para-pre {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #808181;

  /* display: table; */

}

.relative-deco {
  position: relative;
  width: 100%;
  height: 100%;
}

.deco-pre {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33%;

}

.text-deco-pre {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateWheel 20s linear infinite;
  will-change: transform;
  width: 90%;
}


@keyframes rotateWheel {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


/* valeur */
.section-valeur {
  background: #19ABAE;
  border-bottom-right-radius: 45px;
  border-bottom-left-radius: 45px;

}



.bloc-valeur {
  position: relative;
  background: #14898B;
  border-radius: 16px;
  padding: 40px;
  padding-bottom: 60px;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.bloc-valeur::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #FFFFFF;
  z-index: -1;
  transition: all 0.4s ease;
}

.bloc-valeur:hover::before {
  height: 100%;
}

.bloc-valeur:hover .icon-valeur svg path {
  fill: #19ABAE;
}

.bloc-valeur:hover .titre-valeur {
  color: #62B22F;
}

.bloc-valeur:hover .text-valeur {
  color: #808181;
}

.icon-valeur {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.titre-valeur {
  font-family: var(--font-dm-sans);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 14px;
  transition: all 0.4s ease;
}

.text-valeur {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  transition: all 0.4s ease;
}

.v1 {
  position: absolute;
  bottom: 0;
  right: 25px;
}


/* service */


.section-service {
  background: #EFF7EA;
}


.item-service {
  position: relative;
  width: 100%;
  height: 426px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}

.item-service::before {
  content: '';
  position: absolute;
  inset: 10px;
  top: unset;
  background: #0D565780;
  backdrop-filter: blur(14px);
  border-radius: 10px;
  z-index: 1;
  height: 0;
  transition: all 0.4s ease;
}

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

.btn-service {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #62B22F;

}

.titre-service {
  font-family: var(--font-dm-sans);
  font-weight: 700;
  font-size: clamp(16px, 0.57vw + 1rem, 24px);
  line-height: 1.25;
  color: #FFFFFF;

}

.bloc-service {
  position: absolute;
  inset: 30px;
  top: unset;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s ease;
}

.icon-service {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  z-index: 3;
  opacity: 0;
  transition: all 0.4s ease;
}


.item-service:hover::before {
  height: calc(100% - 20px);
}

.item-service:hover .icon-service {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.item-service:hover .bloc-service {
  transform: translateY(0px);
  opacity: 1;
}



/* actu */
.section-actu {
  background: #EFF7EA;
  border-bottom-right-radius: 45px;
  border-bottom-left-radius: 45px;
}


.bloc-actu {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.bloc-actu:hover .img-actu img {
  transform: scale(1.2);
}

.img-actu {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 20px;
}

.img-actu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.text-actu {
  font-family: var(--font-dm-sans);
  font-weight: 700;
  font-size: clamp(18px, 0.57vw + 1rem, 24px);
  line-height: 1.4;
  color: #808181;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.btn-actu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-dm-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #62B22F;

}

.btn-actu::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #62B22F;
  transition: all 0.4s ease;
}

.btn-actu:hover::before {
  width: 100%;
}

.date-actu {
  width: 66px;
  height: 74px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #515151;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  position: absolute;
  top: 13px;
  left: 13px;


  font-family: var(--font-exo);
  font-weight: 900;
  font-size: 24px;
  line-height: 26px;
  transition: all 0.4s ease;
}

.date-actu span {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #515151;
  transition: all 0.4s ease;

}

.bloc-actu:hover .date-actu {
  background: #62B22F;
  color: #FFFFFF;
}

.bloc-actu:hover .date-actu span {
  color: #FFFFFF;
}


/* avis google */

.section-avis {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0;
}

.section-avis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EFF7EA;
  z-index: -1;

}

.before-g {
  position: relative;
  background: url('../images/bg-avis.jpg')no-repeat center / cover;
  border-bottom-right-radius: 45px;
  border-bottom-left-radius: 45px;
  height: 324px;
  padding: 0;
  z-index: 2;
  padding: 30px;
}

.before-g::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0D565799;
  border-bottom-right-radius: 45px;
  border-bottom-left-radius: 45px;

}


.btn-avis {
  position: relative;
}

.bloc-avis {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  height: 100%;
}

.titre-avis {
  position: relative;
  font-family: var(--font-exo);
  font-weight: 400;
  font-size: clamp(13px, 2.29vw + 1rem, 48px);
  line-height: 1.2;
  color: #FFFFFF;
  max-width: 875px;
}

.titre-avis span {
  font-weight: 900;

}

.google {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31%;
}

.deco-google {
  animation: rotateWheel2 20s linear infinite;
}

@keyframes rotateWheel2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* paiement */
.section-paiement {
  position: relative;
  padding: 0;
  background: #0C5557;
  z-index: 5;
  padding-top: 40px;
  margin-top: -40px;
}

.section-paiement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(50% + 20px);
  background: #EFF7EA;
  z-index: -1;
  border-bottom-right-radius: 45px;
  border-bottom-left-radius: 45px;
}

.bloc-paie {
  padding: 34px 60px;
  background: #62B22F;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 25px;
  flex-wrap: wrap;
}

.banner-paie {
  display: flex;
  align-items: center;
  gap: 30px;
}

.titre-paie {
  font-family: var(--font-exo);
  font-weight: 400;
  font-size: clamp(13px, 1.714vw + 1rem, 40px);
  line-height: 1.3;
  color: #FFFFFF;
}

.titre-paie span {
  font-weight: 900;
}


/* footer */

footer {
  background: #0C5557;
}

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

.titre-footer {
  font-family: var(--font-dm-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 28px;
  color: #FFFFFF;
}

.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-footer span,
.contact-footer a {
  display: flex;
  gap: 20px;
  align-items: center;
}

.titre-contact-footer {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #DDDDDD;
}

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

.lien-footer {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.lien-footer a {
  position: relative;
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #DDDDDD;
  transition: all 0.3s ease;

}

.lien-footer a::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #62B22F;
  transition: all 0.3s ease;
}

.contact-footer a:hover .titre-contact-footer,
.lien-footer a:hover {
  color: #62B22F;
}

.lien-footer a:hover::before {
  width: 100%;
}

.flex-footer {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-logo-footer {
  font-family: var(--font-dm-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #FFFFFF;

}

.bloc-form-footer {
  padding: 30px;
  background: #19ABAE;
  border-radius: 16px;
}


.titre-form-footer {
  font-family: var(--font-exo);
  font-weight: 900;
  font-size: clamp(22px, 1vw + 1rem, 30px);
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.text-form-footer {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #FFFFFF;

}

.bloc-form-footer form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.champ-footer {
  position: relative;
}

.champ-footer input {
  height: 66px;
  width: 100%;
  padding: 34px;
  padding-right: 64px;
  background: #FFFFFF;
  border-radius: 8px;
}

.champ-footer input::placeholder,
.champ-footer input {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #808181;
}

.btn-footer {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  z-index: 2;
}

.copyright {
  padding: 24px 0;
}

.bloc-copyright {
  display: flex;
  justify-content: space-between;

  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  color: #FFFFFF;
}

.bloc-copyright span {
  color: #62B22F;
  font-weight: 600;
}

.bloc-copyright a:hover {
  color: #62B22F;
}





/* contact */

.section-form-contact {
  background: #EFF7EA;
}

.champ-contact textarea,
.champ-contact input {
  height: 50px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 12px 18px;
}

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

.champ-contact textarea::placeholder,
.champ-contact input::placeholder,
.champ-contact textarea,
.champ-contact input {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #808181;

}

.text-form-contact {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #808181;
  margin-bottom: 40px;
}

.text-form-contact a {
  font-weight: 700;
  color: #62B22F;
}

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

.map {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

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

.dc {
  position: absolute;
  bottom: 0px;
  right: 0;
}

/* info */
.section-info {
  background: #EFF7EA;
  padding: 0;
  position: relative;
  z-index: 5;
}

.bloc-info {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 40px;
  background: #FFFFFF;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.bloc-info:hover {
  background: #62B22F;
}

.bloc-info:hover .titre-info,
.bloc-info:hover .texte-info {
  color: #FFFFFF;
}

.titre-info {
  font-family: var(--font-exo);
  font-weight: 700;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  color: #19ABAE;
  transition: all 0.3s ease;
}

.texte-info {
  font-family: var(--font-dm-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #808181;
  transition: all 0.3s ease;
}

.icon-info {
  border-radius: 50%;
  min-width: 59px;
  width: 59px;
  height: 59px;
  background: #19ABAE;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.bloc-info:hover .icon-info {
  background: #FFFFFF;
}

.bloc-info:hover .icon-info svg path {
  fill: #62B22F;
}






/* 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 {
  display: block;
  position: absolute;
  left: 0;
  min-width: 180px;
  background: #E8F7F7;
  box-shadow: 0px 4px 64px 0px #1E1E1C29;
  padding: 0;
  list-style: none;
  z-index: 1;
  width: max-content;
  text-align: left;
  transition: 0.5s;
  visibility: hidden;
  transform: translateY(50px);
  opacity: 0;

  border-radius: 8px;


  padding: 8px 0;

}

ul.dropdown li:not(:first-child) {
  border-top: 1px solid #808181;
}

ul.dropdown li a {
  width: 100%;
  display: block;
  padding: 6px 26px;
  text-decoration: none;
  font-family: var(--font-dm-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.32px;
  color: #808181;
  transition: all 0.3s ease;
  border-left: 0;

}


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





ul.dropdown li:hover a {
  color: #62B22F;
  border-left: 3px solid #62B22F;
  padding-left: 23px;
}

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



.has-dropdown>a:hover {
  color: #62B22F;
}






/* navigateur mobile */


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

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


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

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

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


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

.section-navigateur.fixed .bloc-nav-contact {
  display: none;
}

.section-navigateur.fixed .li-lien1 img {
  max-width: 200px;
}



@media (max-width: 1199px) {

  .bloc-navigateur-principal {
    background: transparent;
  }

  ul.dropdown {
    display: block;
    position: relative;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.0);
    padding: 0;
    list-style: none;
    z-index: 1;
    width: 100%;
    text-align: left;
    transition: 0.5s;
    visibility: visible;
    opacity: 0;
    display: none;

  }

  .lien-mobile {
    position: absolute;
    top: 100%;
    width: 100%;
    display: block;
    flex-direction: column;
    left: 0px;
    background-color: #FFFFFF;
    gap: 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(-15px);
    overflow: hidden;
    border-radius: 8px;
  }

  .lien-mobile.actived {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    overflow-y: auto;
    max-height: calc(100vh - 80px);
  }

  .lien-mobile>li {
    width: 100%;
  }

  .nav-lien img.logo-fixed,
  .nav-lien img.logo-default {
    padding: 15px 0;
  }

  .lien-mobile a br {
    display: none;
  }

  .lien-mobile a {
    width: 100%;
    font-size: 14px;
    justify-content: space-between;
    padding: 15px;


  }


  .lien-mobile.actived ul.dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0px);
  }

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


  .has-dropdown div {
    pointer-events: none;
  }



}

.has-submenu>a::after {
  content: "+";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: relative;
  font-size: 0.7em;
  transition: transform 0.3s ease;
  margin-top: 5px;
}

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