.big-animated-btn .button-wrapper {
    display: inline-flex;
    align-items: center;
}

.big-animated-btn .contact-button {
    display: flex;
    align-items: center;
    background-color: rgba(30, 30, 30, 0.9);
    color: #fff;
    padding: 24px 150px 24px 20px;
    border-radius: 12px 0 0 12px;
    /* Rounded only on the left */
    cursor: pointer;
    border: none;
    transition: box-shadow 150ms cubic-bezier(0.61, 1, 0.88, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 3px 7px 1px rgba(50, 50, 50, 0.25);
}

.big-animated-btn .contact-button:hover {
    color: rgb(30, 30, 30);
    background: #fff;
}

.big-animated-btn span {
    color: rgba(255, 255, 255, 0.6);
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 23.41px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

}

.big-animated-btn .contact-button:hover span {
    color: rgb(30, 30, 30);
}

.big-animated-btn h5 {
    color: #fff;
    margin-bottom: 0;
}

.big-animated-btn .contact-button:hover h5 {
    color: rgb(30, 30, 30);
}



.big-animated-btn .arrow-button {
    background-color: rgba(30, 30, 30, 0.9);
    display: flex;
    align-items: center;
    padding: 29.5px 35px;
    border: none;
    border-left: 1px solid #ffffff;
    /* Divider between button text and arrow */
    border-radius: 0 12px 12px 0;
    /* Rounded only on the right */
    cursor: pointer;
    transition: box-shadow 150ms cubic-bezier(0.61, 1, 0.88, 1);
}

.big-animated-btn .arrow-icon {
    width: 14px;
    height: 14px;
}

.big-animated-btn .button-wrapper:hover .arrowPacman-clip {
    animation: pacman 0.8s cubic-bezier(0.55, 0, 0.21, 1) infinite;
}

.big-animated-btn .arrowPacman-clip {
    display: flex;
    transform: translateX(-10px);
    overflow: hidden;
    position: relative;
    left: 10px;
}

@keyframes pacman {
    0% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}


@media only screen and (min-width: 768px) and (max-width:1200px) {
    .big-animated-btn .contact-button{
        padding: 20px 20px 20px 20px;
    }
    .big-animated-btn span{
        font-size: 10px;
        line-height: 24.41px;
    }
    .big-animated-btn .arrow-button{
        padding: 22.5px 35px;
    }
}

@media only screen and (max-width: 767px) {
    
    .big-animated-btn span {
        font-size: 10px;
        line-height: 25.41px;
    }

    .big-animated-btn .contact-button {
        padding: 15px 40px 15px 20px;
    }
    .big-animated-btn .arrow-button{
        padding: 17.5px 35px !important;
    }
}




/* Swiper codes */


/* Image slider container */
.testimonial-slider .testimonial-image-slider {
    position: relative;
    height: 300px; /* Adjust as needed */
    overflow: hidden;
  }
  
  .testimonial-slider .testimonial-image-slider .swiper-slide {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .testimonial-slider .testimonial-image-slider .swiper-slide-active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
  }
  
  .testimonial-slider .testimonial-image-slider .swiper-slide-prev {
    opacity: 0;
    transform: translateY(50px); /* Move down */
  }

 
  
 
  
  /* Content slider styles */
  .testimonial-slider .testimonial-content-slider h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .testimonial-slider .testimonial-content-slider p {
    font-size: 1rem;
  }
  
  .testimonial-slider .swiper-button-next,
  .testimonial-slider .swiper-button-prev {
    color: #000;
  }
  

  .testimonial-slider .swiper-pagination-bullet{
    height: 3px;
    border-radius: 0;
    width: 28px;
    background: #fff;
  }
  

  .testimonial-slider .swiper-horizontal>.swiper-pagination-bullets,.testimonial-slider .swiper-pagination-bullets.swiper-pagination-horizontal,.testimonial-slider .swiper-pagination-custom, .testimonial-slider .swiper-pagination-fraction{
    bottom: -5px;
  }


  
  
  
  
  
 