/*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=Open+Sans:wght@300;400;500;600;700;800&display=swap');

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root{
	/*background-color: ;*/
	--primary-color: #021832;
	--secondary-color:#002f6c;
	--heading-color:#78D64B;
	--bg-color: #f4f4f4;
	--bg-white: #fff;
	--bg-black: #000;
    --ocean-color: #00a9dd;

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

@font-face {
  font-family: "league";
  src: url(../font/LeagueGothic-Regular.otf);
}

@font-face {
  font-family: "sochiko";
  src: url(../font/creattion-demo.regular.otf);
}
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: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--primary-color);
}

b, strong{
    font-weight:bold;
}
section{
	padding: 3.125rem 0;
}
.main-btn{
	font-size: 1rem;
    font-weight: 400;
    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 1s ease;
    letter-spacing: 0.06em;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
}
.main-btn:hover{
	background-color: var(--heading-color);
    border-color: var(--heading-color);
    color: var(--text-white);
}
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/title-icon.webp');
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	margin-top: -0.937rem;
    height: .9375rem;

}

/*2. Navbar*/
.header .navbar{
	padding: 0;
	background: transparent;
	/*-webkit-box-shadow: 0px 0px*/
	/*box-shadow: 0 .5rem .375rem -0.375rem rgb(0 0 0 / 40%);*/
	-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: 0px;
    padding-bottom: 0px;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 100%);
    position: fixed;
    width:100%;
}

.header .navbar-toggler{
	border: 0;
	color: var(--primary-text);
	line-height: 2;
}
.header .navbar-toggler:focus{
	box-shadow: none;
}
.header .nav-item{
	margin: 0 10px;
}
.header .nav-item .nav-link{
	font-size: 15px;
    font-weight: 700;
    display: inline-block;
    color: #000;
    text-transform: uppercase;
    /* text-shadow: 1px 1px 2px #000; */
    border-bottom: 0px solid transparent;
}
.header .nav-item .nav-link:hover,
.header .nav-item .nav-link.active{

    color: var(--heading-color);
}

section.community {
    padding: 60px 0px;
    text-align: center;
    padding-bottom: 80px;
}

section.community h2{
    line-height: 1.2;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 25px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

section.community .flip-card {
    background-color: transparent;
    height: 250px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
    width: 100%;
    margin: 0 auto;
}

section.community .flip-card button{
   margin-top: 0px;
    padding: 10px 10px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    color: var(--text-white);
    width: 150px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
    text-align: center;
}

section.community .flip-card button:hover{
     background-color: var(--heading-color);
      border-color: var(--heading-color);
      color: var(--text-white);
}

section.community .flip-card .com-btn{
    position:relative;
    top:0px;
    left:0px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

section.community .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
   background-color: transparent;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-front a{
    width:100%;
}

.flip-card-front img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.flip-card-front h3{
   color: var(--text-white);
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 1px 1px 5px #000;
}

.flip-card-front p{
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 0px;
}

.flip-card-back {
    background-color: var(--secondary-color);
    color: white;
    transform: rotateY(180deg);
}

.flip-card-back a{
    display:block;
}



.flip-card-back img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

section.community .row{
    gap: 24px 0px;
}

.subtitle-wrapper {
    color: var(--heading-color);
    font-size: 16px;
    line-height: 1em;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dash {
    width: 40px;
    height: 1px;
    margin-right: 20px;
    margin-left: 20px;
    background-color: var(--secondary-color);
}

.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;
}


@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: relative;
    width: 100%;
    z-index: 99;
}

header.header .col-lg-5 {
    flex: 0 0 auto;
    width: 39.666667%;
    display: flex;
}

header.header div#navbarSupportedContent1 {
    justify-content: flex-end !important;
}

header.header .row{
    width:100%;
}

header.header .container-fluid{
    width: 100%;
    justify-content: center;
}


