.container-main-voyage-v1 {
    /* height: 381px; */
    width: inherit;
    box-shadow: 0 10px 40px -15px rgba(12, 74, 110, 0.25);
    border-radius: 18px;
    background: #ffff;
    overflow: hidden;
    transition: all ease 0.3s;
}
#section-vogaye-v1 {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: var(--tr-bk);
}
.subcontent-voyage-img {
    height: 250px;
    width: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}
.subcontent-voyage-orignal-img {
    height: inherit;
    width: 100%;
    object-fit: cover;
    transition: all ease 0.3s;
}
.subcontent-voyage-price {
    position: absolute;
    bottom: 5%;
    right: 4%;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 999px;
    border-image: initial;
    font-size: 13px;
    
    background: #30010199;
    /* background: var(--tr-primary); */
    border-color: #ffff;
    color: #fff;
}
.button-action-voyage {
    padding: 5px;
}
.button-action-voyage a {
    width: 100%;
    display: block;
    box-shadow: rgb(190, 190, 190) 6px 6px 12px, rgb(255, 255, 255) -6px -6px 12px;
    background: 0px 0px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(12, 74, 110, 0.2);
    border-image: initial;
    padding: 0.5rem 1.5rem;
    text-align: center;
    border-radius: 999px;
    margin-top: 8px;

    background: var(--tr-primary);
    color: #fff;
    transition: all ease-in-out 0.7s;
}
.content-date-location-voyage {
    display: flex;
    justify-content: start;
    align-items: center;
}
.arrow_box {
    position: absolute;
    top: 5%;
    left: 5%;
    background: #ffff;
    border-radius: 12px;
    font-size: 13px;
    padding: 2px 7px;
    background: var(--tr-accent-green);
    color: var(--tr-primary);
    z-index: 2;
}
.content-location-voyage span {
    font-size: 0.7rem;
    color: rgb(58, 74, 94);
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    /* background: var(--muted); */
    background: #a6f442d4;
    margin: 0px 0.3rem 0.3rem 0px;
    font-weight: 600;
    margin-bottom: 10px;
}
.main-voyage {
    display: grid;
    grid-template-columns: repeat(3, 310px);
    place-content: center;
    gap: 29px;
    margin-top: 25px;
    margin-bottom: 25px;
    transition: all ease 2s;
}
.description-voyage {
    height: 60px;
    overflow: hidden;
}
.title-voyage {
    font-size: 18px;
    height: 30px;
    font-weight: 500;
    color: #000;
}
.date-voyage {
    font-size: 0.7rem;
    color: rgb(58, 74, 94);
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    /* background: var(--muted); */
    background: #a6f442d4;
    margin: 0px 0.3rem 0.3rem 0px;
    font-weight: 600;
    margin-bottom: 10px;
}
.subcontent-information-main {
    padding: 15px;
}
.description-voyage p {
    line-height: 19px;
}
.container-main-voyage-v1:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px -20px rgba(10, 31, 61, 0.35);
}
.container-main-voyage-v1:hover .subcontent-voyage-orignal-img {
    transform: scale(1.1);
}
.button-action-voyage a:hover {
    background-color: var(--tr-text-dark);
}
@media screen and (max-width: 1536px) {}
@media screen and (max-width: 1280px) {
    .main-voyage {
        grid-template-columns: repeat(3, 310px);
    }
}
@media screen and (max-width: 1024px) {
    .main-voyage {
        grid-template-columns: repeat(2, 310px);
    }
}
@media screen and (max-width: 768px) {
    .main-voyage {
        grid-template-columns: repeat(2, 300px);
        gap: 15px;
    }
}
@media screen and (max-width: 640px) {
    .main-voyage {
        grid-template-columns: repeat(1, 310px);
    }
}