.card, .featured-card {
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}

.card a, .featured-card a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.card-body button {
    background-color: transparent;
    border-radius: 10px;
    color: #35393F;
    display: flex;
    font-size: 15px;
    font-weight: bold;
    gap: 8px;
    padding: 12px 0;
    transition: all .3s ease;
    width: fit-content;
}

.card:hover, .featured-card:hover {
    box-shadow: 0px 15px 20px -8px rgba(0, 0, 0, 0.25);
}

.card:hover button {
    padding: 12px 32px;
    background-color: #FFD9DF;
}

.card:hover p, .featured-card:hover .state {
    background-color: #DC2C46;
    color: #fff !important;
}

.card p, .featured-card .state {
    background-color: #fff;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    color: #DC2C46 !important;
    font-size: 16px;
    left: 0px;
    letter-spacing: 0.2px;
    line-height: 24px;
    padding: 8px 16px;
    position: absolute;
    top: 16px;
    transition: all .3s ease;
}

.title-slider-destinations {
    margin-bottom: 40px;
    margin-top: 80px;
}

.container-tickets {
    margin-bottom: 80px;
}

.single-destination.unavailable,
.single-stop.unavailable {
    margin-top: 80px;    
}

@media (max-width: 768px) {
    .container-tickets {
        margin-bottom: 56px;
    }

    .single-destination.unavailable,
    .single-stop.unavailable {
        margin-top: 56px;    
    }

    .title-slider-destinations {
        margin-bottom: 32px;
        margin-top: 56px;
    }
}

