/********** 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;
}

/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100%;
}

.testimonial-carousel .owl-nav {
    margin: 30px auto 0px;
    display: flex;
    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: #d87300;
    border: 2px solid #3f5b8f;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #f20706;
    background: #fff;
}



/*** client ***/


.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;
}
.client-carousel .owl-nav .owl-prev, .client-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 #ff0000;
    font-size: 18px;
    transition: .5s;
}

.client-carousel .owl-nav .owl-prev:hover,
.client-carousel .owl-nav .owl-next:hover {
    color: #f20706;
    background: #ffffff;
}

/*** 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;
}

.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);
}