/* ================================
   Banner Responsive CSS
================================ */

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section .slide-item {
    position: relative;
    min-height: 564px;
}

.banner-section .bg-image {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat;
    width: 100% !important;
    height: 564px !important;
    position: relative;
}

.banner-section .bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.banner-section .auto-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.banner-section .content-box {
    position: relative;
    z-index: 2;
}

.banner-section .inner-content {
    padding: 20px;
    width: 50%;
    border-radius: 8px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.banner-section h2 {
    font-family: system-ui;
    color: #4e4e4e;
    text-shadow: 1px 2px 1px rgb(78 78 78);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-section .sub-title {
    line-height: 1.7;
    font-family: system-ui;
    font-weight: 400;
    color: #4e4e4e;
    font-size: 17px;
    display: block;
    margin-bottom: 25px;
}

.banner-section .theme-btn {
    background: #f26622;
    padding: 14px 28px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.banner-section .theme-btn:hover {
    background: #d95112;
}

.banner-section .btn-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===================================
   Large Tablet
=================================== */

@media only screen and (max-width: 1199px) {

    .banner-section .inner-content {
        width: 60%;
    }

    .banner-section h2 {
        font-size: 42px;
    }
}

/* ===================================
   Tablet
=================================== */

@media only screen and (max-width: 991px) {

    .banner-section .slide-item,
    .banner-section .bg-image {
        height: 500px !important;
        min-height: 500px;
    }

    .banner-section .inner-content {
        width: 80%;
        margin-top: 40px;
        padding: 25px;
    }

    .banner-section h2 {
        font-size: 34px;
    }

    .banner-section .sub-title {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* ===================================
   Mobile
=================================== */

@media only screen and (max-width: 767px) {

    .banner-section .slide-item,
    .banner-section .bg-image {
        height: auto !important;
        min-height: 550px;
    }

    .banner-section .content-box {
        padding: 40px 0;
    }

    .banner-section .inner-content {
        width: 100%;
        margin-top: 30px;
        margin-left: 0 !important;
        padding: 20px;
        border-radius: 6px;
    }

    .banner-section h2 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .banner-section .sub-title {
        font-size: 15px;
        line-height: 1.6;
    }

    .banner-section .sub-title br {
        display: none;
    }

    .banner-section .theme-btn {
        padding: 12px 22px;
        font-size: 14px;
    }
}

/* ===================================
   Small Mobile
=================================== */

@media only screen and (max-width: 480px) {

    .banner-section .slide-item,
    .banner-section .bg-image {
        min-height: 420px;
    }

    .banner-section h2 {
        font-size: 22px;
    }

    .banner-section .sub-title {
        font-size: 14px;
    }

    .banner-section .theme-btn {
        width: 100%;
        justify-content: center;
    }
}