:root {
  --font-Inter: "Inter", sans-serif;
  --font-PlusJakartaSans: "Plus Jakarta Sans", sans-serif;
  --font-Roboto: "Roboto", sans-serif;
}

body .Mypage {
  overflow: hidden;
}


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


.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;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.lien-mobile {
  display: flex;
  flex-direction: column;
  gap: 18px;

}



.has-dropdown>a {
  font-family: var(--font-Inter);
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  color: #FFFFFF;
}

.li-lien2 a {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12.5px;
  border-radius: 100px;
  background: #172A46;
  overflow: hidden;
  white-space: nowrap;

  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  transition: all 0.4s ease;

}


.li-lien2 a span {
  opacity: 0;
}



.flex-lien2 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

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

.li-lien2,
.li-lien3 {
  flex: 1;
}

.li-lien3 {
  display: flex;
  justify-content: flex-end;
}

.li-lien3 button {
  font-family: var(--font-Inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  height: 50px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #172A46;
  border-radius: 100px;

}

.li-lien3 button:hover svg {
  scale: 1.3;
}



/* section-slide */

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

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

.Mypage.page .item-slide {
  height: 519px;
}

/* .item-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  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;
  padding-top: 15px;
}



.titre-slide {
  font-family: var(--font-PlusJakartaSans);
  font-weight: 400;
  font-size: clamp(28px, 2.22vw + 1rem, 48px);
  line-height: 1.2;
  text-align: center;
  color: #FFFFFF;

}

.titre-slide span {
  font-weight: 600;
}




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

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

.bloc-diag {
  position: relative;
  width: 309px;
  height: 181px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 15px;
  border-radius: 20px;
  overflow: hidden;
  background: #186594;
  z-index: 2;
}


.bloc-diag::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -199.2%, #173A5B -27.24%, #539B36 95.38%);
  z-index: -1;
  box-shadow: 0px 4px 4px 0px #082F47 inset;

  backdrop-filter: blur(145px);
  opacity: 0.3;
  transition: all 0.4s ease;

}

.img-diag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

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

.bloc-diag:hover .img-diag {
  opacity: 1;
}

.titre-diag {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: #FFFFFF;

}

.titre-diag span {
  font-weight: 700;
}

.btn-diag {
  cursor: pointer;
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 2;
}

.flex-diag {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;

  margin-top: -90px;
}

/* formulaire */

.section-formulaire {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 4;

}

.bloc-form {
  width: 468px;
  background: #AECAC44F;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  padding: 26px;
}

.titre-form {
  font-family: var(--font-PlusJakartaSans);
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: #FFFFFF;
  padding-bottom: 9px;
  border-bottom: 1px solid #DED7D333;
  margin-bottom: 25px;
}

.champ-form {
  display: flex;
  align-items: center;
  gap: 15px;
}

.flex-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.btn-form button {
  height: 50px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font-Inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #103B62;
  border-radius: 100px;
  background: #80B078;
}

.nice-select {
  height: 34px;
  border-radius: 20px;
  background: #FFFFFF8A;
  padding: 0px 22px;
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
}

.nice-select .option,
.nice-select .current {
  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;

  display: flex;
  align-items: center;
}

.nice-select .option {
  border-bottom: 1px solid #00000014;
}

.nice-select .option:hover {
  background: #80B078 !important;
  color: #FFFFFF;
  opacity: 1;
  border-radius: 26px;
}

.nice-select .list {
  width: 100%;
  left: 0px;
  background: #B3C1BF;
}

.nice-select .list {
  border-radius: 0;
  margin-top: 0px;
  box-shadow: none;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 26px;
  overflow: visible;

  border-radius: 0 0 20px 20px !important;
}

.nice-select.open {
  border-radius: 20px 20px 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 {
  all: revert;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 1em;
  transition: transform 0.3s ease;
  top: -3px;
  right: 20px;
  color: #FFFFFF
}

.nice-select.open:after {
  transform: rotate(-180deg);
}

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

.Mypage.page .bloc-form {
  margin: 0 auto;
}

.Mypage.page .titre-form {
  text-align: center;
}


/* presentation */


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

.section-presentation .container {
  display: flow-root;
}


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

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

img.img-presentation {
  object-fit: cover;
  border-radius: 20px;
}

.deco-pre {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(25%, -50%);
  z-index: 2;

  width: 40%;
}

.bloc-img-pre {
  padding-top: 90px;
}



.para-pre {
  font-family: Helvetica, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  color: #FFFFFF;


/* display: table; */

}
.para-pre ul li {
  list-style:disc;
  margin-left:26px;
}
/* valeur */
.section-valeur {
  position: relative;
}

.bloc-valeur {
  position: relative;
  z-index: 1;
  padding: 25px 60px;
  padding-top: 45px;

  background: #19415E;
  border: 1px solid #ffffffb4;
  border-radius: 20px;

  height: 100%;
  transition: all 0.1s ease;
  overflow: hidden;
}

.bloc-valeur::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -199.2%, #173A5B -27.24%, #539B36 95.38%);
  z-index: -1;
  box-shadow: 0px 4px 4px 0px #082F47 inset;
  backdrop-filter: blur(145px);
  opacity: 0.1;
  transition: all 0.1s ease;
}

.bloc-valeur:hover {
  background: #186594;
  box-shadow: 9px 10px 10.8px 0px #FFFFFF1F;
  border: 1px solid #FFFFFF;

}

.bloc-valeur:hover::before {
  opacity: 0.3;
}

.titre-valeur {
  font-family: var(--font-Inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 14px;

}

.text-valeur {
  font-family: var(--font-Inter);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #FFFFFF;
}

/* service */
.section-service {
  z-index: 2;
}

.item-service {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.item-service::after,
.item-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #172A462B;
  transition: all 0.4s ease;
}

.item-service::after {
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, #172A46 100%);
  width: 0;
}

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

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

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

}

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

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

.custom-buttom button {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: transparent;
  transition: all 0.4s ease;
}

.custom-buttom button:hover {
  scale: 1.2;
}




.text-service {
  font-family: var(--font-Inter);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;

  position: absolute;
  inset: 14px;
  top: unset;
  z-index: 2;
}

.container-service {
  position: relative;
}

.deco-service {
  position: absolute;
  top: -32px;
  right: -119px;
  opacity: 14%;
  pointer-events: none;

}

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

.section-avis::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #0000004D;

}

