
.tour-one__single {
    transition: all 0.5s ease;
    position: relative;
    margin-bottom: 30px;
}



.tour-one__single:hover {
    transform: translate(1%, 1%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}

.borderContainerB {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.tour-one__content {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(236, 238, 239);
    background-color: rgb(255, 255, 255);
    padding-left: 38px;
    padding-right: 28px;
    padding-top: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.tour-one__stars {
    font-size: 16px;
    font-weight: 500;
    color: #9ca3a9;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    line-height: 1em;
    margin-bottom: 5px;
}

.tour-one__meta {
    margin: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 25px;
    border-top: 1px solid rgb(236, 238, 239);
    flex-direction: column;
    align-items: center;
}

.tour-one__meta li{margin-bottom: 10px;}

.borderContainerT {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.tour-one__image {
    position: relative;
    background-color: var(--thm-black);
    overflow: hidden;
    height: 300px; 
    width: inherit;
}

@media(max-width:350px){
    .tour-one__image {
        height: 250px;
    }
}

.tour-one__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tour-one__single:hover {
    transform: translate(1%, 1%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}


.tour-one__single:hover .tour-one__image>img {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.imgResponsive {
    height: inherit;
    width: inherit;
    object-fit: cover;
}

.tour-one__image>img {
    width: 100%;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.descriptionHover {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 60%);
    z-index: 2;
    opacity: 0;
    transition: all 0.5s;
    height: 33rem;
    align-content: start;
    display: grid;
}

.tour-one__single:hover .descriptionHover {
    transform: translate(-50%, 30%);
    background: linear-gradient(#00000075, #00000075);
    opacity: 1;
    width: inherit;
    padding: 5px 3px;
}

.descriptionHover>p {
    text-align: center;
    color: white;
}

.tour-one__image>a {
    background: #17b5af;
    width: 100px;
    border-radius: 5px !important;
    height: 38px;
    text-align: center;
    line-height: 38px;
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.tour-one__image>a i{
    padding-right: 3px;
}

.tour-one__content p span {
    color: #ff0084;
    font-size: 20px;
    font-weight: 700;
}

.tour-one__meta li a {
    font-size: 13px;
    font-weight: 500;
    color: #17b5af;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.buttonVerDetalleTour {
    padding: 5px 10px;
    color: #ffff !important;
    background-color: #ff0084;
    border-radius: 20px;
    font-size: 15px !important;
    font-weight: bolder !important;
}

.promocion{
    text-align: center;
    font-size: 15px;
    background-color: #17b5af;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
}

.promocion i{padding-right: 3px;}