:root {
    --blue: #239ad2;
    --blue-light: #239bd293;
    --info: rgb(13, 202, 240);
    --info-light: rgba(13, 202, 240, 0.562);
}

.hero_sec .video_container {
    width: 100%;
    overflow: hidden;
    height: 300px;
    position: relative;
    margin-bottom: 4rem;
}

@media (max-width:768px) {
    .hero_sec .video_container {

        height: 120px;
    }

    .hero_sec .video_container .video_content h4 {
        font-size: 20px;
    }

    .hero_sec .video_container .video_content span {
        font-size: 11px !important;

    }
}

.hero_sec .video_container video {
    object-position: bottom;
    width: 100%;


}

.hero_sec .video_container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000008f;

}

.hero_sec .video_container .video_content span {
    color: white;

}

.hero_sec .video_container .video_content span a {
    color: white !important;
    text-decoration: underline !important;

}


.products-details .product_img {
    /* border: 5px solid rgba(214, 214, 214, 0.39);  */
   background: transparent;
    border-radius: 7px;
    overflow: hidden;
}

@media (max-width:768px) {

    .products-details .product_img {
        margin: 0px 20px 40px 20px !important ;
    }
}

.products-details .product_img img {
    width: 100%;
    object-fit: cover;
    border-radius: 7px;
    transition: all 2s linear;

}
.products-details .product_img img:hover{
    transform: scale(1.2);
   
}

.products-details .product_content .product_info span {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--blue);
}

.related_products_sec .card-img-overlay .tag {
    position: absolute;
    font-family: sans-serif;
    top: 10px;
    font-size: 11px;
    background-color: var(--blue);
    padding: 2px 8px;
    border-radius: 15px;
    left: 10px;
}

.all_products_sec .card-img-overlay .tag {
    position: absolute;
    font-family: sans-serif;
    top: 10px;
    font-size: 11px;
    background-color: var(--blue);
    padding: 2px 8px;
    border-radius: 15px;
    left: 10px;
}

