
:root {
    --normal_light: #5fb7dd;
    --normal_dark: #17516b;
    --white: #ffffff;
    --dark : #202840;
    --eye_catching:#e40b0b;
    --before-navigation: #004c85;
    --primary: #40b9eb;
    --orange: #ff6d34;
  }

html {
    font-family:"Open Sans", sans-serif;
    line-height: 1.15;
}



body {

    min-height: 100vh;
    display:flex;
    flex-direction: column;
    justify-content:space-between;
    font-family: "Open Sans", sans-serif;
}

a:hover {
    text-decoration:none;
}


/* Font-weight */
.fw-100 {
    font-weight: 100;
}
.fw-200 {
    font-weight: 200;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}
.fw-bold {
    font-weight: bold;
}
.fw-bolder {
    font-weight: bolder;
}
.fw-light {
    font-weight: light;
}
.fw-lighter {
    font-weight: lighter;
}
.fw-normal {
    font-weight: normal;
}

/* Letter Spacing */
.ls-1 {
    letter-spacing: 1px;
}
.ls-2 {
    letter-spacing: 2px;
}
.ls-3 {
    letter-spacing: 3px;
}
.ls-4 {
    letter-spacing: 4px;
}
.ls-5 {
    letter-spacing: 5px;
}

/* Font sizes */
.font-10 {
    font-size: 10px;
}
.font-11 {
    font-size: 11px;
}
.font-12 {
    font-size: 12px;
}
.font-13 {
    font-size: 13px;
}
.font-14 {
    font-size: 14px;
}
.font-15 {
    font-size: 15px;
}
.font-16 {
    font-size: 16px;
}
.font-17 {
    font-size: 17px;
}
.font-18 {
    font-size: 18px;
}
.font-19 {
    font-size: 19px;
}
.font-20 {
    font-size: 20px;
}
.font-21 {
    font-size: 21px;
}
.font-22 {
    font-size: 22px;
}
.font-23 {
    font-size: 23px;
}
.font-24 {
    font-size: 24px;
}
.font-25 {
    font-size: 25px;
}
.font-26 {
    font-size: 26px;
}
.font-27 {
    font-size: 27px;
}
.font-28 {
    font-size: 28px;
}
.font-29 {
    font-size: 29px;
}
.font-30 {
    font-size: 30px;
}


/*==========================================================================
========================== main site  ============================
============================================================================*/

.main_site_logo{
    height: 57px;
    width: 227px;
    object-fit: cover;
    object-position: center;
    background: center;
    /* border: 1px solid red; */
}

/* ===================navigation============== */
.before_navigation{
    background-color: #004c85;
    color: #ffffff;
    display: flex;
    justify-content: center  ;
}

.before_navigation .discount_holder{
    width: 70%;
}
.try_free_button{
    min-width: 200px;
    background-color: #28a745;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    min-height: 60px;
}

.try_free_button:hover{
    text-decoration: none;
    color: white;
}

/* -----------------navbar--------------  */
.navbar_holder{
    width: 100%;
    background:#ffffff;
    box-shadow: 0 0 16px rgb(24, 21 ,131, 0.1);
}
.custom_navbar{
    width: 75%;
    margin: auto;
    display: flex;
    justify-content: space-between;


}
.custom_nav_list_holder{
    width: 100%;
}
.custom_nav_list{
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.custom_nav_list li a{
    padding-left: 0;
}
.navbar-toggler{
    height: 30px;
     cursor: pointer;
     outline:none;
     border:none;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-bottom: 0;
}

.navigation_icon{
    position: relative;
}
.navigation_icon,
.navigation_icon::before,
.navigation_icon::after{
width: 30px;
height: 2px;
background-color: gray ;
display:inline-block;

}

.navigation_icon::before,
.navigation_icon::after{
content: "";
position: absolute;
left: 0;
transition: all .3s;
}
.navigation_icon::before{
    top: -10px;
}
.navigation_icon::after{
    top: 10px;
}

.navigation_checkbox{
    display: none;
}
.navigation_checkbox:checked + .navigation_icon{
    background-color: transparent;
}
.navigation_checkbox[type="checkbox"]:checked + label .navigation_icon {
    background: transparent;
}

.navigation_checkbox[type="checkbox"]:checked + label .navigation_icon::before {
    top: 0;
    transform: rotate(135deg);
}

.navigation_checkbox[type="checkbox"]:checked + label .navigation_icon::after {
    top: 0;
    transform: rotate(-135deg);

}

.custom_nav_link{
    font-size:15px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.custom_nav_link:hover {
    color: var(--orange);
    transform: translateY(-3px);
}
/* =========================navigation end================== */


/*=====================home page start================= */

.home_header{
    height: calc(100vh - 140px);
    background: url('./../img/home_banner.webp');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position:relative;

    /* animation-name: background_image_move;
    animation-duration: 10s;
    animation-iteration-count: infinite; */
}
@keyframes background_image_move {
    0%   {background-size:100% 100%; }
    50%  {background-size:110% 110%; }
    100% {background-size:100% 100%; }
}
.home_header .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5);

    animation-name: overlay_opacity;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}
