*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family:'Lato-Regular';
    src: url('../fonts/Lato-Regular.ttf');
}
@font-face {
    font-family:'BodoniRegular';
    src: url('../fonts/bodoni-bold-condensed-bt.ttf');
}

@font-face {
    font-family:'Lato-Light';
    src: url('../fonts/Lato-Light.ttf');
}
@font-face {
    font-family:'Lato-Bold';
    src: url('../fonts/Lato-Bold.ttf');
}
@font-face {
    font-family:'OpenSans-Medium';
    src: url('../fonts/OpenSans-Medium_0.ttf');
}
@font-face {
    font-family:'OpenSans-Regular';
    src: url('../fonts/OpenSans-Regular.ttf');
}
@font-face {
    font-family:'OpenSans-Light';
    src: url('../fonts/OpenSans-Light_0.ttf');
}
@font-face {
    font-family:'PlayfairDisplay-Black';
    src: url('../fonts/PlayfairDisplay-Black.ttf');
}
@font-face {
    font-family:'PlayfairDisplay-Bold';
    src: url('../fonts/PlayfairDisplay-Bold.ttf');
}
@font-face {
    font-family:'PlayfairDisplay-Medium';
    src: url('../fonts/PlayfairDisplay-Medium.ttf');
}
@font-face {
    font-family:'PlayfairDisplay-Regular';
    src: url('../fonts/PlayfairDisplay-Regular.ttf');
}
@font-face {
    font-family:'PlayfairDisplay-SemiBold';
    src: url('../fonts/PlayfairDisplay-SemiBold.ttf');
}
body,html{
    width: 100%;
    height: 100%;
}
html{
    scroll-behavior: smooth;
}
:root{
    --main_color: #ffa300;
    --white:#fff;
    --black: #000;
    --subhead:#8b775d;
    --bg_color: #eac986;
    --btn_color: #edaa42;
    --text_color:#a2abb3
}
body{
    font-size: 18px;
    font-family:'OpenSans-Regular';
    color: var(--white);
}
.main_wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color:  var(--white)
}
/* *************************************banner************************* */
.banner{
    background-image: url(../img/slider.webp);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 60px;
    background-position: 0 -70px;
}
.banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
}
.header_top{
    background-color: var(--subhead);
    width: 100%;
    z-index: 1;
    position: relative;
}
.header_top .nav-link{
    color: var(--white);
    padding: 20px 9px;
}
.header_top svg{
    width: 20px;
    margin-right: 10px;
}
.header_toplink .nav-link:first-child{
    margin-right: 30px;
}
.header_top i{
    font-size: 20px;
}
.main_menu .menu_items .nav-item{
    padding: 0px 13px;
}
.main_menu .menu_items .nav-link,.main_menu .menu_items .nav-link:hover,.main_menu .menu_items .nav-link:focus{
    color: var(--white);
    font-size: 16px;
    padding: 0 5px;
}
.main_menu .menu_items .nav-link.active{
    color: var(--white);
    border-bottom: 1px solid var(--main_color)
}
.main_menu .navbar-brand{
    width: 120px;
}
.dropdown-toggle::after{
    width: 7px;
    height: 7px;
    border: 1px solid;
    transform: rotate(45deg);
    border-top: 0;
    border-left: 0;
}
.banner_title{
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 100px;
}
.banner_title h1{
    font-size: 70px;
    font-family: 'PlayfairDisplay-Medium';
    word-spacing: 10px;
    -webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: swip_up ;
-webkit-animation-delay: .5s;
animation-delay: .5s;
}
.banner_title h2{
    font-family: 'PlayfairDisplay-SemiBold';
    font-size: 40px;
    -webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: swip_up ;
-webkit-animation-delay: .6s;
animation-delay: .6s;
}
.banner_form{
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px 20px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.banner_input{
    width: calc(20% - 20px);
    position: relative;
}
.banner_input i{
    position: absolute;
    color: var(--main_color);
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
.banner_input input,.banner_input select{
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 10px;
    border-radius: 5px;
    color: #555;
}
.banner_input select{
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
    position: relative;
}
.banner_select{
    position: relative;
}
.banner_select::before{
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border: 1px solid #000;
    transform: rotate(45deg) translateY(-50%);
    border-top: 0;
    border-left: 0;
    z-index: 1;
    cursor: pointer;
    right: 20px;
    top: 50%;
    margin-top: -3px;
}
.banner_input button{
    width: 100%;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
    color: var(--white);
    font-family:'Lato-Bold';
}
@keyframes swip_up {
    from {
        transform: translate(0px, 50px);
        opacity: 0
    }
 
    to {
        transform: translate(0,0);
        opacity: 1
    }
 }
/* *************************************banner************************* */
/*****************************our_priority***************************** */
.our_priority{
    padding: 70px 0;
    color: var(--black);
}
.left_headh5{
font-size: 30px;
color: #ada290;
margin-bottom: 0;
}
.left_headh3{
    font-size: 60px;
    font-family: 'PlayfairDisplay-Medium';
    color: var(--btn_color);
}
.left_priority p{
    font-size: 19px;
    text-align: justify;
}
.load_more_btn{
    background-color: #8b775d;
    font-family: 'Lato-Bold';
    color: #fff;
    padding: 12px 30px;
    border: 0;
    border-radius: 3px;
}
.load_more_btn span{
    color: #8b775d;
    width: 22px;
    height: 22px;
    background: #fff;
    display: inline-flex;
    border-radius: 50%;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}
.left_priority{
    padding-right: 30px;
}

/*****************************our_priority***************************** */
/*****************************anays_rooms***************************** */
.anays_rooms{
    padding: 30px 0;
}
.anays_rooms_heading{
    text-align: center;    
    margin: 0.5em -1em;
    position: relative;
    display: flex;
    align-items: center;
}
.anays_rooms_heading::before,.anays_rooms_heading::after{
    content: "";
    flex: 1;
    height: 25px;
    background-repeat: no-repeat;
    margin: 0px 1em;
    background-image: url(../img/design.webp);
}
/* .anays_rooms_heading::before{
    left: 0;
}
.anays_rooms_heading::after{
    right: 0;
} */
.left_head4{
    font-size: 38px;
    font-family: 'PlayfairDisplay-Medium';
    color: var(--btn_color);
    margin:0px 10px;
}
.anays_rooms_row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}
.anays_rooms_row_div{
    width: calc(50% - 8px);
    gap: 15px;
    display: flex;
    flex-direction: column;
}
.anays_rooms_row_div_left{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.73)),url(../img/room/comfort.webp);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;

    
}
.anays_rooms_row_div_right{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.73)),url(../img/room/comfort-1.webp);
    background-size: cover;
    height: 195px;
    background-repeat: no-repeat; 
    display: flex;
    flex-direction: column;
}
.anays_rooms_row_div_right_inner{
    width: calc(50% - 8px);
    height: 195px;
    display: flex;
    flex-direction: column;
}
.anays_rooms_row_div_bottom{
    display: flex;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
}
.anays_rooms_row_div_right_inner_left{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.73)),url(../img/room/compact.webp);
    background-size: cover;
}
.anays_rooms_row_div_right_inner_right{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.73)),url(../img/room/compact-1.webp);
    background-size: cover;
}
.anays_rooms_row_heading{
    background: #f3f1eb;
    display: flex;
    flex-direction: column;
    width: fit-content;
    color: #000;
    margin-left: auto;
    margin-top: 10px;
    padding: 5px 20px;
}
.anays_rooms_amount{
    color: var(--main_color);
}
.anays_rooms_span{
    font-size: 14px;
}
.anays_room_bottom_link{
    margin-top: auto;
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
}
.anays_room_bottom_link span{
    font-family: 'PlayfairDisplay-Medium';
    font-size: 18px;
}
.anays_room_bottom_link a{
    color: #fff;
    text-decoration: none;
}
.anays_room_bottom_link a i{
    color: var(--white);
}

