/*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*/
 @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}



@font-face {
  font-family: "copper";
  src: url(../font/Copperplate-Bold.ttf);
}
:root{
	/*background-color: ;*/
	--secondary-color: #489AC2;
	--logo-color:#095B93;
	--bg-color: #f4f4f4;
	--bg-white: #fff;
	--bg-black: #000;
	--background-trans:rgba(34,157,165,0.16);

	/*Text Style*/
	--primary-font: 'Montserrat', sans-serif;
	--secondary-font: 'Montserrat', sans-serif;
	--heading-font:"blacksword";
	--logo-font:"copper";
	--other-font:'Montserrat', sans-serif;
	--primary-text: #000;
	--text-white: #fff;
	--text-black: #000;
	--text-gray: #e4e4e4;
}



@font-face {
  font-family: "blacksword";
  src: url(../font/Blacksword.otf);
}

.row{
    margin-left:0px;
    margin-right:0px;
}

body{
	font-family: var(--primary-font);
	background-color: var(--bg-white);
	color: var(--text-black);
}
a{
	text-decoration: none;
}
::-webkit-scrollbar{
	width: .375rem;
}
::-webkit-scrollbar-track{
	background: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--text-white);
}

b, strong{
    font-weight:bold;
}
section{
	padding: 3.125rem 0;
}
.main-btn{
font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-white);
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 10px 26px;
    border-radius: 5px;
    line-height: 1.75rem;
    display: inline-block;
    transition: all .5s;
    letter-spacing: 0.06em;
    border-radius:5px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
}
.main-btn:hover{
	background-color: var(--logo-color);
    border-color: var(--logo-color);
    color: var(--text-white);
    transform: scale(1.1);
}
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);
}
.section-title:after{
	content: '';
	background-image: url('../images/arrow.png');
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	margin-top: -0.937rem;
    height: .9375rem;

}

/*2. Navbar*/
.header .navbar{
	padding: 0;
	 background: linear-gradient(to bottom, #000000d9, rgb(0 0 0 / 0%)) !important; 
	/*background: var(--bg-white);*/
	-webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
	transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
	z-index:1;
	padding-top: 10px;
	padding-bottom: 10px;
}

.header .navbar-toggler{
	border: 0;
	color: var(--primary-text);
	line-height: 2;
}
.header .navbar-toggler:focus{
	box-shadow: none;
}
.header .nav-item{
	margin: 0 .625rem;
}
.header .nav-item .nav-link{font-size: 1rem;font-weight: 500;color: #fff;text-transform: capitalize;display: inline-block;border-bottom: 2px solid transparent;/* text-shadow: 0px 1px 2px #000; */}
.header .nav-item .nav-link:hover,
.header .nav-item .nav-link.active{
	border-color:var(--text-white);
}
.navbar.header-scrolled{
	/*position: fixed;*/
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background-color: rgb(255,255, 255, .58);
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeIdDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeIdDown;
}



ul.icn{
    margin-bottom: 0px;
    padding-left: 0px;
    display: flex;
    align-items: center;
    padding-right:5px;
}

ul.icn li{
    padding: 0px 15px;
    border-left: 1px solid #f1f1f1;
    list-style: none;
}

ul.icn li:first-child {
    border: none;
    padding-left: 0;
}

ul.icn li a{
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    /* text-shadow: 0px 0px 4px #000; */
}

div#navbarSupportedContent {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

@keyframes fadeIdDown{
	0%{
		top: -30%;
	}
	50%{
		top: -15%;
	}
	100%{
		top: 0%;
	}
}

.social_icon ul{
	margin-left: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    margin-bottom: 0;
    padding-bottom: 0;
}
.social_icon ul li{
	margin-left: 15px;
}
.social_icon ul li i{
	color: var(--primary-text);
    font-size: 20px;
}

header.header {
    position: absolute;
    width: 100%;
}

header.header img{
    width:120px;
}

.navbar-brand{
    padding-top: 0px;
    padding-bottom: 0px;
}

/*video section*/

.banner-wrapper{
	height: 100vh;
}
.video-sec {
    height: 100%;
    overflow: hidden;
    background: url(../images/inlet.webp);
    position:relative;
}
.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: #ae745a6b; */
    z-index: 0;
    background: rgba(0,0,0,0.3);
}
.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;
}

