.tour-card {
    border-radius: 15px;
    margin-bottom: 3rem;
    padding: 1rem 1rem 1rem 3rem;
    color: whitesmoke !important;
    background: rgba(215, 138, 1, 0.5);
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    font-weight: 300;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*.tour-card:hover {*/
/*    background: rgba(180, 120, 1, 0.5);*/
/*}*/

.info {
    display: flex;
}

.info .country {
    font-weight: 600;
}

.title {
    overflow: hidden;
    padding: 0 1rem;
    width: 47%;
    font-size: 16px;
    font-weight: 400;
    align-self: baseline;
}

.location_container {
    margin-right: 3rem;
    width: 254px;
}

.date_and_time {
    display: flex;
    flex-direction: column;
}

.actions {
    display: flex;
    align-items: center;
}

.buy_tickets {
    margin-right: 3rem;
    color: white;
    background: #b68013;
    border: 1px solid #b68013;
}

.buy_tickets:hover {
    background: transparent;
    border: 1px solid #b68013;
}

.wishlist, .share {
    cursor: pointer;
}

.wishlist:hover {
    color: #9f9f9f;
}

.share:hover {
    color: #9f9f9f;
}

@media screen and (max-width: 768px) {
    .tour-card {
        margin: 0 1rem 3rem 1rem;
        flex-direction: column;
        padding: 1rem;
        align-items: unset;
    }

    .date_and_time {
        align-items: end;
        white-space: nowrap;
    }

    .info {
        justify-content: space-between;
    }

    .info .country,
    .info .location,
    .info .date,
    .info .time
    {
        font-size: 14px !important;
    }

    .location_container {
        width: unset;
    }


    .title {
        overflow: unset;
        padding: 0 1rem;
        white-space: unset;
        width: 100%;
        font-size: 18px;
        font-weight: 600;
        margin: 2rem 0;
        display: flex;
        justify-content: center;
    }

    .actions {
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .social {
        display: flex;
    }

    .wishlist {
        margin: 0 2rem 0 0;
    }

    .buy_tickets {
        margin-right: 0;
    }
}