header.header .col-lg-2 {
    flex: 0 0 auto;
    width: 17.666667%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header.header .col-lg-2 .navbar-brand{
    margin-right: 10px;
    width:250px;
}

header.header .col-lg-10 {
    flex: 0 0 auto;
    width: 82.333333%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header.header .navbar-expand-lg .navbar-collapse{
    justify-content: center !important;
}

/*video section*/

.banner-wrapper{
	height: 100vh;
}
.video-sec {
    height: 100%;
    overflow: hidden;
}
.overlay {
   width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background-color: #002f6cc4;*/
    z-index: 0;
   
}

section.community .flip-card .overlay {
   width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000066;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.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;
}
.h-big {
   font-family: var(--heading-font);
    color: #fff;
    text-shadow: 2px 2px 4px #000;
    text-transform: capitalize;
    font-size: 80px;
    text-align: center;
    letter-spacing: 0px;
    max-width: 1140px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.h-big span{
    font-size: 70px;
    font-family: "sochiko";
    font-weight: 600;
    letter-spacing: 2px;
}
.h-li-big {
    color: #fff;
    font-size: 20px;
    text-shadow: 0px 0px 5px #000;
    letter-spacing: 0.05em;
    font-weight: 400;
}
/*end video*/

.booking-area{
	position: absolute;
    margin: auto;
    justify-content: center;
    width: 77%;
    left: 0;
    right: 0;
    bottom: 1rem;
   padding: 10px 14px;
    clear: both;
    background: rgba(188,188,188,.75);
    border: 3px solid #fff;
}

.booking-area .col-lg {
    /*flex: 1 0 0%;*/
    padding-right: 5px;
    padding-left: 5px;
}
.booking-area .form-control{
padding: 10px;
    padding-left: 26px;
    font-size: 13px;
    letter-spacing: 0rem;
    text-transform: uppercase;
    border-radius: 0;
    border: 0px solid var(--heading-color);
    background: white;
    height: 42px;
}
.booking-area .icns i{
   position: absolute;
    left: 10px;
    top: 0.7rem;
    font-size: 18px;
    color: var(--secondary-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(--secondary-color);
}


.srch-btn .main-btn {
	padding: 6px 10px;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 0px;
    border: 1px solid var(--secondary-color);
    color: var(--text-white);
    font-size:13px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
}
.srch-btn .main-btn:hover {
    background-color: var(--heading-color);
    border-color: var(--heading-color);
    color: var(--text-white);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/*start about*/

.about_wrapper{
	padding-top: 3.75rem;
	padding-bottom: 4.5rem;
}
.heading_sec{
	margin-bottom: 40px;
	text-align: center;
}
.about-img1{
	text-align: right;
}
.about-img1 img{
	width: 90%;
}
.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: 2.25rem;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

.heading_sec h3{ 
    font-weight: 400;
    font-size: 3.25rem;
    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*/

.property-sec {
    padding: 60px 0;
    background: #f8f7f1;
    padding-top: 80px;
}

.property-sec h2{
    text-align: center;
    line-height: 1.2;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 25px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.property-sec a.main-btn{
    margin-top: 25px;
   box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
    background-color: var(--secondary-color);
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    color: var(--text-white);
    width: 250px;
    text-align: center;
    margin-left: auto;
    display: block;
    margin-right: auto;
}


.property-sec a.main-btn:hover{
      background-color: var(--heading-color);
       border-color: var(--heading-color);
        color: var(--text-white);
}

.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:300px;
    margin-bottom: 20px;
}
.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);
}

/*attractions start*/
.fourth-sec {
    padding: 60px 0px 60px;
    text-align: center;
    background: #f8f7f1;
}
.fourth-sec .grid {
    display: grid;
    grid-template-columns: 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.jpe);
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 0;
   padding-bottom: 0rem;
    height: 300px;
}
.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: 50px;
    background: #002f6c7a;
    width: 500px;
    margin-right: auto;
    height: 350px;
    margin-top: -25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.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: 15px;
    padding: 10px 18px;
    color: #fff;
    padding: 10px 10px;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    color: var(--text-white);
    width: 150px;
    text-align: center;
   box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
}

.pro-sec-right a:hover{
	background-color: var(--heading-color);
	border-color: var(--heading-color);
}
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: 40px;
    font-family: var(--heading-font);
    line-height: 1.1;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
    text-align:center;
}
/*Review section*/
.testimonial-sec {
    padding: 60px 0;
    background: #f8f7f1;
    padding-bottom: 120px;
}

.testimonial-sec h2{
    text-align: center;
    line-height: 1.2;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 15px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}
.testimo-centent {
   padding: 0px 0px;
    width: 100%;
    margin: 0rem auto 1rem;
    text-align: left;
}
.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 .fa-angle-left {
    left: -20px;
}
.testimo .fa-angle-right {
    position: absolute;
    right: 0;
    text-align: right;
}

.testimo p {
    font-size: 16px;
    text-align: left;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1rem;
    height: 105px;
    overflow: hidden;
}
.testimo h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0px;
}

.testimo .slick-track{
    display: flex;
    gap: 20px;
}

/*end Review section*/

