/*TABLE OF CONTETN*/
/* ------------------------------- 
 . General
 2. Navbar
 3. Slider
 4. About
 5. Rooms
 6. Services
 7. Team
 8. Gallery
 9. Price
 10. Blogs
 11. Footer

 -----------------------------*/

 /*1. General*/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@font-face {
  font-family: "switzer-bold";
  src: url(../font/Switzer-Bold.otf);
}

:root{
    /*background-color: ;*/
    --primary-color: #021832;
    --secondary-color: #D0A782;
    --other-color: #D0A782;
    --heading-color: #36454F;
    --heading1-color:#0188A4;
    --heading2-color:#c92734;
    --alternate-color:#179E98;
    --bg-color: #f4f4f4;
    --bg-white: #fff;
    --bg-black: #000;
    --ocean-color: #1AAFA9;

    /*Text Style*/
    --primary-font: "Nunito Sans", sans-serif;
    --secondary-font: "Nunito Sans", sans-serif;
    --heading-font: "Montserrat", sans-serif;
    --primary-text: #021832;
    --secondary-text: #e3bc82;
    --text-white: #fff;
    --text-black: #000;
    --text-gray: #e4e4e4;
}

html{
  scroll-behavior: smooth;
}

h1,h2{
  font-family:var(--heading-font);
  font-weight: 500;
}

h2{
  font-size: 40px;
}

body{
    font-family: var(--primary-font);
    background-color: var(--bg-white);
    color: var(--text-black);
}
.row{
    margin-left:0px;
    margin-right:0px;
}
a{
    text-decoration: none;
}
::-webkit-scrollbar{
    width: .375rem;
}
::-webkit-scrollbar-track{
    background: #f2f2f2;
}
::-webkit-scrollbar-thumb{
    background: #d0a782;
}

b, strong{
    font-weight:bold;
}
section{
    padding: 3.125rem 0;
}
.main-btn{
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    border: 0px solid var(--blue-color);
    background-color: #d0a782;
    border-radius: 0px 0px 0px 0px;
    /*line-height: 1.75rem;*/
    display: inline-block;
    transition: all .3s;
    letter-spacing: 0.5px;
    padding: 12px 20px;
}
.main-btn:hover{
background-color: var(--other-color);
color: var(--text-white);
transform: scale(1.04);
transition: all .3s;
}

.main-btn {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    border: 0px solid var(--blue-color);
    background-color: #d0a782;
    border-radius: 0px;
    display: inline-block;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: width 0.6s ease-in-out;
    z-index: -1;
}

.main-btn:hover::before {
    width: 100%;
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder { /* Edge */
  color: #bbb;
}

input:-ms-input-placeholder, select:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #bbb;
}

input::placeholder select::placeholder {
  color: #bbb;
}

h1{
    font-size: 3.75rem;
    line-height: 4.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    /*text-transform: uppercase;*/
    font-family: var(--secondary-font);
}
h3{
    margin-bottom: 1.375rem;
    line-height: 1.875rem;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--primary-text);
    /*text-transform: uppercase;*/
    font-family: var(--heading-font);
}
h3 span{
    color: var(--secondary-color);
}
h5{
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-text);
    font-weight: 500;
    /*text-transform: uppercase;*/
    font-family: var(--heading-font);
}
h6{
    font-size: 1.5rem;
    margin-bottom: .9375rem;
    color: var(--primary-text);
    /*text-transform: uppercase;*/
    font-weight: 300;
    font-family: var(--heading-font);
}
p{
    font-size: 1rem;
    line-height: 1.625rem;
    color: var(--text-black);
    font-family: var(--primary-font);
}
.section-title:after{
    content: '';
    background-image: url('../images/title-icon.webp');
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    margin-top: -0.937rem;
    height: .9375rem;

}
.how-we-value-wrapp .atr-cont h4 a {
    color: var(--text-white) !important;
}
/*2. Navbar*/
header.desk-nav {
    /* padding: 10px; */
    position: absolute;
    width: 100%;
    background: #131414c9;
    z-index: 3;
}
header.desk-nav .top-header img{
    width: 200px;
}
header.desk-nav ul.contact {
    display: flex;
    justify-content: end;
    gap: 35px;
    margin-bottom: 0;
}
header.desk-nav ul.contact li {
    list-style: none;
    color: #fff;
    font-size: var(--f17);
}
header.desk-nav ul.contact li a{
    color: #fff;
    text-decoration: none;
}
header.desk-nav .top-header .container{
    padding-bottom: 0px;
    border-bottom: 0px solid #fff;
}
header.desk-nav .top-header .col-8{
    display: flex;
    justify-content: end;
    align-items: center;
}

header.desk-nav  .top-header {   padding: 20px;}

header.desk-nav .nav-links {
    justify-content: center;
    display: flex;
}
header.desk-nav .nav-links ul{
   display: flex;
   width: 100%;
   justify-content: space-around;
   margin-bottom: 0;
   gap: 30px;
   align-items: center;
}
header.desk-nav .nav-links ul li{
    list-style: none;
    color: #fff;
}
header.desk-nav .nav-links ul li a{
    color: var(--white-color);
    text-decoration: none;
    padding-bottom: 5px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--secondary-font);
}
header.desk-nav .nav-links ul li a:hover{
    border-bottom: 1px solid #fff;
}
header.desk-nav .nav-links ul li.book a.main-btn{
    line-height: 1;
    display: block;
    padding: 13px 20px;
    color: var(--text-white);
    font-size: 14px;
}
header.desk-nav .nav-links ul li.book a.main-btn:hover{
    border-bottom: 0px;
}
header.desk-nav a.active{
    border-bottom: 1px solid #fff;
}
header.desk-nav .bottom-header {
    padding: var(--p14) 0;
}
   
 
header.page-header.mob{
    display: none;
}

/*video section*/

.banner-wrapper{
    height: 100vh;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-sec {
    height: 100%;
    overflow: hidden;
}
.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: #ae745a6b; */
    z-index: 0;
}
.hero-scetion .hero-content {
    height: 100%;
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    position: relative;
}
.hero-scetion .hero-content {
    width: 90%;
    text-align: center;
    margin: auto;
    color: rgb(255, 255, 255);
}

.nst {
    font-size: 5rem;
}
.hero-content{
        display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}
.h-big {
   font-family: var(--secondary-font);
    color: #fff;
    text-shadow: 0px 0px 4px #000;
    text-transform: capitalize;
    font-size: 60px;
    text-align: center;
    letter-spacing: 0px;
    max-width: 1140px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.h-big span{
    font-size: 96px;
}
.h-li-big {
    color: #fff;
    font-size: 20px;
    text-shadow: 0px 0px 5px #000;
    letter-spacing: 0.05em;
    font-weight: 400;
}
.booking-area {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.search-bar form{
  position: relative;
    margin: auto;
    justify-content: center;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0px;
    background: #fff;
    padding: 0 0;
    border-radius: 0px;
    z-index: 2;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 12%);
    margin-top: 30px;
    border-radius: 15px;
}

.search-bar select{
 font-size: 14px;
 color: var(--secondary-text);
 line-height: 32px;
 font-weight: 400;
 border-radius: 0px;
 padding: 0 15px 0 10px;
 background: #fff;
 text-indent: 0px;
 border: 0px solid #e0e0e0;
 height: 32px;
 width: 100%;
 appearance: none;
}

.search-bar select:focus-visible{
  outline: none;
}

.search-bar input{
 font-size: 14px !important;
 color: var(--secondary-text);
 line-height: 32px;
 font-weight: 400;
 border-radius: 0px;
 padding: 0;
 padding-left: 10px;
 background: #fff;
 border: 0px solid #e0e0e0;
}
.search-bar input#end_date {
 padding-left: 20px;
}

.search-bar input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
 color: var(--secondary-color);
 opacity: 1; /* Firefox */
}

.search-bar i{
 color: var(--secondary-text);
 position: absolute;
 top: 1.5rem;
 font-size: var(--f16);
 right: 20px;
}

.search-bar .col-3{position: relative;width: 20%;padding-left: 10px;padding-right: 0;padding-top: 17px;padding-bottom: 17px;}
.search-bar .col-3:before{
 position: absolute;
 content: '';
 top: 0px;
 right: 0;
 width: 1px;
 height: 66px;
 background: #999;
}
.search-bar .check:before {
  position: absolute;
 content: '';
 top: 9px;
 right: 0;
 width: 1px;
 height: 15px;
 background: #999;
}
.search-bar .check i{
 top: 24px;
}
.search-bar .col-3.guest:before, .search-bar .col-3.srch-btn:before{
 display:none;
}
.search-bar .col-3.srch-btn{
 padding-top:0px;
 padding-bottom:0px;
 padding-left:0px;
}
.search-bar button.main-btn {
 width: 100%;
 height: 66px;
 letter-spacing: 2px;
 border-radius: 0 15px 15px 0;
 overflow: hidden;
}
.search-bar button.main-btn:hover{
  transform: scale(1.03);
}

.search-bar button.main-btn.close111 {
 height: 43px;
    padding: 5px 15px;
    font-size: 14px !important;
    border: 1px solid var(--btn-color);
    border-radius: 20px;
    position: relative !important;
    left: 0px !important;
    right: 0px !important;
    color: #fff !important;
}
.search-bar .datepicker-common-2 {
 padding: 0;
 width: 50%;
}
.search-bar .main-check{
 padding-left: 10px;
 padding-right: 0;
 padding-top: 17px;
 padding-bottom: 17px;
 width: 40%;
}
.search-bar .main-check .row{
 position:relative;
 justify-content: space-around  ;
}
div#guestsss {
 width: 100%;
 min-width: 250px;
 background: #FFF;
 padding: 20px;
 position: absolute;
 z-index: 9;
 left: 0;
 border-radius: 10px;
 display: none;
 box-shadow: 0px 0px 3px 0px #888888;
}

#guestsss .close1 {
 position: absolute;
 right: 10px;
 left: auto;
 top: 0rem;
 font-size: 18px;
 color: var(--secondary-color);
 cursor: pointer;
}
#guestsss button.main-btn.close1 {
 height: 43px;
    padding: 5px 15px;
    font-size: 14px !important;
    border: 1px solid var(--btn-color);
    border-radius: 0px;
    position: relative !important;
    left: 0px !important;
    right: 0px !important;
    color: #fff !important;
}
#guestsss button.main-btn.btn.close1:hover{
    background: var(--other-color) !important;
    border-color:var(--other-color) !important;
}
#guestsss .adult-box {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 20px;
}

