@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Freeman&family=Poetsen+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
}

.section1-dep {
  width: 100%;
  display: block;
  position: relative;
}

header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  margin: 0%;
  padding: 0%;
  font-family: "freeman", sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  /*font-family: "Freeman", sans-serif;
    font-weight: 400;*/
  z-index: 999;
}
body {
  margin: 0px;
  padding: 0%;
  text-decoration: none;
  list-style: none;
  background-image: url("Img/motif1.gif");
  backdrop-filter: opacity(10%);
  background-attachment: fixed;
}
.menu_sup {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100px;
  background-color: rgb(252, 252, 252);
  align-items: center;
  display: flex;
  /*align-self: center;*/
  justify-content: space-around;
  box-sizing: content-box;
  border-bottom: 3px solid rgb(21, 5, 76);
}
.menu_sup .items ul {
  display: flex;
  height: 20px;
}
.menu_sup .items ul li {
  margin: 0 25px;
}
.items {
  position: relative;
  display: flex;
  justify-content: center;
  margin-right: 50px;
}

.menu__item {
  display: block;
  margin: 10px 0;
  color: #113962;
  font-family: "Roboto", sans-serif;
  font-size: clamp(30px, 3vw - 1px, 50px);
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.25s;
  position: relative;
}
.menu_sup .menu_horiz li a {
  color: rgb(185, 156, 97);
  position: relative;
  text-decoration: none;
  padding-bottom: 2px;
}

.menu_sup .menu_horiz li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgb(14, 8, 75);
  bottom: 0;
  left: 0;
  transform-origin: center;
  transform: scaleX(1);
  transition: transform 0.2s ease-in-out;
}

.menu_sup .menu_horiz li a:hover::before {
  transform-origin: center;
  transform: scaleX(0);
}

.menu_sup .menu_horiz li.active a {
  color: rgb(14, 8, 75);
  box-sizing: content-box;
  /*border-bottom: 3px solid rgb(14, 8, 75);*/
}
.logo {
  position: relative;
  padding-left: 35px;
  height: 100px;
}
.logo img {
  height: 100px;
  width: auto;
}

.sec1-container {
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
  /* height: 500px; */
  width: 100%;
}

.sec1-wraper {
  padding-top:80px ;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  /* height: 500px; */
}

.h2-dep {
  margin: 0px;
  padding: 0 0 30px 0;
  font-size: clamp(16px, 5vw + 1rem, 60px);
  font-family: "Poppins", sans-serif;
  display: block;
  line-height: 1;
}

.h3-dep {
  padding-top: 50px;
  font-size: 24px;
  font-weight: 800;
  color: rgb(185, 156, 97);
}

.h2-container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.dep-box {
  position: relative;
  width: 100%;
  height: 60vh;
  max-height: fit-content;
  margin: auto;
}
.dep-container {
  position: relative;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: 50% 50%;
  transition: 0.35s;
}

.dep-wraper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: 50% 50%;
  background-size: cover;
}

.dep-box:hover .dep-wraper {
  background-color: rgba(0, 0, 0, 0.65);
}

figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 3em;
  width: 100%;
  height: 30%;
  overflow: hidden;
}

figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 100%;
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  content: "";
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

figcaption h2 {
  color: #ffffff;
  margin: 0 0 5px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s,
    -o-transform 0.35s, transform 0.35s;
  /* word-spacing: -0.15em; */
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  -webkit-transform: translate3d(30%, 0%, 0);
  transform: translate3d(30%, 0%, 0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.dep-box:hover h2 {
  opacity: 1;
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.dep-box:hover figcaption::before {
  background: rgba(255, 255, 255, 0);
  left: 30px;
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.dep-box:hover .dep-wraper::after {
  transform: scale(1);
}

.dep-box:hover .dep-container {
  background-position: 40% 50%;
}

.menu_hamburger {
  display: none;
  position: relative;
  width: 35px;
  right: 30px;
}
.menu_hamburger img {
  width: 100%;
}

@media screen and (max-width: 800px) {
  .items {
    display: none;
  }
  .menu_sup .menu_hamburger {
    display: flex;
    justify-content: center;
  }

  .menu_sup {
    justify-content: space-between;
  }

  .container {
    flex-direction: column;
    width: 100%;
  }
  .container2 {
    width: 100%;
    flex-direction: column;
  }
}

/* Debut loading page */
.preloader {
  width: 100%;
  height: 100vh;
  background-color: #f2f2f2;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  overflow: hidden;
  transition: all 0.5s linear;
}
.lds-dual-ring {
  color: #0a042e;
  margin-top: 50px;
}

.lds-dual-ring,
.lds-dual-ring:after {
  box-sizing: border-box;
}
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6.4px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* fin loading page */

.foot {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* height: 300px; */
  background-color: black;
  box-shadow: -1px -9px 28px -12px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px -9px 28px -12px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px -9px 28px -12px rgba(0, 0, 0, 0.75);
  flex-wrap: wrap;
}
/*fin departements*/
.footlogo {
  position: relative;
  width: 80%;
  display: flex;
  /* flex-wrap: nowrap; */
  margin-top: 30px;
  margin-bottom: 30px;
}
.footlogo img {
  width: 70px;
  height: auto;
}
.footslogan {
  width: 80%;
  position: relative;
  display: flex;
}
.h2_foot {
  font-size: clamp(24px, 4vw, 32px);
  color: #ffffff;
}
.foot * {
  color: #ffffff;
}
.foottel {
  display: flex;
  width: 80%;
  flex-direction: column;
}
.addr {
  display: flex;
  align-items: center;
  flex: 0 0 33.3333333%;
  margin: 10px 10px 30px 0;
}
.addr p {
  font-size: clamp(12px, 2vw, 17px);
}
.tel {
  flex: 0 0 33.3333333%;
  margin: 10px 10px 10px 0;
  font-size: clamp(12px, 2vw, 17px);
}
.email {
  display: flex;
  align-items: center;
  flex: 0 0 33.3333333%;
  margin: 10px 10px 10px 0;
  font-size: clamp(12px, 2vw, 17px);
}



