* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", system-ui;
}

a {
  text-decoration: none;
}

nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: max-content;
  padding: 10px 100px 10px 100px;
  background-color: white;
}

.seconde_nav {
  position: absolute;
  z-index: 25;
  display: none;
}

.logo {
  width: 120px;
  height: auto;
}

.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
}

.navbar li {
  display: inline;
}

.nav-link {
  display: block;
  color: #484747;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  position: relative;
}

.logo_menuburger {
  position: absolute;
  z-index: 30;
  display: flex;
  align-items: center;
  width: 100%;
  top: 0;
}

.menu_hamberger {
  width: 40px;
  height: 30px;
  display: none;
  position: absolute;
  right: 0;
}

.nav-link:hover,
.nav-link.active {
  text-decoration: none;
}

.nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #e8ceb0;
  transition: width 0.3s;
  position: absolute;
  left: 10%;
  bottom: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

@media (max-width: 1150px) {
  nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo {
    margin-left: 30px;
  }

  .menu_hamberger {
    margin-right: 30px;
  }
}

@media (max-width: 900px) {
  nav {
    padding-left: 0px;
    padding-right: 0px;
  }

  #premiere_nav {
    display: none;
  }

  .seconde_nav {
    display: flex;
    position: absolute;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border-top: 5px solid #e8ceb0;
    border-bottom: 5px solid #e8ceb0;
    backdrop-filter: blur(5px);
    padding: 70px 0px 70px 0px;
    top: 0;
    margin-top: 80px;
    margin-left: -100%;
    transition: all 0.5s ease;
  }

  .seconde_nav.mobile-menu {
    margin-left: 0;
  }

  .cont_carre_et_lien {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
  }

  .pointcarre {
    width: 8px;
    height: 8px;
    background-color: #e8ceb0;
  }

  li {
    list-style: none;
  }

  .lien_second_nav {
    text-decoration: none;
    color: #484747;
    font-size: 15px;
  }

  .navbar {
    flex-direction: column;
    position: absolute;
    width: 100%;
    top: 0;
  }

  .menu_hamberger {
    display: block;
    z-index: 20;
  }
}

/* --------------------Slider---------------------- */

.slider {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

@media screen and (max-width: 800px) {
  .slider {
    height: 250px;
  }

  .slide {
    height: 250px;
  }
}

@media screen and (max-width: 500px) {
  .slider {
    height: 180px;
  }

  .slide {
    height: 180px;
  }
}

.slide:nth-child(1) {
  z-index: 1;
}

.overlay {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  width: 100%;
  height: 100%;
  align-items: center;
}

.cont_infos_slider {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cont_infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

h1 {
  font-size: 3em;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  text-align: center;
}

h3 {
  text-align: center;
}

.soulignement-titre {
  height: 3px;
  width: 100px;
  background-color: #e8ceb0;
}

@media (max-width: 800px) {
  h1 {
    font-size: 2em;
  }

  h3 {
    font-size: 1em;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.5em;
  }
}

/* --------------------------------------------- */

.chaque_section {
  padding-bottom: 10%;
}

.contenue {
  padding-left: 10%;
  padding-right: 10%;
}

.cont_titre_question {
  margin-top: 100px;
  margin-bottom: 50px;
}

.cont-detail-service p {
  text-align: justify;
}

@media (max-width: 900px) {
  h2 {
    text-align: center;
  }
}

@media (max-width: 800px) {
  .cont_titre_question {
    margin-top: 50px;
  }
}

.cont_question_point {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.point_question {
  height: 10px;
  width: 10px;
  background-color: #e8ceb0;
}

h2 {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 650;
  font-size: 30px;
  text-align: center;
  color: #cbb499;
}

@media (max-width: 600px) {
  h2 {
    font-size: 25px;
  }
}

@media (max-width: 400px) {
  .cont_question_point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
}

/* ------------section service--------------- */
/* ------cont autre------ */
.cont-autres {
  padding-top: 150px;
}

.cont-detail-service-et-autres {
  display: flex;
  gap: 100px;
  justify-content: center;
}

.lien-services {
  display: flex;
  align-items: center;
  gap: 10px;
  height: max-content;
  width: max-content;
}

.point-service {
  width: 10px;
  height: 10px;
  background-color: #e8ceb0;
  margin-top: -11px;
}

.nom-lien-services {
  color: #484747;
  margin-bottom: 15px;
}

.cont-besoin-detail {
  height: 300px;
  width: 210px;
  background-image: url(/images/image\ prendre\ contact.webp);
  margin-top: 50px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding-bottom: 30px;
  margin-bottom: 50px;
}

.besoin {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

#texte-telecharger-catalogue {
  margin-bottom: 20px;
}

.prendre-contact {
  color: #484747;
  height: 30px;
  width: 130px;
  background-color: #ffffff;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.lien-telechargement {
  height: 50px;
  width: 210px;
  background-color: #e8ceb0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  margin-bottom: 20px;
}

.texte-telecharger {
  color: #ffffff;
  font-size: 13px;
}

#second-lien-telecharger {
  background-color: #484747;
}
/* ---------cont detail services---------- */

.cont-detail-service {
  display: flex;
  flex-direction: column;
}

.titre-du-service {
  text-align: center;
}

.image-du-service {
  height: 500px;
  width: 700px;
  background-image: url(/images/assistance\ complete.webp);
  margin: 50px auto 0 auto;
  background-size: cover;
  background-position: center;
  margin-bottom: 50px;
}

#service-web_market {
  background-image: url(/images/servicewebm.webp);
}

#service-conciergerie {
  background-image: url(/images/service\ conciergerie.jpg);
}