#guestsss .adult-box p{
 letter-spacing: 0px;
 color: #000;
 text-shadow: 0px 0px 0px #000;
 font-size: var(--f14);
 text-align: left;
 margin: 0px;
}

#guestsss button.button1 {
background: transparent;
 height: 30px;
 width: 30px;
 text-align: center;
 border-radius: 50%;
 font-size: 19px;
 line-height: 30px;
 margin-left: 0;
 border: 1px solid #000;
 color: #000;
 transition: all .3s;
 cursor: pointer;
}
#guestsss button.button11.button1 {
 margin-left: 14px;
}
.datepicker-section{
                         position: relative;
                     }
                     .datepicker-common-2{
                         padding:0;
                     }
                     input#demo17 {
                         position: absolute;
                         left: 0px;
                         top: 0px !important;
                         width: 100% !important;
                         opacity: 0;
                         height: 32px !important;
                         z-index: 9;
                     }


.search-bar .col-lg.md-3.icns.mb-lg-0.position-relative {
    padding-left: 10px;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-right: 0px;
}
.search-bar input#show-target-data{
    padding: 0px;
    padding-left: 10px;
    font-size: 16px;
    height: 32px;
    border: 0px solid transparent;
}
.search-bar .col-lg.md-4.md-lg-0.srch-btn {
    padding: 0px;
}
.search-bar .check:before {
    position: absolute;
    content: '';
    top: 0px;
    right: 1px;
    width: 1px;
    height: 66px;
    background: #999;
}
/*start about*/

.about_wrapper{
  padding: 60px 12px;
}
.about_wrapper .upper-head {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;
}
.about_wrapper a.main-btn{
    width: 150px;
    text-align: center;
}
.about_wrapper .upper-head h2{
    font-size: 40px;
    font-family: var(--heading-font);
    margin-bottom: 30px;
}
.heading_sec{
    margin-bottom: 40px;
    text-align: center;
}
.about-img1{
    text-align: right;
}
.about-img1 img{
    width: 100%;
    height: 487px;
    object-fit: cover;
    border-radius: 0px;
}
.about-img2 img{
    position: absolute;
    left: 0px;
    width: 75%;
    bottom: -20px;
    /* border-radius: 30px; */
    border: 5px solid #fff;
    object-fit: cover;
    height: 250px !important;
}
.about_wrapper .col-lg-6.text-center.text-lg-start p{
    /*line-height: 30px;*/
    margin-bottom: 15px;
}
.subhead {
    color: var(--secondary-text);
    font-size: 18px;
    /*line-height: 35px;*/
}
.about_wrapper .col-lg-6.text-center.text-lg-start{
    padding-right: 0%;
    width: 60%;
}

.about_wrapper .col-lg-6.mb-4.mb-lg-0.ps-lg-4.position-relative.text-center {
    width: 40%;
}



.about_wrapper h3{
    font-size: 2.25rem;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

.heading_sec h3{ 
    font-weight: 400;
    font-size: 40px;
    font-family: var(--heading-font);
}
/*end about section*/

/*property*/

/*end property*/


/*Booking seciton*/
.booking_sec{
background-image:url(../images/starbg.png);
background-repeat:no-repeat;
background-size:cover;
background-position: center 60%;
padding-top: 0px;
    padding-bottom: 0px;
}
.booking_img{
    position: absolute;
    width: 20rem;
    height: 20rem;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -25%;
    /*box-shadow: 0px 0px 0px 10px #ffffff85;*/
}
.booking_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.right-book{
    background: #0000006e;
}
.bookin_box h2{
    line-height: 1.2;
    font-size: 2.2rem;
    border-left: 0px solid #fff;
    padding-left: 0px;
    font-weight: 500;
    font-family: var(--heading-font);
}
.bookin_box p{
font-size: 16px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px !important;
}

.bookin_box a{
    margin-top: 0rem !important;
    margin-bottom: 0px !important;
}
.booking-right_sec{
    height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    width: 66%;
    margin-left: auto;
}
.booking-right_sec p{
    color: #fff;
    margin-top: 18px;
}

/*end bookind section*/

/*Property section*/
section.home-list {
    padding: 60px 0;
    background: #f7f7f7;
}
section.home-list h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--heading-font);
}
section.home-list .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    transition: .5s ease-in-out;
    display: none;
}
section.home-list .overlay a{
    color: var(--white-color);
    font-size: var(--f18);
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
section.home-list .overlay i{
    color: var(--white-color);
    font-size: var(--f18); 
}
section.home-list .prop-card:hover .overlay{
    display: none;
}
section.home-list .row{
    gap: 30px 0;
}
section.home-list .how-we-value-heading span{
    font-size: var(--f14);
    font-family: var(--secondary-font);
    font-weight: 600;
    color: var(--white-color);
    border-radius: 50px;
    padding: 4px 18px;
}
section.home-list .view a{
    background: var(--white-color);
    padding: var(--p10);
    box-shadow: 2.5px 4.33px 18px 0px rgb(0 0 0 / 10%);
    border-radius: 50%;
    display: flex !important;
    /* justify-content: center; */
    align-items: center;
    /* height: 50px;
    width: 50px; */
    text-align: center;
    gap: 10px;
    color: #fff;
}
section.home-list .view i{
    margin-right: 0;
}


section.home-list .col-4{
    height: 400px;
    overflow: hidden;
    position: relative;
}

section.home-list .line{
    text-align: center;
    height: 2px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.6);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: 10px 0;
}
section.home-list .pro{
    display:flex;
    justify-content:center;
    margin-top: var(--m30);
}
section.home-list img.img-fluid {
    width: 100%;
    height: 230px;
    object-fit: cover;
    position: relative;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}
section.home-list .pro-img:hover img{
    transform: scale(1.14);
}
section.home-list .pro-img a::before{
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 15px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    width: calc(100% - 66px);
    left: 33px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
}
section.home-list .pro-img a::after{
    content: "";
    position: absolute;
    top: 8px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    width: calc(100% - 16px);
    left: 8px;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
}

section.home-list .view {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 15px;
    background: #ffffffbd;
}

section.home-list .view h5 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 0;
}


section.home-list .pro-img a{
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    display: flex;
    border-radius: 0;
}
section.home-list .pro-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 25px 25px 25px;
    background: #fff;
    box-shadow: 0px 1px 17px 0px rgba(0, 0, 0, 0.05);
    margin-top: -20px;
    border-radius: 0;
}
section.home-list .rating {
    margin-bottom: 0;
    color: var(--other-color);
    font-size: 16px;
    min-width: 60px;
}

section.home-list .rating i {
    color: var(--other-color);
    margin-right: 0;
    font-size: 14px;
}

section.home-list h3.title {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 11px;
    height:54px;
    overflow:hidden;
}
section.home-list h3.title a{
    color: var(--primary-color);
}
.prop-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--m40);
}
section.home-list .adr-rev {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #36454f59;
    margin-bottom: 15px;
}
section.home-list p.adr {
    font-size: var(--f15);
    font-weight: 400;
    color: var(--primary-text);
    margin-bottom: 0;
    line-height: 1.5;
    height: 22px;
    overflow: hidden;
    border-bottom: 0px solid #36454f59;
    padding-bottom: 0;
    text-align: left;
}
section.home-list .amn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #36454f59;
    padding-top: 15px;
    border-bottom: 1px solid #36454f59;
    padding-bottom: 15px;
}
section.home-list .descp {
    max-height: 60px;
    overflow: hidden;
    line-height: 30px;
}
section.home-list ul {
    margin: 0 0 0;
    padding: 0;
    /* background-color: #f2f2f2; */
    font-size: 14px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
    list-style: none;
}
section.home-list i, section.home-list svg {
    margin-right: 3px;
    color: var(--secondary-color);
}
section.home-list ul li{
    font-size: 14px;
    font-weight: 500;
}
section.home-list ul.last li{
    color: var(--other-color);
}
section.home-list h5{
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0px;
}

section.home-list .view-price{
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.home-list .view-price h5{
    color: var(--secondary-color);
}
section.home-list .pro-img {
    position: relative;
}
section.home-list h5 span{
    font-weight: 600;
    font-size: 17px;
    /* color: var(--white-color); */
}

section.home-list .featured span {
  font-weight: 500;
    font-size: var(--f13);
    color: var(--white-color);
    background-color: var(--heading-color);
    padding: 4px 12px;
    display: inline-block;
    border-radius: 30px;
}
section.home-list .featured{
    position: absolute;
    top: 22px;
    left: 20px;
    z-index: 1;
}
section.home-list .how-we-value-heading p{
    font-size: 14px;
    color: white;
    background-color: #ef3f3e;
    text-transform: uppercase;
    padding: 4px 18px;
    line-height: 1.7;
    border-radius: 3px;
    font-family: Work Sans;
    font-weight: 600;
}
section.home-list .how-we-value-heading  h2 {
   padding-top: 15px;
    padding-bottom: 15px;
    color: var(--black-color);
    font-weight: 600;
    margin-bottom: 0px;
}
section.home-list .how-we-value-heading h6{
line-height: 1.3;
    color: var(--secondary-color);
    letter-spacing: 0.03em;
    font-size: var(--f17);
    font-weight: 600;
    margin-bottom: 0px;
}
section.home-list .col-4:hover .line{
    width: 80%;
}
section.home-list .col-4:hover .pro-cont{
    bottom: 0;
}
.attr-btn {
    text-align: center;
    margin-top: 30px;
}
.attr-btn a.main-btn {
    display: block;
    width: auto;
    margin: auto;
}
.blog-details-area{
    padding:0 0 40px;
}
.pro-sec-right h6 {
    font-size: 25px;
    font-family: var(--heading-font);
    color: var(--secondary-text);
    font-weight: bold;
}
.pro-sec-right h2 {
    font-size: 45px;
    line-height: 60px;
    margin: 18px 0;
    font-family: var(--heading-font);
    color: var(--heading1-color);
    font-weight: bold;
}

.amount {
    display: flex;
    justify-content: space-between;
}
.location {
    margin-bottom: 10px;
}
.location .fa-location-dot {
    color: var(--secondary-color);
}
.price {
    font-size: 21px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-family: var(--primary-font);
}
.price span {
    font-size: 14px;
    font-weight: 400;
    color:#000;
}
.elementor-button-wrapper {
    margin-top: 25px;
    border-top: 2px dashed #bbb;
    padding-top: 10px;
    border-bottom: 2px dashed #bbb;
    padding-bottom: 10px;
}
.elementor-counter {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
}
.amnt {
    text-align: center;
}
.amnt .elementor-counter-number {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--primary-font);
}
/* cta css */

