.image-banner-section.height-sm{
    height:600px;
}

.image-banner-section.height-md{
    height:750px;
}

.image-banner-section.height-lg{
    height:900px;
}

.image-banner-section{
    position: relative;
    overflow: hidden;
    width: 100%;
    display:flex;
    padding-block: 160px;
}

.image-banner-section .image-banner_image{
    position: absolute;
    top: 50%;
    transform:translateY(-50%);
    width:100%;
    height:100%;
}


.image-banner-section video{
    width:100%;
    height:100%;
    object-fit: cover;
}

.image-banner-section .image-banner_container{
    position: relative;
    width: 100%;
}

@media(max-width:768px){
    .image-banner-section.height-sm{
        height:400px;
    }

    .image-banner-section.height-md{
        height:550px;
    }

    .image-banner-section.height-lg{
        height:700px;
    }
    .image-banner-section{
        padding-block: 13.3333vw;
    }
}