.new_tour_card{
    position: relative;
    border-radius:10px;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.09);
    margin: 20px 0px;
    overflow: hidden;
}

/* ============ start tour main header section ================*/
.new_tour_card .tour_main_header{
    background-color: #f4a31d !important;
    padding: 10px 15px;
    height: auto;
    min-height: 80px;
    max-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.new_tour_card .tour_main_header h3{
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2.5rem;
    text-align: center;
    text-wrap:balance;
}
.new_tour_card .tour_main_header h3 .title_redirect_button:hover{
    color: #fff;
}
/* ============ end tour main header section ================*/

/* ============ start tour price section ================*/
.new_tour_card .tour_price{
    background-color: #fff;
    padding: 10px 10px;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    direction: ltr;
    display: flex;
    flex-wrap: nowrap;
}
.new_tour_card .tour_price .tour_adult_price::before{
    content: " ";
    position: absolute;
    right: 0px;
    width: 2px;
    height: 52px;
    background-color: #BBBBBB;
}
.new_tour_card .tour_price .tour_adult_price,.new_tour_card .tour_price .tour_children_price{
    text-align: center;
    position: relative;
}
.new_tour_card .tour_price .tour_adult_price h5,.new_tour_card .tour_price .tour_children_price h5{
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 2rem;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    color: #22252a;
}
.new_tour_card .tour_price .tour_adult_price span,.new_tour_card .tour_price .tour_children_price span{
    font-size: .9rem;
    font-weight: 400;
    color:#777;
}
/* ============ end tour price section ================*/

/* ============ start tour main image section ================*/
.new_tour_card .tour_main_image{
    width: 100%;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.new_tour_card .tour_main_image:hover img{
    transform: scale(1.15);
}
.new_tour_card .tour_main_image img{
    width: 100%;
    transition: all .5s ease-in-out;
    object-fit: cover;
}
/* ============ end tour main image section ================*/

/* ============ start tour brief section ================*/
.tour_brief{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #636363;
    color: #fff;
    padding: 10px 7px;
    direction: ltr;
    font-size: .9rem;
    line-height: 1.3 !important;
    min-height: 30px !important;
}
.tour_brief .tour_location{
    width: 55%;
    text-align: center;
    position: relative;
}
.tour_brief .tour_duration{
    width: 45%;
    text-align: center;
    position: relative;
}
.tour_brief .tour_duration::before{
    content: " ";
    position: absolute;
    right: 0px;
    width: 2px;
    height: 24px;
    background-color: #BBBBBB;
}
/* ============ end tour brief section ================*/

/* ============ start tour description section ================*/
.tour_description{
    padding: 15px 20px 5px 10px;
}
.tour_description ul,.tour_description ol{
    padding-left: 20px;
    margin-left: 0;
    margin-bottom: 10px;
    list-style: none;
}
.tour_description li{
    padding: 4px 0;
    border-bottom: 1px dashed #ccc;
    padding-right: 8px;
    padding-left: 8px;
}
.tour_description li:last-of-type{
    border: unset !important;
}
.tour_description ul li::marker, .tour_description ol li::marker {

}
.tour_description ul li::before, .tour_description ol li::before{
    background-color: #68CB61;
    border-radius: 50%;
    font-weight: 900;
    content: '\002714';
    width: 15px;
    height: 15px;
    color: #fff;
    display: flex;
    font-size: .75rem;
    margin-right: 5px;
    position: absolute;
    left: 13px;
    margin-top: 4px;
    justify-content: center;
    /*align-items: center;*/
}

/* ============ end tour description section ================*/

/* ============ start tour description section ================*/
.new_tour_card .go_to_tour_details{
    background-color: #f4a31d !important;
    display: block;
    width: 100%;
    padding: 9px 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    transition: all .5s ease-in-out;
}
.new_tour_card .go_to_tour_details i{
    transition: all .4s ease-in-out;
}
.new_tour_card .go_to_tour_details:hover i{
    animation: move_arrow 1.3s infinite ease-in-out;
}
@keyframes move_arrow {
    0%{
        transform: translateX(0px);
    }
    50%{
        transform: translateX(-25px);
    }
    100%{
        transform: translateX(0px);
    }
}
/* ============ end tour description section ================*/