section.cta{
    background: url('../images/cta.jpg');
    padding-left: 0;
    position: relative;
    padding-right: 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
}
section.cta .shape img{
    width: 350px;
object-fit: cover;

}
section.cta .shape{
    position: absolute;
    top: -365px;
    z-index: 2;
}
section.cta .container{
    display: flex;
    justify-content: center;
    position: relative;
}
section.cta .content {
    width: 70%;
    background: rgb(0 0 0 / 50%);
    padding: 60px;
    box-shadow: 0px 9px rgba(255,255,255,.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
section.cta .head-sec h2{
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
    font-family: var(--heading-font);
    font-size: 40px;
}
section.cta .head-sec h2 span {
    color: var(--other-color);
}
section.cta .content p{
    color: #fff;
}
section.cta .content .main-btn{
    color: #fff;
    border: 1px solid var(--white-color);
    display: block;
    width: 150px;
}
section.cta  .man-img {
    position: relative;
}
section.cta .man-img img{
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
  /* features section starts */
  section.experience-sec {
    padding: 0px;
}
  .experience{
    padding: 70px 12px;
    padding-bottom: 30px;
  }
  .experience .col-4{
    margin-bottom: 40px;
  }
  .experience img{
    margin-bottom: 15px;
    height: 47px;
  }
  .experience h4{
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--primary-font);
  }
  .experience h2{
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--heading-font);
    font-size: 40px;
  }
  .experience .img{
    display: inline-block;
  }
  img.experience-hover {
    display: none;
}
  .experience .img:hover img.experience-normal{
    display: none;
  }
   .experience .img:hover img.experience-hover{
    display: inline-block;
  }

  /*About Owner css*/
  section.about-owner {
    background: #f7f7f7;
    padding: 60px 0;
}
section.about-owner h2{
    font-size: 36px;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}
section.about-owner .col-6.col-md-6.col-sm-12.cont {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
section.about-owner .rhea_mask {
    fill: var(--white-color);
}
section.about-owner .svg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}
section.about-owner .col-6.col-md-6.col-sm-12.img{
   position: relative;
    height:500px;
}
section.about-owner .abt-owner {
    position: relative;
    height: 100%;
}
section.about-owner .abt-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 90%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    display: flex;
    border-radius: 50px;
}

section.about-owner img{
   width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 50px;
    transition: 0.5s all;
    border-radius: 50px;
}
section.about-owner img:hover{
    transform: scale(1.14);
}
section.about-owner svg {
    height: 588px;
    width: 100%;
}
section.about-owner .head-sec{
   text-align:left;
   margin-bottom: var(--m15);
}
section.about-owner h4{
    font-size: var(--f21);
    font-weight: 500;
}
section.about-owner .icon-area {
    border-radius: 100%;
    border: 1px solid #b3b3b3;
    text-align: center;
    width: 50px;
    height: 50px;
    font-size: var(--f20);
    display: flex;
    justify-content: center;
    align-items: center;
}
section.about-owner .call-us, section.about-owner .email-us {
    display: flex;
    align-items: center;
    gap: 10px;
}
section.about-owner .call-area {
    display: block;
}
section.about-owner .call-area a{
    display: block;
    color: var(--heading-color);
}
section.about-owner .call-area a:hover{
  color: var(--other-color);
}
section.about-owner .abt-detail {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 10px;
}
section.about-owner a.main-btn {
    display: block;
    width: 150px;
    text-align: center;
}
/*attractions start*/
.fourth-sec {
    padding: 50px 0px 50px;
    text-align: center;
}
.fourth-sec .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}
.attr-f {
    position: relative;
    margin-top: 0px;
    padding: 0;
}

.attr-f h4 a{
    color:#fff;
    font-weight:bold;
}
.fourth-sec h3{
    margin-bottom: 0;
}
.attr-f img {
    width: 100%;
    height: 450px;
    position: relative;
    object-fit: cover;
}
.text-overlay {
    position: absolute;
    top: 0;
    padding: 20px;
    width: 100%;
    z-index: 9;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 90%);
}
.text-overlay h4 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 13px;
    display: flex;
    margin-bottom: 13px;
    align-items: flex-start;
    height: 100%;
    font-family: var(--secondary-font);
    justify-content: center;
}
.text-overlay p {
    font-size: 16px;
    color: #fff;
    display: none;
}
.attr-f:nth-child(2) img {
    object-position: 10%;
}
.attr-f:hover .text-overlay h4 {
    height: auto;
}
.attr-f:hover .text-overlay p {
    display: block;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 290px;
}
/*end attractions*/
.catch-f {
    background-image: url(../images/bg1.webp);
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 0;
    padding-bottom: 12rem;
}
.catch-f .row{
    width: 100%;
    padding: 0;
  margin: 0;
}
.catch-f .row .col-lg-6{
    padding: 0;
}
.catch-f .row .pro-sec-right {
    padding: 50px;
    padding-top: 15px;
    background: #fff;
}
.catch-f .row .pro-sec-right p {
    margin-bottom: 1rem;
    font-size: 15px;
}
.catch-f .row .pro-sec-right p {
    margin-bottom: 1rem;
    font-size: 15px;
}
.catch-f .row .pro-sec-right p:nth-child(2), .catch-f .row .pro-sec-right p.location {
    margin-bottom: 5px;
}
.pro-sec-right a{
    margin-top: 0rem;
    padding: 10px 18px;
}

.pro-sec-right a:hover{
    padding: 10px 24px;
}
p.subhead {
    font-weight: bold;
}

.catch-f .row .pro-sec-right p.subhead{
    font-size: 27px;
    font-family: var(--heading-font);
}

.catch-f h3{
    font-size: 44px;
    font-family: var(--heading-font);
    line-height: 38px;
    color:#000;
}
/*Review section*/
.testimonial-sec {
    padding: 60px 0;
    background: #f8f7f1;
}
.testimo-centent {
    padding: 0px 40px;
    width: 60%;
    margin: 0rem auto 1rem;
    text-align: center;
}
.testimonial-sec h3{
    margin-bottom: 0;
    font-size: 36px;
}
.testimo-centent .slick-arrow {
    position: absolute;
    color: #6e6c6c;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
}

.prop-cont .slick-arrow {
    position: absolute;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    cursor:pointer;
}

.prop-cont .fa-angle-left {
    left: 10px;
    z-index: 9;
}
.prop-cont .fa-angle-right {
    position: absolute;
    right: 10px;
    text-align: right;
}

.testimo-centent .fa-angle-left {
    left: -20px;
}
.testimo-centent .fa-angle-right {
    position: absolute;
    right: 0;
    text-align: right;
}

.testimo-centent p {
    font-size: 16px;
    text-align: center;
    text-align: center;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
}
.testimo-centent h4 {
    font-size: 20px;
    font-weight: bold;
}

/*end Review section*/

