.swiper {
    width: 100%;
    height: 400px;
}

.swiper-header .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    position: relative;
    height: 400px;
}

.swiper-header .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-header .swiper-content {
    position: absolute;
    text-align: left;
    padding: 0 100px;
}

.swiper-header .swiper-content h1 {
    font-weight: 800;
    font-size: 48px;
}

.swiper-header .swiper-content h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px !important;
    line-height: 48px;
}

.swiper-header .swiper-content p {
    width: 80%;
    margin: 25px 0 65px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.005em;
}

/* -------------- Responsive Banner */

/* Mobile */
@media (max-width:641px) {
    .caption-banner {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        padding-left: 16px;
        padding-right: 16px;
    }

    .caption-banner h1 {
        font-size: 40px !important;
    }

    .caption-banner p {
        font-size: 16px !important;
    }

    .banner-image {
        height: 350px !important;
        object-fit: cover
    }
}

/* Tablet / iPad */
@media (min-width:641px) and (max-width:1000px) {
    .caption-banner {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        padding-left: 18px;
        padding-right: 18px;
    }

    .caption-banner h1 {
        font-size: 40px !important;
    }

    .banner-image {
        height: 250px !important;
        object-fit: cover
    }
}

/* Desktop */
@media (min-width:1000px) {
    .caption-banner {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        padding-left: 105px;
        padding-right: 105px;
    }

    .caption-banner h1 {
        font-size: 52px !important;
    }

    .banner-image {
        height: 250px !important;
        object-fit: cover
    }
}