.hero-content .container{
display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin-top: 5%;
    flex-direction: column;
    }
    
    .hero-content span{
       color: #fff;
    font-size: 22px;
    text-shadow: 0px 0px 5px #000;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-family: var(--secondary-font);
    text-transform: uppercase;
    display: block;
    }
    
    span.h-li-big {
    font-size: 22px;
    }
.h-big {
   font-family: var(--logo-font);
    color: #fff;
    text-shadow: 0px 0px 4px #000;
    
    font-size: 65px;
    text-align: center;
    letter-spacing: 0px;
   
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 2px;
    width: 100%;
    margin-top: 10px;
}

.h-big span.meet{
    font-family: "creation";
    font-size: 55px;
}

.h-big span.where {
    font-size: 55px;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h-li-big {
    color: #fff;
    font-size: 20px;
    text-shadow: 0px 0px 5px #000;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-family: var(--other-font);
}
/*end video*/
section.booking-sec {
    padding-bottom: 0px;
    background: #ddd;
}

section.booking-sec .col-lg.md-4.md-lg-0.srch-btn {
    margin-top: 20px;
}

section.booking-sec .booking-area select{
    width:100%;
}

.booking-area{
position: relative;
    margin: auto;
    justify-content: center;
    width: 75%;
    left: 0;
    right: 0;
    bottom: 8.5rem;
    background: white;
    padding: 25px 25px;
    border-radius: 10px;
    margin-top: -115px;
    z-index: 1;
}
.booking-area .row{
    flex-wrap:wrap;
}
.booking-area .row .col-lg.md-3.icns.mb-lg-0.position-relative{
    width: 25% !important;
}

.booking-area::before{
    content: '';
    position: absolute;
    left: -7px;
    right: -7px;
    top: -7px;
    bottom: -7px;
    border: 1px solid #fff;
    border-radius: 10px;
    opacity: .5;
}
.booking-area .form-control{
padding: 10px;
    padding-left: 2.4rem;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: capitalize;
    border: 0px solid var(--text-black);
    height: 50px;
    color: #595959;
    background-color: #fff;
    border-radius: 5px;
    min-width: 170px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
    border-top: 0.5px solid #f3f3f3 !important;
    border-right-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-color: #DDDDDD;
    font-weight: 500;
}
.booking-area .icns i{
    position: absolute;
    left: 1.5rem;
    top: 0.97rem;
    font-size: 18px;
    color: var(--logo-color);
}
.booking-area .form-select{
	padding: 10px;
	text-indent: 1.7rem;
	border-radius: 0;
	font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
        background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #757272
	padding: 10px;
	border: 0.13rem solid var(--logo-color);
}


.srch-btn .main-btn {
padding: 6px 10px;
    wid: 350px;
    width: 400px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    border: 1px solid transparent;
    color: var(--text-white);
    font-size: 18px;
}
.srch-btn .main-btn:hover {
    background-color: var(--logo-color);
    border-color:var(--logo-color);
   
}

.col-lg.md-4.md-lg-0.srch-btn {
    z-index: 2;
    text-align:center;
}

body.client-theme-conchkeyvillas .booking-area {
    overflow: visible;
}

body.client-theme-conchkeyvillas .booking-area form,
body.client-theme-conchkeyvillas .booking-area .row,
body.client-theme-conchkeyvillas .booking-area .icns,
body.client-theme-conchkeyvillas .booking-area .vr-guest-selector {
    position: relative;
    z-index: 2;
}

body.client-theme-conchkeyvillas .booking-area .row:first-child {
    align-items: center;
    row-gap: 16px;
}

body.client-theme-conchkeyvillas .booking-area select,
body.client-theme-conchkeyvillas .booking-area input[name="check_in"],
body.client-theme-conchkeyvillas .booking-area input[name="check_out"],
body.client-theme-conchkeyvillas .booking-area .vr-guest-trigger {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    height: 50px;
    padding: 10px 14px 10px 2.55rem;
    border: 1px solid #dddddd;
    border-top-color: #f3f3f3;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    color: #595959;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

body.client-theme-conchkeyvillas .booking-area select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0;
}

body.client-theme-conchkeyvillas .booking-area input[name="check_in"]::placeholder,
body.client-theme-conchkeyvillas .booking-area input[name="check_out"]::placeholder {
    color: #9b9b9b;
    opacity: 1;
}

body.client-theme-conchkeyvillas .booking-area .vr-guest-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
}