/*Footer section*/
section.footer-section {
    padding: 0px;
}
footer.footer {
    background: #f4f4f2;
}
footer.footer .col-3.info {
    padding: 60px 20px 60px 20px;
    border-right: 1px solid #e4e0da;
}
footer.footer  .footer-logo {
    text-align: center;
    margin-bottom: 40px;
}
footer.footer .footer-logo img{
    width: 200px;
}
footer.footer .col-3.info p{
    font-size: 13px;
    line-height: 2;
    text-align: justify;
}
footer.footer .certificate {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-top: 90px;
}
footer.footer .certificate img{
    width: 95px;
}
footer.footer .info-content span {
    font-size: 13px;
    text-align: center;
    display: block;
    margin-top: 20px;
}
footer.footer .other-details {
    padding: 60px 40px 40px 40px;
}
footer.footer .other-details h5 {
    font-size: 15px;
    font-family: var(--primary-font);
    font-weight: 700;
    margin-bottom: 15px;
}
footer.footer .other-details ul{
    padding-left: 0px;
}
footer.footer .other-details li{
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    list-style: none;
}
footer.footer .other-details li a{
    color: #333;
    text-decoration: none;
}
footer.footer .other-details li a:hover{
    color: var(--secondary-color);
}
footer.footer .col-4.newsletter p{
    font-size: 13px;
}
footer.footer .col-4.newsletter input{
    width: 100%;
    background: #fff;
    border: 0px solid;
    border-radius: 8px;
    padding: 12px 10px;
    box-shadow: 0 0 9px 3px #00000014;
    font-size: 14px;
}
footer.footer .col-4.newsletter button{
    width: 32px;
    height: 32px;
    border-radius: 5px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px;
}
footer.footer .col-4.newsletter button i{
    font-size: 14px;
}
footer.footer .col-4.newsletter form {
    position: relative;
}
footer.footer .col-4.contact-us a{
    display: flex;
    align-items: center;
    gap: 5px;
}
footer.footer ul.social a{
    width: 46px;
    display: flex;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e7e3dd;
    border-radius: 100%;
}
footer.footer ul.social a svg{
    fill: var(--primary-color);
}
footer.footer ul.social a:hover svg{
    fill: var(--secondary-color);
}
footer.footer ul.social a i{
    font-size: 17px;
}
footer.footer ul.social {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer.footer .col-4.need-to-know,  footer.footer .col-4.social-links{
    margin-top: 35px;
}
footer .container, footer .container-lg, footer .container-md, footer .container-sm, footer .container-xl, footer .container-xxl{
    max-width: 1360px;
    position: relative;
}
/*end footer section*/


/*=============================  ABOUT US PAGE =======================*/

.page-title {
    position: relative;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top 40% center;
    height: 400px;
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.page-title .auto-container {
   position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    bottom: 10px;
}
.page-title h1 {
    position: relative;
    top: 2rem;
    color: #ffffff ;
    font-weight: 800 ;
    line-height: 1.2em ;
    font-family: var(--heading-font);
    font-size: 36px ;
    text-transform: capitalize;
    text-shadow: 2px 1px 4px #000;
    margin-top: 20px;
    margin-bottom: 0px;
}
.checklist {
    text-align: left;
    background: #fff;
    border-radius: 40px;
    z-index: 9;
    margin: auto;
    width: fit-content;
    margin-top: 4.5rem;
}
.checklist p {
    font-size: 16px;
    padding: 0px 0px 0px 30px;
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    font-family: var(--primary-font);
    display: none;
}
.checklist a.g-transparent-a {
    justify-content: end;
    position: relative;
    right: auto;
    background-color: var(--secondary-color);
    border-radius: 0px 40px 40px 0px;
    padding: 18px 25px;
    margin-left: 1rem;
    display: block;
    font-size: 16px;
    color: #fff;
    height: 60.8px;
    cursor: initial;
}

.checklist a span{
    color: #021832 !important;
}

.agency-section{
    padding: 70px 0;
}

.agency-section h3{
    font-size:40px;
}
.agency-section p{
    line-height: 1.8em;
    font-size: 16px;
    font-family: var(--primary-font);
    padding-right: 0px;
    text-align: justify;
}
.agency-section .image{
    text-align: right;
}
.agency-section .image img {
    height: 420px;
    width: 94% ;
}

.image img {
    border-radius: 30px;
    object-fit: cover;
}


/*======================= ATRACTION ========================*/


.summary-section p {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 12px;
}

.summary-section .inner-column .image img {
    width: 106%;
    display: block;
    height: 515px;
    object-fit: cover;
    box-shadow: 0px 0px 4px #060606;
    max-width: 107%;
    position: absolute;
}
.dot{
    position: absolute;
    right: -2rem;
    bottom: -3.6rem;
    left: auto;
    text-align: end;
    width: fit-content;
}
.summary-section .row{
    margin-bottom: 6rem;
}
.summary-section .row:nth-child(even) .inner-column .image img{
    right: 0;
}
.summary-section .row:nth-child(even) .dot{
    left: -2rem;
}
.inner-column-content {
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0px 0px 1px #060606;
    right: 0;
    top: 20px;
    background: #fff;
    min-height: 435px;
    z-index: 1;
    padding: 20px;
    height: 100%;
}

section.summary-section a{
    position: relative;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 30px;
    font-family: var(--heading-font);
}

.line{
    height: 2px;
    width: 100px;
    background: var(--secondary-color);
    position: relative;
    top: -7px;
}

.rights::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: #02c3ff;
    top: -20px;
    right: -20px;
}

.rights::after {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: #02c3ff;
    top: -5px;
    right: -34px;
    -webkit-transform: rotate( 90deg );
    transform: rotate( 90deg );
}
/*=====================  CONTACT US =======================*/
.contact-page-section {
    position: relative;
    padding: 70px 0px 70px;
}
.contact-info-box {
    position: relative;
    margin-bottom: 30px;
    border-right: 1px solid #cdcdcd;
}
.box-inner {
    position: relative;
    padding: 40px 0px 40px 0px;
    border-radius: 5px;
    background-color: transparent;
    box-shadow: 0px 0px 0px rgb(0 0 0 / 12%);
}
.contact-info-box .box-inner {
    position: relative;
    padding: 0px 9px;
}
.contact-info-box .box-inner a{
    color: var(--text-black);
}
.contact-info-box .box-inner h5 {
    position: relative;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
}
.contact-info-box .box-inner p {
    position: relative;
    color: var(--text-black);
    opacity: 0.8;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.7em;
}
.contact-info-box:nth-last-child(1) {
    border-right: 0px solid #cdcdcd;
}
.contact-page-section .inner-container {
    position: relative;
    padding: 40px 40px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}
.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}
.contact-form {
    position: relative;
    margin-top: 0rem;
}
.contact-form .form-group {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    display: block;
}
.contact-form .ui-selectmenu-button.ui-button, .contact-form .form-group input, .contact-form .form-group select, .contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    font-size: 13px;
    color: #060606;
    line-height: 34px;
    font-weight: 400;
    border-radius: 0px;
    padding: 10px 20px 10px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    resize: none;
}
.contact-map {
    overflow: hidden;
    height: 100%;
    box-shadow: 0px 0px 5px #ccc;
}
.contact-map iframe {
    position: relative;
    top: 0;
    height: 100%;
}

.contact-page-section .sec-title h3{
    margin-bottom: 2rem;
}

/*====================== PROPERT DETAILS =====================*/

.upper-box {
    position: relative;
}

.upper-box h3{
    text-transform:capitalize;
}

.upper-box .col-lg-9 {
    flex: 0 0 auto;
    width: 70%;
    padding:0px;
}

.upper-box .col-lg-3 {
    flex: 0 0 auto;
    width: 30%;
}
.upper-box .rating {
    position: relative;
    color: var(--text-black);
    font-size: 14px;
}
.upper-box .rating .fa {
    position: relative;
    margin-right: 1px;
    display: inline-block;
}
.upper-box h3 {
    position: relative;
    line-height: 1.3em;
    margin-top: 4px;
    text-align: left;
    font-size: 28px;
}
.upper-box .hotel-info {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 0px;
    margin-top: 0px;
}
.hotel-info i {
    font-size: 18px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-right: 5px;
}
.price {
    font-size: 21px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.upper-box .price {
    position: relative;
    width: 100%;
    height: auto;
    color: #060606;
    float: right;
    font-size: 23px;
    padding-top: 0px;
    line-height: 1.3em;
    border-radius: 50px;
    text-align: right;
    display: inline-block;
    background-color: #ffffff;
}
.upper-box .food-list {
    position: relative;
    padding: 15px 0px 15px;
    margin-bottom: 30px;
    margin-left: 50px;
}
.upper-box .food-list li {
    position: relative;
    color: #060606;
    font-size: 16px;
    margin-right: 15px;
    display: inline-block;
    text-align:center;
    margin-right: 30px;
}
.food-list li i {
    color: var(--secondary-color);
}
.amenities{
    list-style-type: none;
    padding-left: 0.5rem;
}
.amenities i{
    color: var(--secondary-color);
}
.amenities li{
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.properties-amenities h4{
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.comment-meta h3{
    font-size: 22px;
    margin-top: 0.5rem;
    margin-bottom: 10px;
}
.comment span{
    font-weight: 600;
}
.contact-page-sec{
    padding: 35px;
    box-shadow: 0px 0px 5px #dadada;
}
.contact-page-section.lv .contact-form .form-group.col-lg-6.col-md-6 {
    width: 50%;
}
.contact-page-section.lv{
    padding:0;
}
.contact-page-section.lv .contact-form{
    margin-top:0;
}
.contact-page-section.lv .contact-form .form-group.col-lg-4.col-md-4.col-sm-6, .contact-page-section.lv .contact-form .form-group.col-lg-4.col-md-4.col-sm-12 {
    width: 33%;
}
.score {
    unicode-bidi: bidi-override;
    direction: rtl;
    text-align: left;
    border: 0;
    font-size: 0;
}
fieldset.score input {
    display: none !important;
}
.score label {
    display: inline-block !important;
    width: 1.2em;
    height: 0.9em;
    overflow: hidden;
    text-indent: 100%;
}
.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    display: block;
}
.score label::before {
    content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¹Ã…â€œÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-indent: 0px;
    line-height: 1em;
    color: rgb(170, 170, 170);
}
.score label:hover:before, .score label:hover ~ label:before, .score input:checked ~ label:before {
    content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¹Ã…â€œÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦";
    color: #ffbb04;
}
.get-quote{
    padding: 0px;
    box-shadow: 0px 0px 0px #ccc;
    border-radius: 5px;
    position: sticky;
    top: 1rem;
    text-align: center;
}
.forms-booking-tab ul{
    background: var(--secondary-color);
    padding: 0px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}
.ovabrw_datetime_wrapper{
        position: relative;
    width: 49%;
    display: inline-block;
}

.property-list-sec .ovabrw_datetime_wrapper{
    width: 100%; 
}
.ovabrw_datetime_wrapper input{
      width: 100%;
    padding: 8px 0 8px 30px;
    border: 1px solid var(--secondary-color);
    font-size: 14px;
}
.ovabrw_datetime_wrapper i, .ovabrw_service_select.rental_item i, .pets i{
    position: absolute;
    left: 0.5rem;
    top: 0.6rem;
    font-size: 18px;
    color: var(--secondary-color);
}

.pets i {
    left: 0.5rem;
    top: 1.5rem;
}

.pets select{
    font-size:14px;
    text-indent: 20px;
    height: 42px;
    margin-top: 1rem !important;
    border: 1px solid var(--secondary-color) !important;
    border-radius: 0px;
}

.booking-area .pets select{
     margin-top: 0rem !important;
     text-indent: 0px;
}



.pets {
    position: relative;
    padding: 0px;
}

div#gaurav-new-data-area a{
     color: var(--secondary-color);
}

div#gaurav-new-data-area .col-md-6{
    text-align: left;
}
.ovabrw_service_select.rental_item{
         width: 100%; 
    margin: 1rem 0;
    position: relative;
}

.property-list-sec .ovabrw_service_select.rental_item{
    margin: 0rem 0;
    padding: 0px;
}

.property-list-sec .ovabrw_service_select.rental_item i {
    left: 0.5rem;
}

.property-list-sec input#show-target-data{
    padding: 10px 10px 10px 35px;
}

.ovabrw_service_select.rental_item select{
    width: 100%;
    padding: 10px;
    border: 1px solid var(--secondary-color);
    color: #bbb;
    text-indent: 20px;
}
.ovabrw-book-now button{
    width: 100%;
    font-size: 16px;
    margin-bottom: 1rem;
}

.property-list-sec .sidebar.right .res .col-md-6{
    padding-right: 2px;
    padding-left: 2px;
}

.res{
     padding-right: 8px;
    padding-left: 8px;
}
/*  Gaurav*/


/*Property page css start*/



section.blog-details-area.ptb-90 {
    padding: 0;
}

img.rsImg.rsMainSlideImage {
    margin-left: auto !important;
}

.property_meta {
    margin-top: 2rem;
}

h3.heading-2 {
    font-size: 25px;
    color: #000;
    text-transform: capitalize;
}

.rsDefault .rsThumbsArrow{
    height:100% !important;
}
.abouttext h4 {
   font-size: 1.5rem !important;
    font-family: var(--heading-font);
    font-weight: 600;
}

.properties-amenities ul {
    list-style: none;
    margin-top: 8px;
    margin-bottom: 0;
}

.abouttext ul li, .comment-content p {
    font-size: 15px;
}

