   
.carousel {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 50px; */
    padding: 30px;
     /* background-color: #D2AA66;  */
  }
  
  .carousel .carousel__item,
  .carousel__item--hidden {
    display: none;
  }
  
  .carousel .carousel__item img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease-in-out 1.2s;
  
  }
  
  .carousel .carousel__item--visible {
    display: block;
    animation: fadeVisibility 3s;
  }
  
  .carousel .carousel__actions {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
  }
  
  .carousel .carousel__actions button {
    border-radius: 50px;
    border: 0;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border: 1.2px solid #003263;
    background: none;
    text-align: center;
  }
  
  .carousel .carousel__actions button#carousel__button--prev {
    margin-left: 20px;
    background: #ffffff;
    text-align: center;
  }
  
  .carousel .carousel__actions button#carousel__button--next {
    margin-right: 20px;
    background: #ffffff;
    text-align: center;
  }

  .chico{

    display: none;
  }
  
  @keyframes fadeVisibility {
    0% {
      opacity: 80%;
    }
    100% {
      opacity: 100%;
      transform: opacity linear;
    }
  }

  @media screen and (max-width: 880px){

    .grande{

        display: none;
    }

    .chico{

        display: block;
    }
  }