body.client-theme-conchkeyvillas .booking-area .vr-guest-summary {
    color: #595959;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

body.client-theme-conchkeyvillas .booking-area .vr-guest-chevron {
    color: #111;
}

body.client-theme-conchkeyvillas .booking-area .icns > i {
    top: 25px;
    left: 1.35rem;
    z-index: 3;
    transform: translateY(-50%);
    pointer-events: none;
}

body.client-theme-conchkeyvillas .booking-area .vr-guest-popover {
    top: calc(100% + 8px);
    left: 0;
    z-index: 40;
    text-transform: none;
}

body.client-theme-conchkeyvillas .booking-area .srch-btn {
    position: relative;
    z-index: 1;
}


/*start about*/

.about_wrapper{
 padding-top: 0px;
     padding-bottom: 0px;
    background: url("../images/inlet.jpe");
    margin-top: -135px;
    background-size: cover;
}

.about_wrapper .main-overlay{
    background: rgba(0,0,0,0.5);
    padding-top: 50px;
     padding-bottom: 100px;
}

.about_wrapper.home-about .container{
    max-width: 1000px;
    padding: 0px;
    border-radius: 20px;
}

.about_wrapper.home-about .container .overlay{
background: linear-gradient(0deg, rgb(0 0 0 / 100%), rgb(0 0 0 / 0%));
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    position: relative;
    padding: 70px 0px 130px 0px;
    border-radius: 20px;
    color: var(--text-white);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.about_wrapper.home-about .heading_sec, .about_wrapper.home-about .content-sec{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align:center;
}
.heading_sec{
	margin-bottom: 20px;
	text-align: center;
}
.about-img1{
	text-align: right;
}
.about-img1 img{
	width: 100%;
}
.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: 0px;
}
.subhead {
    color: var(--secondary-text);
    font-size: 18px;
    /*line-height: 35px;*/
}
.about_wrapper .col-lg-6.text-center.text-lg-start{
	padding-right: 6%;
}



.about_wrapper h3{
    font-size: 30px;
    line-height: 1.2;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-weight: 500;
    margin-bottom: 30px;
}

.heading_sec h3{ 
    font-weight: 400;
    font-size: 2.8rem;
    font-family: var(--heading-font);
}

.about_wrapper .heading_sec h3{
    font-weight: 500;
    font-size: 45px;
    font-family: var(--heading-font);
    color: var(--text-white);
    margin-bottom: 30px;
    text-shadow: 0px 0px 4px #000;
    letter-spacing:1px;
}



.about_wrapper.home-about p{
    color: var(--text-white);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0px 0px 3px #000;
}

.about_wrapper.home-about a{
    width: 207px;
    /*border-color: var(--text-white);*/
    color: var(--text-white);
    }
/*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;*/
    display:none;
}
.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: 36px;
    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: auto;
    display: flex;
    align-items: center;
    color: #fff;
    width: 100%;
    padding: 40px;
    margin-left: auto;
}
.booking-right_sec p{
	color: #fff;
	margin-top: 18px;
}

/*end bookind section*/

/*Property section*/

.property-sec {
    padding: 60px 0;
    background: #fff;
    padding-top: 80px;
}

.property-sec .row{
    
    gap: 40px 0px;
}

.contain {
    margin: 0 auto;
    width: 100%;
    height: auto;
}


.item {
    align-items: center;
    background-color: transparent;
    color: white;
    display: flex;
    height: 100%;
    justify-content: center;
}
.booking.item{
    height:auto;
}
.contain img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-sec img{
    height:320px;
    margin-bottom: 0px;
}
.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: 28px;
    height:70px;
    line-height: 1.3;
    margin: 18px 0;
    font-family: var(--heading-font);
    color: var(--heading1-color);
    font-weight: 500;
}

.amount {
    display: flex;
    justify-content: space-between;
}
.location {
    margin-bottom: 10px;
}
.location .fa-location-dot {
    color: var(--logo-color);
}
.price {
    font-size: 24px;
    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 var(--logo-color);
    padding-top: 10px;
    border-bottom: 2px dashed var(--logo-color);
    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);
}