.properties-amenities ul li {
    line-height: 1.5rem;
    margin-bottom: 14px;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    z-index: -1;
    margin-left: -33px;
}

.properties-amenities ul li i{
    margin-right: 5px;
}
tbody, td, tfoot, th, thead, tr {
    padding: 10px;
}

.responsiveTab tr:nth-of-type(odd) {
    background: #eee;
}

.responsiveTab th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    font-family: var(--secondary-font);
}

.comment-meta span.checked, .comment-content span.checked {
    color: goldenrod;
}

.comment-meta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.comments .contact-form {
    background: #ffffff;
    padding: 0px;
    box-shadow: 0px 0px 0px #dfdede;
    width: 100%;
}

.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
}

.comments .contact-form .form-group input, .comments .contact-form .form-group select, .comments .contact-form .form-group textarea {
    border: 1px solid var(--secondary-color);
    padding: 10px;
}

.elementor-widget-container.get-quote {
    position: sticky;
    top: 5px;
}

.forms-booking-tab {
    padding: 30px 20px;
    box-shadow: 0px 0px 13px #dad9d9;
    border-radius: 10px;
}

.forms-booking-tab ul {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

.booking {
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: var(--primary-font);
    color: var(--text-white);
    background: var(--secondary-color);
}

.rental_item {
    margin-bottom: 1rem;
    display: inline-block;
    width: 49%;
}

.forms-booking-tab .romancy-booking label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.ovabrw_datetime_wrapper {
    position: relative;
}

.forms-booking-tab .romancy-booking .ovabrw-container select, .forms-booking-tab .romancy-booking .ovabrw-container input {
   border: 1px solid var(--secondary-color);
    border-radius: 0px;
    height: 42px;
    width: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    caret-color: var(--primary-color);
}

.forms-booking-tab .ovabrw_booking_form .wrap_fields .ovabrw_datetime_wrapper input {
    /*padding: 15px 15px 15px 42px;*/
}

.ovabrw_datetime_wrapper .modal-bodyss i, .ovabrw_service_select.rental_item .modal-bodyss i {
    position: absolute;
    top: 0.5rem;
    right: 0rem;
    font-size: 22px;
    color: var(--secondary-color);
    left: auto;
    cursor:pointer;
}

.ovabrw_service_select.rental_item {
    position: relative;
    width: 100%;
}

.forms-booking-tab .romancy-booking .ovabrw-container select {
    text-indent: 47px;
}

.ovabrw_service_select.rental_item i {
    left: 0.5rem;
}

.ovabrw-book-now {
   position: relative;
    width: 100%;
    gap: 0rem;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0px;
    margin-top: 15px;
    background-color: transparent;
    border-radius: 0px 0px 5px 5px;
}

.ovabrw-book-now button:hover{
    padding: 10px 16px;
}

.ovabrw-book-now .main-btn {
    width: 100%;
    padding: 10px 16px;
    background: var(--secondary-color);
    color: var(--text-white);
}

.ovabrw-book-now .main-btn:hover {
    background-color: var(--other-color);
    border-color: var(--other-color);
    color: var(--text-white);
}

.score input {
    position: absolute!important;
    top: -2em;
    clip: rect(0,0,0,0);
}

.score label::before {
    content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¹Ã…â€œÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-indent: 0px;
    line-height: 1em;
    color: rgb(170, 170, 170);
}

.score label:hover::before, .score label:hover ~ label::before, .score input:checked ~ label::before {
    content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¹Ã…â€œÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦";
    color: rgb(255, 187, 4);
}

.score label {
    display: inline-block !important;
    line-height: 2rem;
    width: 1.2em;
    height: 1em;
    overflow: hidden;
    text-indent: 100%;
}

.score {
    unicode-bidi: bidi-override;
    direction: rtl;
    border: 0;
    text-align: left;
}
/*Property page css end*/


input#show-target-data {
    padding: 10px 10px 10px 35px;
    font-size: 14px;
    background-color: #fff;
    height:42px;
    border: 1px solid var(--secondary-color);
    border-radius: 0px;
}

#guestsss {
    width: 100%;
    min-width: 300px;
    background: #fff;
    padding: 25px 20px;
    position: absolute;
    z-index: 9;
    left: 0;
    border-radius: 10px;
  
    display: none;
    box-shadow: 0px 0px 3px 0px #888888;
}

.booking-area .icns .modal-bodyss i {
    position: absolute;
 top: 5px !important;
    right: 0px !important;
    left: auto !important;
    font-size: 18px;
    color: var(--secondary-color);
cursor: pointer;
}

.ac-box {
    margin-bottom: 20px;
}

.ac-box, .btnssss {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adult {
    display: flex;
    color: #000;
    font-size: 14px;
    align-items: center;
}

.adult p {
    margin-bottom: 0px;
    font-size: 14px;
}

.button1 {
    background: transparent;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 25px;
    line-height: 40px;
    margin-left: 14px;
    border: 1px solid #717171;
    color: #717171;
    transition: all .3s;
    cursor: pointer;
}

.adult-popup .modal-bodyss button.main-btn.btn {
    width: 100%;
    color:#fff !important;
}

button.main-btn.btn {
    background: var(--secondary-color) !important;
    border: 0.0625rem solid var(--secondary-color) !important;
}



section.get-quote-sec h2{
   font-weight: 400;
    font-size: 30px;
    color: var(--secondary-color);
    /* text-transform: uppercase; */
    font-family: var(--heading-font);
    margin-bottom: 1.375rem;
}

section.get-quote-sec .container{
    max-width: 990px;
}

section.get-quote-sec th{
background: var(--secondary-color);
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    font-size: 15px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.table-bordered>:not(caption)>*>*,.table-bordered>:not(caption)>*{
    border-color:var(--secondary-color);
}

section.get-quote-sec td{
    font-weight:bold;
    font-size: 15px;
}

section.get-quote-sec b, section.get-quote-sec strong{
   font-weight:bold; 
}

section.get-quote-sec label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}

section.get-quote-sec .form-control{
    border-color:var(--secondary-color);
}

.About-sec th{
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    font-size: 15px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.About-sec td{
    border:1px solid var(--secondary-color);
    font-weight: bold;
    font-size: 15px;
}

.About-sec b, .About-sec strong{
   font-weight:bold; 
}

.About-sec .t1{
    border-color:transparent;
}

.About-sec .book{
    background-color:transparent;
    color:#000;
}

section.about_wrapper.error {
    padding: 5rem 0;
}

section.about_wrapper.error h1 {
    color: var(--secondary-color);
    font-size: 100px;
    font-weight: bold;
    font-family: var(--primary-font);
    margin-bottom: 40px;
}

section.about_wrapper.error .row.m-0 {
    text-align: center;
}

section.about_wrapper.error a {
    width: 150px;
    margin: auto;
}
.rsDefault .rsThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.Blog-details img{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    height: 400px;
    object-fit: cover;
}

form#booking_form p{
    text-align: center;
    font-size: 14px;
    margin-bottom: 0px;
}

form#booking_form p a{
    color: var(--secondary-color);
    }

        .showReadMores .morecontent span {display: none;}
    .showReadMores .ReadMore {display: visible;}
    .footer-sec{margin-top: 0rem;}
    .ac, .kapat {
            display: inline-block !important;
            background: #79a0fb;
            width: 140px !important;
            padding: 7px 20px;
            font-size: 16px;
            text-align: center;
            color: #fff;
            text-decoration: none;
            margin-top: 19px;
        }
        .theme-item-page-desc.more {
            font-size: 17px;
        }
.more + [data-readmore-toggle], .more[data-readmore] {
    display: block;
    width: 100%;
    overflow: hidden;
}

#less{
    display: none;
}

.btn-check:focus+.btn-success, .btn-success:focus{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem var(--secondary-color);
}

.modal-footer{
    display:none;
}

.overview-content {
    height: auto;
    overflow: hidden;
}

#more, #less{
    cursor:pointer;
    display:none;
}

.btn-success {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 0px;
}

.btn-success:hover {
    color: var(--secondary-color);
    background-color: transparent;
    border-color: var(--secondary-color);
}

.property-list-sec .main {
    width: 70%;
}

.property-list-sec img{
   width: 100%;
    height: 350px;
    object-fit: cover;
}

.sidebar.right {
    width: 30%;
}

.property-lt-box {
    margin-top: 0px;
    box-shadow: 0px 0px 10px #dcdcdc;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 0px;
    padding: 8px;
    margin-bottom: 30px;
}

.pro-list-left {
    display: flex;
    /* gap: 10px; */
    justify-content: space-between;
    align-items: center;
    width:100%;
}

.pro-list-left .pro-img-part {
    width: 27%;
    min-width:238px;
}

.pro-list-left .about-pro-list{
    width: 73%;
}

.about-pro-list {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 10px;
    padding-left: 20px;
    margin-bottom: 10px;
}
.about-pro-list p.descr {
    height: auto;
    margin-top: 10px;
    max-height: 100px;
    overflow: hidden;
}

.pro-list-details h4{
    font-size:16px;
    margin-bottom: 15px;
}

.pro-list-details i{
    color:var(--secondary-color);
    font-size: 18px;
}

.pro-list-dec {
    display: flex;
    gap: 2rem;
}

.pro-list-dec p{
    font-size:15px;
}

.pro-list-dec .adult i{
    margin-right:5px;
}

.pro-rates {
    display: flex;
    justify-content: space-between;
}

p.pro-list-price span{
    font-size: 24px;
    color: var(--secondary-color);
}

p.pro-list-price{
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom:0px;
}
.pro-rates p{
     margin-bottom:0px;
}

.pro-rates{
     margin-bottom:10px;
}

.row.icon a{
    width:200px;
}
.row.icon {
    justify-content: center;
    align-items: center;
    gap: 30px;
}

p.descr {
    height: 160px;
    overflow: hidden;
    text-align: justify;
}

header ul.navbar-nav.menu-navbar-nav {
    background: transparent;
    border-radius: 20px;
    box-shadow: 0px 0px;
}

.about_wrapper .heading_sec {
    margin-bottom: 0px;
    text-align: left;
}

.about_wrapper .heading_sec h3{
    line-height: 1.2;
    font-size: 36px;
}
.about_wrapper .col-lg-6.abt-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 5%;
}
section.attraction-sec{
    padding: 70px 0;
}

section.attraction-sec h2{
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    font-family: var(--heading-font);
}

