.card-out-v1 {
    display: grid;
    grid-template-columns: 260px 1fr;
    border-radius: var(--borderRadius);
    overflow: hidden;
    background: #ffff;
    padding: 0;
    box-shadow: 0 0 22px 0 rgba(0, 0, 0, .07);
    margin-bottom: 18px;
    height: 240px;
    transition: all 0.3s ease;
}

.container-first-content-tour {
    height: inherit;
}
.card-out-v1:hover .container-first-content-tour img {
    transform: scale(1.15);
}
.container-first-content-tour a {
    height: inherit;
    width: inherit;
    display: block;
    overflow: hidden;
}
.container-first-content-tour a img {
    height: inherit;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.second-first-content-tour {
    padding: 15px;
}
.second-first-content-tour h2 {
    font-size: 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.second-first-content-tour a:hover h2 {
    color: var(--color-caribbean-current);
}
.second-first-content-tour p {
    line-height: 1.25;
}
.second-first-content-tour span {
    color: var(--color-caribbean-current);
    font-size: 1.045rem;
    font-weight: 500;
}
.content-tour-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content-tour-price span {
    color: var(--color-caribbean-current);
    font-weight: 600;
    font-size: 1.16rem;
}
.content-tour-price a {
    background: var(--color-caribbean-current);
    color: #fff;
    padding: 6px 18px;
    border-radius: var(--borderRadius);
}
@media screen and (max-width: 1536px) {}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
    .card-out-v1 {
        grid-template-columns: 260px;
        height: max-content;
        width: max-content;
        grid-template-rows: 240px max-content;
        place-content: center;
        align-items: center;
        margin: auto;
        margin-bottom: 20px;
    }
    .container-first-content-tour {
        height: 100%;
        width: 100%;
    }
}
@media screen and (max-width: 640px) {
}