/* This class should be applied to the card-body that will slide up */
.explorations-travelers-card-slide-up {
    position: absolute;
    bottom: 0%; /* Start off-screen */
    left: 0;
    right: 0;
    background: #FFF; /* Assuming a white background for the content */
    padding: 20px; /* Adjust padding as needed */
}

.collapse + .explorations-travelers-card-slide-up {
    /* Transitioning the bottom property and opacity */
    transition: bottom 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0; /* Start with the content fully transparent */
}

/* When expanded, the card body should move up */
.collapse.show + .explorations-travelers-card-slide-up {
    bottom: 0; /* Slide up to reveal the content */
    opacity: 1; /* Transition to fully opaque */
}

/* The rest of the card that does not move */
.explore24-travelers-scroll-overlay .explorations-travelers-card {
    position: relative;
    overflow: hidden; /* Hide the overflow when the card body moves up */
    height: 500px; /* Adjust to the height of your card */
}


/* Adjust padding when expanded */
.collapse.show + .explorations-travelers-card-body {
    padding-bottom: 0;
}

.bg-light-blue {
    background-color: #E2F2F7;
}

.explorations-travelers-card_image {
    width: 400px;
    height: 332px;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    overflow: collapsible-content;
}

@media only screen and (max-width: 1400px) {
    .explorations-travelers-card_image {
        width: 100% !important;
        background-size: cover;
    }
}


