.banner {
    margin-top: 72px;
}

.banner .swiper-slide {
    min-height: 300px;
    height: 40vh;
    overflow: hidden;
}

.banner .banner-content {
    height: 100%;
}

.banner .banner-content .wrap {
    height: 100%;
}

.banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper-slide .inner {
    height: 100%;
    justify-content: center;
}

.banner .swiper-slide .inner {
    color: #fff;
    z-index: 10;
    left: 0;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
}

.banner .swiper-slide h1.title-banner {
    padding-left: 20px;
    margin-left: 12px;
    position: relative;
}

.banner .swiper-slide h1.title-banner:before {
    content: '';
    display: block;
    width: 3px;
    height: 50px;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
    background-color: #b62020;
}

.banner .swiper-slide small {
    margin: 20px 0 0;
    font-size: 24px;
    display: block;
    opacity: 0.3;
    text-transform: uppercase;
}

.banner .swiper-slide .more-big {
    background: #b62020;
    color: #fff;
}

.banner .swiper-slide .more-big i {
    border-color: rgba(255, 255, 255, 0.4);
    background-image: url(../images/icon2.html);
}

/*tablet*/
@media (width >= 768px) {
    .banner .swiper-slide {
        min-height: 600px;
        height: 100vh;
    }

    .banner .swiper-slide h1.title-banner {
        font-size: 40px;
        line-height: 43px;
        margin-left: 24px;
    }

    .banner .swiper-slide h1.title-banner:before {
        height: 70px;
    }
}

/*desktop*/
@media (width >= 1024px) {
    .banner {
        margin-top: 0;
    }

    .banner .swiper-slide {
        min-height: 800px;
    }

    .banner .swiper-slide h1.title-banner {
        font-size: 60px;
        line-height: 63px;
        margin-left: 48px;
    }

    .banner .swiper-slide h1.title-banner:before {
        height: 102px;
    }
}