/* @import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css'); */

#testimonials-section {
    /* height: 110vh; */
    /* position: relative; */
    /* padding-top: 1.25rem; */
    padding-block:0 0px;

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}


.testimonials-swiper {
    width: 50%;
    max-width: 800px;
    height: fit-content;
    height: auto;
    /* padding-block: 150px 0px; */
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;

}

.testimonials-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    
}


.testimonials-swiper .swiper-slide {
    

    width: 90%;
    height: fit-content;
    aspect-ratio: 16/9;

/* 4:5 1200x1500 */
  
    display: flex;
    justify-content: center;
}

.testimonials-swiper .swiper-slide>img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    /* border: 4px solid var(--primary-color); */
    object-fit: cover;
    object-position: 0% 20%;
}

.testimonials-swiper .swiper-slide {
    /* filter: blur(5px); */
    transition: box-shadow 0.3s ease, opacity 0.3s ease;

}

.testimonials-swiper .swiper-slide-active {
    filter: blur(0);
    opacity: 1;

}

/* navigation arrow */
.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
    content: "";
}


.testimonials-swiper .swiper-button-next {
    /* border: solid black; */
    right: -30px;
    top: 50%;
}

.testimonials-swiper .swiper-button-next img,.testimonials-swiper .swiper-button-prev img {
    width: 50px;
    max-width: 50px;
}

.testimonials-swiper .swiper-button-prev {

    left: -30px;
    top: 50%;

    /*horizontal flip */
    transform: scaleX(-1);
}



.testimonials-swiper .swiper-slide-active .swiper-button-next,
.testimonials-swiper .swiper-slide-active .swiper-button-prev {
    display: block;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    display: none;
}





/* pagination */
.testimonials-swiper-pagination{
    margin-top: 30px;
    padding-bottom: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .testimonials-swiper-pagination .swiper-pagination-bullet {
      width: 15px;
      height: 15px;
        
      border-radius: 15px;
      opacity: 1;
      background: white;;
      font-family: Boogaloo;
  
      display: inline-flex;
      justify-content: center;
      align-items: center;
      margin: 0 5px !important
    }
  
    .testimonials-swiper-pagination .swiper-pagination-bullet-active {
      outline: solid white;;
      border: 1px solid white;
      background: black;
      position: relative;
      z-index: 2324;
    }

/* for smaller devices */
@media screen and (max-width: 768px) {
    #testimonials-section {
        height: fit-content;
        height: auto;
        /* padding-block: 0px 200px;
        padding-block: 0px 25px; */

        

    }
    /* .testimonials-swiper {
        width: 50%;
        max-width: 800px;
        height: fit-content;
        display: flex;
        flex-direction: column;
        position: relative;
        justify-content: center;
        align-items: center;
    
    } */

    .testimonials-swiper {
        width: 60%;
        height: fit-content;
        height: auto;
        /* padding-block: 100px 20px ; */
    }

    .testimonials-swiper .swiper-slide {
        width: 300px;
    }

    .testimonials-swiper .swiper-button-next {

        right: -25px;
        top: 52%;
    }

    .testimonials-swiper .swiper-button-next img {
        width: 39px;
    }

    .testimonials-swiper .swiper-button-prev {
        left: -25px;
        top: 52%;
    }

    .testimonials-swiper .swiper-button-prev img {
        width: 39px;
    }
 

    /* pagination */
.testimonials-swiper-pagination{
    margin-top: 25px;

    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;
  }
  .testimonials-swiper-pagination::-webkit-scrollbar {
    display: none;
  }
  .testimonials-swiper-pagination .swiper-pagination-bullet {
    display: inline-block;  
    
    /* width: 10px;
      height: 10px;
      border: 10px; */
      /* font-size: 1rem;
      line-height: 20px; */
    }
  
    .testimonials-swiper-pagination .swiper-pagination-bullet-active {
      border:1px solid rgb(255, 255, 255);
    }
 
}

@media screen and (max-width: 500px) {
    
    .testimonials-swiper {
        width: 90%;
        height: fit-content;
        height: auto;
        /* padding-block: 100px 20px ; */
    }
    .testimonials-swiper-pagination{
        margin-top: 25px;
    
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
      }

}
