

/* ================== Banner Slider ============================== */

    .hero-slider .slide-item {
        position: relative;
    }

    .hero-slider .slide-item img {
        width: 100%;
        height: 650px;
        object-fit: cover;
        display: block;
    }

    /* Tablet */
    @media(max-width:991px) {
        .hero-slider .slide-item img {
            height: 500px;
        }
    }

    /* Mobile */
    @media(max-width:767px) {
        .hero-slider .slide-item img {
            height: 300px;
            object-fit: cover;
        }
    }

    /* Small Mobile */
    @media(max-width:480px) {
        .hero-slider .slide-item img {
            height: 280px;
            object-fit: cover;
        }
    }

    /* Arrows */
    .slick-prev,
    .slick-next {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #fff;
        z-index: 99;
    }

    .slick-prev {
        left: 20px;
    }

    .slick-next {
        right: 20px;
    }

    .slick-prev:before,
    .slick-next:before {
        color: #000;
        font-size: 22px;
    }

    /* Dots */
    .slick-dots {
        bottom: 20px;
    }

    .slick-dots li button:before {
        color: #fff;
        font-size: 12px;
    }

    .slick-dots li.slick-active button:before {
        color: #ff6600;
    }


    .slide-item {
        position: relative;
    }

    .slide-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .45);
    }

    .slider-content {
        position: absolute;
        top: 50%;
        left: 8%;
        transform: translateY(-50%);
        max-width: 700px;
        color: #fff;
        z-index: 2;
    }

    .slider-content .sub-title {
        display: inline-block;
        background: #ff6600;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .slider-content h1,
    .slider-content h2 {
        font-size: 40px;
        line-height: 1.2;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
    }

    .slider-content p {
        font-size: 18px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .slider-btn {
        display: flex;
        gap: 15px;
    }

    .theme-btn {
        background: #ff6600;
        color: #fff;
        padding: 14px 35px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
        transition: .3s;
    }

    .theme-btn:hover {
        background: #fff;
        color: #ff6600;
    }

    .btn-two {
        background: #fff;
        color: #111;
    }

    .btn-two:hover {
        background: #ff6600;
        color: #fff;
    }

    @media(max-width:767px) {

        .slider-content {
            left: 20px;
            right: 20px;
        }

        .slider-content h1,
        .slider-content h2 {
            font-size: 20px;
        }

        .slider-content p {
            font-size: 15px;
            line-height: 22px;
        }

        .slider-btn {
            flex-direction: column;
        }

        .theme-btn {
            width: 100%;
            text-align: center;
        }

    }

    @media (max-width:767px) {

        .hero-slider .slick-prev,
        .hero-slider .slick-next {
            display: none !important;
        }

    }