/*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.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    padding:0px
}

.catch-f .overlay{
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    background:rgba(0,0,0,0.2);
}
.catch-f .row{
	width: 100%;
    padding: 0;
    margin: 0;
    background: #0000008c;
    padding: 40px 70px;
    align-items: center;
    max-width: 980px;
    margin: auto;
}

.catch-f p{
    margin-bottom: 0px;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
    width: 800px;
    margin: auto;
    color: var(--text-white);
}
.catch-f .row .col-lg-9{
	padding: 0;
}
.catch-f .row .pro-sec-right {
    padding: 0px;
    padding-top: 0px;
    background: transparent;
    text-align: center;
    margin-top: 20px;
}
.catch-f .row .pro-sec-right p {
    margin-bottom: 1rem;
    font-size: 16px;
}

.catch-f .row .pro-sec-right p:nth-child(2), .catch-f .row .pro-sec-right p.location {
    margin-bottom: 5px;
}

.catch-f span{
    font-size: 25px;
    font-family: var(--logo-font);
    color: var(--text-white);
    letter-spacing: 1px;
    
}
.pro-sec-right a{
	margin-top: 0px;
	padding: 10px 18px;
	transition: all .5s;
}

.pro-sec-right a:hover{
	/*padding: 10px 24px;*/
	transform: scale(1.1);
}

.catch-f .row .pro-sec-right a{
    	margin-top: 0px;
}
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: 36px;
    font-family: var(--heading-font);
    line-height: 1.2;
    color:#000;
    margin-bottom: 10px;
    font-weight: 500;
}
/*Review section*/
.testimonial-sec {
    padding: 0px 0;
    background-image: url(../images/kiva.jpe);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-sec .overlay{
     padding: 80px 0;
     background-color:rgba(0,0,0,0.3);
     position:relative;
}

.testimonial-sec .heading_sec p{
    color:var(--text-white);
    font-weight:bold;
}
.testimonial-sec h6{
    font-size: 22px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0px;
    letter-spacing: 1px;
}
.testimo-centent {
    padding: 0px 60px;
    width: 100%;
    margin: 0rem auto 1rem;
    text-align: center;
}
.testimonial-sec h3{
	margin-bottom: 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    color:var(--text-white);
    margin-bottom:30px;
    letter-spacing: 1px;
    text-shadow: 0px 0px 4px #000;
}
.testimo-centent .slick-arrow {
    position: absolute;
    color: #D4AF37;
    top: 44%;
    transform: translateY(-50%);
    font-size: 31px;
    background-color: #fff !important;
    display: block;
    border: 20px solid #fff !important;
    width: 70px;
    height: 70px;
    box-shadow: 0 0 0 20px rgb(255 255 255 / 20%);
    transition: .3s all linear;
    border-radius: 50%;
    cursor: pointer;
    z-index:1;
}

/*.testimo-centent .slick-arrow:before{*/
/*    font-size: 20px !important;*/
/*    color: var(--e-global-color-secondary) !important;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    border: 1px solid var(--e-global-color-secondary);*/
/*    border-radius: 50%;*/
/*}*/

/*.testimo-centent .slick-arrow:after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    border-radius: 50%;*/
/*    box-shadow: 0 0 0 0px rgb(255 255 255 / 20%);*/
/*    display: inherit;*/
/*    transition: .3s all linear;*/
/*}*/

.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: -2%;
}
.testimo-centent .fa-angle-right {
    position: absolute;
    right: -2%;
    text-align: center;
}

.testimo-centent p {
    font-size: 16px;
    text-align: left;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 20px;
}

p.rating {
    color: #f0c755;
     font-size: 13px;
     margin-bottom:5px;
}
.testimo-centent h4 {
    font-size: 20px;
    font-weight: bold;
     text-align: left;
}

