﻿/*--------------- Product Categories home page Styles  -------------*/
.categories-container {
    width: 80%;
    margin: auto;
}

.product-category-card {
    background: #fff;
    border-radius: 2px;
    padding-bottom: 10px;
    margin: 2rem;
    position: relative;
    width: 400px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: inherit;
}

    .product-category-card:hover {
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.3) !important;
        text-decoration: none;
        color: inherit;
    }

    .product-category-card img {
        height: 185px;
    }

.category-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 0px 8px;
}

.category-description {
    height: fit-content;
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    z-index: 1;
}

.category-img-bg {
    background-size: cover;
    text-align: center;
    width: 100%;
    background-image: url('/-/media/Feature/Product/images/bg-blue.png');
    /*background-position: bottom left; */
    background-repeat: no-repeat;
    background-position: 0 -46px;
}


@media (max-width: 1536px) {
    .category-img-bg {
        background-position: 0 -70px;
    }
}

@media (max-width: 1500px) {
    .product-category-card {
        margin: 1.5rem;
    }

    .category-title {
        font-size: 17px;
    }

    .category-description {
        font-size: 14px;
    }
}

@media (max-width: 1366px) {
    .category-img-bg {
        background-position: 0 -70px;
    }
}

@media (max-width: 1199.98px) {
    .category-img-bg {
        background-position: 0 -80px;
    }
}

@media (max-width: 1024px) {
    .categories-container {
        width: 100%;
        margin: auto;
    }


    .category-title {
        font-size: 16px;
    }

    .category-description {
        font-size: small;
    }

    .category-img-bg {
        background-position: 0 -88px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    .category-img-bg {
        background-position: 0 -115px;
    }
}

@media (max-width: 767.8px) {
    .categories-container {
        width: 100%;
        margin: auto;
        padding-top: 1rem;
    }

    .product-category-card {
        /* height: 250px; */
        margin: 0.5rem;
        width: 300px;
    }

        .product-category-card img {
            max-height: 100px;
            width:auto;
            height:auto;
        }

    .category-title {
        font-size: 14px;
    }

    .category-description {
        font-size: small;
    }

    .category-img-bg {
        background-position: 0 -40px;
    }
}

@media (max-width: 500px) {
    .categories-container {
        padding-top: 0;
        padding-bottom: 0 !important;
    }
    .product-category-card{
        padding-bottom: 0;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .category-img-bg {
        background-position: 0 -3px;
    }
}


/*--------------- Product Categories product page Styles  -------------*/

.bottom-triangle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 60px;
    background-color: #e3f2fb;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 0;
}

.product-category-card.sub-category {
    padding-bottom: 45px;
    padding-top: 20px;
}

    .product-category-card.sub-category .category-title {
        color: #002f6d;
        z-index: 1;
    }

    .product-category-card.sub-category img {
        height: auto;
        max-width: 200px;
    }

.fill-images-tile img.image-fluid {
    width: 100%;
    object-fit: cover;
    padding: 2rem 2rem;
    height: 220px;
}

.product-image-section {
    height: 220px;
    width: 100%;
}

    .product-image-section img {
        height: 100% !important;
        width: 100%;
    }


@media (max-width: 991.98px) {
    .product-category-card.sub-category img {
        max-width: 150px;
    }
}

@media (max-width: 575.98px) {
    .fill-images-tile img.image-fluid {
        width: 100%;
        object-fit: cover;
        padding: 1rem 1rem;
    }

    .product-image-section {
        height: 117px;
        width: 100%;
    }

    .product-category-card.sub-category {
        padding-bottom: 15px;
        padding-top: 15px;
    }
}


@media (min-width: 576px) and (max-width: 991.98px) {
    .product-image-section {
        height: 125px;
        width: 100%;
    }

    .product-category-card.sub-category {
        padding-bottom: 22px;
    }

    .fill-images-tile img.image-fluid {
        width: 100%;
        object-fit: cover;
        padding: 1rem 2rem;
        height: 220px;
    }
}
