:root {
  --font-instrument-sans: "Instrument Sans", sans-serif;
  --font-baloo: 'Baloo';
}


body .Mypage {
  overflow: hidden;
  background: #FDF9F3
}


body .site-main-diag {}


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

.txt-ln {
  font-family: var(--font-instrument-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #1C2627;
  transition: all 0.3s ease;
}

.txt-ln span {
  font-family: var(--font-instrument-sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;

  text-transform: capitalize;
}

.lien-nav-contact a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
}

.lien-nav-contact a:hover .txt-ln {
  color: #91CFCE;
}

.lien-nav-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.lien-nav-contact li:nth-child(3) {
  margin-left: auto;
}

.bloc-lien {
  position: relative;
  background: #1C2627;

  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

}


.has-dropdown>a {
  font-family: var(--font-instrument-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FDF9F3;
  padding: 29px 0;
}

.lien-mobile {
  display: flex;
  justify-content: space-between;

  flex: 1;
}

.li-lien2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 79px;
}

.li-lien1 {
  position: relative;
  height: 100%;
  width: 140px;
}

.li-lien1 a {
  padding: 10px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 10px solid #FDF9F3;

  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);


}

.section-navigateur.fixed .li-lien1 a {
  box-shadow: 0px 8px 16px 0px #0000001A;
}

/* section-slide */

.section-slide {
  padding: 0 0;
}

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

}

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

.section-slide .page,
.owl-carousel.accueil {
  border-radius: 10px;
  overflow: hidden;
}

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

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



.titre-slide {
  font-family: var(--font-baloo);
  font-weight: 400;
  font-size: clamp(13px, 3.14vw + 1rem, 60px);
  line-height: 1.12;
  color: #FFFFFF;

}

.text-slide {
  font-family: var(--font-instrument-sans);
  font-weight: 500;
  font-size: clamp(18px, 0.57vw + 1rem, 24px);
  line-height: 1.3;
  color: #FFFFFF;

}

.bloc-titre-slide .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}


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

.ariane {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;


  font-family: var(--font-instrument-sans);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #FFFFFF;
}

.ariane .active {
  color: #91CFCE;
}

.ariane i {
  font-size: 14px;
}



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

/* formulaire */
.section-formulaire {
  position: absolute;
  bottom: -66px;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
}

.section-formulaire .container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.bloc-form {
  position: relative;
  width: 100%;
  max-width: 374px;
  border-radius: 30px;
  padding: 30px;
  background: #F5E3CB;
  border-bottom: 10px solid #C2A98B;
  box-shadow: 8px 10px 16px 0px #00000033;
  pointer-events: all;

}


.titre-form {
  font-family: var(--font-baloo);
  font-weight: 400;
  font-size: clamp(24px, 1.14vw + 1rem, 32px);
  line-height: 1.2;
  text-align: center;
  color: #1C2627;
  margin-bottom: 20px;

}

.titre-form span {
  font-size: clamp(28px, 1.714vw + 1rem, 40px);
  line-height: 1;
  color: #076A76;
}

.nice-select {
  height: 49px;
  border-radius: 10px;
  background: #FFFFFF4D;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  width: 100%;
}

.nice-select .option,
.nice-select .current {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #505353;

  display: flex;
  align-items: center;
}

.nice-select .list {
  width: 100%;

}

.nice-select .list {
  border-radius: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-top: 0;
  box-shadow: none;
}

.nice-select.open {
  border-radius: 10px 10px 0 0 !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background: transparent;
  font-weight: 700;
}

.nice-select .option.disabled {
  display: none;
}

.nice-select:after {
  width: 9px;
  height: 9px;
  right: 20px;
  margin-top: -7px;
  border-bottom: 2px solid #505353;
  border-right: 2px solid #505353;
}

.nice-select:hover,
.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #F8EBDB;
}

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

#customDotsnav {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 633px;
}

#customDotsnav .owl-dot {
  counter-increment: dot;
  position: relative;
  flex: 1;
  width: 100%;
  height: 1px;
  background: #FFFFFF4D;
  transition: all 0.3s ease;
}

#customDotsnav .owl-dot::before {
  content: counter(dot, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  color: #1C2627;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;


  font-family: var(--font-instrument-sans);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;

}

#customDotsnav .owl-dot.active::before {
  background: #91CFCE;
  color: #076A76;
}



#customDotsnav .owl-dot.active {
  background: #91CFCE;
}







/* presentation */


section.section-presentation {
  position: relative;
}


.img-pre {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 1;
  max-width: 668px;
  overflow: hidden;
}

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

  border-top-left-radius: 210px;
  border-top-right-radius: 210px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;

  border-bottom: 10px solid #91CFCE;
}


