/*** Video saxobeat ***/
.testimonial-carousel-video .owl-item .testimonial-item-video img {
    width: 100%;
    height:  600px;
}

.testimonial-carousel-video .owl-item .testimonial-item-video,
.testimonial-carousel-video .owl-item .testimonial-item-video * {
    transition: all ease-in-out .5s;
    animation: customAni 4s ease 4s infinite normal none;
}

.testimonial-carousel-video .owl-item.center .testimonial-item-video {
    background: #11131ade !important;
}

.testimonial-carousel-video .owl-item.center .testimonial-item-video * {
    color: #FFFFFF !important;
}

.testimonial-carousel-video .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel-video .owl-nav .owl-prev,
.testimonial-carousel-video .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(175, 32, 218);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel-video .owl-nav .owl-prev:hover,
.testimonial-carousel-video .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: white;
    background: transparent;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display:flex;
  }


  @media only screen and (min-width:320px ) and (max-width:400px) {


  }

/* Copy this code after the above code */
@keyframes customAni {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0.6;
    }

    100% {
      opacity: 1;

    }
  }
