/********** Template CSS **********/
:root {
    --primary: #eb2126;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.owl-carousel {
    width: 101% !important;
}

/*** Testimonial ***/
.testimonial-carousel .owl-nav.disabled {
    display: none;
}

.testimonial-carousel .owl-dots.disabled {
    display: block !important;
}

.testimonial-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 50px;
    align-items: center;
    gap: 20px;
}


/* Default dot style */
.testimonial-carousel .owl-dots .owl-dot {
    display: inline-flex;
    position: relative;
    margin: 0 4px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #e21515;
    background-color: transparent;
    transition: background 0.8s ease;
    transform: rotate(45deg);
}

/* Active dot style */
.testimonial-carousel .owl-dots .owl-dot.active {
    border: 1px solid #e21515;
    box-shadow: inset 0 0 0 3px #000000;
    background-color: #e21515;
}


.testimonial-carousel .owl-item img {
    width: 100%;
}

.testimonial-carousel .owl-nav {
    margin: 30px auto 0px;
    display: block;
    justify-content: space-evenly;
    width: 180px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 67px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 26px;
    transition: .5s;
    margin-bottom: 14%;
    position: absolute;

}

.testimonial-carousel .owl-nav .owl-next {
    top: 0;
    right: 0;
}

.testimonial-carousel .owl-nav .owl-prev {
    top: 0;
    left: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #8ef7f3;
    background: #fff;
}



/*** client ***/

.client-carousel .owl-dots.disabled {
    display: none !important;
}

.client-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 20px;
    margin: 40px 0px 0;
    align-items: center;
}


/* Default dot style */
.client-carousel .owl-dots .owl-dot {
    display: inline-flex;
    position: relative;
    margin: 0 4px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #e21515;
    background-color: transparent;
    transition: background 0.8s ease;
    transform: rotate(45deg);
}

/* Active dot style */
.client-carousel .owl-dots .owl-dot.active {
    border: 1px solid #e21515;
    box-shadow: inset 0 0 0 3px #ffffff;
    background-color: #e21515;
}



.client-carousel .owl-item img {
    width: 100%;
    /* padding: 0% 2%; */
}

.client-carousel .owl-nav {
    display: flex !important;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    /* position: absolute; */
    left: -2%;
    right: -2%;
    top: 37%;
    display: none !important;
}

.client-carousel .owl-nav .owl-prev,
.client-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f5f5f5;
    font-size: 22px;
    transition: .5s;
    background: #007ee1;
    padding: 5px;
    border-radius: 50%;
    color: #fff;
}

.client-carousel .owl-nav .owl-prev:hover,
.client-carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #000000;
}

/*** clients2 ***/



.client2-carousel .owl-item img {
    width: 100%;
    /* padding: 0% 2%; */
}

.client2-carousel .owl-nav {
    display: flex !important;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.client2-carousel .owl-nav .owl-prev,
.client2-carousel .owl-nav .owl-next {
    /* margin-right: 15px; */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00246a;
    border: 2px solid #eb4438;
    font-size: 18px;
    transition: .5s;
    right: 10px;
}

.client2-carousel .owl-nav .owl-prev:hover,
.client2-carousel .owl-nav .owl-next:hover {
    color: #f20706;
    background: #ffffff;
}



/*** Footer ***/
.footer {
    color: #fff;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}