.amenties-title {
    color: var(--subhead);
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.amenties-list{
    padding-top: 10px;
    columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style-type: none;
  padding-left: 15px;
}
.amenties-list li{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    color: #666;
    margin-bottom: 20px;
}
.amenties-list li img{
    width: 20px;
    margin-right: 10px;
}
/*****************************anays_rooms***************************** */
/*****************************big_world***************************** */
.big_world{
    background-color:var(--bg_color);
    padding: 50px 0;
}
.big_worldImg{
    position: relative;
}
.img_relative::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    left: 0;
    top: 0;
    z-index: 1;
}
.img_relative{
    position: relative;
}
.big_worldImgposition{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.bigworld_head{
    font-family: 'OpenSans-Light';
    font-size: 22px;
    color: #3c484b;
}
.bigworld_head span{
    font-size: 24px;
    color: #10283d;
    font-family: 'Lato-Bold';
}
.bigworld_div{
    padding-left: 20px;
}
.bigworld_explore{
    font-size: 30px;
    font-family:'PlayfairDisplay-Black';
}
.bigworld_para{
    color: #000;
    font-size: 17px;
}
/*****************************big_world***************************** */
/*****************************anays_journeys***************************** */
.anays_journeys{
    background-image: url('../img/gallery/hall-2.webp');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding: 50px 0px 20px 0px;
    background-position: center;
    margin-bottom: 40px;
}
.anays_journeys::before{
    content: '';
    position: absolute;
    background-color: rgba(0,0,0,.7);
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}
.journeys_container{
    z-index: 1;
    position: relative;
}
.anays_journeys .bigworld_head,.anays_journeys .bigworld_para{
    color: var(--white);
}
.anays_journeys .load_more_btn{
    background-color: var(--white);
    color: var(--black);
}
.anays_journeys .load_more_btn span{
    background-color: #8b775d;
    color: #fff;
}
.anays_journeys .bigworld_explore{
    font-family: 'PlayfairDisplay-Medium';
}
.anays_journeys .bigworld_para{
    color: #ddd;
    font-family: 'OpenSans-Light';
    font-size: 19px;
}
.anays_journeys img{
    padding: 10px 0px;
}
/*****************************anays_journeys***************************** */
/*****************************anays_journeys***************************** */
.anays_story{
    color: #000;
}
.story_slider_head{
    font-family: 'PlayfairDisplay-SemiBold';
    font-size: 23px;
    margin-bottom: 5px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.story_slider_date{
    color: #8b775d;
    font-family: 'OpenSans-Regular';
    font-size: 20px;
}
.story_slider_para{
    font-size: 16px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.story_slider .load_more_btn{
    transform: translateY(30px);
}
.story_slider .card{
    margin-bottom: 35px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
    height: 100%;
}
.story_slider .load_more_btn span {
    background-color: #fff;
    color: #8b775d;
}
.slider {
    width: 100%;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}
.slick-slide {
  transition: all ease-in-out .3s;
}

.slick-current {
  opacity: 1;
}
.story_slider .card-header{
    padding: 0;
}
.height-box{
    width: 100%;
    height: 200px;
}
.height-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.anays_story .slick-dots li{
    background: #000;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    opacity: .5;
}
.anays_story .slick-dots .slick-active{
    opacity: 1;
    width: 12px;
    height: 12px;
}
.slick-dots button{
    display: none !important;
}
.slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
}
/*****************************anays_journeys***************************** */
/*****************************test_slider***************************** */
.test_slider{
    text-align: center;
    padding: 80px 0;
}
.test_slider .card{
    background-color: #ddd;
    padding: 20px 30px;
    border: 0;
    border-radius: 10px;
    width: 100%;
    height: 100% !important;
}
.test_slider h5,.test_slider h6, .test_slider p{
    color: #000;
}
.test_slider h5{
    font-family: 'PlayfairDisplay-Medium';
    color: #8b775d;
}
.test_slider h6{
    font-family: 'Lato-Bold';
}
.test_img{
    width: 80px;
    height: 80px;
    display: block;
    margin: auto;
    border-radius: 50%;
}
.test_img img{
    border-radius: 50%;
}
.test_slider .card-body{
    padding: 0;
}
.test_slider p{
    font-size: 12px;
}
.test_div_img{
    width: 35px;
    height: 35px;
    display: block;
    margin: auto;  
    margin-top: 10px;
}
.slick-center { 
    transform: scale(1.3);
    z-index: 1;
    position: relative;
  }
.slick-center .test_slider .card{
    background-color: var(--bg_color);
}
.testimonial .slick-dots{
    bottom: 35px;
}
.testimonial li[role="presentation"] {
    background-color: #000;
    border-radius: 50%;
    width: 6px;
    height: 6px;
}
.testimonial .slick-active[role="presentation"] {
    background-color: #fff;
    width: 8px;
    height: 8px;
}
.testimonial .slick-prev.slick-arrow,.testimonial .slick-next.slick-arrow{
    z-index: 9;
    top: 115px;
}
.testimonial .slick-prev.slick-arrow{
    left: 50%;
    margin-left: -100px;
}
.testimonial .slick-next.slick-arrow{
    right: 50%;
    margin-right: -100px;
}
.testimonial .slick-prev:before,.testimonial .slick-next:before{
    font-size: 40px;
    color: #fff;
}
/*****************************test_slider***************************** */
/*****************************footer***************************** */
.footer{
    margin-top: auto;
    background-color: #8b775d;
    padding: 50px 0px;
    padding-bottom: 20px;
}
.footer_address{
    padding-right: 8px;
}
.footer_address li{
    display: flex;
    align-items: baseline;
    font-family: 'OpenSans-Light';
    margin-bottom: 13px;
    font-size: 16px;
    width: 100%;
}
.footer_address i{
    font-size: 14px;
}
.footer_address span{
    padding-left: 10px;
}
.footer_head{
    font-size: 20px;
    margin-bottom: 10px;
}
.footer_link li {
    margin-bottom: 4px;
}
.footer_link li a{
    color: #dddcdc;
    font-size: 18px;
    font-family: 'OpenSans-Light';
    text-decoration: none;
    display: block;
}
.footer_map{
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 5px;
    padding-bottom: 3px;
}
.footer_map iframe{
    border: 0;
    width: 100%;
    height: 200px;
} 
.footer_social a{
    color: var(--white);
    padding: 15px 9px;
}
.footer_social i{
    font-size: 20px;
}
.pstart{
    padding-left: 0;
}
.paddX{
    padding-left: 0;
    padding-right: 0;
}
/*****************************footer***************************** */
/*****************************about***************************** */
.subpages.main_menu .menu_items .nav-link{
    color: #000;
}
.dropdown_navitem{
    position: relative;
}
.dropdown_navitem a{
cursor: pointer;
}
.dropdown_sub{
    display: none;
    position: relative;
}
.dropdown_sub::after {
    z-index: -10;
    content: "";
    position: absolute;
    width: 5px;
    height: 0;
    margin-left: 0;
    bottom: 0;
    top: 15px;
    left: 0;
    box-sizing: border-box;
    border: 10px solid #fff;
    border-color: transparent transparent #fff #fff;
    transform-origin: 0 0;
    transform: rotate(45deg);
    box-shadow: -1px 3px 3px 0 rgba(0, 0, 0, 0.4);
}
.dropdown_multii,.dropdown_sub{
    position: absolute;
    background: #fff;
    padding: 0;
    min-width: 200px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    top: calc(100% + 10px);
    left: 0;
    list-style: none;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 99;
}
.dropdown_sub{
    top: 0;
    left: calc(100% + 10px);
    transform: translateX(0%);
}
.dropdown_navitem:hover .dropdown_multii{
    visibility: visible;
}
.dropdown_multii li a{    
    padding: 10px 20px;
}
.dropdown_navitem i{
    font-size: 14px;
    margin-left: 3px;
}




.subpage_breadcrumb{
    background-image: url(../img/bg03.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 25px 0px;
    position: relative;
    background-position: bottom -100px left;
}
.subpage_breadcrumb::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    top: 0;
    left: 0;
}
.subpage_breadcrumb .breadcrumb{
    margin-bottom: 0;
    z-index: 1;
    position: relative;
}
.subpage_breadcrumb .breadcrumb-item.active,.subpage_breadcrumb .breadcrumb-item+.breadcrumb-item::before,.subpage_breadcrumb a{
    color: #fff;
    text-decoration: none;
    font-size: 21px;
    font-family: 'OpenSans-Regular';
}
.who_we_are_heading .left_head4{
    position: relative;
    margin-bottom: 20px;
}
.who_we_are_heading .left_head4::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/who_are_design.PNG);
    width: 330px;
    height: 20px;
    background-repeat: no-repeat;
    right: 0;
    background-size: cover;
}
.who_we_are{
    padding: 20px 0px 100px 0px;
}
.who_we_are p{
    color: #314658;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.who_we_are_bottom_text{
    color: var(--subhead);
    font-size: 26px;
    font-family: 'PlayfairDisplay-Regular';
    margin-top: 21px;
    text-align: left;
    letter-spacing: 0px;
    word-spacing: 4px;
}
.who_are_left{
    text-align: justify;    
    padding-right: 65px;
}
/*****************************about***************************** */
/*****************************awards_about***************************** */
.awards_about{
    background-color: transparent;
    margin-bottom: 70px;
    position: relative;
}
.awards_about::before{
    background-color: var(--bg_color);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 25px);
}
.awards_div{
    display: flex;
    gap: 20px;
    text-align: center;
    flex-wrap: wrap;
}
.awards_innerdiv{
    width: 18%;
    border: 1px solid var(--subhead);
    border-radius: 10px;
    padding: 10px 10px 45px;
    background: #fff;
}
.award_innerhead{
    color: var(--main_color);
    margin-top: 25px;
    font-size: 40px;
    font-family: 'BodoniRegular';
    margin-bottom: 5px;
}
.award_innerpara{
    color: #314658;
    font-size: 16px;
}
.awards_innerdiv:nth-child(odd){
    transform: translateY(-50px);
}
.awards_innerdiv:nth-child(even){
    transform: translateY(25px);
}
/*****************************awards_about***************************** */
/*****************************companct***************************** */
/* .companct .anays_rooms_heading::before,.companct .anays_rooms_heading::after{
    content: '';
    position: absolute;
    width: 340px;
} */
.companct .anays_rooms_heading {
    margin-top: 40px;
}
.companct .left_head4{
    font-family: 'PlayfairDisplay-Regular';
}
.carousel-control-prev,.carousel-control-next{
    background: #000;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
}
.carousel-control-prev{
    left: 50px;
}
.carousel-control-next{
    right: 50px;
}
.slider_star{
    position: absolute;
    top: 36px;
    z-index: 999;
    color: yellow;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}
