/*---------------- EXPLORE MUNNAR PAGE STYLES ----------------*/

.explorePageWrap {
    background-image: url(../images/backgrounds/bg_06.png);
    background-image: url(../images/backgrounds/bg_06.webp);
    background-size: cover;
    background-position: center top;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    padding-top: 3rem;
}

.exploreMunnarContent {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.ExploreSlide {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3rem;
    min-height: 100%;
    max-width: 66rem;
}

.ExploreSlideImage {
    width: 1%;
    flex-grow: 1;
}

.ExploreSlideImage img {
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.ExploreSlideContent {
    width: 30rem;
    padding-block: 4rem;
}

.ExploreSlideContent h3 {
    font-size: 1.6rem;
}

.ExploreSlideContent h4 {
    font-size: 1.3rem;
    padding-bottom: 1rem;
}


/* responsive */
@media(max-width: 1199px) {
    .ExploreSlideContent {
        padding-block: 0rem 4rem;
    }
}

@media(max-width: 991px) {
    .ExploreSlide {
        gap: 2rem;
    }
}

@media(max-width: 767px) {
    .exploreMunnarContent {
        gap: 4rem;
    }

    .ExploreSlideContent {
        width: 20rem;
    }
    .ExploreSlideContent {
        padding-block: 0rem 2rem;
    }
}

@media(max-width: 576px) {
    .ExploreSlide {
        flex-direction: column;
    }

    .ExploreSlideImage,
    .ExploreSlideContent {
        width: 100%;
    }

    .ExploreSlideImage {
        flex-grow: 0;
    }

    .ExploreSlideImage img {
        aspect-ratio: 1000/565;
    }
}
