#welcome-section img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#welcome-section::before{
    content:"";
    position:absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #0B270E, transparent);
    z-index: 10;
}

.welcome-img-mob {
    display: block;
}

.welcome-img{
    display: none;
}

@media only screen and (min-width: 992px){
    .welcome-img-mob {
        display: none;
    }

    .welcome-img{
        display: block;
    }
}