section.attraction-sec img{
    height: 350px;
    margin-bottom: 0px;
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
}

section.attraction-sec .image-sec {
    position: relative;
    width: 100%;
    height: 350px;
}

section.attraction-sec .content-sec{
   position: absolute;
    width: 100%;
    height: 350px;
    top: 15px;
    left: -12px;
    z-index: 1;
    background: #e93e98c2;
    color: var(--text-white);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 25px;
    opacity:0;
}

section.attraction-sec a:hover .content-sec{
    opacity:1;
}

section.attraction-sec .row a {
    display: block;
    width: 100%;
    height: 350px;
    position: relative;
}

section.attraction-sec .row{
    gap:25px 0;
}
section.attraction-sec h3{
    color: var(--text-white);
    font-size: 28px;
    /* margin-bottom: 0px; */
    text-shadow: 0px 0px 4px #000;
}

.pro-btn{
    text-align:center;
}

section.rev-sec {
    padding: 0px 0;
    background: url(../images/micky.png);
    background-size:cover;
    background-repeat:no-repeat;
    position: relative;
}

section.rev-sec .overlay{
    position: relative;
    padding: 90px 0;
    /*background: rgba(255,255,255,0.8);*/
}

section.rev-sec1 {
    padding: 0px;
    padding-top: 70px;
    padding-bottom: 30px;
}

section.rev-sec1 h2{
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    font-family: var(--heading-font);
}

section.rev-sec .rev-area {
    position: relative;
    /* float: left; */
    /* overflow: hidden; */
    margin: 0px;
    padding: 0 20px;
    text-align: left;
    box-shadow: none !important;
    width: 100%;
    background: #113ccfab;
    border-radius: 40px;
    padding: 30px;
    color: var(--text-white);
}

section.rev-sec img{
    max-width: 100%;
    vertical-align: middle;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin: 0px;
    box-shadow: 0px 0px 10px #273656;
    object-fit: cover;
}

section.rev-sec .heading-sec {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pro-name{
    color: var(--text-white);
    margin-bottom: 0px;
}

.rev-content{
    display:block;
    transition: all 5s ease-in-out;
}


section.rev-sec .slick-initialized .slick-slide {
    display: block;
    padding-left: 12px;
    padding-right: 12px;
    height:305px;
}

section.rev-sec i.slick-arrow{
   position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    z-index:2;
    cursor:pointer;
    display: inline;
    width: 40px;
    color:#fff;
}

section.rev-sec .fa-angle-left {
    left: -40px;
}

section.rev-sec .fa-angle-right {
    position: absolute;
    right: -40px;
    text-align: right;
}

.rev-area:hover .rev-content{
    display:block;
}
.rev-content p{
    color: var(--text-white);
    margin-bottom: 0px;
    margin-top: 20px;
    height: 104px;
    overflow: hidden;
}

.footer_logo {
    text-align: center;
    margin-bottom: 50px;
}

footer .main{
    transition: all 1.5s cubic-bezier(.4,0,.2,1) .3s;
    transition-property: opacity,-webkit-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform;
    transition-delay: .3s;
    position: relative;
}

footer .wait:before {
    border-top: 1px solid #fff;
    content: "";
    display: block;
    transition: all 1s cubic-bezier(.895,.03,.685,.22);
    width: 100%;
    transform: scaleX(0);
}

footer .animate:before {
    border-top: 1px solid #fff;
    content: "";
    display: block;
    transition: all 1s cubic-bezier(.895,.03,.685,.22);
    width: 100%;
    transform: scaleX(1);
}

.property-sec .col-4 {
    flex: 0 0 auto;
    width: 40%;
}

.property-sec .col-8 {
    flex: 0 0 auto;
    width: 60%;
}

footer .col-md-3{
    padding: 30px 22px;
    position: relative;
}

footer .col-md-3 h4{
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 15px;
}

footer .footer-badge img{
    width: 180px;
    margin-bottom: 30px;
}

footer .col-md-3.third ul{
    padding-left: 0px;
    margin-bottom: 0px;
}
footer .col-md-3.third i{
    font-size:18px;
    margin-right:5px;
}

footer .col-md-3:after {
    bottom: 0;
    content: "";
    position: absolute;
    transition-property: transform,-webkit-transform;
    border-left: 1px solid #fff;
    border-top: none;
    left: auto;
    right: 0;
    top: 0;
    -webkit-transform: none;
    transform: none;
    width: 0;
    transition: all 1s cubic-bezier(.895,.03,.685,.22);
}

footer .col-md-3:nth-child(3):after {
    transition-delay: 1.1s;
}

footer .col-md-3:nth-child(2):after {
    transition-delay: .8s;
}

footer .col-md-3:first-child:after {
    transition-delay: .5s;
}


.wait .col-md-3:after {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.animate .col-md-3:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.col-md-3.fourth:after{
    display:none;
}

footer .wait:after {
    border-top: 1px solid #fff;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 1s cubic-bezier(.895,.03,.685,.22);
    transition-delay: 1s;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

footer .animate:after {
    border-top: 1px solid #fff;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 1s cubic-bezier(.895,.03,.685,.22);
    transition-delay: 1s;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

footer .col-md-3.fourth{
    width:28%;
}

footer .col-md-3.third{
    width:22%;
}

footer h2{
    color: var(--text-white);
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

header img{
    width: 170px;
}

.property-sec .col-4.last .button-sec {
    margin-left: auto;
}

.property-sec .col-4.last .content-sec{
    background: transparent;
}

.vacation-content.pro-list-name h3{
    font-size: 30px;
    line-height: 1.2;
    height: 36px;
    overflow: hidden;
    margin-bottom: 15px;
}

section.about_wrapper.management h3{
    line-height: 1.3;
    text-transform: capitalize;
}

section.about_wrapper.pro-mg {
    padding-bottom: 3.75rem;
}

section.about_wrapper.management {
    padding-bottom: 3.75rem;
}

section.about_wrapper.pro-mg button.main-btn {
    margin-top: 20px;
}

section.about_wrapper.pro-mg .image img{
    width:100%;
}

section.property-list-sec.car-rental .main{
    width:100%;
}

section.property-list-sec.car-rental .property-list-box {
    display: flex;
    gap: 0 30px;
    justify-content: space-between;
}

section.property-list-sec.car-rental .pro-list-left .about-pro-list {
    width: 68%;
}

section.property-list-sec.car-rental .pro-list-left .pro-img-part {
    width: 32%;
}
section.property-list-sec.car-rental .vacation-content.pro-list-name h3{
    text-transform:capitalize;
}

section.property-list-sec.car-rental img {
    width: 100%;
}

div#rates h4, div#amenities h4{
    font-size: 20px !important;
    color:#000;
}

section.contact-page-section.lv .sec-title h3{
    font-size: 20px;
}

section.contact-page-section.lv button.main-btn{
    margin-top:20px;
}

.get-quote.car-quote a{
    padding: 10px 10px;
    width: 100%;
    background-color: var(--blue-color);
    display: block;
    color: var(--text-white);
}

.get-quote.car-quote a:hover{
    background-color: var(--red-color);
    border-color: var(--red-color);
    color: var(--text-white);
}

.contact-page-section button.main-btn{
    margin-top:20px;
}

button.btn-success.main-btn {
    padding: 8px 30px;
    /* width: 100%; */
   /* background-color: var(--blue-color);*/
    border-radius: 0px;
    /* border: 1px solid transparent; */
    color: var(--text-white);
}
button.btn-success.main-btn:hover{
background-color: var(--other-color);
    color: var(--text-white);
}
.book {
    background-color: transparent !important;
    color: #000 !important;
}

button#sig-submitBtn, button#sig-clearBtn {
    padding: 8px 30px;
    /* width: 100%; */
    /* background-color: var(--blue-color); */
    border-radius: 0px;
    /* border: 1px solid transparent; */
    color: var(--text-white);
}

button#sig-submitBtn:hover, button#sig-clearBtn:hover {
   /* background-color: var(--red-color); */
   /* border-color: var(--red-color); */
   color: var(--text-white);
}

div#paypal-button-container {
    margin: 0px !important;
    width: 50%;
    margin-left: auto !important;
    margin-right: auto !important;
}

section#about .mt-4 {
    margin-top: 1.6rem!important;
}
.pro-list-btns {
    padding-left: 1px;
}

.ui-widget.ui-widget-content{
    z-index:2 !important;
}

a.sticky.main-btn {
    transform: rotate(-90deg);
    position: fixed;
    left: auto;
    right: -39px;
    top: 52%;
    z-index: 999;
    display: none;
    color: #fff !important;
    background: var(--secondary-color);
    padding: 13px 16px;
}
div#calender_nrj {
    padding-left: 0px;
    padding-right: 0px;
}
html.sf-js-enabled {
    overflow-x: hidden;
}

section.get-quote-sec .col-md-12{
    padding:0px;
}

section.get-quote-sec button.btn-success.main-btn{
    padding: 12px 30px;
}

section.get-quote-sec .row.text-center.mt-4.bttn label{
    display:none;
}

select#pet-no {
   width: 51px;
    height: 29px;
    margin-left: 1px;
    border-color: var(--secondary-color);
}

.pet-drop {
    display: none;
}
/*Why us css start*/
.why-us {
    background: #e1e1e1;
    padding: 80px 12px;
    text-align: center;
}
.why-us-content {
    width: 70%;
    margin: auto;
}
.why-us h2{
   margin-bottom: 20px;
    font-size: 40px;
    font-family: var(--heading-font);
}
.why-us h4{
    margin-bottom: 0px;
    margin-top: 30px;
    font-family: var(--primary-font);
    font-size: 24px;
}
.why-us b{
    font-weight: 600;
}
.why-us span{
    font-family: var(--heading-font);
    font-size: 34px;
}
section.why-us-sec {
    padding: 0px;
}
section.Blog-sec h3{
    font-size: 25px;
}
section.attr-details img{
    width: 40%;
    height: 400px;
    object-fit: cover;
    float: left;
    position: relative;
    z-index: 1;
    margin-right: 20px;
}
.atr-detail {
    min-height: 400px;
}


