:root {
  --font-Rubik: "Rubik", sans-serif;
  --font-Unbounded: "Unbounded", 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;
}

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

.has-dropdown>a {
  padding: 30px 0;

  font-family: var(--font-Rubik);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #1B345C;
}

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



.lien-mobile .btn-nav {
  margin-left: auto;
}

.li-lien2 {
  flex: 1;
}



.btn-nav {
  display: flex;
  gap: 16px;
}

.lien-nav-contact {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;


}



.lien-nav-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #E8E8E9;
}

.lien-ln {
  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #1B345C;
  display: flex;
  align-items: center;
  gap: 10px;
}

.espace-client {
  font-family: var(--font-Rubik);
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-skip-ink: auto;

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

  color: #EA5E11;
  padding: 18px 0;
  padding-left: 30px;
  height: 100%;
  border-left: 1px solid #E8E8E9;
}

.bloc-espace-client {
  margin-left: auto;
}

/* section-slide */

.section-slide {
  padding: 0;
}


.item-slide {
  display: block;
  position: relative;
  width: 100%;
  height: 800px;
  border-right: 1px solid #FFFFFF4D;
  z-index: 2;
  overflow: hidden;
  cursor: pointer;

  max-height: calc(100vh - 250px);
  min-height: 450px;
}

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

.item-slide-page::before,
.item-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #0A0C00;
  opacity: 40%;
  transition: width 0.5s ease;
  z-index: 1;
}


.item-slide-page {
  position: relative;
}

.Mypage.contact .item-slide-page {
  width: 100%;
  height: 400px;
}

.Mypage.page .item-slide-page {
  width: 100%;
  height: 483px;
}

.titre-slide {
  font-family: var(--font-Unbounded);
  font-weight: 600;
  font-size: clamp(13px, 3.06vw + 1rem, 60px);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

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

.deco-item-slide {
  position: absolute;
  top: 0;
  right: 0.1%;
  z-index: 2;
  transform: translateY(-25%);
}

.item-slide-page>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.item-slide img {
  position: absolute;
  z-index: 0;
  opacity: 0;
}

.Mypage.page .item-slide img {
  opacity: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}





.texte-slide {
  font-family: var(--font-Unbounded);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}


.btn-slide {
  text-align: center;
}

.bloc-titre-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
  gap: 32px;
  justify-content: center;
  height: 100%;

  padding: 60px;
}

.Mypage.page .bloc-titre-slide {
  top: 55%;
  left: 50%;
  right: unset;
  transform: translate(-50%, -50%);
}


.bloc-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}

.img-fond-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-fond-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.item-slide-page img,
.item-slide img,
.img-fond-slide img {
  animation: pulse 10s infinite ease-in-out;
  transform-origin: center center;
}


.bloc-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0A0C00;
  opacity: 40%;
  z-index: 1;
}




.btn-slide {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;

  height: 138px;
}

.item-slide:hover .btn-slide {
  opacity: 1;
  transform: translateY(0);
}



.btn-slide .btn-1 {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}


/* formulaire */

.section-formulaire {
  position: relative;
  z-index: 5;
}

.form-rdv {
  background: #EA5E11;
  padding: 30px;

  pointer-events: all;
}

.bloc-form {
  display: flex;
  align-items: center;
  gap: 56px;
}

.form-title {
  font-family: var(--font-Unbounded);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  color: #FFFFFF;

  padding-right: 30px;
  border-right: 1px solid #FFFFFF4D;
}

.flex-form {
  display: flex;
  align-items: center;
  gap: 48px;
  flex: 1;
}

.champ-form,
.banner-form {
  flex: 1;
  width: 100%;
}

.flex-banner-form {
  display: flex;
  gap: 16px;
  align-items: center;
}

.label-form {
  font-family: var(--font-Rubik);
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-bottom: 8px;
  border-bottom: 1px solid #FFFFFF4D;

  margin-bottom: 24px;
}

.champ-form button {
  height: 46px;
  border: 1px solid #FFFFFF;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;


  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;

  width: 100%;
  transition: all 0.4s ease;
}

.champ-form button.active,
.champ-form button:hover {
  background: #FFFFFF;
  color: #1B345C;

}

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

.btn-form {
  width: 42px;
  height: 107px;
  background: #1B345C;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;

}

.btn-form:hover {
  background: #FFFFFF;
}

.btn-form:hover svg path {
  fill: #EA5E11;
}



/* presentation */


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


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

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

  box-shadow: 16px 16px 0px 0px #EA5E11;

}

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