.testimo-centent .inner{
    min-height: 500px;
    position: relative;
    padding: 80px 50px 80px 445px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.testimo-centent .inner:before {
    content: '';
    position: absolute;
    background-color: #fff;
    left: 100px;
    right: 0px;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.testimonial-sec .testimonial-image{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px #9191915a;
}

.testimonial-sec img{
    width: 400px;
    height: 400px;
    border-radius: 0;
    border: 10px solid #fff;
    object-fit: cover;
}

.testimo-centent .slick-arrow:hover{
    box-shadow: 0 0 0 40px rgb(255 255 255 / 20%);
    background-color: #fff !important;
}
/*end Review section*/

/*Footer section*/
footer{
	/*margin-top: 4rem;*/
    background: #000;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    width: 100%;
    padding: 60px 0 0;
    background-position: left 75%;
}
.footer_overlay{
	width: 100%;
    height: 100%;
    /*background: #000;*/
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
footer .container{
	z-index: 1;
	position: relative;
}
.footer_links h4{
	font-size: 24px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 15px;
    font-family: var(--primary-font);
    font-weight: 600;
}
.footer-social ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    margin-top: 20px;
    float: left;
}
.footer-social ul{
	padding-left: 0;
	margin-left: 0;
}
.footer-social ul li {
    display: inline-block;
    color: #b3adad;
    margin-right: 10px;
}
.footer-social ul li span {
    display: inline-block;
    margin-right: 4px;
    font-size: 15px;
    color: #e4e4e4;
}
.footer-social ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #fff;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    line-height: 30px;
    font-size: 12.5px;
    border: 1px solid #716f6f;
}
.footer_link{
	padding: 0;
	margin: 0;
}
.footer_links ul li{
	list-style-type: none;
	margin-bottom: 6px;
	color: var(--text-gray);
	line-height: 30px;
}
.footer_links ul li a{
	color: var(--text-gray);
}
.footer_logo img{
	width: 50%;
	margin-bottom: 1rem;
}
.copyright p{
	color: white;
	margin: auto;
}
.right_copyright{
	text-align: right;
}
.copyright{
	    margin-top: 40px;
    background: #000;
    padding: 20px 0;
    border-top:1px solid #fff;
}
.right_copyright p img{
	width: 135px;
}
/*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: 300px;
    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: 40px ;
    text-transform: capitalize;
    text-shadow: 2px 1px 4px #000;
    margin-top: 20px;
    margin-bottom: 0px;
    letter-spacing:2px;
}
.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);
}
.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{
    line-height: 1.3;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
}
.agency-section p{
	line-height: 1.8em;
	font-size: 16px;
	font-family: var(--primary-font);
	padding-right: 20px;
	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(--secondary-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: var(--secondary-color);
    top: -20px;
    right: -20px;
}

.rights::after {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: var(--secondary-color);
    top: -5px;
    right: -34px;
    -webkit-transform: rotate( 90deg );
    transform: rotate( 90deg );
}
/*=====================  CONTACT US =======================*/
.contact-page-section {
    position: relative;
    padding: 100px 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;
    line-height: 1.3;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}
.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-form .captcha {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form .captcha-art {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    height: 40px;
    padding: 6px 16px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background:
        repeating-linear-gradient(-12deg, transparent 0 10px, rgba(38, 162, 183, .22) 10px 12px),
        repeating-linear-gradient(12deg, transparent 0 14px, rgba(226, 54, 87, .18) 14px 16px),
        #fafafa;
    color: rgba(190, 45, 84, .72);
    font-family: Georgia, serif;
    font-size: 24px;
    font-style: italic;
    letter-spacing: 4px;
    line-height: 1;
    text-decoration: line-through;
}

.contact-form .captcha .btn {
    width: 35px;
    height: 35px;
    padding: 0;
    border-radius: 3px;
    line-height: 35px;
}

.contact-form .contact-challenge-spacer {
    height: 155px;
}
.contact-map {
    overflow: hidden;
    height: 100%;
    box-shadow: 0px 0px 5px #ccc;
}
.contact-map iframe {
    position: relative;
    top: 0rem;
    width: 100% !important;
    height: 100% !important;
    min-height: 100%;
    display: block;
}

.contact-page-section .sec-title h3{
    margin-bottom: 1.5rem;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 1px;
}

/*====================== PROPERT DETAILS =====================*/

.upper-box {
    position: relative;
}

.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;
    font-family: var(--secondary-font);
}
.upper-box .hotel-info {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 0px;
    margin-top: 0px;
}

.upper-box .hotel-info a{
     color: #000;
}
.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: 98px;
    color: #060606;
    float: right;
    font-size: 23px;
    padding-top: 20px;
    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;
    border-bottom: 1px solid #efefef;
}
.upper-box .food-list li {
    position: relative;
    color: #060606;
    font-size: 17px;
    margin-right: 15px;
    display: inline-block;
}
.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%; 
}

.property-list-sec .wrap-item.two_column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 14px;
}

.property-list-sec .wrap-item.two_column .ovabrw_service_wrap,
.property-list-sec .wrap-item.two_column > .rental_item:last-child {
    grid-column: 1 / -1;
}

.property-list-sec .rental_item,
.property-list-sec .ovabrw_service_wrap {
    width: 100%;
    margin-bottom: 0;
}

.property-list-sec .rental_item label,
.property-list-sec .ovabrw_service_wrap > label {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.2;
    color: #242424;
}