/*Footer section*/
footer{
	/*margin-top: 4rem;*/
    background: url(../images/footer-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    width: 100%;
    padding: 60px 0 0;
    background-position: left 75%;
    background-color: #fff;
    border-top: 1px solid var(--secondary-color);
}
.footer_overlay{
	width: 100%;
    height: 100%;
    /*background: #000000c7;*/
    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: 28px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: var(--primary-font);
}
.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: #000;
}
.footer-social ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #000;
    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: #000;
	line-height: 30px;
}
.footer_links ul li a{
	color: #000;
}
.footer_logo img{
	width: 80%;
	margin-bottom: 1rem;
}
.copyright p{
	color: white;
	margin: auto;
}
.right_copyright{
	text-align: right;
}
.copyright{
	   margin-top: 40px;
    background: var(--secondary-color);
    padding: 20px 0;
    border-top: 1px solid var(--secondary-color);
}
.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: center;
   
}
.page-title .auto-container {
   position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    bottom: 10px;
     display:none;
}
.page-title h1 {
    position: relative;
    top: 1.5rem;
    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;
}
.checklist {
    text-align: left;
    background: #fff;
    border-radius: 40px;
    z-index: 9;
    margin: auto;
    width: fit-content;
    margin-top: 4.5rem;
    display:none;
}
.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 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: 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;
    font-size: 26px;
    font-weight: 400;
    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 .col-lg-9 {
    flex: 0 0 auto;
    width: 70%;
}

.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;
    margin-bottom: 10px;
    font-size: 32px;
}
.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: 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: 0px 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: 140px;
    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.7rem;
    font-size: 18px;
    color: var(--secondary-color);
}

.pets i {
    left: 1.3rem;
}

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

.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: 8px 0 8px 30px;
    border: 1px solid var(--secondary-color);
    font-size: 14px;
    height: 39px;
    border-radius: 0px;
}

.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: 0rem;
}

.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;
    color: #000;
}

.rsDefault .rsThumbsArrow{
    height:100% !important;
}
.abouttext h4 {
   font-size: 20px !important;
    font-family: var(--primary-font);
    font-weight: 700;
}

.properties-amenities ul {
    list-style: none;
    margin-top: 8px;
    margin-bottom: 0;
    padding-left:0px;
    display: flex;
    flex-wrap: wrap;
}

.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: 0px;
    position: relative;
    z-index: -1;
    margin-left: 0px;
    width: 33.33%;
}

.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: 20px;
    margin-bottom: 10px;
    font-family: var(--primary-font);
}

.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: 8px;
    display: inline-block;
    width: 48%;
}

.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;
    background-color: var(--secondary-color);
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    color: var(--text-white);
    text-align: center;
    margin-left: auto;
    display: block;
    margin-right: auto;
    box-shadow: 0 1px 3px 0px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
}

.ovabrw-book-now .main-btn:hover{
    background-color: var(--heading-color);
    border-color: var(--heading-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 30px;
    font-size: 13px;
    background-color: #fff;
    height: 42px;
    border: 0px solid var(--heading-color);
}

.booking-area select{
  padding: 10px 10px 10px 5px;
    text-indent: 0px;
    font-size: 13px;
    background-color: #fff;
    height: 42px;
    border: 0px solid var(--heading-color);
    width: 100%;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #212529ad;
}

#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;
}

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

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

.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;
    border-radius:0px;
}
button.main-btn.btn {
    background: var(--secondary-color);
    border: 0.0625rem solid var(--secondary-color);
}

.adult-popup .modal-bodyss button.main-btn.btn:hover{
   background-color: var(--heading-color);
    border-color: var(--heading-color);
    color: var(--text-white);
}




section.get-quote-sec h2{
    font-weight: 400;
    font-size: 2.45rem;
    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;
}

#sig-canvas{
    width:100%;
}

.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 {
    height: auto;
    overflow: hidden;
}

#more, #less{
    cursor:pointer;
    
}

.btn-success {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 0px;
    border-radius: 5px;
    box-shadow: 0 1px 3px 0px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
}

.btn-success:hover {
    color: #fff;
    background-color:  var(--heading-color);
    border-color: var(--heading-color);
}

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

.property-list-sec img{
   width: 250px;
    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;
}

.about-pro-list {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 10px;
    padding-left: 20px;
}

.vacation-content.pro-list-name h3{
    line-height: 1.3;
    margin-bottom: 15px;
}
.about-pro-list  p.descr {
    height: 100px;
    
}

.pro-list-details h4{
    font-size:16px;
     line-height: 1.5;
}

.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;
}

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

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