.para-pre {
  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #666666;


  /* display: table; */

}

.pre-deco {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36%;
  aspect-ratio: 1 / 1;
  background: #FFFFFF;
}

.bloc-pre-deco {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pre-deco1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  animation: spin 20s linear infinite;
}

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

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

.pre-deco2 {
  position: absolute;
  left: 0;
  bottom: 10px;
}

.pre-deco3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
}

/* reference */
.section-preference {
  background: #1B345C;
}

.img-ref1 {
  width: 100%;
  height: 190px;
  box-shadow: 16px 16px 0px 0px #EA5E11;

}

.img-ref {
  box-shadow: 16px 16px 0px 0px #EA5E11;
}

.h2-hidden h2 {
  display: none;
}

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

.section-preference .para-pre {
  color: #FFFFFF;
}

.row-ref {
  margin-right: -40px;
  margin-left: -40px;
}

.row-ref>div {
  padding: 0 40px;
}

.row-ref {
  margin-bottom: 60px;
}

/* valeur */

.section-valeur {
  background: #F2F3F5;
}



.bloc-valeur {
  padding: 30px 25px;
  background: #FFFFFF;
  display: flex;
  gap: 24px;

  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  height: 100%;
}

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

.titre-valeur {
  padding: 15px 0;
  font-family: var(--font-Unbounded);
  font-weight: 600;
  font-size: 18px;
  line-height: 26.1px;
  text-transform: uppercase;
  color: #1B345C;
}

.text-valeur {
  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #666666;

}

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

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

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

/* service */
.section-service {
  background: #F2F3F5;
}

.flex-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
  background: #EA5E11;
  padding: 60px;

  position: relative;
  z-index: 5;
  margin: auto 0;
  width: 100%;

}

.item-service {
  position: relative;
  display: block;
  width: 344px;
  height: 560px;
  overflow: hidden;
  z-index: 1;
}

.item-service::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(27, 52, 92, 0) 0%, #1B345C 100%);
  z-index: 2;
  transition: all 0.4s ease;
}

.item-service::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(234, 94, 17, 0) 0%, #EA5E11 100%);
  z-index: 2;
  transition: all 0.4s ease;
}

.btn-service {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 4;
  transition: all 0.4s ease;
  opacity: 0;

  transform: translateY(50px);
}

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

.item-service:hover::after {
  height: 100%;
}

.item-service:hover::before {
  opacity: 0;
}

.bloc-service {
  position: absolute;
  inset: 30px;
  top: unset;

  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 4;
}

.titre-service {
  font-family: var(--font-Unbounded);
  font-weight: 600;
  font-size: 18px;
  line-height: 26.1px;
  text-transform: uppercase;
  color: #FFFFFF;
}

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

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

.custom-buttom {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #FFFFFF4D;
}

.custom-buttom button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
  gap: 5px;


  font-family: var(--font-Rubik);
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.custom-buttom button:hover {
  color: #1B345C;
  scale: 1.2;
}

.custom-buttom button:hover svg path {
  fill: #1B345C;
}


.before-service {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.before-service::before {
  content: '';
  position: absolute;
  right: 60px;
  top: 0;
  background: #F2F3F5;
  width: 200vh;
  height: 100%;
  z-index: 4;
}


/* avis */
.section-avis {
  position: relative;
  z-index: 1;
  background: url('../images/bg-avis.jpg')no-repeat center / cover;

}

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

.img-avis {
  position: relative;
  box-shadow: 16px 16px 0px 0px #EA5E11;
  display: inline-block;
}

.deco-avis {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  right: 12%;
}

.bloc-deco-avis {
  position: relative;
}

.deco-avis2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 195%;
  animation: spin 20s linear infinite;
}

/* actualite */
.img-actu {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

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

.bloc-actu {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 464px;
  overflow: hidden;
}

.bloc-actu::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, rgba(27, 52, 92, 0) 0%, #1B345C 100%);
  z-index: 2;
  transition: all 0.4s ease;
}

.bloc-actu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(234, 94, 17, 0) 0%, #EA5E11 100%);
  z-index: 2;
  transition: all 0.4s ease;
}

.bloc-actu:hover::after {
  height: 80%;
}

.bloc-actu:hover::before {
  opacity: 0;
}

.bloc-actu:hover .date-actu svg path {
  fill: #FFFFFF;
}

.banner-actu {
  position: absolute;
  z-index: 5;
  inset: 30px;
  top: unset;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.date-actu {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
  color: #FFFFFF;
}



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


  font-family: var(--font-Unbounded);
  font-weight: 600;
  font-size: 18px;
  line-height: 26.1px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #FFFFFF;
}



