.banner_container {
    position: relative;
    width: 100vw;
    /* height: 420px; */
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner {
    height: 420px;
    width: 100%;
    background: linear-gradient(rgba(17, 17, 17, 0), rgba(17, 17, 17, 1)),
        url("/static/images/others/BannerMobileNew.webp") no-repeat bottom
            center/cover;
}

.banner_large_screen {
    display: none;
}

@media screen and (min-width: 350px) {
    .banner {
        height: 500px;
    }
}
@media screen and (min-width: 400px) {
    .banner {
        height: 550px;
    }
}
@media screen and (min-width: 450px) {
    .banner {
        height: 650px;
    }
}
@media screen and (min-width: 500px) {
    .banner {
        height: 700px;
    }
}

@media screen and (min-width: 600px) {
    .banner_container {
        display: block;
        height: auto;
        width: 100vw;
        /* height: 380px; */
        min-height: 330px;
    }
    .banner_large_screen {
        display: block;
        position: relative;
        width: 100%;
    }

    .banner_large_screen::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 1));
        z-index: 10;
    }

    .banner_large_screen img {
        width: 100%;
    }

    .banner {
        display: none;
    }
}

@media screen and (min-width: 750px) {
    .banner_container {
        display: block;
        min-height: 430px;
        /* height: 450px; */
    }
}
@media screen and (min-width: 950px) {
    .banner_container {
        /* height: 650px; */
        min-height: 570px;
    }
}

@media screen and (min-width: 1100px) {
    .banner_container {
        display: block;
        min-height: 620px;
        /* height: 120vh; */
    }
    .banner {
        background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
            url("/static/images/others/BannerNew.webp") no-repeat center
                center/cover;
    }
}
@media screen and (min-width: 1200px) {
    .banner_container {
        min-height: 690px;
    }
}