.comm-card {
    position: relative;
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    flex-direction:column;
}

.comm-card:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    transition: background-color .3s;
    z-index: 1;
    /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 76.6%, #fff); */
    opacity: 0.9;
    background-color: rgba(0,0,0,0.35);
    transition-duration: 0.5s;
}

.property-sec img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.property-sec .slick-slide{
    padding: 0px 10px;
}

.property-sec .slick-next:before, .property-sec .slick-prev:before {
    font-family: none;
    font-size: 50px;
    line-height: 1;
    opacity: 1;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.property-sec .slick-prev {
    left: -50px;
    z-index: 1;
}

.property-sec h3 {
    text-align: center;
    font-size: 26px;
    text-transform: uppercase;
    /*margin-top: auto;*/
    /*margin-bottom: auto;*/
    padding-bottom: 20px;
    letter-spacing: 1px;
    color: var(--text-white);
    z-index: 1;
    width: 100%;
    font-family: var(--primary-font);
    font-weight: 400;
    position: relative;
    transition: all .3s ease-in-out;
    margin-bottom: 10px;
    text-shadow: 1px 1px 5px #000;
}

.property-sec h3:after {
    content: """";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid #fff;
    opacity: 0.6;
    width: 50px;
    height: 2px;
    background-color: #fff;
    margin: auto;
}

.property-sec .amn {
    width: 100%;
    color: var(--text-white);
    font-size: 17px;
    z-index: 9;
    text-align: center;
    text-shadow: 1px 1px 5px #000;
}

.property-sec a:hover img {
    transform: scale(1.05);
}

.fourth-sec h2{
    text-align: center;
    line-height: 1.2;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 25px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}
/*.property-sec a:hover h3, .property-sec a:hover .amn {*/
/*    transform: translateY(-40px);*/
/*}*/

section.attr-sec h2{
    text-align: center;
    line-height: 1.2;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 45px;
    margin-bottom: 10px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

section.attr-sec .row.first{
    margin-bottom:30px;
}

section.attr-sec .row.first p{
    text-align: center;
}

section.attr-sec .content-sec{
    display:flex;
}

section.attr-sec ul.nav.nav-pills{
    width:27%;
    flex-direction: column;
}

section.attr-sec ul.nav.nav-pills .nav-link {
  background: var(--secondary-color);
    border: 0;
    border-radius: 5px;
    padding: 20px;
    border-top: 1px solid #fff;
    font-size: 16px;
    color: var(--text-white);
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
}

section.attr-sec ul.nav.nav-pills .nav-link:hover{
    background:var(--heading-color);
    color:var(--text-white);
}

section.attr-sec ul.nav.nav-pills .nav-link.active{
    background:var(--heading-color);
    color:var(--text-white);
}
section.attr-sec .tab-content{
   width:73%; 
}

section.attr-sec .tab-content .tab-pane img{
    width: 100%;
    height: 390px;
    object-fit: cover;
}

section.attr-sec {
    background: #fff;
    padding: 60px 0px;
}

.row.prop {
    gap: 25px 0px;
}

.pro-list-btns a{
   background-color: var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0 1px 3px 0px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
    border: 1px solid var(--secondary-color);
    color: var(--text-white);
    width: 150px;
    text-align: center;
    /* margin-left: auto; */
    display: block;
}

.pro-list-btns a:hover{
    background-color: var(--heading-color);
    border-color: var(--heading-color);
    color: var(--text-white);
}

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

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

.accordion-button{
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
    background-color: var(--text-white);
}

.accordion-button:not(.collapsed){
    color: var(--text-white);
    background-color: var(--secondary-color);
}

span.ui-accordion__number {
    margin-right: 10px;
}

.row.text-center.mt-4.bttn div{
    width:190px;
}

.row.text-center.mt-4.bttn{
    justify-content:center;
}

.sidebar.right .form-control{
    border: 1px solid var(--secondary-color);
    font-size: 14px;
    border-radius: 0px;
    padding-left: 10px;
    margin-bottom: 8px;
    height: 39px;
}

.sidebar.right .sidebar-container{
    position: sticky;
    top: 10px;
}

.testimo.slick-initialized .slick-slide {
    display: block;
    background: #fff;
    padding: 24px;
    border-radius: 34px;
}

.testimo-centent .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    gap: 0px 2%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}

.loader {
    background: #fff;
    box-shadow: 0 0 2px #000;
    padding: 25px;
    border-radius: 20px;
    width: 400px;
    margin: auto;
    text-align: center;
    /* display: none; */
}
.loader p{
    font-size: 13px;
    margin-bottom: 0px;
    text-align: center;
}
.loader p.logo-text {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 15px;
    text-align: center;
}
.loader img{
    width: 300px;
}
.loader img.img-fluid.logo-loader {
    width: 200px;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}
.loader-head{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: relative; */
    background: #00000069;
    z-index: 9;
}

header .navbar-nav .dropdown-menu {
    position: static;
    padding: 0px;
    margin-top: 0px;
    background-color: var(--secondary-color);
}

header .dropdown-item {
    display: block;
    width: 100%;
    padding: 10px;
    clear: both;
    font-weight: 400;
    color: #fff;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

header .dropdown-item:focus, .dropdown-item:hover {
    color: #000;
    background-color: #78D64B;
}

img.icon-header{
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.booked-prime-days-data .booked-pd-ndays{
    display:none;
}

header div#navbarSupportedContent1 .nav-item{
    margin: 0 15px;
}

section.location-page h2 {
    text-align: center;
    line-height: 1.2;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 25px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

section.location-page p.loc-des {
    text-align: center;
}

section.loc-feat h2{
    text-align: center;
    line-height: 1.2;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 25px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

section.property-list-sec h2{
    text-align: center;
    line-height: 1.2;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 25px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.testimonial-sec .btn{
    width:100%;
    text-align:center;
}

a.weatherwidget-io {
    width: 100%;
    position: absolute !important;
    bottom: 0px;
    right: 0px;
    /* overflow-x: scroll !important; */
}

.testimo .rev-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimo .rev-btn a{
    display: none;
}
header.scrolleed .navbar{
    background:#fff;
    z-index: 9;
    border-bottom: 1px solid var(--secondary-color);
    margin-top:-1px;
}


.attraction-sec a, .things-cards a{
    display:block;
    position:relative;
    height: 350px;
    overflow:hidden;
}

.attraction-sec .content-overlay, .things-cards .content-overlay{
    background-color: rgba(0,0,0,0.45);
    height: 350px;
    z-index: 1;
    position: relative;
    padding: 20px;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.attraction-sec .content-overlay h2, .things-cards .content-overlay h2{
    color: var(--text-white);
    text-shadow: 1px 1px 5px #000;
}

.attraction-sec img, .things-cards img{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.attraction-sec a:hover img, .things-cards a:hover img{
    transform: scale(1.05);
}

.attraction-sec a.main-btn{
    margin-top: 25px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%), 0 4px 12px rgb(0 0 0 / 5%);
    background-color: var(--secondary-color);
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    color: var(--text-white);
    width: 180px;
    text-align: center;
    margin-left: auto;
    display: block;
    margin-right: auto;
    height: 50px;
}

.attraction-sec a.main-btn:hover{
    background-color: var(--heading-color);
    border-color: var(--heading-color);
    color: var(--text-white);
}

section.things-cards {
    padding: 60px 0;
}

section.things-cards img, .things-cards .content-overlay, .things-cards a{
    height: 350px;
}

.mob-header{
    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;
}
.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
    z-index: 2 !important;
}

.booked-prime-days-data {
    padding: 5px !important;
}

#play, #pause{
    display:none;
}

.testimo .slick-arrow {
    top: auto;
    bottom: -80px;
    border: 14px solid #fff !important;
    width: 55px;
    height: 55px;
    font-size: 25px;
    background: #fff;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.testimo .fa-angle-left {
    left: 45%;
}
.testimo .fa-angle-right {
    position: absolute;
    right: 45%;
    text-align: center;
}

div#ovabrw_booking_form .col-md-12{
    padding:0px;
    
}
.page-link{
    color: var(--secondary-color);
}
.page-item.active .page-link{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
p.loc-des {
    text-align: center;
    margin-bottom: 40px;
}

.upper-box .col-lg-9{
    padding-left:0px;
}

div#calender_nrj {
    padding: 0px;
}

section#property input.form-control {
    width: 100%;
    border: 1px solid var(--secondary-color);
    border-radius: 0px;
    font-size: 14px;
}

div#book .col-md-6{
    padding:0px;
    width: 49%;
}

div#book .row.mt-2 {
    margin-top: 0px !important;
    gap:1%;
}

div#book div#ovabrw_booking_form .col-md-12{
    padding:0px;
    margin-top: 16px !important;
}

section.things-cards .row{
    gap:30px 0;
}
.attraction-sec .row{
   gap:30px 0; 
   justify-content: center;
}
div#m-booked-prime-days-20207{
    display: none;
}