/* contact */

.label-conctat {
  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #1B345C;
}

.champ-contact textarea,
.champ-contact input {
  background: #F5F5F5;
  height: 64px;
  padding: 23px;
  padding-left: 36px;
  display: flex;
  align-items: center;
}

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

.champ-contact textarea::placeholder,
.champ-contact input::placeholder,
.champ-contact textarea,
.champ-contact input {
  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #757575;
}

.champ-contact {
  position: relative;
}

.icon-contact {
  position: absolute;
  top: 24px;
  left: 15px;
  z-index: 5;
}

.text-form-contact {
  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}

.text-form-contact a {
  color: #EA5E11;
}

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

.bloc-info {
  padding: 60px;
  background: #1B345C;
  box-shadow: 16px 16px 0px 0px #EA5E11;
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  height: 100%;
}

.sub-info {
  font-family: var(--font-Unbounded);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.titre-info {
  display: flex;
  align-items: center;
  gap: 8px;

  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
  color: #EA5E11;
}

.txt-info {
  font-family: var(--font-Unbounded);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
}

.img-info {
  margin-top: 80px;
}

.les-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* footer */

footer {
  background: #1B345C;
}

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

footer a:hover {
  color: #EA5E11;
}

.bloc-copyright a:hover {
  color: rgb(27, 52, 92);
}


.titre-footer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-Unbounded);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;

  color: #FFFFFF;
  margin-bottom: 30px;
  white-space: nowrap;
}

.newsletter {
  background: #FFFFFF;
  padding: 40px;
  height: 100%;
}

.newsletter .titre-footer {
  color: #1B345C;
}

.titre-footer::before {
  content: '';
  position: relative;
  width: 18px;
  height: 17px;
  background: url('../images/sub-title2.svg')no-repeat;
}

.newsletter .titre-footer::before {
  background: url('../images/sub-title.svg')no-repeat;
}

.newsletter .btn-2 {
  box-shadow: 0px 0px 0px 0px #EA5E11;
  width: 100%;
}

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

.lien-info-footer {
  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #FFFFFF;
}

.lien-info-footer span {
  font-weight: 600;
  font-size: 18px;
}

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

.lien-info .txt-info:hover {
  color: #EA5E11;
}

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

.lien-footer a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #FFFFFF;
}

.lien-footer>a::before {
  content: "\203A";
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  position: relative;
  font-size: 17px;
  transition: transform 0.3s ease;
}

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

.copyright {
  padding: 16px 0;
  background: #EA5E11;
}

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

.bloc-copyright li {
  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.bloc-copyright li span {
  color: #1B345C;
}



.text-news {
  font-family: var(--font-Rubik);
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #666666;
}


.titre-ca {
  font-family: var(--font-Unbounded);
  font-weight: 600;
  font-size: 16px;
  line-height: 23.2px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.ca {
  position: relative;
  background: #162A4A;
  border-top: 1px solid #FFFFFF1A;
  padding: 30px 0;
}

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

}

.img-ca {
  width: 300px;
  height: 107px;

  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.bloc-ca {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.flex-ca {
  display: flex;
  align-items: center;
  gap: 120px;
}

.flex-ca>div {
  flex: 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;


}

ul.dropdown li a {
  width: 100%;
  display: block;
  padding: 10px 20px 10px 30px;

  font-family: var(--font-Rubik);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #1B345C;

}


ul.dropdown li:not(:last-child) {
  border-bottom: 1px solid #E8E8E9
}



ul.dropdown li:hover a {
  color: #EA5E11;
  background: #1B345C;
}

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


.lien-ln:hover,
.has-dropdown>a:hover {
  color: #EA5E11;
}





/* navigateur mobile */


.icon-bar {
  width: 100%;
  height: 6px;
  background: #EA5E11;
  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: 99999;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: auto;
  transition: all 0.4s ease;
}

.section-navigateur.fixed .bloc-nav-contact,
.section-navigateur.fixed .lien-nav-contact {
  display: none !important;
}

.btn-nav .btn-2 {
  display: none;
}

.section-navigateur.fixed .btn-nav .btn-2 {
  display: flex;
}

@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%;
    justify-content: space-between;
    padding: 10px 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;
  gap: 8px;
}


.bloc-map {
  width: 100%;
  height: 486px;
  overflow: hidden;
}

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

.section-presentation .img-float {
  padding-bottom: 50px
}

.para-pre ul {
  margin: 20px 0;
}