@keyframes overlay_opacity {
    0%   {background:rgba(0,0,0,0.5); }
    50%  {background:rgba(0,0,0,0.1); }
    100% {background:rgba(0,0,0,0.5); }
}
.home_header_contents{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position:relative;
}
.home_header_boxes{
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center ;
}
/* .home_header_boxes div{
    height: 100%;
} */
.home_header_text{
    color: #ffffff;
    text-align: center;

}
.brand_image_holder{
    height: 100%;

}
.brand_image_holder img{
    height: 100%;
    width: auto;
    object-fit: contain;
}
.search_box_holder{
    height: 173px;
    min-width: 380px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    justify-content: space-evenly;
    position: relative;
    border-radius: 5px;
}

.padding_on_section{
    padding: 60px 0;
}

/* ----------most popular section---------- */

.container_header p {
    color: var(--orange);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .2em;
    line-height: 1em;
}

.container_header{
    width: 100%;
    text-align: center;
}

.most_popular .title {
    margin: 0;
    font-size: 60px;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 20px;
}

.most_popular_card{
    width: 100%;
    float: left;
    margin-top: 30px;
    position: relative;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 0px #e9ebee;
    /* -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 24%); */
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;

    transition: all 0.3s ease-in-out;
}

.most_popular_card:hover {
    transform: scale(1.05);
}

.most_popular_card .card_content{
    width: 100%;
    float: left;
    border-bottom: 5px solid var(--dark);
    position: relative;
    overflow: hidden;
}
.most_popular_card .card_content .card_strip{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 55px;
    height: 55px;
    background-color: var(--orange);
    text-align: center;
    padding: 7px 7px;
    z-index: 1;
    color: #ffffff;
    border-radius: 50%;
}
.most_popular_card .card_content .card_strip h6{
    margin: 2px 0 0 0;
    font-weight: bold;
}
.most_popular_card .card_content .card_strip p{
    margin: 0;

}
.most_popular_card .card_content img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 16rem;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.most_popular_card .card_content img:hover{
    transform: scale(1.18);
}

.most_popular_card .card_content .card_price {
    color: #fff;
    padding: 6px 10px;
    text-align: center;
    background: #20283f;
    position: absolute;
    z-index: 99;
    margin-bottom: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 18px;
    font-family: Roboto-Black;
    line-height: 26px;
    text-align: right;
}
.most_popular_card .card_content .card_price del {
    float: left;
}
.most_popular_card .card_content .card_price .card_value {
    font-size: 29px;
    /* font-family: Roboto-Black;    */
}

.most_popular_card .card_description h3 {
    color: var(--dark);
    font-size: 24px;
    background-size: auto;
    background-position: 0% 0%;
    text-align: left;
    padding: 10px 0 5px 20px;
    text-transform: uppercase;
    font-family: Roboto-Black;
    margin:0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    z-index: 1;
    position: relative;
}

.most_popular_card .card_description ul {
    list-style-type:none;
    padding-left: 20px;
}
.card_btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px 15px;
}
.card_btn .price{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.card_btn a{
    text-decoration: none;
    transition: all 0.3s;
    padding: 10px 20px;
    background: var(--orange) none repeat scroll 0 0;
    color: #fff;
    border-radius: 25px;
    text-transform: capitalize;
    font-weight: 600;
}
.card_btn a:hover{
    background-color: var(--primary);
    text-decoration: none;
    /* transform: scale(1.12); */
}
.card_btn div.price .regular {
    color: rgb(135 130 130 / 70%);
    font-size: 20px;
    font-weight: 400;
    text-decoration: line-through;
}
.card_btn div.price .now {
    color: var(--orange);
    font-size: 24px;
    font-weight: 600;
}

/*------------------ how it works section ------------------- */
.how_it_works{
    background-color: #eceeef;

}

.how_it_works_box{
    margin-top: 70px;
    width: 100%;
    float: left;
    position: relative;
    background-color: #fff;
    padding: 20px 25px 20px;
    box-shadow: 0px 1px 10px 0px rgb(188 186 186 / 24%);
    text-align: center;
    border-radius: 5px;
    height: 80%;
}
.how_it_works_box h3{
    margin: 25px 0;
    color: var(--dark);
}
.works_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
}
.works_icon span{
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange);
    border-radius: 20px;
}
.works_icon span i{
    font-size: 40px;
    color: white;
}

.works_paragraph{
    /* height: 55px; */
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-size: 18px;
    color: #575d6b;
    /* position: relative; */
}

.how_it_works .up_box{
    height: 200px;
}
 /* .how_it_works_box .up_box:hover +.works_paragraph{
    height: 55px;
} */
/* .works_paragraph{
    height: 55px;
} */


