.all-activities{

}
.title-activities{
    padding: 50px 0;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.all-activities h2{
    color: #053220;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.custom-select {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 12px 20px;
    width: 350px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    justify-content: space-between;
    margin-top: 30px;
}

.custom-select span {
    color: #6e6e6e;
    font-size: 16px;
}

.custom-arrow {
    width: 36px;
    height: 36px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    width: 350px;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
}

.dropdown-menu li {
    padding: 12px;
    cursor: pointer;
    color: #6e6e6e;
    transition: background 0.3s;
}

.dropdown-menu li:hover {
    background: #f0f0f0;
}

.custom-select.active + .dropdown-menu {
    display: block;
}
.pick-up-experience{
    position: relative;
}
.adventure-grid{
    margin-bottom: 25px;
}
.adventure-grid:nth-child(2){
    margin-bottom: 41px;
}
.adventure-item {
    max-width: max-content;
    background-color: #ffff;
    padding: 20px;
    margin-right: 16px;
    cursor: pointer;
    border-radius: 7px;
}
.activities-journeys{
    overflow: hidden;
}
.tours-container {
    background-color: rgba(255, 255, 255, 0.70);
    padding: 50px 40px 65px;
}
.custom-nav {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    gap: 20px;
    align-items: center;
}
.custom-nav button {
    background-color: transparent;
    outline: 0;
    border: none;
    padding: 0;
    max-width: fit-content;
}

h2.slider-heading {
    text-align: center;
}
.tour-card {
    max-width: 500px;
    border-radius: 8px;
    opacity: 0.8;
    background-color: #F2EAE0;
    padding: 13px;
    margin-right: 10px;
}
.tour-card h3{
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    padding-top: 10px;
    min-height: 61px;
}
.tour-card p{
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
.tour-card a {
    color: #053220;
    font-size: 13px;
    font-weight: 700;
    line-height: normal;
    padding: 14px 27px;
    margin-top: 15px;
    border-radius: 84px;
    border: 1.7px solid #053220;
    text-decoration: none;
    display: inline-block;
}
div#tours-wrapper {
    background-color: #fbf9f6;
    padding-bottom: 65px;
}
.button-view {
    display: flex;
    justify-content: flex-end;
}
/* img.img-responsive {
    min-height: 276px;
} */

@media screen and (max-width: 600px) {
    .all-activities h2 {
        color: #053220;
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        line-height: normal;
    }
    .custom-select {
        display: flex;
        align-items: center;
        background: white;
        border-radius: 50px;
        padding: 12px 20px;
        width: 350px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        justify-content: space-between;
        margin-top: 30px;
    }
    .tour-card {
        max-width: 360px;
    }
    /* img.img-responsive {
        min-height: unset;
    } */
}
@media screen and (max-width: 380px) {
    .custom-select{
        width: 280px;
    }
}