@charset "UTF-8";
body {
  background-color: var(--clr-claire);
  overflow-x: hidden;
}
body main {
  height: 55vh;
  /* Ajout de délais */
  /* Animation pour apparaître puis disparaître */
}
body main h1 {
  text-align: center;
  font-size: 5rem;
  padding: 20px;
}
body main .logo-portail-nature {
  height: 30vh;
  width: auto;
  position: absolute;
  top: 145;
  left: -780px;
  animation: apparitionLogo 1s ease-out 0.5s forwards;
}
@keyframes apparitionLogo {
  from {
    transform: translateX(0);
    opacity: 0;
  }
  to {
    transform: translateX(750px);
    opacity: 1;
  }
}
body main .conteneur-chemin {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.5s;
}
body main .chemin {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  background: transparent;
}
body main .segment {
  position: absolute;
  width: 100px;
  height: 45px;
  background: #BBA490;
  border-radius: 50px;
}
body main .conteneur-texte {
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  font-size: 20px;
}
body main .gauche, body main .droite {
  position: absolute;
  width: 35%;
}
body main .gauche {
  text-align: left;
  margin-left: 70px;
  left: 0;
}
body main .gauche .bulle {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: var(--clr-principale);
  top: 50%;
  left: -260px;
  z-index: -1;
}
body main .droite {
  text-align: right;
  margin-right: 70px;
  right: 0;
}
body main .droite .bulle {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: var(--clr-accent);
  top: 50%;
  right: -260px;
  z-index: -1;
}
body main .texte1 {
  position: absolute;
  text-align: left;
  top: 38vh;
  left: 0;
}
body main .texte2 {
  position: absolute;
  text-align: left;
  top: 35vh;
  right: 0;
}
body main .texte3 {
  position: absolute;
  text-align: left;
  top: 33vh;
  left: 0;
}
body main .texte4 {
  position: absolute;
  text-align: left;
  bottom: -45vh;
  right: 0;
}
body main .scroll {
  display: flex;
  margin-top: 250px;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
body main .scroll.hidden {
  display: none;
}
body main .souris {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}
body main .fleche-bas {
  rotate: 90deg;
  margin-top: -20px;
  font-size: 5rem;
  color: black;
  opacity: 0;
  animation: flechesAnim 2.5s infinite;
}
body main .fleche-bas:nth-child(2) {
  animation-delay: 0s;
}
body main .fleche-bas:nth-child(3) {
  animation-delay: 0.4s;
}
body main .fleche-bas:nth-child(4) {
  animation-delay: 0.8s;
}
@keyframes flechesAnim {
  0%, 60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
body main .slogan {
  width: 45%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body main .slogan .titre {
  display: flex;
  justify-content: right;
  align-items: center;
  width: 80%;
}
body main .slogan .titre h2 {
  font-size: 3.5rem;
  padding-left: 10px;
  padding-right: 10px;
}
body main .slogan .titre .plein {
  font-weight: 600;
}
body main .slogan .titre .vide {
  color: var(--clr-claire);
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
}
body main .slogan .titre img {
  width: 7%;
  height: auto;
}
body main .slogan .petit-souligne-container {
  width: 80%;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: right;
}
body main .slogan .petit-souligne-container .petit-souligne {
  letter-spacing: normal;
  text-align: right;
  transform: translateY(-50%);
  width: -moz-fit-content;
  width: fit-content;
}
body main .slogan .petit-souligne-container hr {
  height: 5px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: black;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0%, 100%);
  flex: 1;
}

@media screen and (max-width: 1200px) {
  body main .texte1 {
    margin-right: 100px;
  }
  body main .texte2 {
    margin-left: 100px;
  }
  body main .texte3 {
    margin-right: 100px;
  }
  body main .texte4 {
    margin-left: 100px;
  }
  body main .segment {
    width: 50px;
    height: 35px;
    border-radius: 35px;
  }
  body main .gauche .bulle, body main .droite .bulle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  body main h1 {
    font-size: 3.5rem;
  }
  body main .segment {
    width: 30px;
    height: 35px;
    border-radius: 30px;
  }
  body main .texte1 {
    margin-right: 150px;
    font-size: 14px;
  }
  body main .texte2 {
    margin-left: 150px;
    font-size: 14px;
  }
  body main .texte3 {
    margin-right: 150px;
    font-size: 14px;
  }
  body main .texte4 {
    margin-left: 150px;
    font-size: 14px;
  }
  body main .souris {
    width: 40px;
  }
  body main .fleche-bas {
    scale: 0.6;
    margin-top: -10;
    gap: -15px;
  }
  body main .fleche-bas:nth-child(2) {
    margin-top: -25px;
  }
  body main .fleche-bas:nth-child(3) {
    margin-top: -25px;
  }
}
@media screen and (max-width: 768px) {
  body main .logo-portail-nature {
    display: none;
  }
  body main .texte1 {
    margin-right: 170px;
    font-size: 11px;
  }
  body main .texte2 {
    margin-left: 170px;
    font-size: 11px;
  }
  body main .texte3 {
    margin-right: 170px;
    font-size: 11px;
  }
  body main .texte4 {
    margin-right: -30px;
    font-size: 11px;
  }
  body main .chemin {
    transform: translateX(0);
    left: 45%;
  }
}/*# sourceMappingURL=a-propos.css.map */