/* ----------------top trending section ------------ */
.top_trending_card{
    width: 100%;
    float: left;
    position: relative;
    background-color: #fff;
    margin-top: 30px;
    border-radius: 5px;
    overflow: hidden;
}
.trending_card_content{
    width: 100%;
    float: left;
    background: #20283f;
    position: relative;
    overflow: hidden;
}
.trending_card_content::before {
    position:absolute;
    content: "";
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
}
.trending_card_content img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 400px;
    transition: all 0.5s;
}
.top_trending_card:hover img{
    transform: scale(1.25) rotate(-3deg);
}
.trending_card_title{
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 11;
    transition: all 0.3s;
}
.top_trending_card:hover .trending_card_title {
    bottom: 35px;
}
.trending_card_title h2 {
    color: #ffffff;

    margin: 0;
    position: relative;
    font-size: 20px;
}
.trending_card_title h2::before {
    content: " ";
    position: absolute;
    border-bottom: 2px solid #fff;
    height: 2px;
    width: 65%;
    bottom: -10px;
}
.trending_strip{
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--orange);
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 6px 15px;
    z-index: 11;
}
.home_tree_plant{
    width: 100%;
    text-align: center;
}
.home_tree_plant img{
    max-width: 100%;
}
.home_tree_plant p{
    font-size: 18px;
    color: #575d6b;
    margin: 0;
    padding: 30px 80px 0px;
}
/* ------------news letter--------- */
.news_letter_holder{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d6db;
    box-shadow: 0px 0px 20px 0px #e9ebee;
    border-radius: 4px;
    padding: 20px;

}
.news_letter_contents{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}
.news_letter_items{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}
.news_letter_item_title h2{
    color: var(--orange);
}
.news_letter_item_title{
    /* align-items: center; */
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.news_letter_item_title p{
    color: gray;
    font-size: 18px;
    margin-bottom: 0;
}
.news_letter_form{
    display: flex;
}
/* --------------------footer------------- */
.footer {
    background: #ebf8ff
}
.footer_items{
    width: 100%;
}
.footer_logo{
    width: 100%;
    text-align: center;
    padding-bottom: 25px;
}
.footer_logo img{
    width: 250px;
    height: auto;
}
.footer_nav_list{
    width: 100%;
}
.footer_nav_list ul{
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    text-align: center;
}
.footer_nav_list ul li{
    text-align: center;
    display: inline-block;
    padding: 6px 10px 6px;
}
.footer_nav_list ul li a{
    font-size: 18px;
    color: gray;
    line-height: 24px;
    transition: all 0.3s;
}
.footer_nav_list ul li a:hover{
    color: var(--orange);
    transform: translateY(-3px);
}
.rights{
    width: 100%;
    text-align: center;
}
.rights ul{
    margin-top: 50px;
    list-style-type: none;
}
.rights ul li{
    display: inline-block;
}
.rights ul li a{
    font-size: 16px;
    line-height: 24px;
    color: gray;
    font-weight: 400;
    border-right: 2px solid gray;
    padding: 0px 15px;
}
.rights ul li a:hover{
    color: var(--orange);
    transform: translateY(-3px);
}

.rights ul li:last-child a {
    border-right: none;
}

/*=====================home page end================= */


/*=====================about us start ================= */

.about_us_header_container{
    position: relative;
    background-image: url('./../img/about_us/about-banner.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 465px;
    /* padding-top: 80px; */
    display: flex;
    align-items: center;
    justify-content: center ;
}

.about_us_header_container::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    z-index: 1;
}

.about_us_header_text{
    position: relative;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
}
.about_us_header_text h1{
    color: #ffffff;
}
.about_us_header_text p{
    color: #ffffff;
}

.about_card_holder{

    padding: 0 5px;
    margin: 10px 0;
}
.about_card_body{
    background: #ffffff;
    padding: 30px 25px 20px;
    box-shadow: 0px 0px 5px rgb(51, 51, 51 ,0.4);
    text-align: center;
}
.about_us_card{
    height:80%;
}

.row_up{
    position: relative;
    margin-top: -160px;
    z-index: 2;
}
.about_card_body .about_icon{
    height: 75px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.about_works_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: -60px; */
}
.about_works_icon span{
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange);
    border-radius: 20px;
}
.about_works_icon span i{
    font-size: 40px;
    color: white;
}

.satisfiction_holder{
    max-width: 1500px;
    margin: auto;
}

.satisfiction_container{
    display:  flex;
    align-items: center;
    justify-content: center;
}
.satisfiction_content_holder{

    padding: 10px;
}
.satisfiction_content_holder p{
    font-size: 25px;
    margin-bottom: 4px;
    color: gray;
}
.satisfiction_left_image{
    background: url('./../img/about_us/satisfiction_left.jpg');
    background-position: center;
    background-size: cover;
    height: 400px;
    position: relative;
    margin: 10px 0;
}

.satisfiction_left_image img{
    width: 150px;
    position: absolute;
    right: -50px;
    top: -50px;
}
.about_us_partners .brands_holder ul{
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;

}
.about_us_partners .brands_holder ul li{
    width: 12.5%;
    padding: 10px 4px;

}
.about_us_partners .brands_holder ul li img{
    width: 80%;
    height: auto;
    filter: gray;
    -webkit-filter: grayscale(1);
    mix-blend-mode: multiply;

}

