.image-main-trip {
    max-width: 80%;
    position: relative;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    height: 350px;
    margin: 0;
}

#trip-details {
    width: 100%;
    padding-top: 80px;
    position: relative;
    background-color: rgb(252,252,252);
}

#trip-details .details-header {
    width: 100%;
    height: 250px;
    background-color: #e62e98;
    padding: 50px 100px;
    color: white;
}

#trip-details .title {
    font-size: 45px;
    font-weight: 700;
}

#trip-details .title-divider {
    margin: 10px 0;
    width: 200px;
    height: 2px;
    background-color: rgb(235, 235, 235);
}

#trip-details .background-img-grid {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

#trip-details .trip-cards-info {
    max-width: 600px;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.trip-cards-info .card {
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #e62e98;
    margin: 10px 0;
}

.trip-date {
    font-weight: 400;
}

.trip-cards-info p {
    font-size: 20px;
    margin: 0;
    color: #e62e98;
}

.trip-cards-info .bold {
    font-weight: bolder;
}

#trip-details .itinerary {
    width: 80%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
}

#trip-details .box {
    height: 300px;
    display: inline-block;
    padding: 0;
}

#trip-images-grid {
    margin: 70px 0;
}

.contact-us-btn {
    background-color: #ED5F6E;
    color: white;
    font-size: 24px;
    font-weight: 500;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    outline: 0;
    border: 0;
    margin-top: 40px;
    max-width: 90%;
}

.contact-us-btn:hover {
    color: white;
}

@media screen and (max-width: 768px){
    #trip-details .details-header {
        padding: 50px 30px;
    }

    #trip-details .details-header .title {
        font-size: 35px;
    }

    .image-main-trip {
        max-width: 100%;
        position: relative;
        left: 50%;
        top: -50px;
        transform: translateX(-50%);
        height: 350px;
    }

    #trip-details .itinerary {
        width: 95%;
    }

    .contact-us-btn {
        font-size: 20px;
    }

}