.horses-carousel h2 {
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.wrapper-horse-carousel {
  max-width: 95%;
  margin: 0 auto;
}

.wrapper-horse-carousel .horses-carousel {
  position: relative;
  width: 100%;
  padding: 50px 0;
}
.horses-carousel .carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  margin: 0 auto;
  height: 33vh;
  min-height: 400px;
  max-height: 500px;
  max-width: 300px;
}

.horses-carousel .carousel-item img {
  width: 100%;
  height: auto;
  min-height: 80%;
  object-fit: cover;
  border-radius: 200px 200px 0 0;
}

.horses-carousel .description {
  height: 13%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  text-align: center;
  background-color: var(--secondary-color);
  color: var(--text-color);
}
@media (max-width: 700px) {
  .horses-carousel .carousel-item {
    height: 35vh;
    min-height: 300px;
    max-width: 250px;
  }
}