.pre-deco1 {
  position: absolute;
  width: 43%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(180deg, #91CFCE 0%, #77AEAD 100%);
  top: -32px;
  left: -10px;
  z-index: 1;
}

.pre-deco2 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.pre-deco2 img {
  max-width: unset;
}

.para-pre {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #505353;



  display: table;

}

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


/* service */

.section-service {
  overflow: hidden;

}

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

.section-service .container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 300vh;
  background: #FDF9F3;
  z-index: 2;
}

.item-service {
  position: relative;
  height: 400px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}

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

.item-service:hover .img-service>img {
  filter: grayscale(100%);
}

.img-service>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.bloc-service {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  padding: 26px;
  padding-right: 5px;
  background: #1C2627;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  z-index: 2;
}

.titre-service {
  font-family: var(--font-instrument-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;

}

.btn-service {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #076A76;
  border-radius: 25px;
  z-index: 2;
}

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



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

.btn-slide-service {
  display: flex;
  gap: 9px;
  align-items: center;
}

.btn-1slide,
.btn-slide-service button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #1C2627;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-1slide:hover,
.btn-slide-service button:hover {
  background: #91CFCE;
  border: 1px solid #91CFCE;
}

.btn-1slide:hover svg path,
.btn-slide-service button:hover svg path {
  fill: #076A76;
}


/* valeur */

.section-valeur {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  position: relative;
}

.section-valeur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 260px);
  height: 100%;
  background: #F5E3CB;
  z-index: -1;
  border-radius: 55% 55% 0 0;
}

.titre-valeur {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-instrument-sans);
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: #1C2627;
  margin-bottom: 20px;
}


.text-valeur {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #1C2627;
}

.slide-valeur {
  padding-bottom: 38px;
  position: relative;
}

.btn-slide-valeur {
  display: flex;
  align-items: center;
  gap: 9px;
  position: absolute;
  top: 0;
  right: 0;
  background: #F5E3CB;
  z-index: 4;
}

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

.img-valeur {
  display: flex;
}

.img-valeur span {
  position: relative;
  overflow: hidden;
}

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





/* tarifs */

.banner-tarif {
  display: flex;
  gap: 26px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.sub-tarif {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1C2627;
  margin-bottom: 30px;
}

.bloc-tarif {
  position: relative;
  overflow: hidden;
}

.bloc-tarif .banner-tarif:last-child .icon-tarif::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  background: #FDF9F3;

}

.bloc-tarif:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 2px;
  height: 100%;
  background: #F5E3CB;
  z-index: 0;
}