.property-list-sec .ovabrw_datetime_wrapper input,
.property-list-sec .ovabrw_datetime_wrapper select,
.property-list-sec .vr-guest-trigger {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding-left: 34px;
    padding-right: 34px;
    line-height: 1.2;
}

.property-list-sec .ovabrw_datetime_wrapper select {
    appearance: auto;
    border: 1px solid #DDDDDD;
    border-top-color: #f3f3f3;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
    color: #595959;
    font-size: 14px;
    font-weight: 500;
}

.property-list-sec .vr-guest-selector {
    width: 100%;
}

.property-list-sec .vr-guest-trigger {
    justify-content: space-between;
    border: 1px solid #DDDDDD;
    border-top-color: #f3f3f3;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
    color: #595959;
    background-color: #fff;
}

.property-list-sec .vr-guest-summary {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.property-list-sec .ovabrw_datetime_wrapper i,
.property-list-sec .ovabrw_service_select.rental_item > i {
    left: 10px;
    z-index: 2;
    pointer-events: none;
}

.property-list-sec .ovabrw_datetime_wrapper i {
    top: 50%;
    transform: translateY(-50%);
}

.property-list-sec .ovabrw_service_select.rental_item > i {
    top: 17px;
}

.property-list-sec .row.ovabrw_service {
    margin-left: 0;
    margin-right: 0;
}

.property-list-sec .row.lct {
    margin-left: 0;
    margin-right: 0;
    row-gap: 12px;
}

.property-list-sec .row.lct .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
}

.property-list-sec .row.lct .main-btn {
    width: 100%;
}

@media (max-width: 991px) {
    .property-list-sec .wrap-item.two_column {
        grid-template-columns: 1fr;
    }
}

.ovabrw_datetime_wrapper input{
	 width: 100%;
    padding: 8px 0 8px 30px;
    border: 1px solid var(--secondary-color);
    font-size: 14px;
    padding: 10px;
    padding-left: 30px;
    font-size: 14px;
    letter-spacing: 0px;
    text-transform: capitalize;
    border: 0px solid var(--text-black);
    height: 50px;
    color: #595959;
    background-color: #fff;
    border-radius: 5px;
    min-width: 130px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
    transition: box-shadow 0.2s ease;
    border-top: 0.5px solid #f3f3f3 !important;
    border-right-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-color: #DDDDDD;
    font-weight: 500;
}
.ovabrw_datetime_wrapper i, .ovabrw_service_select.rental_item i, .pets i{
	position: absolute;
    left: 0.5rem;
    top: 0.9rem;
    font-size: 18px;
    color: var(--secondary-color);
}

.pets i {
    left: 1.3rem;
}

.pets select{
    font-size: 14px;
    text-indent: 24px;
    height: 42px;
    margin-top: 1rem !important;
    /* border: 1px solid var(--secondary-color) !important; */
    padding: 10px 10px 10px 10px;
    font-size: 14px;
    height: 50px;
    border: 0px solid var(--text-black);
    color: #595959;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
    transition: box-shadow 0.2s ease;
    border-top: 0.5px solid #f3f3f3 !important;
    border-right-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-color: #DDDDDD;
    font-weight: 500;
}

.booking-area .pets select{
     margin-top: 0rem !important;
     text-indent: 0px;
}



.pets {
    position: relative;
}

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 2.1rem;
    font-size: 14px;
}

.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: 28px;
    line-height: 1.2;
    color: #000;
    letter-spacing: 2px;
}

.rsDefault .rsThumbsArrow{
    height:100% !important;
}
.abouttext h4 {
   font-size: 22px !important;
    font-family: var(--primary-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 {
    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.2%;
}

.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: 1rem;
    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: 10px;
    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;
}

.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 41px;
    font-size: 16px;
    height:50px;
   border: 0px solid var(--text-black);
    color: #595959;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
    border-top: 0.5px solid #f3f3f3 !important;
    border-right-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-color: #DDDDDD;
    font-weight:500;
}

.booking-area select {
    word-wrap: normal;
    padding: 10px;
    text-indent: 1rem;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: capitalize;
    border: 0px solid var(--text-black);
    height: 50px;
    color: #595959;
    font-weight:500;
    background-color: #fff;
    border-radius: 5px;
     box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
    border-top: 0.5px solid #f3f3f3 !important;
    border-right-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-color: #DDDDDD;
    width: 225px;
}

.booking-area select li{
    background:red !important;
}

#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: 20px !important;
    left: auto !important;
    font-size: 18px;
    color: var(--secondary-color);
