/* CSS for responsive slider */
.sliderAreas {
    background-color: #fffcf6;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

.sliderAreas .dashSec {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sliderAreas .sub-title {
    text-align: center;
    margin: 40px 15px;
}

.sliderAreas .sub-title h2 {
    font-size: 28px;
    line-height: 36px;
    /* font-family: "Poppins", sans-serif; */
    color: #2d2d2d;
    /* font-weight: 500;*/
    margin: 0 auto 20px;
    max-width: 700px;
}

.sliderAreas .sub-title p {
    /*font-family: "Poppins", sans-serif;
    font-weight: 300; */
    font-size: 16px;
    line-height: 24px;
    color: #4a4747;
    max-width: 800px;
    margin: 0 auto;
}

.sliderAreas .dash {
    width: 100%;
    padding: 10px 0;
}

.sliderAreas .textImageSection {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.sliderAreas .textSection {
    width: 48%;
    height: 335px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 60px;
    /* background: #fff; */
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}


.sliderAreas .subheadingemp {
    /* font-family: "League Spartan", sans-serif;
    font-weight: 500; */
    font-size: 24px;
    line-height: 30px;
    color: #2d2d2d;
    margin: 0;
}

.sliderAreas .imageSection {
    width: 50%;
}

.sliderAreas .imageSection img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.sliderAreas .slick-prev,
.sliderAreas .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    /* background: #d62828; */
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.sliderAreas .slick-prev:before,
.sliderAreas .slick-next:before {
    font-family: 'slick';
    font-size: 50px;
    color: #000000 !important;
    opacity: 1;
}

.sliderAreas .slick-prev:hover:before, .sliderAreas .slick-next:hover:before {
    color: #ffb248 !important;
}
.sliderAreas .slick-prev {
    left: -50px;
}

.sliderAreas .slick-next {
    right: -50px;
}

.sliderAreas .slick-initialized .slick-slide {
    display: flex;
    flex-direction: row-reverse;
        flex-wrap: wrap;

}

.sliderAreas .slick-dots {
    text-align: center;
    margin-top: 20px;
}

.sliderAreas .slick-dots li {
    display: inline-block;
    margin: 0 0px;
}

/* .sliderAreas .slick-dots li button {
            font-size: 0;
            width: 12px;
            height: 12px;
            background: #d62828;
            border-radius: 50%;
            border: none;
            cursor: pointer;
        } */

.sliderAreas .slick-dots li.slick-active button {
    background: transparent;
}

/* Responsive Design */
@media (max-width: 992px) {
    .sliderAreas .textImageSection {
        flex-direction: column;
        text-align: center;
    }

    .sliderAreas .textSection,
    .sliderAreas .imageSection {
        width: 100%;
        margin-bottom: 20px;
        height: 100%;
    }

    .sliderAreas .sub-title h2 {
        font-size: 24px;
        line-height: 30px;
        max-width: 100%;
    }

    .sliderAreas .sub-title p {
        font-size: 14px;
        line-height: 20px;
        max-width: 100%;
    }

    .sliderAreas .slick-prev,
    .sliderAreas .slick-next {
        top: -40px;
        transform: none;
    }

    .sliderAreas .slick-prev {
        left: 10px;
    }

    .sliderAreas .slick-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .sliderAreas .sub-title h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .sliderAreas .subheadingemp {
        font-size: 20px;
        line-height: 26px;
    }

    .sliderAreas .sub-title p {
        font-size: 12px;
        line-height: 18px;
    }

    .sliderAreas .textSection {
        padding: 20px;
    }
}