.carousel-container {
    width: 95%;
    overflow: hidden;
    position: relative;
    margin-top: -5%;
    margin-bottom: -20%;
}

  .carousel-container h2{
    margin-bottom: -12vw;
    font-size: 7vw;
    text-align: center;
  }
  
  .carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin: auto;
    width: 85%;
  }
  
  .carousel-item {
    /* Cambia el calc(100% / numero de divs mostrados) para que veas cuantos se pueden ver */
    display: flex;
    flex: 0 0 calc(100% / 2);
    height: 70vw;
    margin-right: 2vw;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
   
  }

  .carousel-item img{
    width: 25vw;
    border-radius: 50%;    
    box-shadow: 0 2vw 3vw rgba(0, 0, 0, 0.41);
    margin-bottom: 0vw;
  }
  

  .carousel-item p{
   font-size: 4vw;
   text-align: center;
   font-family: 'Old Standard TT', serif;

  }

  .carousel-prev,
  .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5vw;
    font-weight: 900;
    text-decoration: none;
    color: #000;
    background-color: #ffffff80;
    padding: 5px 10px;
    cursor: pointer;
  }
  
  .carousel-prev {
    left: -1vw;
  }
  
  .carousel-next {
    right: -1vw;
  }

@media (min-width:1100px) {
  .carousel-container {
      margin-top: -10px;
  }
  
  .carousel-container h2{
    margin-bottom: -60px;
    font-size: 35px;
  }
    
  .carousel-item {
    height: 350px;
    margin-right: 10px;
    
  }
  
  .carousel-item img{
    width: 125px;   
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.41);
  }
  
  .carousel-item p{
    font-size: 20px;
  }

  .carousel-prev,
  .carousel-next {
    font-size: 25px;
    padding: 5px 10px;
    cursor: pointer;
  }
    
  .carousel-prev {
    left: -5px;
  }

  .carousel-next {
    right: -5px;
  }
}