/*Testimonial css*/
section.testimonial {
    background-color: var(--lt-bg-color);
    position: relative;
}
section.testimonial .review-date {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
section.testimonial .head-sec h6 {
color: var(--secondary-color);
text-align: center;
}
section.testimonial .review-date p{
    font-weight: bold;
}
section.testimonial h5.pr-name{
    font-size: 20px;
    margin-bottom: 0px;
    margin-top: 20px;
}
section.testimonial h5.pr-name a{
    color: var(--secondary-color);
    font-family: var(--secondary-font);
    display: none;
}
section.testimonial .testy {
   width: 100%;
    margin: auto;
    padding: 0;
    padding-bottom: 0;
    border-radius: 0px;
    background: transparent;
}
section.testimonial .item {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 5px;
}
section.testimonial .top-text {
    position: relative;
    height: 100px;
display: none;
}
section.testimonial .test-pro {
    height: 100px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}
section.testimonial .test-pro:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}
section.testimonial .test-pro img {
    position: absolute;
    /*top: -35%;*/
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    max-width: none;
}
section.testimonial .user-icon {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -10px, 0);
    -moz-transform: translate3d(-50%, -10px, 0);
    transform: translate3d(-50%, -10px, 0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
section.testimonial .user-icon img{
    width:124px;
    height:124px;
    object-fit:cover;
    border-radius: 50%;
    border: 2px solid var(--white-color);
}
section.testimonial .container{
    z-index: 1;
    position: relative;
}
section.testimonial .head-sec h2 {
 margin-bottom: var(--m30);
}

section.testimonial .test-card {
    text-align: center;
    background: var(--white-color);
    border-radius: 0px;
    border: 1px solid var(--secondary-color);
    padding: 15px;
}
section.testimonial .test-card p{
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 10px;
}

section.testimonial .test-card h4 {
    font-size: var(--f20);
    margin-bottom: var(--m7);
    font-weight: 600;
    color: var(--heading-color);
}
section.testimonial .cont-sec{
    text-align: center;
}
section.testimonial i.fa-solid.fa-star {
    color: #FCAF3D;
    font-size: 10px;
    margin-right: 3px;
}
section.testimonial hr {
    width: 200px;
    opacity: 1;
    border-top: 3px solid;
    color: var(--white-color);
}
section.testimonial h3 {
  padding-left: 0;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 0;
}
section.testimonial .para p{
   text-align: center;
    width: 90%;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    color: var(--black-color);
    height: 130px;
    max-height: 141px;
    margin-top: 10px;
    overflow: hidden;
}
section.testimonial .para i{
    font-size:30px;
}
section.testimonial i.fa-solid.fa-quote-right {
    position: absolute;
    right: 20px;
    bottom: -10px;
}
section.testimonial i.fa-solid.fa-quote-left {
    position: absolute;
    left: 20px;
    top: -10px;
}
section.testimonial p.clt-name{
    color: var(--heading-color);
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 0px;
}

section.testimonial span {
    height: auto;
    overflow: hidden;
    display: block;
}
section.testimonial .test-card:hover .test-pro {
    height: 180px;
}
section.testimonial .test-card:hover .test-pro img {
    top: 0;
    height:100%;
}
section.testimonial .test-card:hover .user-icon {
    -webkit-transform: translate3d(-50%, -20px, 0);
    -moz-transform: translate3d(-50%, -20px, 0);
    transform: translate3d(-50%, -20px, 0);
}
.head-sec {
    text-align: center;
    margin-bottom: 40px;
}
.head-sec h2{
    margin-bottom: 0px;
}
.head-sec p {
    font-size: 12px;
    font-weight: 600;
    color: var(--territiary-color);
    margin-bottom: 5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.7;
}

/* attractions */

.attr-btn{
    display: flex;
}
.how-we-value-wrapp h6{
    line-height: 1.3;
    color: var(--primary-color);
    letter-spacing: 0.03em;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
}
.how-we-value-wrapp .atrr{
   padding: 8px;
    position:relative;
}
.how-we-value-wrapp .atrr a{
    position:relative;
}
.how-we-value-wrapp img.img-fluid {
    border-radius: 0px;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    width: 100%;
    height: 425px;
    object-fit: cover;
}
.how-we-value-wrapp .row{
    gap: 0px 0;
}
.how-we-value-wrapp .img-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.7s ease;
    position: relative;
    transform: translateY(0px);
}
.how-we-value-wrapp .img-card:hover img.img-fluid{
    transform: scale(1.10);
    transition: 0.7s all;
}
.how-we-value-wrapp .atr-cont{
   background: transparent;
   width: auto;
   position: absolute;
   bottom: 65px;
   left: 50px;
}
.how-we-value-wrapp .atr-cont a{
    background: rgba(255, 255, 255, 0.4);
    color: var(--text-white);
    padding: 3px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    transition: all 0.3s;
}
.how-we-value-wrapp .atr-cont a:hover{
    background: rgba(255, 255, 255);
    transition: all 0.3s;
    color: var(--text-black);
}
.how-we-value-wrapp .atr-cont a i{
  margin-right: 5px;
}
.how-we-value-wrapp .atr-cont h4 {
    font-weight: 700;
    margin-bottom: 0px;
    font-size: 20px;
    color: var(--text-white);
    font-family: var(--primary-font);
}

.how-we-value-wrapp .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF00 29%, #212529 200%);
    opacity: 0.86;
}

.how-we-value-wrapp .img-card:hover .overlay{
  background-color: #000;
  opacity: 0.6;
}
.how-we-value-wrapp .atr-cont .arrow{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--white-color);
    flex-shrink: 0;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    background: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 1px solid var(--heading-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.how-we-value-wrapp .arrow:hover{
    background: var(--white-color);
    color: var(--heading-color);
}
.how-we-value-wrapp a.main-btn {
    width: 180px;
    text-align: center;
    margin: auto;
    margin-top: 10px;
}
.how-we-value-wrapp .pro-btn{
    text-align: center;
    margin-top: 30px;
}
.how-we-value-wrapp .attr:hover .atr-cont{
    background: var(--white-color);
    box-shadow: 0px 4px 14px rgba(214, 214, 214, 0.24);
}
.how-we-value-wrapp .atrr:hover .atr-cont h4{
    color: var(--text-white);
    text-shadow: 0px 0px 0px #000;
}
.how-we-value-wrapp .atrr:hover .arrow{
    opacity: 1;
    visibility: visible;
}
.how-we-value-wrapp .attraction-btn{
    margin-top: 30px;
}
section.how-we-value-wrapp .head-sec .attr-btn{
  display: inline-block;
  margin-left: 15px;
}
section.how-we-value-wrapp .head-sec .attr-btn a{
  margin-top: 0;
  margin-bottom: 0;
}
.how-we-value-wrapp{
  background: #f8f5f0;
  padding: 60px 25px;
}
section.how-we-value-wrapp .head-sec{
  margin-bottom: 40px;
}
.content-blog p {
    height: 52px;
    margin-bottom: 0px;
    overflow: hidden;
}
section.Blog-details a{
    color: var(--secondary-color);
}
.home-list-card {
    position: relative;
}
section.get-quote-sec form .row{
    justify-content: space-between;
}
section.get-quote-sec form .col-md-6{
padding: 0px;
width: 49%;
}
section.Blog-details h1{
    color: var(--heading-color);
}
section.About-sec.rental-agreement form{
    padding: 0px !important;
}
.row.sign .col-md-12 {
    padding: 0px;
}
.sign-can .col-md-6{
    padding-left: 0px;
}
.row.rent-btn .col-md-12 {
    padding: 0;
}
.row.credit-card h3.panel-title.display-td {
    font-size: 26px;
}
.row.credit-card .form-group {
    margin-bottom: 10px;
}
.row.credit-card .form-group.card {
    border: 0px solid;
}
.design-by img{
  width: 130px;
}
.custom-px-6{
  padding-left: 6px;
  padding-right:6px;
}
.pr-50{
  padding-right: 50px;
}
#book .price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 0;
    margin-bottom: 5px;
}
#book .price p {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0px;
    margin-bottom: 0px;
}
.price span {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
}
#book .upper-area {
    margin-bottom: 0px;
    padding: 20px 10px;
    background: #F8F7F6;
    border-radius: 12px 12px 0 0;
}
#book .forms-booking-tab{
  padding: 0;
}
#book .ammenity-home span{
  font-size: 14px;
}
#book .ovabrw_datetime_wrapper{
  width: 100%;
  margin-bottom: 15px;
}
#book .pets select{
  margin-top: 0 !important;
}
#book .pets i{
  top: 12px;
}
#book .ovabrw_booking_form{
  padding: 30px;
}
#book .main-btn{
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index:1;
}
#book .main-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: #000;
  z-index: -1;
  transition: height 0.4s ease;
}
#book .main-btn:hover{
  background-color: unset; 
}