.slider_star img{
    width: 35px;
}
.carousel-item::before{
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
}
.bookNow{
    font-size: 35px;
    padding: 6px 50px;
    border-radius: 5px;
    border: 1px solid var(--btn_color);
    background-color: var(--btn_color);
    color: var(--white);
    font-family: 'Lato-Bold';
    margin: auto;
}
.slider_innerfooter{
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0px 20px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}
.slider_leftdiv{
    font-family: 'PlayfairDisplay-Regular';
    font-size: 21px;
    margin-right: 20px;
}
.slider_rightdiv {

}
.slider_rightdiv span{
    font-size: 30px;
    font-family: 'OpenSans-Regular';
}
.slider_rightdiv p{
    font-family: 'OpenSans-Light';
}
.carousel-indicators img{
    max-width: 100%;
}
.companct{
    padding-bottom: 20px;
}
.carousel-indicators [data-bs-target]{
    text-indent: 0%;
    border-top: 0;
    border-bottom: 0;
    background-color: transparent;
    width: auto;
    opacity: 1;
    margin-left: 0;
    margin-right: 0;
}
.carousel-indicators{
    margin-left: 0;
    margin-right: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -15px;
    display: flex;
    gap: 15px;
}
.carousel.slide{
    padding-bottom: 0px;
}
.companct_descriptiondiv{
    color: var(--black);
    padding-top: 190px;
    margin-bottom: 20px;
}
.companct_description{
    border: 2px solid #7f8c97;
    padding: 20px;
    padding-bottom: 10px;
}
.companct_discription{
    font-family: 'PlayfairDisplay-Regular';
    color: var(--subhead);
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.companct_description p{
    color: var(--text_color);
    font-size: 20px;
    word-spacing: 2px;
}
.companct_bold{
    font-size: 16px;
    color: #546574;
    font-family: 'Lato-Bold';
    margin-bottom: 12px;
}
.companct_bold span{
    color: var(--text_color);
    font-family: 'OpenSans-Regular';
}
.companct_form{
    border: 2px solid #7f8c97;
    padding: 25px 20px;
} 
.companct_form input,.companct_form select{
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    color: #555;
    margin-bottom: 15px;
}
.companct_form_input{
    position: relative;
}
.companct_form_input i {
    position: absolute;
    color: var(--main_color);
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    margin-top: -5px;
}
.companct_form button{
    border-radius: 3px;
    background: var(--subhead);
    color: #fff;
    width: 100%;
    border: 0;
    padding: 5px 10px;
    font-family: 'Lato-Bold';
    font-size: 18px;
}
.features{
    background-color: #10273C;
    padding: 20px 0px;
}
.features_head{
    color: #fff;
    font-family: 'PlayfairDisplay-SemiBold';
    font-size: 23px;
    text-transform:uppercase;
}
.features_icon{
    color: #8b775d;
    padding: 15px 0;
    display: flex;
    align-items:  center
}
.features_icon i{
    font-size: 27px;
    margin-bottom: 15px;
}
.features_icon span{
    font-size: 20px;
    font-family: 'OpenSans-Light';
    color: #fff;
}
.other_room_div{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.73)), url(../img/inner_slider.webp);
    background-size: cover;
    height: 250px;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}
