section.new-banner {
    position: relative;
    min-height: 300px;
}
section.new-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
section.new-banner .video-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
section.new-banner .video-wrapper video {
    transform: scale(2);
}
section.new-banner .banner-slider {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}

section.new-banner .banner-slider .item {
    text-align: center;
    width: 350px;
    margin: 0 auto;
}

section.new-banner .banner-slider .item h4 {
    color: #FFF;
    font-size: 1.2rem;
}

@media (min-width: 576px) {
    section.new-banner {
        min-height: 350px;
    }
    section.new-banner .video-wrapper video{
        transform: scale(1);
    }
    section.new-banner .banner-slider .item h4 {
        font-size: 1.5rem;
    }
}
@media (min-width: 768px) {
    section.new-banner {
        min-height: 350px;
    }
}
@media (min-width: 992px) {
    section.new-banner {
        min-height: 450px;
    }
}
@media (min-width: 1200px) {
    section.new-banner {
        min-height: 650px;
    }
}