.titre-avis {
  font-family: var(--font-Inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: #172A46;
  margin-bottom: 7px;
}

.text-avis {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: #172A46;
  margin-bottom: 14px;
}

.bloc-avis {
  border-radius: 20px;
  background: #d9d9d9c5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 29px 47px;
  height: 100%;
}

/* referencement */

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

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


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

.img-actu {
  overflow: hidden;
  width: 100%;
  height: 210px;
  position: relative;
  border-radius: 12px;
}

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

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

.bloc-actu {
  background: #186594;
  border-radius: 36px;
  padding: 27px;
}

.banner-actu {
  padding: 17px;
}

.date-actu {
  width: 64px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 10px;
  background: #172A46;
  box-shadow: 4px 4px 0px 0px #3B445980;


  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;


  font-family: var(--font-Roboto);
  font-weight: 800;
  font-size: 25px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;
  flex-direction: column;

}

.date-actu span {
  font-family: var(--font-Roboto);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
}


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

  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #FFFFFF;

}


.btn-actu {
  margin-top: 46px;
}


/* contact */

.titre-form-contact {
  font-family: var(--font-Inter);
  font-weight: 700;
  font-size: clamp(26px, 1.4vw + 1rem, 36px);
  line-height: 1.2;
  color: #FFFFFF;
  padding-bottom: 21px;
  border-bottom: 1px solid #D9D9D9;

  margin-bottom: 31px;
}

.champ-contact textarea,
.champ-contact input {
  height: 70px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 22px;
  padding-left: 65px;
}

.champ-contact {
  position: relative;
}

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

.champ-contact textarea::placeholder,
.champ-contact input::placeholder,
.champ-contact textarea,
.champ-contact input {
  font-family: Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #B0B0B0;
}

.text-form-contact {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #B0B0B0;

  padding-top: 17px;
  padding-bottom: 44px;
}

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

.icon-contact {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 23px;
  left: 19px;
  z-index: 3;
}


/* footer */

footer {}

.footer-g {
  background: url('../images/bg-footer.jpg')no-repeat center / cover;
}

.logo-footer {}

.titre-footer {
  font-family: var(--font-Inter);
  font-weight: 700;
  font-size: 24px;
  line-height: 50px;
  text-transform: uppercase;
  color: #172A46;

  margin-bottom: 10px;

  white-space: nowrap;
}

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

.les-ca {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}


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

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

  font-family: var(--font-Inter);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #172A46;

  margin-left: -17px;
  transition: all 0.4s ease;

}

.lien-footer a::before {
  content: '•';
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;

}

.lien-footer a:hover {
  margin-left: 0px;
}

.lien-footer a:hover::before {
  opacity: 1;
}

.copyright {
  padding: 24px 0;
  background: #1E4357;
}

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

.bloc-copyright li span {
  font-weight: 700;
}

.bloc-copyright a:hover {
  color: #80B078;
}

.bloc-copyright li {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #FFFFFF;
}

.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 {
  display: block;
  position: absolute;
  min-width: 180px;
  padding: 10px 0;
  list-style: none;
  z-index: 1;
  width: max-content;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  display: none;
  left: 12px;
}

ul.dropdown.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  display: block;
}

ul.dropdown li a {
  width: 100%;
  display: block;
  padding: 5px 24px;


  font-family: var(--font-Inter);
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;


}


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



ul.dropdown li:hover a {
  color: #4E9A43;
}

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



.has-dropdown>a:hover {
  color: #4E9A43;
}

.title-menu {
  font-family: var(--font-Inter);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 55px;

}


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




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


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


.sous-lien-menu {
  position: relative;
  font-family: var(--font-Inter);
  font-weight: 300 !important;
  font-size: 20px !important;
  line-height: 1 !important;
  color: #FFFFFF;

  display: flex !important;
  align-items: center;
  gap: 15px;
  margin-left: 12px;
  white-space: nowrap;
  margin-top: 16px;
}

.sous-lien-menu::before {
  content: '•';
  position: relative;

}

/* Bloc offcanvas */

body.offcanvas-open {
  overflow: hidden;
}

.offcanvas-custom {
  position: fixed;
  top: 0;
  right: -460px;
  width: 355px;
  height: max-content;
  transition: right .4s ease;
  z-index: 1060;

  background: url('../images/menu.jpg')no-repeat center / cover;

}

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

/* Backdrop flou */
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #10101060;
  backdrop-filter: blur(1px);
  opacity: 0;
  transition: opacity .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: 5px;
  right: 10px;
}

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

button.close svg path {
  fill: #FFFFFF;
}


.offcanvas-body {
  height: max-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 45px 62px;
  overflow: hidden;
}
.lien-footer a.empty-hover:hover {
  margin-left: -17px;
  
}
.lien-footer a.empty-hover:hover::before {
  opacity:0;
  
}
.input-wrapper {
  opacity: 1!important;
}
.step-wizard .checkbox label, .step-wizard .checkbox + div {
  color: #fff!important;
}