#book .main-btn:hover::before {
  height: 100%;
}
#book .main-btn.question-btn::before {
  width: 0%;
  height: 100%;
  background: #000;
  z-index: -1;
  transition: width 0.4s ease;
}
#book .main-btn:hover::before {
  width: 100%;
}
section.abt-head {
    padding: 60px 12px 0;
}
section.abt-head, section.abt-head p{
  text-align: center;
}
.screening-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.screening-image img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
section.about-guest.rev .screening-content {
    padding-left: 12px;
    padding-right: 5%;
}
section {
    padding: 60px 0;
}
section.about-guest.rev {
    background-color: #fff;
}
section.about-guest {
    background-color: #f7f7f7;
}
.screening-content {
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section.meet-team {
    background: #f7f7f7;
}
section.meet-team .head-sec {
    margin-bottom: 40px;
}
section.meet-team .row {
    gap: 30px 0;
}
section.meet-team .meet-team-img {
    margin-bottom: 20px;
}
section.meet-team img {
    box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 320px;
    object-fit: cover;
}
section.meet-team h3 {
    font-size: 28px;
    margin-bottom: 0;
}
section.we-set-up .head-sec {
    margin-bottom: 40px;
}
section.we-set-up h3 {
    font-size: 22px;
    margin-top: 8px;
    margin-bottom: 8px;
    font-weight: 400;
}
section.we-set-up .col-1.center{
    border-left: 2px solid var(--secondary-color);
    padding: 0;
}
section.we-set-up .inner-center {
    margin-top: 15px;
    margin-left: -13px;
}
section.we-set-up .col-1.center svg {
    width: 26px;
    height: 25px;
}
section.we-set-up p {
    margin-top: 15px;
    margin-bottom: 15px;
}

.navi-main-menu-button-wrapper {
    /* position: fixed; */
    /* z-index: 99999999999; */
    /* top: 10px; */
    /* left: 10px; */
    width: 50px;
    height: 46px;
    cursor: pointer;
    -webkit-transition: opacity .2s ease .3s, top 0s ease .3s;
    -moz-transition: opacity .2s ease .3s, top 0s ease .3s;
    transition: opacity .2s ease .3s, top 0s ease .3s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.footer-header{
    position: fixed;
    z-index: 9;
    top:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    height:70px;
}

.navi-main-menu-button {
    padding: 6px 10px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.navi-main-menu-button:before,
.navi-main-menu-button div.navi-main-menu-button-middle:before,
.navi-main-menu-button:after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    margin: 7px 0;
    background-color: #92959E;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    transition: all .25s ease;
    outline: 1px solid transparent;
}

.navi-main-menu-button:before,
.navi-main-menu-button div.navi-main-menu-button-middle:before,
.navi-main-menu-button:after {
    background-color: #ffffff;
}

.navi-social-wrapper {
    /* position: fixed; */
    z-index: 9;
    /* top: 15px; */
    /* left: 70px; */
    width: 20px;
    height: auto;
    border-left: 0px solid #ffffff50;
}

.navi-social-wrapper {
    width: auto;
    padding: 0px 20px 0 0px;
}

.navi-social-wrapper {
    /* z-index: 99999; */
}

.navi-menu-active .navi-main-menu-button:before {
    transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -webkit-transform: translateY(9px) rotate(45deg);
}

.navi-menu-active .navi-main-menu-button:after {
    transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -webkit-transform: translateY(-9px) rotate(-45deg);
}

.navi-menu-active div.navi-main-menu-button-middle:before {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all .25s ease, opacity .25s ease .025s;
    -moz-transition: all .25s ease, opacity .25s ease .025s;
    transition: all .25s ease, opacity .25s ease .025s;
}

.navi-main-background {
    position: fixed;
    z-index: 3;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #0C1013;
    display: block;
    top: -100%;
    opacity: 0;
    -webkit-transition: opacity .5s ease, top 0s ease .5s;
    -moz-transition: opacity .5s ease, top 0s ease .5s;
    transition: opacity .5s ease, top 0s ease .5s;
}

.navi-main-background {
    background-color: var(--secondary-color);
}

.navi-main-background-active {
    opacity: 1;
}

.navi-social-wrapper span {
    display: inline-block;
    margin-left: 15px;
}

.navi-main-wrapper {
    position: fixed;
    z-index: 4;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    color: #767676;
    -webkit-transition: left 0s ease .4s;
    -moz-transition: left 0s ease .4s;
    transition: left 0s ease .4s;
}

.navi-menu-wrapper {
    position: relative;
    top: 150px;
    width: 300px;
    margin: 0 0 0 105px;
    padding: 9px 0 50px 0;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-overflow-scrolling: touch;
}

.navi-menu-wrapper {
    margin: 0 auto;
}

.navi-main-wrapper-active {
    left: 0;
    -webkit-transition: left 0s ease;
    -moz-transition: left 0s ease;
    transition: left 0s ease;
}

.navi-main-background-active {
    top: 0;
    -webkit-transition: opacity .5s ease, top 0s ease;
    -moz-transition: opacity .5s ease, top 0s ease;
    transition: opacity .5s ease, top 0s ease;
}

.navi-main-background-active {
    opacity: 1;
}

.menu {
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    left: 0;
}

.navi-by-bonfire .menu li {
    margin: 0;
    padding: 0;
    border: none;
    z-index: auto;
    position: relative;
}

.navi-menu-wrapper-active .navi-by-bonfire ul li {
    opacity: 1;
}

.navi-menu-wrapper-active .navi-by-bonfire ul li:nth-child(1) {
    -webkit-transition: opacity .3s ease .2s;
    -moz-transition: opacity .3s ease .2s;
    transition: opacity .3s ease .2s;
}

.navi-by-bonfire ul li a {
    width: 100%;
    left: 0;
    font-size: 30px;
    line-height: 30px;
    font-family: 'Roboto';
    font-weight: 300;
    color: #fff;
    margin: 0;
    padding: 10px 0 5px 0;
    display: inline-block;
    text-decoration: none;
    outline: none;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    text-align: center;
}

.navi-by-bonfire ul li.current-menu-item>a {
    color: #6A7074;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
}

.navbar .navbar-brand {
    position: fixed;
}

.navbar .container-fluid {
    align-items: flex-start;
}

.navbar .logo-img {
    /* height: 300px; */
      margin-left: 50px;
}

.navbar .logo-img.logo2 {
    display: none;
}

.navbar .logo-img img {
    max-height: 100%;
    height: 105px;
    margin-top: 0;
}

#mainHeader.headerScrollFixed .navbar{
    background: #fff;
    transition: all 0.2s ease-in-out;
}

#mainHeader.headerScrollFixed .navbar .logo-img.logo1{
    display: none;
}

#mainHeader.headerScrollFixed .navbar .logo-img.logo2{
    display: block;
    height: 60px;
    transition: all 0.2s ease-in-out;
}
#mainHeader.headerScrollFixed .navbar .logo-img.logo2 img{
    transition: all 0.2s ease-in-out;
    margin-top: 0; 
    height: 0;
    width:0;
}

.scrollIconFixed img{
    filter: invert(1);
}
.scrollIconFixed .navi-main-menu-button div.navi-main-menu-button-middle:before , .scrollIconFixed .navi-main-menu-button::before , .scrollIconFixed .navi-main-menu-button::after{
    background: #000;
}
.banner-header {
    padding-top: 225px;
    padding-bottom: 50px;
}

.banner-header .box .video_header_content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-header .box .video_header_content .video_heding h1 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--f22);
    letter-spacing: 6px;
    line-height: 1.4em;
    text-align: center;
    text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
    color: #fff;
    margin-bottom: 30px;
}

.banner-header .box .video_header_content .video_heding h1 span {
    font-size: var(--f18);
    margin-top: 10px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 4px;
}

.banner-header .box .video_bg_box {
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    pointer-events: none;
    -webkit-transition: display .3s;
    transition: display .3s;
}

.banner-header .box .video_bg_box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-header .box .banner-video-log{
  text-align: center;
}

.banner-header .box .banner-video-log img{
  width: 300px;
  margin-bottom: -20px;
}

.banner-header .box .video_header_content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-header .box .video_header_content .video_heding h1 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: var(--f22);
    letter-spacing: 4px;
    line-height: 1.4em;
    text-align: center;
    text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
    color: #fff;
    margin-bottom: 0px;
    font-family: var(--heading-font);
}

.banner-header .overlay{
    background-color: rgb(0 0 0 / 0%);
}

.banner-header .box .video_header_content .video_heding h1 span {
    font-size: var(--f18);
    margin-top: 10px;
    font-weight: 300;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 4px;
}
.airbnb_booking_img {
    position: absolute;
    z-index: 1;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    height: 235px;
    filter: drop-shadow(0px 2px);
}
.paradise-section {
    padding: 20px 0;
}
.image-container {
    height: 100%;
    overflow: hidden;
    box-shadow: 15px 15px 0px var(--accent-color);
    transition: all 0.3s ease;
}
.image-container img {
    width: 100%;
    height: 422px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.paradise-section .col-lg-6.position-relative::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: -12px;
    top: 0;
    background-color: #f8f5f0;
    z-index: -1;
}
.content-container {
    padding: 40px;
    height: 100%;
}
.how-we-value-wrapp .row .col-3:first-child{
    width: 66.667%;
}
.how-we-value-wrapp .row .col-3:nth-child(2),.how-we-value-wrapp .row .col-3:nth-child(3),.how-we-value-wrapp .row .col-3:nth-child(4),.how-we-value-wrapp .row .col-3:nth-child(5){
    width: 33.33%;
}
.top-review-imgbox .review-imgbox {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
    gap: 15px;
}
.top-review-imgbox {
    margin-bottom: 50px;
}
.top-review-imgbox .review-imgbox img {
    flex: 1;
    max-width: 22%;
}
section.testimonial-section h2 {
    margin-bottom: 40px;
}
.home-page-testimonial{
  padding: 60px 12px;
}
.client-section-slide .slide-item {
    background-color: #f1f1f1;
    padding: 25px 15px;
    border-radius: 8px;
}
.client-section-slide .slide-item .Box {
    display: flex;
}
.client-section-slide .slide-item .Box img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.client-section-slide .slide-item .Box .content {
    font-size: 12px;
}
.client-section-slide .slide-item .Box .content a {
    display: flex;
    align-items: center;
}
.client-section-slide .slide-item .Box .content a span {
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    color: var(--black-color);
}
.client-section-slide .slide-item .Box .content a img {
    margin-right: 0;
    margin-left: 10px;
    width: 18px;
    height: 18px;
    filter: invert(1);
}
.client-section-slide .slide-item .client-rateing p {
    line-height: 22px;
    font-size: 15px;
    text-align: left;
    margin-top: 15px;
    font-weight: 500;
    min-height: 175px;
    max-height: 175px;
    overflow-y: auto;
    margin-bottom: 0;
}
.client-section-slide .slide-item .client-rateing span {
    display: block;
    color: orange;
    margin: 5px 0;
}
.home-page-testimonial .owl-nav {
    position: absolute;
    margin-top: 0 !important;
    line-height: normal;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}
.home-page-testimonial .client-section-slide .owl-nav button {
    line-height: normal;
    margin: 0 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.home-page-testimonial .client-section-slide .owl-nav button i, .home-page-testimonial .client-section-slide .owl-nav button svg {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 100px;
    background: var(--secondary-color);
    border-color: transparent;
    font-size: 24px;
    color: #fff;
}
.home-page-testimonial .client-section-slide .owl-nav button.owl-next {
    right: 10px;
}
.home-page-testimonial .client-section-slide .owl-nav button.owl-prev {
    left: 10px;
}
.home-page-testimonial .client-section-slide:hover .owl-nav {
    display: block;
}
.search-bar {
    margin-top: 0px;
    border: 0 solid #fffFFF52;
    border-radius: 30px;
    padding: 5px 0;
    z-index: 1;
}
.search-bar.newClass {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1140px;
    z-index: 999999;
    margin-top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
}
.banner-header .booking-area{
  bottom: 100px;
}
.search-banner-header-section{
  margin-top: -80px;
}
.search-banner-header-section .search-bar form{
    margin-top: 0
}
.search-banner-header-section.margin-remove{
  margin-top:unset;
}