.banquet_div .companct_description p{
    font-size: 20px;
    word-spacing: 0;
}
.nav_description li{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 35px;
}
.left_description{
    width: 100px;
}
.right_description{
    width: calc(100% - 100px);
    font-family: 'OpenSans-Light';
    font-size: 22px;
    padding-right: 100px;
}
.nav_description{
    margin-top: 60px;
}
.features_icon img{
    width: 30px;
margin-right: 20px;
}
.banquet_feature{
    padding-top: 30px;
}
.banquet_feature .features_head {
    margin-bottom: 20px;
}
.span_tourpackage{
    color: var(--subhead);
    font-size: 22px;
}
/* .tourplace .anays_rooms_heading::before, .tourplace .anays_rooms_heading::after{
    content: '';
    position: absolute;
    width: 440px;
} */
.tourplace p{
    color: var(--text_color);
    text-align: center;
    font-size: 20px;
    padding: 0px 80px;
}
.tourplace_div{
    display: flex;
}
.tourplace_left{
    width: 290px;
    background-image: url(../img/tour.webp);
    background-size: cover;
    position: relative;
}
.tourplace_left::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(58 68 54 / 53%);
}
.tourplace_left_inner{
    position: relative;
    padding: 50px 20px 20px;
}
.tourplace_right{
    width: calc(100% - 295px);
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.tourplace_place{
    font-family: 'PlayfairDisplay-Regular';
    font-size: 30px;
}
.tourplace_pakage{
    font-size: 20px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 10px;

}
.tourplace_left p{
    font-size: 18px;
    font-family: 'OpenSans-Light';
}
.tourplace_left ul{
    font-size: 18px;
    font-family: 'OpenSans-Light';
    padding-bottom: 30px;
}
.tourplace_left ul li{

}
.tourplace_left button{
    width: calc(100% - 30px);
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid var(--btn_color);
    background-color: var(--btn_color);
    color: var(--white);
    font-family: 'Lato-Bold';
    margin: auto;
    display: block;
}
.tourplace_right_inner{
    width: calc(50% - 5px);
}
.tourplace_inner_div{
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.tourplace_right_inner img{
    height: 100%;
}
.tour_valparai{
    background-image: url(../img/tour/05.webp);
}
/*****************************companct***************************** */
.amenities_div p{
    text-align: left;
    padding: 0;
    color: #000;
    margin-bottom: 0;
}
.amenities_boxtext{

}
.amenities_box{
    background-color: #e9e9e9;
    color: #000;
    text-align: center;
    padding: 20px 0px;
    border-radius: 5px;
    height: 100%;
}
.amenities_box img{
    width: 40px;
    margin-bottom: 20px;
    height: 40px;
}
.Gallery .anays_rooms_heading{
    margin-top: 30px;
}
.padd_rig0{
    padding-right: 0;
}
.gallery_form{
    background-color:var(--bg_color);
    border-radius: 10px;
    padding: 30px 50px;
    color: #000;
    padding-bottom: 40px;
  
}

.galleries .gallery_form{
    height: 100%;
}
.gallery_heading{
    font-size: 22px;
    margin-bottom: 10px;
}
.gallery_form .tags{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 30px;
}
.gallery_form li{
    padding: 10px 0;
    border-top: 1px solid var(--white);
    font-size: 20px;
}
.gallery_form li:last-child{
    border-bottom: 1px solid var(--white);
    margin-bottom: 40px;
}
.gallery_form .tags span{
    background: #f7dbaa;
    font-size: 18px;
    padding: 6px 18px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
}
.gallery_form .tags span i{
    opacity: .3;
}
.gallery_form input{
    border: 1px solid;
    width: 100%;
    padding: 4px 9px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.blog_left{
    padding-right: 80px;
    color: #000;
}
.blog_content{
    margin-top: 10px;
    border-bottom: 1px solid var(--btn_color)
}
.blog_contt_head{
    color: var(--subhead);
    font-family: 'PlayfairDisplay-Bold';
    margin-bottom: 6px;
    font-size: 22px;
}
.blog_content p{
    text-align: justify;
    margin-top: 20px;
}
.blog_content li{
    margin-right: 50px;
    color: var(--subhead);
}
.blog_content li img{
    margin-right: 5px;
}
.borderbtm_0{
    border-bottom: 0;
}
.gallery_post{
    display: flex;
    flex-wrap: wrap;
}
.gallery_post_left{
    width: 70px;
    height: 70px;
}
.gallery_post_right{
    width: calc(100% - 70px);
    padding-left: 10px;
}
.gallery_post_right_head{

}
.gallery_post_right .gallery_post_right_head{
    display: block;
    font-size: 14px;
    font-weight: 600;
}
.gallery_post_right span{
    font-size: 12px;
    font-family: 'OpenSans-Light';
}
.recent_postform{
    padding-bottom: 0%;
}
.sticky-form{
    position: sticky;
    top: 20px;
    z-index: 10;
}
.recent_postform li:last-child{
    border-bottom: 0;
}
.Gallery{
    padding-bottom: 20px;
}
.contact .anays_rooms_heading{
    margin-top: 20px;
}
.contact p{
    color: #000;
    text-align: center;
    padding: 0px 100px;
    font-family: 'OpenSans-Light';
    font-size: 20px;
}
.contact_form input,.contact_form select,.contact_form textarea{
    width: 100%;
    margin-bottom: 50px;
    padding: 14px 15px;
    border-radius: 5px;
    border: 1px solid var(--subhead);
}
.contact_form textarea{
    resize: none;
}
.contact_form{
    margin-top: 80px;
    color: #000;
    margin-bottom: 50px;
}
.contact_form button{
    width: auto;
    padding: 10px 30px;
    border-radius: 5px;
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
    color: var(--white);
    font-family: 'Lato-Bold';
}
.agree_conditon{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    position: relative;
}
.contactinput{
    width: auto;
   margin: 0;;
   padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.agree_conditon::before{
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid var(--subhead);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}
.contactinput:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 24px;
    width: 8px;
    height: 18px;
    border: solid var(--subhead);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    box-shadow: 1px -2px 2px 1px #fff;
}
.amenities_row{
    height: 100%;
    gap: 30px 0px;
}
.slick-current.slick-active.slick-center .test_slider .card:before{
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../img/blog/fff.jpg);
}


.contact-para{
    position: relative;
    padding: 30px 0;
}
.contact-para .contact-pages-location{
    background: #fff;
    box-shadow: 0 0 10PX #00000029;
    padding: 25px 20px;
    text-align: center;
    margin-bottom: 20PX;
    border-radius: 15px;
}
.contact-para .contact-pages-location, .contact-para .contact-pages-phone, .contact-para .contact-pages-email{
    background: #fff;
    box-shadow: 0 0 10PX #00000029;
    padding: 25px 20PX;
    text-align: center;
    margin-bottom: 20PX;
    border-radius: 15px;
}
.contact-para .contact-pages-location img, .contact-para .contact-pages-phone img, .contact-para .contact-pages-email img{
margin-bottom: 25px;

}
.contact-para .contact-pages-location p, .contact-para .contact-pages-phone p, .contact-para .contact-pages-email p{
    color: #222;
    height: 80px;
}
.contact-para .contact-pages-phone a, .contact-para .contact-pages-email a{
    color: #222;
    margin-bottom: 15px;
    text-decoration: none;
    height: 80px;
}



.anays_rooms_img-box{
 background-size: cover;
    height: 200px;
    background-repeat: no-repeat; 
    display: flex;
    flex-direction: column;
}
.comfort_single_img{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.73)),url(../img/room/comfort.webp) !important;
}
.comfort_double_img{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.73)),url(../img/room/comfort-1.webp) !important;
}
.compact_single_img{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.73)),url(../img/room/compact.webp) !important;
}
.compact_double_img{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.73)),url(../img/room/compact-1.webp) !important;
}


@media screen and (min-width: 768px) and (max-width: 991.98px) {
     .amenties-wrapper{
        margin-top:100px;
    }
    .anays_rooms_img-box{
        margin-bottom:20px;
    }
}

@media only screen and (max-width: 575.98px) {
    .amenties-wrapper{
        margin-top:70px;
    }
    .amenties-list{
        -webkit-columns:1;
    }
    .anays_rooms_img-box{
        margin-bottom:20px;
    }
}


.btn.book-now {
    background: #ffa300;
    border-radius: 5px 5px 0px 0px;
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    height: 50px;
    line-height: 40px;
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 1200;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 150px;
}



































































