.about_tree_plantation{
    background-image: url('./../img/about_us/tree.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 50px 0px;

}
.about_tree_plantation{
    width: 100%;
}
.about_tree_plantation h1{
    color: #ffffff;
}
.about_tree_main_inside{
    margin: 30px auto;
    padding: 50px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
}
.about_tree_plantation .about_tree_main_inside h2{
    color: #ffffff;
}
.about_tree_plantation .about_tree_main_inside p{
    color: #ffffff;
    font-size: 22px;
    width: 70%;
    margin: 25px auto 0px;
}

.about_tree_plantation p{
    color: #ffffff;
    font-size: 18px;
}
.about_our_team_main_inside p,.about_our_team_main_inside pre{
    color: #787E8E;
    font-size: 20px;
    margin: 0px;
    text-align: center;
    font-family: inherit;
}

.about_card .how_it_works_box{

    height: 100%;
}
/*=====================about us end ================= */


/*=====================support start ================= */

.support_main_holder{
    background-color: #ffffff;
    border: 1px solid #d1d6db;
    box-shadow: 0px 0px 20px 0px #e9ebee;
    border-radius: 4px;
}
.support_main_holder hr{margin: 0;}
.support_heading{
    display: flex;
    flex-direction: row-reverse;
    padding: 0 60px;
}
.svg_support{
    fill: var(--orange);
    height: 200px;
    width: auto;
    padding: 20px 0px;
}
.support_heading_title{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.support_heading_title p{
    color:gray;
    /* margin-bottom: 5px; */
    font-size: 16px;
}
.support_heading_icon{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.support_form_holder{
    padding: 30px 60px;
}
.support_input:focus{
    border-color: #ff6e343f;
    box-shadow: 0 0 0 0.2rem #ff6e3434;
}

.support_submit_btn{
    text-decoration: none;
    transition: all 0.3s;
    padding: 10px 20px;
    background: var(--orange) none repeat scroll 0 0;
    color: #fff;
    border-radius: 25px;
    text-transform: capitalize;
    font-weight: 600;
}
.support_submit_btn:hover{
    background-color: var(--primary);
    text-decoration: none;
}
/*=====================support end ================= */



/*=====================sustainable tourism start ================= */

.sustainable_tour_header{
    position: relative;
    background-image: url('./../img/sustainable_tourism/banner.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sustainable_tour_header::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    z-index: 1;
}
.tourism_header_text{
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
}
.tourism_header_text h1{
    color: #ffffff;
    font-size: 55px;
}
.tourism_header_text p{
    color: #fff;
    font-size: 22px;
    margin: 0px;
    padding-top: 20px;
}
.tourism_header_text p span{
    display: block;
}
.tourism_second_holder{

    display: flex;
    flex-direction: row;
}
.tourism_second_holder img{
    width: 100%;
    height: auto;
}
.tourism_second_holder p{
    font-size: 22px;
    color: gray;
}
.container_padding_top{
    padding-top: 60px;
}
.sustainalbe_tourism_steps{
    width: 100%;
}
.tourism_steps{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: skewX(15deg);
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 0px #e9ebee;
    transition: all 0.3s ease-in-out;
}
.tourism_steps:hover {
    transform: scale(1.02) skewX(15deg);
}
 .tourism_steps .step{
    padding: 5px 60px;
    width: 70%;
 }
.tourism_steps .step p{
    font-size: 18px;
    color: gray;
}
.tourism_steps svg, .tourism_steps .step{
    transform: skewX(-15deg);
}

.svg_steps_icon{
    height: 80px;
    width: 80px;
    margin: 60px 0px;
    fill: var(--orange);
}

.tourism_third_img{
    position: relative;
    background-image: url('./../img/sustainable_tourism/img3.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}
.tourism_third_img::before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    z-index: 1;
    border-radius: 15px;
}
.tourism_third_img .third_img_text{
    position: relative;
    z-index: 1;
    width: 77%;
    margin: 0 auto;
}
.tourism_third_img .third_img_text p{
    color: #fff;
    font-size: 22px;
    line-height: 29px;
    margin: 0px;
}
.tourism_tree_planting .tourism_tree_planting_img img{
    border-radius: 10px;
    max-width: 100%;
    display: block;
}
.tourism_tree_planting .tourism_tree_planting_text p{
    color: gray;
    font-size: 22px;
    margin: 0px;
}
.tourism_track_trees_text{
    width: 60%;
    font-size: 22px;
    font-family: Roboto-Black;
    color: var(--orange);
}
.tourism_track_trees_img{
    width: 100%;
    height: auto;
}
.end_img_holder{
    position: relative;
    background-image: url('./../img/sustainable_tourism/planting_bottom.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}
.end_img_holder .end_img_text{
    position: relative;
    z-index: 1;
    width: 72%;
    margin: 0 auto;
}
.end_img_holder::before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    z-index: 1;
    border-radius: 15px;
}
.end_img_holder .end_img_text p{
    color: #fff;
    font-size: 22px;
    margin: 0px;
}
.end_img_holder .end_img_text .end_btn{
    width: 100%;
    float: left;
    padding-top: 40px;
}
/*=====================sustainable tourism end ================= */




/* ==========================================================================================
======================================search box start=====================================
================================================================================================ */
.search_input{
    height: 50px;
    font-size: 20px;
    color: rgb(112, 107, 107);
    border: 1px solid #ec572a9d;
    /* box-shadow: 0px 0px 1px var(--orange); */
    transition: all 0.3s;
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 .search_input:focus{
    outline: none
  }
 .search_btn{
      height: 50px;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: var(--orange) none repeat scroll 0 0;
      color: white;
  }
  .search_btn:hover,.search_btn:active{
    background: var(--primary);

}
 .option_holder{
      left: 4px;
      right: 4px;
      top: 77px;
      position:absolute;
      background: #ffffff;
      max-height: 0px;
      opacity: 0;
      border: 1px solid #ec572a9d;
      overflow: hidden;
      transition: all 0.4s;
      z-index: 100;
  }
  .option_holder .active{
    max-height: 400px;
    opacity: 1;
    z-index: 100;
    overflow-y: scroll;
    scrollbar-width: none;
}
 .option_holder .search_active::-webkit-scrollbar,
.search_active::-webkit-scrollbar {
    display: none;
}
 .area_holder{
      width: 100%;

}
.area_radio{
      display: none;
}
 .area label{
    padding: 8px 10px 3px 10px;
    cursor: pointer;
    position: relative;
    width: 100%;
}
.destination_count{
    padding: 8px 10px 3px 10px;
    width: 100%;
    color: gray;
    border-bottom: 1px solid gray;
}

.area_label svg{
    fill: var(--orange);
    position: absolute;
    height: 100%;
    width: 20px;
    right: 10px;
    top: 5px;
    transition: all 0.4s;
}
.location_holder{
  width: 100%;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease-in;
  border-radius: 8px;
  overflow: hidden;
}
.search_active{
    max-height:399px;
    opacity: 1;
    overflow-y: scroll;
    scrollbar-width: none;
}

.location {
    padding: 0px 20px;
}

.location_radio {
    display: none;
}
.location label {
    padding: 2px 0;
    font-size: 15px;
    margin-bottom: 0;
}

/*------------- packages page search box------ */
.packages_search{
    padding: 25px 0;
}
.package_search_box_holder{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    position: relative;
}
.package_search_box_holder .search_input{
    width: 58%;
    position: relative;
}
.package_search_box_holder .search_btn{
    width: 40%;
}
.package_search_box_holder .option_holder{
    left: 0px;
    /* right: 4px; */
    top: 50px;
    width: 58%;
    position:absolute;
}

/* ==========================================================================================
======================================search box end=====================================
================================================================================================ */


/* =========================== package search  start ====================== */

.search_packages{
    padding: 30px 0;
    border-top: 1px solid var(--orange);
}
.search_package_card{
    padding:25px 5px;
    box-shadow: 0px 1px 10px 3px rgb(188, 186 ,186,  0.6);
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: row-reverse;
    margin-bottom: 25px;
    /* border: 2px solid var(--orange); */
}
.search_package_card_left{
    display: flex;
    flex-direction: column;
}
.search_package_card_left h2{
    color: var(--dark);
    font-weight: bold;
}
.search_package_card_left ul{
    list-style: none;
    padding-top: 5px;
    padding-bottom: 10px;
    margin-bottom: 0;
}
.search_package_card_left a{
    font-size: 20px;
    font-weight: bold;
    background-color: var(--primary);
    color: white;
    padding: 10px;
    transition: all 0.4s;
}
.search_package_card_left a:hover{
    color: white;
    transform: scale(1.05);
}
.search_package_card_left ul li{
    font-size: 19px;
}
.search_package_card_left ul li span{
    color: var(--orange);
    margin-right: 5px;
}

.search_package_card_right_img{
    /* width: 100%;
    height: 250px; */
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    border-bottom: 8px solid var(--dark);

}
.search_package_card_right_img img{
    width: 100%;
    height: 250px;
    background-position: center;
    object-fit:cover;
    transition: all 0.4s;
}
.search_package_card_right_img:hover img{
    transform: scale(1.10);

}
.search_package_card_right_img::before{
    position:absolute;
    content: "";
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.search_package_card_right_img .package_card_image_text{
    position: absolute;
    left:0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 3;

}
.package_card_image_text h3{
    color: white;
    font-weight: bold;
}
.package_card_image_text p{
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.search_package_card_right a{
    background: var(--orange);
    width: 100%;
    padding: 10px;
    color: white;
    border-radius: 5px;
}
.search_package_card_right a:hover{
    background: var(--primary);
    color: white;
}
/* =========================== package search  end ====================== */


/* =========================== package view  start ====================== */


.package_view_header_section{
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    background-color: #2c475d;
    height: 284px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

.package_view_header_section::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    z-index: 1;
}

.package_view_header_section h1{
    color: white;
    z-index: 2;
}
/* .package_view_card_section{
    position: relative;
} */
.package_view_card_holders_holder{
    position: relative;

}
.package_view_card_holder{
    margin-top: -50px;
    width: 100%;
    z-index: 10;

}

.package_card{
    box-shadow: 0px 1px 10px 3px rgb(188, 186 ,186,  0.6);
    background-color: white;

}
.package_card_top{
    width: 100%;
    margin:0;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 4px solid var(--orange);
}

.card_top_left{
    height: 100%;
    padding-left: 0;
    margin:0;
    display: flex;
    align-items: center;
}
.card_top_left h2{
    font-size: 24px;
    color: white;
    margin: 0px;
    background: var(--orange);
    display: inline-flex;
    align-items: center;
    padding: 0px 10px;
    position: relative;
    height: 100%;
    font-weight: bold;
}
.card_top_left h2::after{
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    left: 100%;
    top: 0;
    border: 41px solid transparent;
    border-left: 50px solid var(--orange);
}
.card_top_right{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.package_card_timer{
    height: 100%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
}
.package_card_timer li:first-child{
    border-left: 2px solid #000;
}
.package_card_timer li{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0 25px;
    border-right: 2px solid #000;
}
.package_card_timer li span{
    font-weight: bold;
    font-size: 20px;
}
.package_card_timer li p{
    margin-bottom: 0;
}
.package_large_screen_price_button{
    font-size: 20px;
    font-weight: bold;
    background-color: var(--primary);
    color: white;
    padding: 10px;
    transition: all 0.4s;
    text-align: center;
    margin-bottom: 20px;
}
.package_card_book_now_btn{
    font-size: 18px;
    font-weight: bold;
    background-color: var(--orange);
    border-radius: 25px;
    color: white;
    padding: 8px 20px;
}
.package_card_book_now_btn:hover{
    background-color: var(--primary);
    color: white;
}
.package_card_bottom{
    padding: 25px;
}
.package_card_price_small{
    display: none;
}
.package_card_price_small span{
    font-size: 25px;
    font-weight: bold;
}
.package_card_price_small del{
    color: gray;
}
#package_small_screen_book{
    background-color: var(--orange);
    padding-top: 10px;
    padding-bottom: 10px;
    width: 80%;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 15px;
    color: white;
    transition: all 0.4s;
    font-weight: bold;
}
#package_small_screen_book:hover{
    background-color: var(--primary);
    color: white;

}
.package_view_card_right{
    display: flex;
    flex-direction: column;
}
.package_view_card_right h2{
    color: var(--dark);
    font-weight: bold;
}
.package_view_card_right ul{
    list-style: none;
    padding-top: 5px;
    padding-bottom: 20px;
    margin-bottom: 0;
    padding-left: 0;
}

.package_view_card_right a:hover{
    color: white;
    transform: scale(1.05);
}
.package_view_card_right ul li{
    font-size: 19px;
}
.package_view_card_right ul li span{
    color: var(--orange);
    margin-right: 5px;
}


.owl-carousel .item img{
    height: 550px;
    align-items: center;
    object-fit: cover;
}
.owl-carousel .owl-stage .owl-item .active{
    max-height: 500px;
}
.package_how_deals_work_section{
    padding-bottom: 30px;
}
.package_how_works{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 25px 30px;
}
.package_how_works p{
    font-size: 18px;
    color: gray;
}
.package_show_last_hotel{
    width: 100%;
    display: flex;
    flex-direction: row ;
    align-items: center;
    flex-wrap: nowrap;
    /* justify-content: center; */
    margin-bottom: 30px;
    border: 1px solid rgba(128, 128, 128, 0.185);
}
.package_show_last_hotel p{
    margin-bottom: 0;
    text-align: center;
}
.package_show_last_hotel img{
    height: 60px;
    width: auto;
    margin-right: 10px;
}
.package_show_hotel_holder{
    width: 100%;
    position: relative;
    /* background: #ffffff; */
}
.package_show_hotel_holder img{
    width: 100%;
    height: auto;
    height: 200px;
    object-fit: conver;
}
.package_show_hotel_holder_cover{
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #ff6e34dc;
    z-index: 20;
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
}
.package_show_hotel_holder_cover h3 {
    margin: 10px 30px;
}
.package_show_hotel_holder_cover a{
    margin-top: 10px;
    padding: 10px 10px;
    font-weight: bold;
}
.package_hotels{
    padding-bottom: 30px;
}
.package_logo_holder{
    display: flex;
    justify-content: center;
    align-items: center;
}
.package_logo_inside{
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}
.package_logo_inside img{

    filter: gray;
    -webkit-filter: grayscale(1);
}
.package_video{
    width: 100%;
    object-fit:cover;
}
.package_video_holder{
    width: 100%;
    margin: 0;
}
.package_video_section{
    padding-bottom: 30px;
}
.tourism_experiences{
    width: 100%;
    float: left;
    padding: 20px 0px 40px;
}
.package_hotel_experience{
    width: 100%;
    float: left;
    position: relative;
    margin-top: 20px;
}
.package_hotel_experience img{
    max-width: 100%;
}
.package_hotel_experience::before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.4;
}
.package_hotel_experience_text{
    width: 70%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.package_hotel_experience_text h2{
    color: #fff;
    font-size: 35px;
    margin-bottom: 25px;
    font-weight: bold;
}
.package_hotel_experience_text p{
    color: #fff;
    font-size: 30px;
    margin-bottom: 0px;
}
.package_view_second_card_holder{
    width: 100%;
    z-index: 10;

}
.second_package_holder{
    width: 100%;
    padding: 40px 0;
    margin: 0;
}
/* =========================== package view  end ====================== */


/* =========================== Login page start ====================== */

.login_page_section{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('./../img/login/login-background.jpg');
    background-size: cover;
}
/* =========================== Login page  end ====================== */


/* =========================== checkout page start ====================== */

.checkout_page_section{
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #f2f2f2;
}
.checkout_timer_icon{
    font-weight: bold;
    color: var(--orange);
}
.checkout_traveler_info,.checkout_seceure_travel{
    padding: 30px;
    border: 1px solid #d1d6db;
    box-shadow: 0px 0px 20px 0px #e9ebee;
    border-radius: 4px;
}
.checkout_package_info{
    padding: 20px;
    height: 100%;
    border: 1px solid #d1d6db;
    box-shadow: 0px 0px 20px 0px #e9ebee;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.checkout_seceure_travel p{
    margin-left: 10px;
    margin-bottom: 4px;
    color: gray;
    font-size: 16px;
}
.checkout_seceure_travel p span{
    color: var(--orange);
    margin-right: 8px;
}
.checkout_traveler_info h3,.checkout_seceure_travel h3{
    color: var(--orange);

}
.checkout_form_select{
    height: 100%
}
.checkout_confirm_button{
    color: white;
    background-color: var(--orange);
    border-radius: 5px;
    padding: 15px 20px;
    /* transition: all 0.4s; */

}
.checkout_confirm_button:hover{
    color: white;
    background-color: var(--primary);

}
.chekout_package_info_top h3{
    color: var(--orange);
}
.chekout_package_info_top p{
    color: gray;
}
.chekout_package_info_top p span{
    margin:0 10px;
    color: var(--orange);
}
.checkout_package_image{
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.checkout_image_text{
    width: 100%;
    float: left;
    position: absolute;
    z-index: 1;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.checkout_image_text h3{
    font-size: 30px;
    color: #fff;
    font-family: Roboto-Black;
    margin: 0px;
    text-shadow: 2px 2px 8px #000000;
}
.checkout_image_text p{
    font-size: 15px;
    color: #fff;
    font-family: Roboto-Black;
    margin: 0px;
    text-shadow: 2px 2px 8px #000000;
    text-transform: uppercase;
}

.checkout_package_image::before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: rgba(32, 40, 64, 0.41);
    height: 100%;
    z-index: 1;
}
.checkout_package_image img{
    width: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    object-fit: cover;
    object-position: center;
    height: 11rem;
}
.checkout_bottom_price_holder{
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid gray;
}
.checkout_bottom_price_holder span{
    padding:0 15px;
}
.checkout_total_price{
    background-color: var(--primary);
    color: white;
    border-bottom: none;
}
/* =========================== checkout page  end ====================== */


/* =========================== property listing page  end ====================== */

.animated_content{
    width: 100%;
    float: left;
    overflow: hidden;
}
.animated_content h3{
    font-weight: bold;
    color: var(--orange);
}

.property_enquiry_heding h3{
    color: var(--orange);
    font-weight: bold;
}
.message{
    display: none;
}
.message:first-child{
    display: block;
}
.animated{
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}
.fadeInDown{
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

@keyframes fadeInDown{
    from{
        opacity: 0;
        transform: translate3d(0,100%,0);
        -webkit-transform: translate3d(0,100%,0);
    }

    100%{
        opacity: 1;
        transform: none;
        -webkit-transform: none;
    }
}
/* =========================== property listing page  end ====================== */


/* ================terms of use start */
.terms-condition {
    width: 100%;
    float: left;
    margin: 30px 0px;
    background: #fff;
    border-radius: 5px;
    padding: 20px 40px;
}
.terms-condition h2{
    color: var(--orange);
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 10px;
    font-weight: bold;
}
.terms_text {
    width: 100%;
    float: left;
    padding-left: 0px;
}
.terms_text h4 {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 0px;
    color: #484844;
    font-weight: bold;
}
.terms_text p {
    font-size: 14px;
    color: rgba(72, 72, 72, 0.75);
    margin: 0px;
    padding-top: 15px;
}
.terms_text pre{
    font-size: 14px;
    color: rgba(72, 72, 72, 0.75);
    margin: 0px;
    padding-top: 15px;
    font-family: inherit;
}
.terms_ol {
    width: 100%;
    float: left;
    padding-left: 30px;
}
.terms_ol li {
    font-size: 14px;
    color: rgba(72, 72, 72, 0.75);
    margin: 0px;
    padding-top: 15px;
}
.terms_ul {
    width: 100%;
    float: left;
    padding-left: 30px;
    list-style-type: disc !important;
}

/* ================terms of use end */

/* ========privacy policy start ============== */

.privacy_use {
    width: 100%;
    float: left;
}
.privacy_use p {
    font-size: 14px;
    color: rgba(72, 72, 72, 0.75);
    margin: 0px;
    padding-top: 15px;
}
.privacy_use pre {
    font-size: 14px;
    color: rgba(72, 72, 72, 0.75);
    margin: 0px;
    padding-top: 15px;
    font-family: inherit;
    text-align: left;
}
.privacy_use_inside {
    padding: 0px 20px;
}
.privacy_use_inside p {
    padding-top: 7px;
}
.privacy_use h5 {
    font-size: 14px;
    color: #484844;
    margin-top: 30px;
    margin-bottom: 0px;
    font-weight: bold;
}
/* ========privacy policy end ============== */


/* ==================login page start ================= */

.login-form-holder{
    border: 1px solid #d1d6db;
    box-shadow: 0px 0px 20px 0px #e9ebeeb6;
    border-radius: 10px;
}
.login-form h2{
    color: var(--orange);
}
/* ==================login page end ================= */

/*======================== customized phone number select=============== */
.custom_phone_holder{
    position: relative;
}
.custom_select_selected{
    padding:0 24px ;
    color: #495057;
    background-color: #fff;
    height: 100%;
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.custom_select_selected svg{
    fill: #495057;
    position: absolute;
    height: 100%;
    width: 20px;
    right: 24px;
    transition: all 0.4s;
}
.custom_select_selected:focus{
    border-color: #ff6e343f;
    box-shadow: 0 0 0 0.2rem #ff6e3434;
}

.options-container {
    position: absolute;
    color: #495057;
    background-color: #fff;
    top: 50px;
    max-height: 0;
    /* width: 100%; */
    right: 0;
    left: 0;
    opacity: 0;
    transition: all 0.4s;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    order: 1;
    z-index: 20;
    margin: 0 15px;
  }
  .options-container.active {
    max-height: 240px;
    opacity: 1;
  overflow-y: scroll;
}
.options-container.active + .selected::after {
    transform: rotateX(180deg);
    top: -6px;
  }
  .options-container::-webkit-scrollbar {
    width: 8px;
    background: var(--orange);
    border-radius: 0 8px 8px 0;
  }
  .options-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 0 8px 8px 0;
  }
  .option,
  .selected {
    padding: 5px 10px;
    cursor: pointer;
  }
  .option:hover {
    background: #414b5731;
  }
  .option .radio {
    display: none;
  }
  .option label{
      margin: 0;
      color: black;
  }
  .option span{
      padding-left: 5px;
      color: gray;
  }

/*======================== customized phone number select end =============== */

.reservation_success_section{
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reservation_sucess_holder{
    border: 1px solid #d1d6db;
    box-shadow: 0px 0px 20px 0px #e9ebee;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.reservation_sucess_holder h5{
    font-weight: bold;
    color: var(--orange);
}
.reservation_sucess_holder i{
    font-weight: bold;
    color: var(--orange);
    font-size: 8rem;
    margin-bottom: 10px;
}

/* ==========================================================================================================
======================= floating review=========================================================
======================================================================================= */

.review_holder{

    position: fixed;
    right: 0;
    top: 100px;

    z-index: 100;
    display: flex;
}
.review_main_holder{
    /* height: 500px; */
    width: 0px;
    background-color: white;
    z-index: 100;
    box-shadow: 0px 0px 20px 0px var(--orange);
    transition: all 0.5s;
    /* padding: 10px; */
    overflow: hidden;
    /* overflow-y: scroll; */
    scrollbar-width: none;
}
#review_reaction_error{
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
#review_submit_button{
    color: white;
    background-color: var(--orange);
    transition: all 0.3s;
}
#review_submit_button:hover{
    background-color: var(--primary);
}
#review_text_error,#review_name_small,#review_title_small{
    display: none;
}
.review_star_icon_holder{
    height: 51px;
    width: 51px;
    background-color: white;
    border: 1px solid var(--orange);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.review_star{
    height: 30px;
    width: 30px;
    fill: var(--orange);

}
.star_holder{
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}
.star_holder input {
    display: none;
}
.star_holder li label{
    cursor: pointer;
    transition: all 0.4s;
}
.star_holder li label:hover{
    transform: scale(1.5);
}
.svg_star_icons{
    height: 30px;
    width: 30px;
    fill: var(--orange);
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes rotating {
    from {
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -ms-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  .rotating {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
  }

/* ==========================================================================================================
======================= floating review end=========================================================
======================================================================================= */

/* review carousel  */
.owl-prev {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 40%;
    left: 0px;
    display: block !important;
    border:0px solid black;

}

.owl-next {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    right: 0px;
    display: block !important;
    border:0px solid black;
}
.owl-prev i, .owl-next i {
    transform : scale(2);
    color: var(--orange);
    border-radius: 50%;
    background-color: white;
    transition: all 0.4s;

}
.owl-prev i:hover, .owl-next i:hover{
    transform : scale(3);
}

#owl2 .item img{
    height: 200px;
    align-items: center;
    object-fit: cover;
}

.review_carousel_item_holder{
    /* padding-left: 60px; */
}
.review_carousel_item_holder ul{
    list-style: none;
    display: flex;
    padding-left: 0;
    width: 100%;
}
.review_carousel_item_holder ul li{
    padding: 3  px;
    /* background-color: var(--orange); */

    margin: 2px;
    /* border: 2px solid var(--orange); */
}
.review_show_star
{
    height: 20px;
    width: 20px;
    fill:rgb(250, 216, 26);
}
.verified_icon{
    height: 20px;
    width: 20px;
    fill:var(--primary);
}
.rivew_paragraph_holder{
    height: 70px;
    text-overflow: ellipsis;
    overflow:hidden;

}

#review_date{
    background-color: white;
    color: gray;
    font-weight: bold;
    border: none;
    margin-left: auto;

}
/* ==========review end=========== */

/* ==========================================================
======================= reservation show start===============
========================================================== */
.reservation_show_page{

    width: 100%;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;

}
.reservation_holder{
    background-color: white;
    border: 1px solid #d1d6db;
    border-radius: 4px;
}
.reservation_show_left{
    border-right: 1px solid #d1d6db;
}
.reservation_show_right{
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
}
.reservation_show_right h3{
    color: var(--orange);
}
.reservation_show_right ul{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.reservation_show_right ul li{
    padding: 8px 15px;
    border-top: 1px solid #d1d6db;
    color: gray;
    display: flex;
    justify-content: space-between;
}
.reservation_show_right ul li:last-child{

    border-bottom: 1px   solid #d1d6db;
}
.reservation_show_right ul li span{
    font-size: 18px;
    /* font-weight: bold;    */
}

/* ==========================================================
======================= reservation show end===============
========================================================== */
