
/* BANNERS */

.banner_custom{

    position: relative;
}

.banner_custom .com-video::before {

    position: absolute;
    background: #0e0e0e5c;
    content: "";
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.banner_custom .banner_custom_img{

    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner_custom::before{

    content: "";
    position: absolute;
    inset: 0;
    background:rgba(0,0,0,0.2);
}

.banner_custom_icon{

    width: 3rem;
}

.banner_custom {
    margin-bottom: 2rem;
}

.banner_custom .banner_custom_content{

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.25rem;

    position: absolute;
    inset: 0;
    z-index: 2;
    width: clamp(20rem, 50%, 37rem);
    height: 100%;

    margin: 0 auto;
}

.banner_custom .banner_custom_content .banner_custom_content_heading{

    color: #fff;
}

.banner_custom .banner_custom_content .banner_custom_content_sub{
   
    color: #fff;
    font-size: var(--font-size-ml);
    font-weight: 600;
    text-align: center;
}

.banner_custom .banner_custom_content .banner_custom_content_desc{
    
    color: #fff;
    text-align: center;
}

.banner_custom .banner_custom_content .banner_custom_content_link{
    
    text-decoration: underline;
}

.banner_custom .com-video__video{ 
    width: 100%;
}

@media only screen and (max-width: 768px) {

    .banner_custom{

        height: 47.8vh;
    }
    .banner_custom iframe{
        background: #000000e4;
    }
    .banner_custom .banner_custom_content{
        width: 100%;
        padding: 0 2rem;
    }
    
}

/* BANNERS END*/