.icon-tarif {
  position: relative;
  z-index: 2;
  width: 80px;
  min-width: 80px;
  height: 80px;
  background: #F5E3CB;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.titre-tarif {
  font-family: var(--font-instrument-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #1C2627;
  margin-bottom: 15px;
}

.txt-tarif {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #505353;
}

.icon-tarif svg {
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner-tarif:hover .icon-tarif svg {
  transform: rotateY(180deg);
}

.banner-tarif:hover .titre-tarif {
  color: #076A76;
}

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

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


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

.bloc-tarif {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.img-tarif img {
  object-fit: cover;
  border-radius: 211px;
}



/* reference */
.section-reference .pre-deco1 {
  left: unset;
  right: -10px;
  left: unset;
}


/* actu */
.bloc-actu {
  width: 100%;
}

.banner-actu {
  position: relative;
  background: #FDF9F3;
  border-radius: 30px;
  box-shadow: 0px 8px 16px 0px #00000033;
  padding: 20px;

  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;

  margin-top: -75px;
  width: 100%;
}

.padding-actu {
  padding: 0 28px;
}

.date-actu {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #83A5B0;
}

.titre-actu {
  font-family: var(--font-instrument-sans);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #1C2627;
}

.btn-actu {
  display: flex;
  align-items: center;
  gap: 5px;

  font-family: var(--font-instrument-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1C2627;

}

.img-actu {
  overflow: hidden;
  width: 100%;
  height: 298px;
  border-radius: 30px;

}

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

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

/* temoignages */
.bloc-tem {
  position: relative;
  padding: 30px 50px;
  background: #076A76;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
}

.text-tem {
  font-family: var(--font-instrument-sans);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
}

.btn-tem a {
  position: relative;
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #FFFFFF;
}

.img-tem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* paiement */

.bloc-paie {
  position: relative;
  z-index: 1;
  padding: 30px;
  background: url('../images/paiment.jpg')no-repeat center / cover;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  gap: 10px 111px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.bloc-paie::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #00000033;

}

.text-paie {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;

}

.banner-paie {
  flex: 1;
  max-width: 574px;
}

/* footer */
footer {
  background: #1C2627;

}

footer .container-g {
  position: relative;
}

.newslettre {
  padding: 35px 0;

}

.newslettre form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 36px;
}

.champ-footer input {
  width: 100%;
  min-width: 310px;
  height: 44px;
  border: 1px solid #FFFFFF4D;
  padding: 14px 16px;
  padding-left: 48px;
  border-radius: 10px;
  background: transparent;
}

.champ-footer {
  position: relative;
}

.champ-footer input,
.champ-footer input::placeholder {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #FFFFFF4D;
}

.titre-news {
  font-family: var(--font-baloo);
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #FFFFFF;

}

.bloc-form-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-footer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.titre-footer {
  font-family: var(--font-baloo);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #FFFFFF;
  margin-bottom: 10px;
}

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

.lien-footer a {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #FFFFFF;
}

.lien-footer a:hover {
  color: #91CFCE;
}

.bloc-footer {
  position: relative;
  padding: 70px 0;
  border-top: 1px solid #FFFFFF4D;
  border-bottom: 1px solid #FFFFFF4D;
  z-index: 1;
}

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

.bloc-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1px;
  background: #FFFFFF4D;
}


.bloc-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0;
}

.bloc-copyright li {
  font-family: var(--font-instrument-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #FFFFFF;

}

.bloc-copyright li span {
  color: #91CFCE;
}

.bloc-copyright li:first-child a:hover {
  text-decoration: underline;
}

.arobiz a {
  color: #91CFCE;
  font-weight: 600;
}

.btn-up {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 5;
}

.btn-up a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #138D8C;
  width: 50px;
  height: 50px;

}

.icon-f{
  position: absolute;
  top: 45%;
  left: 16px;
  transform: translateY(-50%);
}


/* contact */

.champ-contact textarea,
.champ-contact input {
  height: 48px;
  border-bottom: 1px solid #505353;
  background: transparent;
  padding: 12px 0;
  padding-left: 34px;
}

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

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

}

.champ-contact {
  position: relative;
}

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

  position: absolute;
  top: 12px;
  left: 0;
}


.titre-info {
  font-family: var(--font-baloo);
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  color: #1C2627;
}

.txt-info {
  font-family: var(--font-instrument-sans);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #1C2627;
}


.bloc-info {
  border-bottom: 10px solid #C2A98B;
  background: #F5E3CB;
  box-shadow: 8px 10px 16px 0px #00000033;
  width: 100%;
  max-width: 374px;
  padding: 30px;
  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.icon-info {
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.bloc-info:hover .icon-info {
  transform: rotateY(180deg);
}

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

.flex-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px 59px;
  flex-wrap: wrap;
}

.text-form-contact {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #505353;
  padding: 30px 0;
}

.text-form-contact a {
  font-weight: 600;
  color: #505353;
}

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

.bloc-int {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bloc-int a {
  font-family: var(--font-instrument-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1C2627;

  display: flex;
  align-items: center;
  gap: 6px;
}

.bloc-int a:hover {
  color: #91CFCE;
}

.banner-int {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.txt-tarif {
  font-family: var(--font-instrument-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #505353;

}

.tableaux-tarif {
  margin: 30px 0;
  position: relative;
  z-index: 2;
}

.tarif-deco {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(180deg, #91CFCE 0%, #77AEAD 100%);
  top: -90px;
  right: -43px;
  z-index: -1;
}

/* 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: #FFFFFF;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 0;
  list-style: none;
  z-index: 1;
  width: max-content;
  text-align: left;
  transition: 0.5s;
  visibility: hidden;
  transform: translateY(50px);
  opacity: 0;


  padding: 16px 20px;
  border-bottom: 10px solid #138D8C;
  border-radius: 20px;
}

ul.dropdown li a {
  position: relative;
  width: 100%;
  display: block;
  padding: 6px 0px !important;
  font-family: var(--font-instrument-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #1C2627;
}


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



ul.dropdown li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 16px);
  height: 100%;
  transition: width 0.3s ease-in-out;
  vertical-align: middle;
  border-radius: 6px;

}

ul.dropdown li:hover a::before {
  background: #91CFCE80;
}

ul.dropdown li:hover a {
  color: #138D8C;
}

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



.has-dropdown>a:hover {
  color: #91CFCE;
}










/* 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 */
.section-navigateur.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #1C2627;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: auto;
}



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

  .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: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: relative;
    font-size: 0.7em;
    transition: transform 0.3s ease;
  }

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

}