.Horse_Riding-entete {
  background: rgb(255, 255, 255);
  width: 70vw;
  height: 50vh;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(0%);
  /* margin-top: -2px; */
  color: black;
  animation: apparition_monter 1s ease forwards 2s;
}

.Horse_Riding-section-information-general {
  height: 30vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
}

.Horse_Riding-info-general-titre {
  font-size: 3vw;
  text-align: center;
  border-bottom: 1px solid black;
  width: 36%;
  margin: 0 auto;
}

.Horse_Riding-info-general-text {
  font-size: 1.75vw;
  text-align: center;
  margin-top: 1%;
  padding: 20px;
}

@keyframes apparition_monter {
  to {
    opacity: 1;
    transform: translateY(-25vh);
  }
}

@media screen and (max-width: 1400px) {
	.Horse_Riding-entete{
		height: 30vh;
	}
	
	.Horse_Riding-info-general-text {
		font-size: 2.5vw;
	}
	
	.Horse_Riding-section-information-general {
		height: 10vh;
	}
}

@media screen and (orientation: landscape) and (max-width: 1400px) {
	
	.Horse_Riding-entete{
		height: 40vh;
	}
	
	.Horse_Riding-section-information-general {
		height: 20vh;
	}
	
	.Horse_Riding-info-general-text {
		font-size: 2vw;
	}
}

@media screen and (max-width: 768px) {
.Horse_Riding-entete {
width: 90vw;
height: 30vh;
font-size: 4vw;
margin-left: 0vw;
transform: translateY(20vh);
}

@keyframes apparition_monter {
  to {
    opacity: 1;
    transform: translateY(0vh);
  }
}

.Horse_Riding-section-information-general {
height: auto;
width: 100vw;
padding: 5vw;
}

.Horse_Riding-info-general-titre {
font-size: 5vw;
margin-bottom: 10px;
border-bottom: 1px solid black;
width: 46%;
margin: 0 auto;
}

.Horse_Riding-info-general-text {
font-size: 3vw;
}
}