/* Home */
.entete {
  padding: 0;
}
.enteteImg {
  position: relative;
  height: 40vh;
  width: 100%;
  overflow: hidden;
  /* display: flex;
  justify-content: flex-start;
  align-items: center; */
}

.enteteImg img {
  opacity: 20%;
  filter: contrast(300%);
  filter: sepia(90%);
  height: max-content;
  box-sizing: unset;
}
.enteteImg .texteAccueil {
  position: absolute;
  top: 40%;
  left: 1rem;
}
#h1Accueil {
  font-size: 3rem;
  font-family: "Lato-black", Arial, Helvetica, sans-serif;
  margin-right: 3rem;
  margin-left: 1rem;
  color: var(--color-six);
}
h2 {
  margin-right: 3rem;
  margin-left: 1rem;
}

/* typing h2*/

.typing span {
  position: relative;
  font-size: 1.3rem;
  color: var(--color-two-dark);
}
.typing span::before {
  content: "";
  right: -8px;
  top: 50%;
  position: absolute;
  height: 30px;
  width: 2px;
  background-color: var(--color-two-dark);
  transform: translateY(-45%);
  animation: blink 0.7s infinite;
}

.typing span.stop-blinking::before {
  animation: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.enteteImg .fleche {
  display: none;
}

/*descriptif*/

.descriptif .paragraphe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}
.descriptif .paragraphe .image {
  max-width: 60%;
}
.descriptif .deuxieme {
  flex-wrap: wrap-reverse;
}

.descriptif .atouts {
  margin-top: 3rem;
}
/* *********************** 
   RESPONSIVE DESKTOP
   ************************ */

@media screen and (min-width: 576px) {
  .enteteImg {
    padding-bottom: 0;
    height: 80vh;

  }
  .enteteImg .texteAccueil {
    width: 30rem;
    left: 50%;
  }
  .enteteImg .fleche {
    position: absolute;
    display: block;
    text-align: center;
    bottom: 1rem;
    left: 50%;
  }
  .enteteImg .fleche i {
    font-size: 4rem;
  }

  /* descriptif*/
  #descriptif {
    padding-top: 5.5rem;
  }
  .descriptif .paragraphe p {
    width: 60%;
  }

  .descriptif .paragraphe {
    /* width: 35%; */
    /* max-width: 20rem; */
    justify-content: space-between;

  }
  .descriptif .paragraphe .image {
    width: 35%;
    max-width: 15rem;
    margin-left: 6rem;
    margin-right: 6rem;
  }

  /*fin responsive*/
}