cursor: pointer;
}

.ac-box {
    margin-bottom: 20px;
}

.get-quote .main-cal {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.ac-box, .btnssss {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adult {
    display: flex;
    color: #000;
    font-size: 15px;
    align-items: center;
}

.adult p {
    margin-bottom: 0px;
}

.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;
    border-radius:5px;
}


section.get-quote-sec h2{
    font-weight: 400;
    font-size: 36px;
    color: var(--secondary-color);
    /* text-transform: uppercase; */
    font-family: var(--secondary-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: uppercase;
    text-align: center;
    font-size: 15px;
}

.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;
}

.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: 550px;
    margin-right: 20px;
}

section.Blog-details .container{
    display: flex;
}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 {
   max-height: 260px;
    overflow: hidden;
    height: auto;
}

#more, #less{
    cursor:pointer;
}

.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: 230px;
    height: 400px;
    object-fit: cover;
}

.property-list-sec .pro-img-part {
    flex: 0 0 230px;
    min-width: 230px;
}

.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;
}

.about-pro-list {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 10px;
    padding-left: 20px;
}

.about-pro-list h3{
    font-family: var(--primary-font);
    line-height: 1.2;
    font-size: 28px;
}
.about-pro-list  p.descr {
    height: 100px;
    
}

.pro-list-details h4{
    font-size:16px;
}

.pro-list-details i{
    color:var(--secondary-color);
    font-size: 18px;
}

.pro-list-dec {
    display: flex;
    gap: 2rem;
}

.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;
}

.row.icon a{
    width:200px;
}
.row.icon {
    justify-content: center;
    align-items: center;
    gap: 30px;
    display:none;
}

p.descr {
    height: 160px;
    overflow: hidden;
    text-align: justify;
}
.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #fff;
    border-color: #000;
    z-index: 9;
    background-image: none !important;
}

.sticky img{
    width: 150px !important;
}

/*faq section start*/

.faq-sec{
    padding: 60px 0;
    background: var(--background-trans);
}

.col-lg-6.section-content h3{
    font-size: 32px;
    font-weight:500;
}

.accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
      transform: scale(.7) !important;
    }
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    }
    
    .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 20px;
    color: var(--primary-text);
    text-align: left;
    background-color: var(--background-trans);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
    border-top: 2px solid var(--secondary-color);
}

.card-body{
    background: var(--background-trans);
}
.accordion-item {
    background-color: #fff;
    border: 0px solid rgba(0,0,0,.125);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-text);
    background-color: var(--background-trans);
    box-shadow: inset 0 0px 0 rgba(0,0,0,.125);
}

div#myAccordion {
    border-bottom: 2px solid var(--secondary-color);
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(13,110,253,.25);
}

