.banners .item{
    position: relative;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    overflow: hidden;
}

.banners .item .container{
    position: absolute;
    inset: auto 0 0;
    padding-top: 28px;
    padding-bottom: 1rem;
}

.banners .item .container::before{
    content: '';
    position: absolute;
    inset: auto 40vw 0 auto;
    width: 100%;
    height: 100%;
    border-top-right-radius: 166px;
    background-color: #00291bab;
    mix-blend-mode: multiply;
}

.banners .item .sectitle{
    position: relative;
    font-size: 40px;
    margin: 0;
}

.mvv{
    background: url(../../assets/img/mvvbg.png) no-repeat top left;
    padding: 115px 0;
}

.mvv .sectitle{
    margin-bottom: 19px;
}

@media(max-width:992px){
    .banners .item .container,
    .mvv{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .banners .item .container{
        position: relative;
        z-index: 1;
    }
    .banners .item .container::before{
        right: 0;
        border-radius: 0;
    }
    .banners .item>img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        -o-object-fit: cover;
    }
}

@media(max-width:768px){
    .banner{
        display: none;
        display: -webkit-none;
    }
}