.trips-col-topper{
    box-sizing: border-box;
    background-color: var(--dark-brown);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.trips-one-half .col-content{
    text-align: left !important;
}

.wade-trips-col-topper{
    box-sizing: border-box;
    background-color: var(--dark-brown);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px;
}

.special{
    padding: 20px 100px;
}

.trip-img{
    aspect-ratio: 3/2;
    object-fit: cover;
    width: 100%;
    max-height: 350px;
}

.trip-body{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trips-row{
    width: 80%;
    max-width: 1280px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trip-title{
    margin-bottom: 20px;
    text-align: center;
}

.trip-text{
    margin-bottom: 40px;
    text-align: center;
}

.list{
    margin-top: auto;
}

.trips-one-half{
    align-items: flex-start;
}

.gap{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-title{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 20px;
    cursor: pointer;
}

.faq-content{
    padding: 10px 20px 20px 20px;
    transition: all;
    transition-duration: 300ms;
    max-height: 0px;
    transform: scaleY(0%);
}

.faq-content .body-text-medium{
    text-align: left !important;
}

.faq-show{
    transform: scaleY(100%);
}

.faq-img{
    max-width: 30px;
    margin-left: 20px;
    margin-top: 3px;
    transition: all;
    transition-duration: 100ms;
}

@media screen and (max-width: 1000px){
    .special{
        padding: 20px;
    }

    .trips-row{
        width: 90%;
    }
}

@media screen and (max-width: 450px){
    .trips-col-topper{
        justify-content: center;
        flex-direction: column;
    }
}