#servive-design_graph {
  background-image: url(/images/service\ graphisme.webp);
  background-position: bottom;
}

.couleur-forfait {
  color: #fa8500;
  font-size: 20px;
}

.bulet_point {
  font-size: 50px;
}

.ligne_bulet {
  line-height: 1;
  padding-left: 30px;
}

.detail-du-service {
  margin-bottom: 30px;
}

.titre-detail-service {
  font-family: "Open Sans Condensed";
  font-weight: 600;
  line-height: 1.5;
  font-size: 20px;
}

.cont-autre-tablette {
  display: none;
}

.separateur-forfait {
  width: 100%;
  height: 2px;
  background-color: #48474744;
}

.lien-service-tablette {
  width: 100%;
  height: 50px;
  display: flex;
  background-color: #e8ceb036;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  margin-bottom: 20px;
}

#service-tablette {
  margin-top: 10px;
}

#telecharger-tablete {
  background-color: #e8ceb0;
}

#telecharger-tablete-2 {
  background-color: #484747;
}

.conclu-service {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
}

@media (max-width: 1350px) {
  .cont-detail-service-et-autres {
    gap: 100px;
  }
}

@media (max-width: 1250px) {
  .image-du-service {
    height: 400px;
    width: 600px;
    margin: 50px auto 0 auto;
    margin-bottom: 50px;
  }
}

@media (max-width: 1100px) {
  .image-du-service {
    height: 300px;
    width: 500px;
    margin: 50px auto 0 auto;
    margin-bottom: 30px;
  }

  .retour-detail-service {
    display: none;
  }
}

@media (max-width: 1000px) {
  .cont-detail-service-et-autres {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .cont-autres {
    display: none;
  }

  .cont-autre-tablette {
    display: block;
  }

  .cont-detail-service-et-autres {
    flex-direction: column;
  }

  .image-du-service {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .image-du-service {
    margin-top: 0;
  }

  .titre-du-service {
    margin-bottom: 50px;
  }
}

@media (max-width: 500px) {
  .detail-du-service {
    font-size: 15px;
  }
}

/* -----------------Footer--------------------- */

.cont-chaque-statistique {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pourcentage {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 800;
  font-size: 60px;
  color: #e8ceb0;
}

.barre-separatrice {
  height: 50px;
  width: 3px;
  background-color: #484747;
}

.cont-statistiques {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  justify-content: center;
  width: 100%;
}

.libelet {
  font-size: 15px;
}

@media (max-width: 1270px) {
  .pourcentage {
    font-size: 40px;
  }

  .barre-separatrice {
    height: 30px;
    width: 3px;
    background-color: #484747;
  }

  .libelet {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .pourcentage {
    font-size: 30px;
  }

  .barre-separatrice {
    height: 30px;
    width: 3px;
    background-color: #484747;
  }

  .libelet {
    font-size: 12px;
  }
}

@media (max-width: 750px) {
  .cont-statistiques {
    display: grid;
    grid-template-columns: 200px 200px;
    justify-items: center;
  }

  .pourcentage {
    font-size: 50px;
  }
}

@media (max-width: 500px) {
  .cont-statistiques {
    display: flex;
    flex-direction: column;
  }

  .pourcentage {
    font-size: 50px;
  }
}

.cont-fond-img {
  min-height: 300px;
  width: 100%;
  background-image: url(/images/fond\ footer.webp);
  background-size: cover;
  background-position: center;
  padding: 50px 10%;
  position: relative;
}

.cont-fond-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(5px);
  background-color: #484747a8;
}

.cont-element-footer {
  position: relative;
  display: flex;
}

.cont-logo-lien {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 50%;
}

.logo-footer {
  width: 170px;
  height: auto;
}

.cont-lien-devis {
  width: max-content;
}

.lien-devis {
  width: 320px;
  height: 50px;
  background-color: #ffffff;
  color: #484747;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  gap: 10px;
}

.acroche-liens-rs {
  width: 50%;
}

#liens-petit-ecran {
  display: none;
}

.acroche {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: white;
  font-style: italic;
  text-align: center;
}

.cont-lien-rs {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.categorie {
  color: #e8ceb0;
  font-weight: 600;
  margin-bottom: 20px;
}

.chaque-lien {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
}

.ligne {
  width: 100%;
  height: 1px;
  background-color: #ffffff25;
  position: relative;
  margin: 30px 0;
}

.copyrigth {
  position: relative;
  font-size: 13px;
  color: #ffffff3f;
}

@media (max-width: 1200px) {
  .cont-fond-img {
    padding: 50px 3%;
  }
}

@media (max-width: 900px) {
  .logo-footer {
    width: 140px;
    height: auto;
  }

  .lien-devis {
    width: 260px;
    height: 50px;
    font-size: 13px;
  }
}

@media (max-width: 800px) {
  #liens-petit-ecran {
    display: flex;
    position: relative;
    justify-content: center;
    gap: 100px;
  }

  #liens-grand-ecran {
    display: none;
  }

  .cont-element-footer {
    flex-direction: column;
  }

  .cont-logo-lien {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }

  .retour-acroche {
    display: none;
  }

  .acroche-liens-rs {
    width: 100%;
  }
}

@media (max-width: 500px) {
  #liens-petit-ecran {
    gap: 50px;
  }

  .cont-logo-lien {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  #liens-petit-ecran {
    gap: 30px;
  }

  .acroche {
    font-size: 25px;
  }

  .chaque-lien {
    font-size: 12px;
  }
}