.heading_sec.faq-head h3{
    font-weight: 500;
    font-size: 40px;
    font-family: var(--heading-font);
    color: var(--logo-color);
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.faq-sec .amnt{
    margin-top:20px;
}


section.location-section {
    padding: 60px 0px;
}

.content-location{
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.content-location .amnt {
    text-align: center;
}

.content-location h2{
    font-size: 40px;
    margin-bottom: 30px;
    font-family:var(--heading-font);
    letter-spacing: 1px;
    color: var(--logo-color);
    text-align:center;
}

.content-location p{
    margin-bottom: 40px;
    text-align:center;
}

.loc{
    width: 48.5%;
    height: 450px;
    overflow: hidden;
}

.loc .overlay{
    position:relative;
    background:rgba(0,0,0,0.4);
}
.col-8.location-col {
    display: flex;
    justify-content: space-between;
    padding-right: 30px;
}
.loc a{
display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    overflow:hidden;
}

.loc img{
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
    transition: all linear .5s;
}

.loc img:hover, .loc h3:hover img{
    transform: scale(1.3);
}

.loc h3{
   position: relative;
    padding: 40px 20px;
    margin-bottom: 0px;
    width: 100%;
    color: var(--text-white);
    font-size: 18px;
    background: linear-gradient(0deg, rgb(0 0 0 / 100%), rgb(0 0 0 / 0%));
    line-height: 1.3;
    transition: all linear .5s;
    font-family: var(--secondary-font);
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.loc:hover img{
    transform: scale(1.3);
}

.amnt.test {
    margin-top: 50px;
}

.amnt.test a{
   color:var(--text-white); 
}

section.attr-sec {
    padding: 60px 0px;
    padding-bottom:0px;
}

section.attr-sec .container-fluid {
    padding: 0px;
}

section.attr-sec .row{
    margin-left: 0px;
    margin-right: 0px;
}

section.attr-sec .col-6{
    padding:0px;
}

section.attr-sec .col-6.img-attr{
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

section.attr-sec .col-6.img-attr img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all linear .5s;
}

section.attr-sec .col-6.img-attr img:hover{
    transform: scale(1.3);
}

section.attr-sec .col-6.img-attr a{
    display:block;
    width: 100%;
}

section.attr-sec .col-6.content-attr {
    padding: 45px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.attr-sec h3.heading{
    margin-bottom:50px;
}

section.attr-sec .col-6.content-attr .amnt{
    text-align:left;
    margin-top: 5px;
}

section.attr-sec .row.attr.two.rev {
    flex-direction: row-reverse;
}

section.attr-sec .col-6.content-attr h3{
    font-size: 28px;
    font-weight: 700;
    font-family: var(--secondary-font);
}

section.location-section.attr-location .row{
    flex-direction: row-reverse;
}

section#property input#show-target-data{
    font-size:14px;
}

.about-content{
    height:auto;
    overflow:hidden;
}

.row.text-center.mt-4.bttn label{
    display:none;
}

.row.text-center.mt-4.bttn div{
    width:217px;
}

.row.text-center.mt-4.bttn{
    justify-content: center;
}

.sidebar-container {
    position: sticky;
    top: 10px;
}

section.common-wrapper h3{
    font-family: var(--primary-font);
    line-height: 1.3;
    font-size: 30px;
}

div#tag1 {
    gap: 10px;
    flex-direction: column;
    display: flex;
    align-items: flex-end;
}

.video-sec button {
    display: none;
}

a.sticky.main-btn {
    transform: rotate(-90deg);
    position: fixed;
    left: auto;
    right: -39px;
    top: 52%;
    z-index: 999;
    display: none;
    color: #fff !important;
    letter-spacing: 0px;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    width: 240px;
    text-align: center;
}

div#ui-datepicker-div{
    z-index:9 !important;
}

.row.lct {
    margin-top: 1rem;
}

.row.lct select{
    height: 50px;
    border: 0px solid var(--text-black);
    color: #595959;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
    transition: box-shadow 0.2s ease;
    border-top: 0.5px solid #f3f3f3 !important;
    border-right-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 1px;
    border-color: #DDDDDD;
    font-weight: 500;
    padding: 10px 10px 10px 5px;
    text-indent:5px !important;
    font-size: 14px;
}

.col-md-6.col-md-offset-3 {
    margin-top: 40px;
    width: 100%;
}

.col-md-6.col-md-offset-3 h3.panel-title.display-td{
    font-weight: 400;
    font-size: 36px;
    color: var(--secondary-color);
    /* text-transform: uppercase; */
    font-family: var(--secondary-font);
    margin-bottom: 1.375rem;
}

.col-md-6.col-md-offset-3 input.form-control {
    border-color: var(--secondary-color);
    margin-bottom: 10px;
    margin-top: 5px;
}

.row.str-form {
    margin-left: 0px;
    margin-right: 0px;
}

.row.str-form .card{
    border: 0px solid rgba(0,0,0,.125);
}

.row.str-form .btn-primary {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 0px !important;
    transition: all .5s;
}


.row.str-form .btn-primary:hover {
    color: var(--secondary-color);
    background-color: transparent;
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

ul.dropdown-menu.show {
    padding: 0px;
    border-radius:0px;
}

a.dropdown-item {
    padding: 8px;
}

a.dropdown-item:hover {
   background-color:var(--secondary-color);
   color:var(--text-white);
}

div#map iframe{
    width:100% !important;
}

div#calender_nrj {
    padding: 0px;
}

section.get-quote-sec .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
    padding: 0px;
}

.get-quote .col-md-12.pets {
    padding: 0px;
}

.get-quote .pets i {
    left: 0.5rem;
}

div#check .col-md-12{
    padding:0px;
}

input[type="file"] {
    width: 100%;
}

section.About-sec.rental .row.signn .col-md-12{
    display: flex;
    gap: 20px;
}

.payment .container {
    padding: 0px;
    margin-top:30px;
}

.payment h3 {
    font-size: 30px;
    text-align: center;
    line-height: 1.4;
}

#card-data-wrapper .sq-input-wrapper input{
    border-left: 1px solid #d9d9d9 !important;
}
