:root {

    --primary-color: #166BA4;

    --secondary-color: #8EC641;

    --common-color: #000000;

    --text-color: #fff;

}





/*  */



.product-wrapper {

    position: relative;

}



.product-wrapper:before {

    content: "";

    background: url(../images/product-bg.png);

    background-repeat: no-repeat;

    background-size: 50%;

    background-position: right;

    position: absolute;

    width: 73%;

    height: 100%;

    right: 0;

    bottom: -219px;

    z-index: -1;

}



.product-wrapper .card-tabs-box {

    margin-top: 40px;

    background-color: unset;

}



.product-wrapper .card-tabs-box .nav {

    justify-content: center;

    gap: 20px;

}



.product-wrapper .card-tabs-box .nav button {

    border: 1px solid #ddd;

    padding: 10px 20px;

    color: var(--common-color);

    font-family: "Poppins", sans-serif;

    font-weight: 400;

    font-size: 20px;

    display: flex;

    align-items: center;

    gap: 20px;

    border-radius: 50px;

    line-height: 26px;

    letter-spacing: 0.46px;

}



.product-wrapper .card-tabs-box .nav button.active {

    border: 1px solid var(--secondary-color);

    padding: 10px 20px;

    color: var(--text-color);

    font-family: "Poppins", sans-serif;

    font-weight: 400;

    font-size: 20px;

    display: flex;

    gap: 20px;

    border-radius: 50px;

    line-height: 26px;

    letter-spacing: 0.46px;

    background: var(--primary-color);

}



.product-wrapper .card-tabs-box .nav button.active img {

    filter: brightness(0) invert(1);

}

/* category loader */
.category-loader {
    border: 16px solid #8ec641;
    border-top: 16px solid #166ba4;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
    position: relative;
    left: 48%;
    /* Center horizontally */
    top: 50%;
    /* Center vertically */
    bottom: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.product-slider-box {

    background: var(--text-color);

    border: 1px solid #0000001A;

    box-shadow: 0px 4px 20px 0px #0000001F;

    padding: 30px;

    border-radius: 20px;

}



.slider-img img {

    margin: auto;

}



.slider-text-box h4 {

    text-align: center;

    color: var(--primary-color);

    margin-top: 20px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

    min-height: 60px;

}



.slider-text-box p {

    text-align: center;

    margin-top: 20px;

    margin-bottom: 30px;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;

}



.slider-btn a img {

    display: inline-block;

}



.slider-btn a {

    margin: auto;

    text-align: center;

    display: inline-block;

    background: var(--secondary-color);

    transition: 0.4s;



}

.slider-btn a:hover {

    background: var(--primary-color);



}



.slider-btn {

    text-align: center;

    margin-bottom: -50px;

}



.product-wrapper .slick-track {

    padding: 40px 0;

}



.product-wrapper .slick-slide {

    margin-right: 15px;

    margin-left: 15px;

}



.client-text-box p {

    margin-top: 20px;

}



/*  */



.video-img-box {

    position: relative;

}



.play-icon {

    position: absolute;

    top: 50%;

    left: 50%;

    right: 0;

    bottom: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    transform: translate(-50%, -50%);

    cursor: pointer;

}



.video-img-box .video-thumbnail {

    width: 100%;
    max-height: 400px;
    min-height: 400px;
}

.video-box video {
    width: 100%;
    height: 400px;
    object-fit: cover;
}



.video-text-box {

    display: flex;

    align-items: center;

    gap: 70px;

    position: absolute;

    left: 0;

    right: 0;

    width: 100%;

    bottom: 0;

    padding: 0 30px;

}



.video-text-box p {

    color: var(--text-color);

    font-size: 26px;

}



.video-text-box span {

    display: inline-block;

    color: var(--text-color);

}



.video-slider-box {

    position: relative;

}





.client-wrapper .slick-dots {

    display: flex;

    align-items: center;

    gap: 10px;

    justify-content: center;

    margin-top: 20px;

}



.client-wrapper .slick-dots li.slick-active {

    background-color: var(--primary-color) !important;

    opacity: 1;

}



.client-wrapper .slick-dots li {

    text-indent: -9999px;

    width: 15px;

    height: 15px;

    background-color: var(--primary-color);

    opacity: 0.5;

    border-radius: 50%;

}



.client-name-box span {

    font-size: 20px;

    font-style: italic;

}



.client-left-box {

    display: flex;

    align-items: center;

}



.client-name-box {

    margin-top: 30px;

}



.client-content-box {

    padding-left: 60px;

}



.tabs-center-text h6 {

    font-size: 26px;

    color: var(--common-color);

    font-family: "Roboto", sans-serif;

    font-weight: 500;

    text-align: center;

    margin-top: 40px;

}



@media (max-width: 1655px) {}



@media (max-width: 1365px) {

    .client-content-box {

        padding-left: 20px;

    }

}



@media (max-width: 1199px) {

    .product-wrapper .card-tabs-box .nav button.active {

        font-size: 18px;

    }



    .product-wrapper .card-tabs-box .nav button {

        font-size: 18px;

    }



    .tabs-center-text h6 {

        font-size: 18px;

    }

    .category-loader {
        left: 46%;
    }

}



@media (max-width: 991px) {

    .product-wrapper .card-tabs-box .nav button.active {

        font-size: 16px;

    }



    .product-wrapper .card-tabs-box .nav button {

        font-size: 16px;

    }



    .product-wrapper .slick-track {

        padding: 20px 0;

    }



    .product-slider-box {

        padding: 20px;

    }



    .slider-btn {

        margin-bottom: -40px;

    }



    .slider-text-box p {

        margin-top: 10px;

        margin-bottom: 20px
    }

    .video-text-box p {

        font-size: 20px;

    }

}



@media (max-width: 767px) {

    .client-content-box {

        padding-left: 0;

    }
    .client-text-box p{
        margin-top: 10px;
    }
    .client-content-box{
        margin-top: 10px;
    }
    .client-name-box span{
        font-size: 16px;
    }

    .product-wrapper .card-tabs-box {

        margin-top: 20px;

    }

    .video-text-box p {

        font-size: 16px;

    }

    .video-text-box {

        gap: 30px;

    }

    .client-name-box {

        margin-top: 20px;

    }

    .category-loader {
        left: 45%;
    }

    .category-loader {
        width: 55px;
        height: 55px;
    }


}



@media (max-width: 575px) {

    .tabs-center-text h6 {

        font-size: 16px;

        line-height: 24px;

    }

}



@media (max-width: 480px) {
    .category-loader {
        left: 42%;
    }
}