/*--------- Home Hero Banner Start ---------*/
.home-hero-banner {
    position: relative;
    overflow: hidden;
    margin-bottom: 95px;
}

.home-hero-text{
    position: relative;
    bottom: 0px;
    width: 100%;
    padding: 125px 0px 186px 0px;  
    z-index: 1;
}

.home-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
}
.home-hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
}
.home-hero-image::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 310px;
    bottom: 0px;
    left: 0px;
    display: block;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) -35.79%, rgba(0, 0, 0, 0.50) 79.58%);
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
}

.home-hero-text-wrap{
    max-width: 740px;
}
.home-hero-text-wrap *{
    color: var(--white);
}
.home-hero-text h1{
    margin-bottom: 0px;
}
/*---------- Home Hero Banner End -----------*/