/*Slider Css Starts from Here*/
.cursor-pointer {
    cursor: pointer !important;
}
.home-slider {
    position: relative;
    width: 100% !important;
    overflow: hidden; 
}

.single-hero-slider {
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 0.5s; 
}
.hero-slider img{
    max-height: 538px;
    /*border-radius: 30px;*/
}
.slider-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hide_on_mobile {
    display: none;
}

/*Blog Section Starts From Here*/
.blog-home img {
    height: 235px;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .single-hero-slider {
        height: 300px;
    }
    .blog-home img {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .single-hero-slider {
        height: 200px !important;
    }
    .home-slider {
        margin-bottom: 0px !important;
    }
    .single-hero-slider img{
        border-radius: 5px !important;
    }
    .hero-slider-1{
        height: 210px !important;
    }
}

@media (min-width: 769px) {
    .hide_on_mobile {
        display: block;
    }
}
.home-brand-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.brandcard{
    position: relative;
    background: white;
    text-align: center;
    border: 1px solid #dfe4ef;
    border-radius: 10px;
    padding: 15px 0px 15px 0px;
    transition: 0.2s;
}
.brandcard a{
    color: #191919;
}
.usp-counters {
    padding: 40px 0;
    background: #f8f9fa;
}
.usp-counters h2 {
    font-size: 42px;
    font-weight: 700;
    color: #8b0000;
}
.usp-counters p {
    margin: 10px auto 0;
    font-size: 16px;
    font-weight: 500;
    max-width: 150px;
}

@media (max-width: 768px){
   .home-brand-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    /*Product Card Section CSS Starts From here*/
    .product-cart-wrap .product-card-bottom{
        flex-direction: column;
    }
    img.productimage {
        height: 115px;
        object-fit: contain;
    }
    .row.product-grid-4 .col-6:nth-last-child(1) {
        display: none;
    }
    a.add.add-to-cart-btn.cart {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
}
