/*TABLE OF CONTETN*/
/* ------------------------------- 
 . General
 2. Navbar
 3. Slider
 4. About
 5. Rooms
 6. Services
 7. Team
 8. Gallery
 9. Price
 10. Blogs
 11. Footer

 -----------------------------*/
@font-face {
    font-family: "georgia";
    src: url(../font/georgia.ttf);
}
 /*1. General*/
 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

.row{
    margin-left:0px;
    margin-right:0px;
}

*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root{
	/*background-color: ;*/
	--primary-color: #021832;
	--secondary-color: #01a2d0;
	--heading1-color:#0188A4;
	--heading2-color:#c92734;
	--alternate-color:#88BEC3;
	--bg-color: #f4f4f4;
	--bg-white: #fff;
	--bg-black: #000;
    --ocean-color: #00a9dd;

	/*Text Style*/
	--primary-font: 'Open Sans', sans-serif;
	--secondary-font: "georgia";
	--heading-font:'Open Sans', sans-serif;
	--primary-text: #021832;
	--secondary-text: #e3bc82;
	--text-white: #fff;
	--text-black: #000;
	--text-gray: #e4e4e4;
	--blue-gradient:linear-gradient(to bottom, #01a3d1 0%, #0077a2 100%);
	--green-color:#8AAE44;
	--lt-green-color:#B9DE74;
	--blue-color:#01a2d0;
	--other-font:"georgia";
	--dark-green:#02413F;
	--link-color:#01a2d0;
	--grey-color:#333333;
	--btn-color: linear-gradient(to bottom, #0075a0 0%, #006488 100%);
	--red-color:rgb(172, 34, 4);
	--hover-color:#53c0df;
	--footer-color:#7f653c;
}

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(--blue-color);
}
::-webkit-scrollbar-thumb{
	background: var(--text-white);
}

b, strong{
    font-weight:bold;
}
section{
	padding: 3.125rem 0;
}
.main-btn{
font-size: 1rem;
    font-weight: 400;
    color: var(--text-white);
    background: var(--blue-color);
    border: 2px solid var(--text-black);
    padding: 10px 26px;
    border-radius: 10px;
    line-height: 1.75rem;
    display: inline-block;
    transition: all 1s ease;
    letter-spacing: 0.06em;
}
.main-btn:hover{
	background-color: var(--green-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: 14px;
	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: var(--bg-white);
    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;
    background: linear-gradient(to bottom, #01a3d1 0%, #0077a2 100%);
    border-left: 1px solid rgba(255,255,255,0.1);
    box-shadow: -1px 0 1px rgb(0 0 0 / 15%);
}

header ul.navbar-nav.menu-navbar-nav{
    width:100%;
    flex-direction: row;
}
.header .nav-item .nav-link{
font-size: 1rem;
    font-weight: 400;
    color: var(--text-white);
    display: inline-block;
    padding-left: 40px;
    padding-right: 40px;
}
.header .nav-item .nav-link:hover,
.header .nav-item .nav-link.active{
	color:red;
}
.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: absolute;
    width: 100%;
}

/*video section*/

.banner-wrapper{
	height: 92vh;
}
.video-sec {
    height: 100%;
    overflow: hidden;
}
.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: #ae745a6b; */
    z-index: 0;
}
.hero-scetion .hero-content {
    height: 100%;
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    position: relative;
}
.hero-scetion .hero-content {
    width: 90%;
    text-align: center;
    margin: auto;
    color: rgb(255, 255, 255);
}

.nst {
    font-size: 5rem;
}
.hero-content{
	  display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    text-align: center;
}

.hero-content p{
    width: 100%;
    background-color: rgba(0,0,0,0.4);
    margin-bottom: 0px;
    color: var(--text-white);
    text-align: left;
    /* font-size: 36px; */
    padding-top: 25px;
    padding-bottom: 30px;
    height: 105px;
}
.h-big {
  font-family: var(--secondary-font);
    color: #fff;
    font-style: italic;
    text-shadow: 0px 0px 4px #000;
    text-shadow: 1px 1px #000;
    text-transform: initial;
    font-size: 30px;
    text-align: left;
    letter-spacing: 0px;
    max-width: 1170px;
    line-height: 1.2em;
    font-weight: 500;
    margin-bottom: 0px;
    width: 100%;
    margin-bottom: 50px;
    max-width: 1140px;
    padding-left: 10px;
}

.h-big span{
    font-size: 34px;
}
.h-li-big {
    color: #fff;
    font-size: 36px;
    text-shadow: 0px 0px 5px #000;
    letter-spacing: 0.05em;
    font-weight: 400;
    display: block;
    max-width: 1100px;
    margin: auto;
}
/*end video*/

.booking-area{
width: 100%;
    left: 0;
    right: 0;
    
}

.booking-area h2{
   padding: 0px 0px;
    font-size: 19px;
    line-height: 24px;
    text-shadow: 1px 1px 0 #003d52;
    margin-top: 0;
    margin-bottom: 5px;
}

.booking-area select{
  text-transform: uppercase;
    font-size: 11px;
    line-height: 25px;
    border: 2px solid #fff;
    padding-left: 6px;
    padding-right: 10px;
    color: #4e4e4e;
    background: linear-gradient(to bottom, #dadada 0%, #fff 99%);
    border-radius: 3px;
    height: 29px;
    padding-top: 0px;
    padding-bottom: 0px;
    width: 100%;
}

.booking-area .col-lg-3:first-child{
    padding-left:0px;
}

.booking-area select option{
    text-transform: capitalize;
}

.booking-area .col-lg-4.md-3.icns.mb-lg-0.position-relative {
    padding-left: 0px;
    padding-right: 0px;
    width: 31.333333%;
}

.booking-area .col-lg-2.md-4.md-lg-0.srch-btn {
    padding-left: 0px;
    padding-right: 0px;
    width: 18.666667%;
}
.booking-area .form-control{
	padding: 10px;
	padding-left: 2rem;
	font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
	border-radius: 0;
	border: 1px solid var(--secondary-color);
	background: white;
	height:42px;
}
.booking-area .icns i{
    position: absolute;
    left: 1.5rem;
    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 {
height: 30px;
    line-height: 30px;
    padding: 0;
    border-radius: 0;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    box-shadow: 0 1px 3px rgb(0 0 0 / 70%);
    background: var(--btn-color);
    width:100%;
    font-size:14px;
    letter-spacing:0px;
}


.booking span.borders {
    /* width: 100%; */
    border-top: 1px solid var(--text-white);
    display: inline-block;
    width: 45px;
    height: 1px;
}

/*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: #fff;
}


.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: 50px 0px 50px;
    text-align: center;
}
.fourth-sec .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}
.attr-f {
    position: relative;
    margin-top: 0px;
    padding: 0;
}

.attr-f h4 a{
    color:#fff;
    font-weight:bold;
}
.fourth-sec h3{
	margin-bottom: 0;
}
.attr-f img {
    width: 100%;
    height: 450px;
    position: relative;
    object-fit: cover;
}
.text-overlay {
    position: absolute;
    top: 0;
    padding: 20px;
    width: 100%;
    z-index: 9;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 90%);
}
.text-overlay h4 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 13px;
    display: flex;
    margin-bottom: 13px;
    align-items: flex-start;
    height: 100%;
    font-family: var(--secondary-font);
    justify-content: center;
}
.text-overlay p {
    font-size: 16px;
    color: #fff;
    display: none;
}
.attr-f:nth-child(2) img {
    object-position: 10%;
}
.attr-f:hover .text-overlay h4 {
    height: auto;
}
.attr-f:hover .text-overlay p {
    display: block;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 290px;
}
/*end attractions*/
.catch-f {
    background-image: url(../images/bg1.webp);
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 0;
    padding-bottom: 12rem;
}
.catch-f .row{
	width: 100%;
	padding: 0;
  margin: 0;
}
.catch-f .row .col-lg-6{
	padding: 0;
}
.catch-f .row .pro-sec-right {
    padding: 50px;
    padding-top: 15px;
    background: #fff;
}
.catch-f .row .pro-sec-right p {
    margin-bottom: 1rem;
    font-size: 15px;
}
.catch-f .row .pro-sec-right p {
    margin-bottom: 1rem;
    font-size: 15px;
}
.catch-f .row .pro-sec-right p:nth-child(2), .catch-f .row .pro-sec-right p.location {
    margin-bottom: 5px;
}
.pro-sec-right a{
	margin-top: 0rem;
	padding: 10px 18px;
}

.pro-sec-right a:hover{
	padding: 10px 24px;
}
p.subhead {
    font-weight: bold;
}

.catch-f .row .pro-sec-right p.subhead{
    font-size: 27px;
    font-family: var(--heading-font);
}

.catch-f h3{
    font-size: 44px;
    font-family: var(--heading-font);
    line-height: 38px;
    color:#000;
}
/*Review section*/
.testimonial-sec {
    padding: 60px 0;
    background: #f8f7f1;
}
.testimo-centent {
    padding: 0px 40px;
    width: 60%;
    margin: 0rem auto 1rem;
    text-align: center;
}
.testimonial-sec h3{
	margin-bottom: 0;
	font-size: 36px;
}
.testimo-centent .slick-arrow {
    position: absolute;
    color: #6e6c6c;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
}

.prop-cont .slick-arrow {
    position: absolute;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    cursor:pointer;
}

.prop-cont .fa-angle-left {
    left: 10px;
    z-index: 9;
}
.prop-cont .fa-angle-right {
    position: absolute;
    right: 10px;
    text-align: right;
}

.testimo-centent .fa-angle-left {
    left: -20px;
}
.testimo-centent .fa-angle-right {
    position: absolute;
    right: 0;
    text-align: right;
}

.testimo-centent p {
    font-size: 16px;
    text-align: center;
    text-align: center;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
}
.testimo-centent h4 {
    font-size: 20px;
    font-weight: bold;
}

/*end Review section*/

/*Footer section*/
footer{
    background-color:#f4ce98;
background: url(../images/sand.jpg);
    background-repeat: repeat;
    height: 100%;
    position: relative;
    width: 100%;
    padding:0px 0 0;
    background-position: top left;
    z-index: 0;
}
/*.footer_overlay{*/
/*	width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0,0,0,0.7);*/
/*    position: absolute;*/
/*    z-index: 0;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    z-index: 0;*/
/*}*/
footer .container.top{
    background: url(../images/star.png) no-repeat top right;
    padding:40px 15px;
    padding-bottom:0px;
	z-index: 1;
	position: relative;
}
.footer_links h4{
	font-size: 28px;
    text-transform: uppercase;
    color: white;
    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: #e4e4e4;
}
.footer-social ul li a {
   display: inline-block;
    width: 30px;
    height: 30px;
    color: var(--text-white);
    border-radius: 50%;
    background-color: var(--blue-color);
    text-align: center;
    line-height: 30px;
    font-size: 12.5px;
    border: 1px solid var(--text-white);
}

.footer-social ul li a:hover{
    color:var(--text-white);
     background-color: var(--footer-color);
}
.footer_link{
	padding: 0;
	margin: 0;
}
.footer_links ul li{
	list-style-type: none;
    margin-bottom: 6px;
    color: var(--footer-color);
    font-size: 15px;
    line-height: 26px;
}
.footer_links ul li a{
color: var(--footer-color);
    font-size: 15px;
}

.footer_links ul li a:hover{
    color: var(--blue-color);
}
.footer_logo img{
	width: 80%;
	margin-bottom: 1rem;
}
.copyright p{
	color: var(--footer-color);
	margin: auto;
	font-size: 14px;
}
.right_copyright{
	text-align: right;
}
.right_copyright p{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.copyright{
	   margin-top: 40px;
    /* background: var(--blue-color); */
    padding: 10px 0;
    border-top: 1px solid var(--footer-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: 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: 400 ;
    line-height: 1.2em ;
    font-size: 30px;
    font-family: var(--secondary-font);
    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: 2;
    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 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(--heading-font);
}

.line{
    height: 2px;
    width: 100px;
    background: #02c3ff;
    position: relative;
    top: -7px;
}

.rights::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: #02c3ff;
    top: -20px;
    right: -20px;
}

.rights::after {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: #02c3ff;
    top: -5px;
    right: -34px;
    -webkit-transform: rotate( 90deg );
    transform: rotate( 90deg );
}
/*=====================  CONTACT US =======================*/
.contact-page-section {
    position: relative;
    padding: 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: 22px;
    font-weight: 600;
    font-family: var(--heading-font);
}
.contact-info-box .box-inner p {
    position: relative;
    color: var(--text-black);
    opacity: 0.8;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.7em;
}
.contact-info-box:nth-last-child(1) {
    border-right: 0px solid #cdcdcd;
}
.contact-page-section .inner-container {
    position: relative;
    padding: 40px 40px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}
.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}
.contact-form {
    position: relative;
    margin-top: 0rem;
}
.contact-form .form-group {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    display: block;
}
.contact-form .ui-selectmenu-button.ui-button, .contact-form .form-group input, .contact-form .form-group select, .contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    font-size: 13px;
    color: #060606;
    line-height: 34px;
    font-weight: 400;
    border-radius: 0px;
    padding: 10px 20px 10px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    resize: none;
}
.contact-map {
    overflow: hidden;
    height: 100%;
    box-shadow: 0px 0px 5px #ccc;
}
.contact-map iframe {
    position: relative;
    top: -4rem;
    height: 108%;
}

.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;
    font-size: 28px;
}
.upper-box .hotel-info {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 0px;
    margin-top: 0px;
}
.hotel-info i {
    font-size: 18px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-right: 5px;
}
.price {
    font-size: 21px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.upper-box .price {
    position: relative;
    width: 100%;
    height: 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: 10px;
    font-size: 22px;
    font-weight: 700;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}

.forms-booking-tab .col-md-12{
    padding:0px;
}
.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(--blue-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(--blue-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;
}

.property-list-sec .ovabrw_service_select.rental_item i {
    left: 1rem;
}

.property-list-sec input#show-target-data{
    padding: 10px 10px 10px 30px;
}

.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;
    color: #000;
}

.rsDefault .rsThumbsArrow{
    height:100% !important;
}
.abouttext h4 {
   font-size: 1.5rem !important;
    font-family: var(--heading-font);
    font-weight: 600;
}

.properties-amenities ul {
    list-style: none;
    margin-top: 8px;
    margin-bottom: 0;
}

.abouttext ul li, .comment-content p {
    font-size: 15px;
}

.properties-amenities ul li {
    line-height: 1.5rem;
    margin-bottom: 14px;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    z-index: -1;
    margin-left: -33px;
}

.properties-amenities ul li i{
    margin-right: 5px;
}
tbody, td, tfoot, th, thead, tr {
    padding: 10px;
}

.responsiveTab tr:nth-of-type(odd) {
    background: #eee;
}

.responsiveTab th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    font-family: var(--secondary-font);
}

.comment-meta span.checked, .comment-content span.checked {
    color: goldenrod;
}

.comment-meta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.comments .contact-form {
    background: #ffffff;
    padding: 0px;
    box-shadow: 0px 0px 0px #dfdede;
    width: 100%;
}

.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
}

.comments .contact-form .form-group input, .comments .contact-form .form-group select, .comments .contact-form .form-group textarea {
    border: 1px solid var(--secondary-color);
    padding: 10px;
}

.elementor-widget-container.get-quote {
    position: sticky;
    top: 5px;
}

.forms-booking-tab {
    padding: 30px 20px;
    box-shadow: 0px 0px 13px #dad9d9;
    border-radius: 10px;
}

.forms-booking-tab ul {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

.booking {
       padding: 0;
    position: relative;
    text-align: left;
    font-size: 21px;
    font-weight: 500;
    font-family: var(--primary-font);
    color: var(--text-white);
    background: transparent;
    width: 100%;
    margin: auto;
    padding-bottom: 0px;
    z-index:2;
}

.booking .container{
    background: var(--text-white);
    padding: 20px;
    padding-bottom: 30px;
    margin-top: -40px;
}

.rental_item {
    margin-bottom: 1rem;
    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 .main-btn {
    width: 100%;
    padding: 8px 16px;
    line-height: 1.4;
}

.score input {
    position: absolute!important;
    top: -2em;
    clip: rect(0,0,0,0);
}

.score label::before {
    content: "☆";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-indent: 0px;
    line-height: 1em;
    color: rgb(170, 170, 170);
}

.score label:hover::before, .score label:hover ~ label::before, .score input:checked ~ label::before {
    content: "★";
    color: rgb(255, 187, 4);
}

.score label {
    display: inline-block !important;
    line-height: 2rem;
    width: 1.2em;
    height: 1em;
    overflow: hidden;
    text-indent: 100%;
}

.score {
    unicode-bidi: bidi-override;
    direction: rtl;
    border: 0;
    text-align: left;
}
/*Property page css end*/


input#show-target-data {
    padding: 10px 10px 10px 35px;
    font-size: 14px;
    background-color: #fff;
    height:42px;
    border: 1px solid var(--secondary-color);
    border-radius:0px;
}

#guestsss {
    width: 100%;
    min-width: 300px;
    background: #fff;
    padding: 25px 20px;
    position: absolute;
    z-index: 9;
    left: 0;
    border-radius: 10px;
  
    display: none;
    box-shadow: 0px 0px 3px 0px #888888;
}

.booking-area .icns .modal-bodyss i {
    position: absolute;
 top: 5px !important;
    right: 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;
}

.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;
}


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;
    border-left: 1px solid;
    border-right: 1px solid;
}

.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;
    border:0px solid;
}

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;
    display:none;
}

.btn-success {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 0px;
}

.btn-success:hover {
    color: var(--secondary-color);
    background-color: transparent;
    border-color: var(--secondary-color);
}

.property-list-sec .main {
    width: 75%;
}

.property-list-sec img{
   width: 230px;
    height: 350px;
    object-fit: cover;
}

.sidebar.right {
    width: 25%;
}

.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  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;
}

p.descr {
    height: 160px;
    overflow: hidden;
    text-align: justify;
}

section.pro-detail a{
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: block;
    position: relative;
}

section.pro-detail .image-sec {
    height: 300px;
    width: 100%;
    /* position: relative; */
    overflow: hidden;
}

section.pro-detail.prro .image-sec, section.pro-detail.prro a {
 height: 350px;
 }
section.pro-detail img {
   position: absolute;
    left: 0px;
    width: 100%;
    height: 350px;
    top: 0px;
    object-fit: cover;
    transition: all 0.5s ease;
}

section.pro-detail .overlay {
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

section.pro-detail .content-area{
    padding: 0px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

section.pro-detail .content-area h3 {
    font-size: 20px;
    color: var(--text-white);
    text-shadow: 0px 0px 4px #000;
    font-family: var(--primary-color);
    margin-bottom: 0px;
}

section.pro-detail .amenity-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    margin-bottom: -65px;
}

section.pro-detail .amenity-area .main-btn{
    font-size: 14px;
    padding: 5px 26px;
    background: var(--blue-color);
    border:1px solid;
}

section.pro-detail .amenity-area .main-btn:hover{
    font-size: 14px;
    padding: 5px 26px;
    color: var(--text-white);
    background: var(--green-color);
}


section.pro-detail a:hover img {
    transform: scale(1);
}

section.pro-detail a:hover .content-area {
    bottom: calc(90px);
    -webkit-transform: translate(0%, 50%);
    transform: translate(0%, 50%);
}
section.pro-detail .amenity-area .left{
    display: flex;
    gap: 10px;
}

section.pro-detail .col-4.pro.first {
   padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

/*section.pro-detail .col-4.pro.first p{*/
/* color: #fff;*/
/*}*/

section.pro-detail .divider {
    border-top: 3px solid;
    width: 20%;
}

section.pro-detail .col-4.pro.sixth {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align:center;
    
}

section.pro-detail .col-4.pro.sixth h2{
    font-size: 25px;
    margin-bottom: 20px;
}

section.pro-detail .col-4.pro.sixth a{
    background: #fff;
    height: 50px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

section.pro-detail .col-4.pro.sixth a:hover{
     background: #000;
     color:#fff;
}

section.pro-detail .col-4 {
    border-right: 0px solid #fff;
    border-bottom: 0px solid #fff;
    padding: 0px;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0px;
    position: relative;
    width: 32.333333%;
}

section.pro-detail h3.head-sec {
    font-size: 14px;
   font-weight: 500;
   position: relative;
   margin-bottom: 0px;
    font-family: var(--heading-font);
    height: 30px;
    overflow: hidden;
}

section.pro-detail .front-sec{
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--text-white);
  padding: 8px 30px;
    padding-bottom: 12px;
    font-weight: 500;
    transition: transform .5s cubic-bezier(0,0,.2,1);
    z-index: 1;
    margin-bottom: 0px;
    width: 100%;
    box-shadow: inset 0px -1px 1px 2px #0000004d;
}


section.pro-detail .front-sec p.addrr {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0px;
}

section.pro-detail .content-sec {
    box-sizing: border-box;
    position: absolute;
    background: #fff;
    width: 80%;
    max-width: 350px;
    height: 100%;
    transform: translateX(-100%);
    transition: transform .6s cubic-bezier(0,0,.2,1);
    padding: 15px;
    z-index: 1;
    bottom:0px;
}

section.pro-detail a:hover .content-sec{
    transform: translateX(0);
}

section.pro-detail a:hover .front-sec{
    transform: translateY(65px);
}

section.pro-detail .content-sec h3{
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 5px;
    height: 29px;
    overflow: hidden;
    font-family: var(--other-font);
}

section.pro-detail .row {
    gap: 40px 1.5%;
    padding-left: 10px;
    padding-right: 10px;
}

section.pro-detail .content-sec p{
    font-size: 14px;
    height: auto;
    overflow: hidden;
}

section.pro-detail .content-sec p.addrr{
    height: 26px;
    overflow: hidden;
    font-weight: bold;
    margin-bottom: 0px;
}

section.pro-detail .content-sec .price {
    font-size: 12px;
    margin-bottom: 0px;
    margin-top: 0px;
    height: auto;
}

section.pro-detail .content-sec .pro-btn {
    text-align: center;
    margin-top: 15px;
}

section.pro-detail .content-sec .pro-btn .main-btn{
    width:100%;
}

section.pro-detail .content-sec .price span{
     font-size: 18px;
}

section.pro-detail .pricing-area {
    display: flex;
     gap: 40px; 
    /*justify-content: space-between;*/
    align-items: center;
    padding-right: 10px;
}

section.pro-detail .content-sec i{
   font-size: 18px;
    color: var(--blue-color);
}

section.pro-detail .pricing-area span{
    color: var(--text-black);
    font-size: 16px;
}
section.pro-detail {
    padding: 0px;
}

section.pro-detail .container{
    background: var(--text-white);
    padding: 20px;
}

section.attr-sec {
    padding: 70px 0;
   
}

.subtitle-wrapper {
    color: black;
    font-size: 16px;
    line-height: 1em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dash {
    width: 40px;
    height: 1px;
    margin-right: 20px;
    margin-left: 20px;
    background-color: var(--secondary-color);
}

#prop-hed {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.7;
}

section.attr-sec .atr {
    padding: 0px;
    position: relative;
    overflow: hidden;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.col-5.first.atr {
    height: 480px;
}

.col-7.second.atr {
    border-bottom: 0px solid;
}

section.attr-sec .atr .item {
    align-items: center;
    background-color: transparent;
    color: white;
    display: flex;
    height: 100%;
    /* overflow: hidden; */
    justify-content: center;
}

section.attr-sec a {
    width: 100%;
    height: 480px;
    /* overflow: hidden; */
    display: block;
}

section.attr-sec .img-area {
    height: 480px;
    width: 100%;
    /* position: relative; */
    overflow: hidden;
}

section.attr-sec img {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 480px;
    top: 0px;
    object-fit: cover;
    transition: all 0.5s ease;
}

section.attr-sec .overlay {
    background: rgba(0, 0, 0, 0.5);
}

.attr-content {
    padding: 0px;
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100%;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

section.attr-sec .attr-content h3 {
    font-size: 20px;
    color: var(--text-white);
    text-shadow: 0px 0px 4px #000;
    font-family: var(--primary-color);
    margin-bottom: 0px;
}

.attr-content .main-btn {
    width: 180px;
    margin: auto;
    height: 50px;
    transition: all 0.6s ease;
    position: absolute;
    bottom: -200px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

section.attr-sec a:hover img {
    transform: scale(1.2);
}

section.attr-sec a:hover .attr-content {
    bottom: calc(50% + 35px);
    -webkit-transform: translate(0%, 50%);
    transform: translate(0%, 50%);
}

section.attr-sec a:hover .main-btn {
    bottom: -80px;
}

.col-7.second.atr {
    border-bottom: 0px solid;
}

section.attr-sec .fifth a, section.attr-sec .fifth .img-area, section.attr-sec .fifth img, section.attr-sec .sixth a, section.attr-sec .sixth .img-area, section.attr-sec .sixth img {
    height: 238px;
}

section.attr-sec .seventh a, section.attr-sec .seventh .img-area, section.attr-sec .seventh img, section.attr-sec .eighth a, section.attr-sec .eighth .img-area, section.attr-sec .eighth img {
    height: 238px;
}

header .navbar-brand{
    padding-top: 0px;
    padding-bottom: 0px;
    margin-right: 0px;
    margin-left: 0px;
    display: inline-block;
}

header .col-3.center{
    padding:0px;
    display: flex;
    align-items: center;
}

header img{
    width: 250px;
}

header .container {
    flex-direction: column;
}

header .container.desk-nav {
    position: relative;
}

header .nav-top{
   border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: rgba(255,255,255,0.5);
    padding: 0 6px 6px;
    position: absolute;
    white-space: nowrap;
    top: 100%;
    margin-top: 0;
    z-index: 2;
    width: 100%;
    left:0;
}

header .top-nav{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

header .nav-top li:first-child {
   border-left: 0px solid;
   border-radius: 0 0 0 5px;
}

header .nav-top li:last-child {
    -webkit-border-radius: 0 0 5px 0;
    -moz-border-radius: 0 0 5px 0;
    -ms-border-radius: 0 0 5px 0;
    border-radius: 0 0 5px 0;
}

header #chat-wrapper {
    display: block;
    height: 55px;
}

header #chat-wrapper img {
    float: right;
    width: 40px;
}

header .subtitle {
    font-size: 9px;
    color: #787878;
    display: block;
    text-transform: uppercase;
    text-align: center;
}

header .title {
    display: block;
    font-size: 16px;
    color: var(--blue-color);
    font-weight: 400;
    line-height: 1.1;
    text-transform: capitalize;
    text-align: right;
    font-family: var(--heading-font);
}

header .row {
    width: 100%;
    margin-bottom: 0px;
}

header #skype-wrapper {
    display: block;
    height: 55px;
    border-left: 1px solid #e5e5e5;
}

header #skype-wrapper img {
    float: right;
    width:34px;
}

header #contact-info-wrapper {
    border-left: 1px solid #e5e5e5;
}

header #contact-info {
    text-align: right;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    white-space: nowrap;
}

header #contact-info #header-contact-phone {
    color: var(--blue-color);
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    font-family: var(--heading-font);
}

header #contact-info #header-contact-intphone {
    color: #53c0df;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    font-family: var(--other-font);
}


.booking .first{
  background: var(--blue-gradient);
    padding: 0px 0px;
    border-radius: 5px;
    margin-top: 0px;
}

footer input{
    width: 100%;
    background-color: #ffffff;
    border-color: #02010100;
    color: #373a3c;
    height: 40px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    border-radius: 5px;
    padding: 8px 12px;
}

footer h3, .footer_links h4{
  font-size: 22px;
   color: var(--footer-color);
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}



/*header section*/
header {
    position: relative;
    width: 100%;
    z-index: 3;
    background: #ffffffeb;
    padding-top: 0px;
    padding-bottom: 0px;
}

header img {
    width: 100%;
}

header .col-5{
    display: flex;
    align-items: center;
    width: 39.666667%;
}

header .left ul{
    justify-content: flex-end;
}

header .row.upper-head li.nav-item {
    padding-left: 0px;
    padding-right: 0px;
    width: 50%;
    border-left: 0px;
}

header .row.upper-head a.nav-link {
    color: var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    padding-left:0px;
    padding-right:0px;
}

header .row.upper-head a.nav-link:hover {
     color: var(--green-color);
}

.navbar-nav .nav-link {
    padding-right: 30px;
    padding-left: 30px;
}

header .row.bottom-head .navbar-nav .nav-link {
   padding: 10px 36.5px;
    line-height: 20px;
    /* padding-left: 36px; */
    font-size: 14px;
    color: var(--text-white);
    text-align: center;
}

header li.nav-item{
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    outline: 0px;
}

header .row.bottom-head .navbar-nav .nav-link:hover{
   color: var(--lt-green-color);
}
header i{
    font-size: 25px;
    margin-left: 5px;
}

header .row.bottom-head ul{
    margin-top: 0px;
}

header .row.upper-head {
    padding-bottom: 0px;
    padding-top: 0px;
}
header .col-9.left{
    display: flex;
}
header .col-9.left ul{
    width: auto;
    margin-right: 0px;
    margin-left: auto;
    gap:30px;
}

header ul.dropdown-menu {
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 0px;
}

header ul.dropdown-menu li{
    background: var(--blue-gradient);
    border-radius: 0px 0px 0px 0px !important;
}

header ul.dropdown-menu a{
   background: transparent;
    color: var(--text-white);
    font-size: 14px;
    padding: 8px 10px;
    border-bottom: 0px solid var(--text-white);
}

header ul.dropdown-menu a:hover{
   background: transparent;
    color: var(--lt-green-color);
}

header ul.dropdown-menu li:last-child a{
    border-bottom:0px solid var(--text-white);
}

section.pro-detail .container-fluid{
   padding-left: 12px;
    padding-right: 12px;
    background: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 50px;
}

#less-text {
    display: none;
}

#more-text, #less-text {
    cursor: pointer;
}

section.text-area{
    padding:0px;
    background: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
section.text-area .overlay{
   position: relative;
    background: transparent;
    padding: 0px 0;
    padding-bottom: 0px;
}

section.text-area h2{
   color: var(--grey-color);
    font-size: 21px;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    font-weight: bold;
}

section.text-area p{
    color: var(--grey-color);
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 14px;
}

section.text-area a{
    color: var(--link-color);
}

section.text-area a:hover{
    color: var(--hover-color);
}

section.text-area a.main-btn{
     color: var(--text-white);
}

.text-content {
    height: auto;
    overflow: hidden;
}

.footer-abt p{
   color: var(--footer-color);
    font-size: 13px;
}

.footer-abt a{
    color: var(--blue-color);
}

.pro.head {
    text-align: center;
}

.pro.head h4{
   font-size: 16px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.pro.head h2{
   font-size: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--heading-font);
    font-weight: bold;
    color: var(--blue-color);
}

.pro.head .divider{
    border-top: 3px solid var(--green-color);
    width: 100px;
    margin: auto;
    margin-bottom: 40px;
}


section.pro-detail .col-7{
    padding-left: 0px;
    padding-right: 0px;
}

section.pro-detail .col-5{
    padding-left: 0px;
    padding-right: 0px;
}

section.pro-detail .col-7 .col-12{
    padding-right: 0px;
}

section.pro-detail .col-6{
     padding-right: 0px;
     margin-bottom: 12px;
}

section.pro-detail .last .image-area, section.pro-detail .last img, section.pro-detail .last a{
    height:512px;
}

.pro-btn{
    text-align:center;
    margin-top:50px;
}

.pro-btn a{
    width: 150px;
    height: 50px;
}

section.pro-detail .pro-btn a{
    width: 150px;
    height: 50px;
    margin: auto;
}

/*li.nav-item.dropdown:hover .dropdown-menu{*/
/*    display:block;*/
/*    position: absolute;*/
/*    inset: 0px auto auto 0px;*/
/*    margin: 0px;*/
/*    transform: translate(0px, 40px);*/
/*}*/


footer::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    height: 153px;
    top: calc(-153px / 2 - 2px);
    background: url(../images/wave.svg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    z-index: 1;
    transform: scaleY(.55);
    display: none;
}

/*footer .col-md-4.second {*/
/*    text-align: center;*/
/*}*/

section.booking .col-4.right {
    width: 23.333333%;
    padding-right: 0px;
    position:relative;
}

section.booking .col-4.right a{
    display: block;
}

section.booking .col-4.right h4{
    font-size: 16px;
    color: var(--text-white);
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 1px;
    text-shadow: 0px 0px 3px #000;
    width:30px;
    margin:auto;
}

section.booking .col-4.right h4.click{
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

section.booking .col-4.right h2{
    font-size: 21px;
    color: var(--text-white);
    text-align: center;
    text-shadow: 0px 0px 3px #000;
    /* text-transform: uppercase; */
    font-weight: normal;
    letter-spacing: 1px;
}

section.booking .col-8.left {
background: transparent;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 0px;
    padding-right: 0px;
    border-radius: 0px;
    width: 76.666667%;
}

section.booking .col-4.right img{
    border-radius: 0px 5px 5px 0px;
}

header .row.upper-head .col-2.center {
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20.666667%;
}

header .row.upper-head li.nav-item.second a.nav-link{
    margin-left: 20px;
    height: 53.5px;
}

header .row.upper-head li.nav-item.second{
    width:40%;
}

header .row.upper-head li.nav-item.fourth{
    width:60%;
}

header .row.upper-head li.nav-item.fourth li{
    display: block;
    font-size: 16px;
    color: #01a2d0;
    font-weight: 400;
    line-height: 1.1;
    text-transform: inherit;
    text-align: right;
    font-family: var(--other-font);
}

footer .col-md-4.second {
    padding-left: 70px;
}

.navbar-nav .dropdown-menu{
    /*animation: growOut 600ms ease-in-out forwards;*/
    transform-origin: top center;
    position: absolute;
    left: 0;
    margin-top: 0px !important;
}
@keyframes growOut {
     0% {
        transform: scale(0)
    }
    80% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1)
    }
}

header .col-5.right i{
    color: var(--blue-color);
}

header .row.upper-head .right li.nav-item{
    width:auto;
}

header .row.upper-head .right ul{
    justify-content: center;
    gap: 20px;
}

header .row.bottom-head li.nav-item{
    background: var(--blue-gradient);
    border-left: 1px solid rgba(255,255,255,0.1);
    box-shadow: -1px 0 1px rgb(0 0 0 / 15%);
    width:100%;
}

header .row.bottom-head li.nav-item:last-child{
    background: linear-gradient(to bottom, #fea400 0%, #d69300 100%);
}

section.slider-pro {
    position: relative;
    top: 0px;
    padding: 0px;
}

section.slider-pro .container-fluid{
    padding:0px;
}

section.slider-pro img{
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.slider-head{
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
    background-color: rgba(0,0,0,0.4);
    padding-top: 10px;
    z-index: 1;
}


.carousel-control-next, .carousel-control-prev{
    opacity:1;
}
.carousel-control-next-icon{
    background-image: url(../images/arrow-right.png);
}

.carousel-control-prev-icon{
     background-image: url(../images/arrow-left.png);
}

.carousel-control-next-icon, .carousel-control-prev-icon{
    width:45px;
     height:45px;
     display:none;
}

section.pro-list-sec {
    padding: 0px;
}

section.pro-list-sec .view{
   color: rgb(172, 34, 4);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    margin-top: 25px;
}

section.pro-list-sec .container{
    padding:20px;
    background: var(--text-white);
}

section.pro-list-sec h1{
    padding: 0px;
    color: var(--grey-color);
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 20px;
}

section.pro-list-sec h2{
    padding: 0px;
    font-size: 21px;
    font-weight: 700;
    color: var(--green-color);
}

section.pro-list-sec img{
    float: right;
    width: 100%;
    max-width:35%;
    padding-right: 0px;
    padding-left: 40px;
    padding-bottom: 40px;
    height:100%;
}

section.pro-list-sec .top-cont {
    padding-left: 0px;
    padding-right: 0px;
    width: 65%;
    float: left;
    margin-top: 0px;
}

section.pro-list-sec h4{
    font-size: 18px;
    font-weight: 700;
    font-family: var(--primary-font);
    color: var(--grey-color);
    line-height: 1.5;
    margin-bottom: 20px;
}

section.pro-list-sec p{
    font-size: 14px;
    color: var(--grey-color);
    line-height: 24px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 0px;
}

section.pro-list-sec span {
    display: block;
}

section.pro-list-sec a{
    color: var(--blue-color);
}

section.pro-list-sec a:hover{
    color: var(--hover-color);
}

section.pro-list-area .container{
    padding:0 20px;
    background: var(--text-white);
}

section.pro-list-area {
    padding: 0px;
    margin-bottom: 60px;
}

section.pro-list-area h3{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
    font-family: var(--primary-font);
    color: var(--red-color);
}

section.pro-list-area .col-4 {
    padding: 0px;
    width: 32%;
}

section.pro-list-area .row{
    gap:2%;
}

section.pro-list-area img{
    width: 100%;
    height: 210px;
    object-fit: cover;
}

section.pro-list-area a h3{
   color: var(--blue-color);
    line-height: 1.5;
    margin-top: 5px;
}

section.pro-list-area a:hover h3{
    color: var(--hover-color);
}

section.pro-list-area .loc{
   font-size: 14px;
    font-weight: 300;
    color: #848383;
    line-height: 1.5;
    margin-bottom: 10px;
}

section.pro-list-area .pricing-area {
    display: flex;
    /* gap: 90px; */
    width: 75%;
    justify-content: space-between;
}

section.pro-list-area .pricing-area i{
    color:var(--green-color);
}

section.pro-list-area span {
    color: var(--grey-color);
    font-size:14px;
    font-weight: bold;
    margin-bottom:30px;
}

section.pro-list-area a{
    position: relative;
    display: block;
}

section.pro-list-area span.special-text{
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    text-decoration: none;
    color: #fff;
    padding: 5px;
    background-color: rgba(227,148,0,0.8);
    text-align: center;
    margin-bottom: 0px;
    font-weight: 400;
}

.main-bg {
    background: linear-gradient(to bottom, #e5edf6 0%, #ccdced 33%, #fff 89%, rgba(255,255,255,0) 100%);
}

section.pro-list-area .cont-sec {
    margin-bottom: 30px;
}

section.top-layout {
   background-color: #e5edf6;
    height: 70px;
    padding: 0;
}

.slider-main {
  font-family:Arial;
  width:100%;
  display:block;
  margin:0 auto;
  margin-bottom: 20px;
}
.slider-main h3 {
    background: #fff;
    color: #3498db;
    font-size: 36px;
    line-height: 100px;
    margin: 10px;
    padding: 2%;
    position: relative;
    text-align: center;
}
.action{
  display:block;
  margin:100px auto;
  width:100%;
  text-align:center;
}
.action a {
  display:inline-block;
  padding:5px 10px; 
  background:#f30;
  color:#fff;
  text-decoration:none;
}
.action a:hover{
  background:#000;
}

.slider.slider-nav.slick-initialized.slick-slider .slick-slide img {
    display: block;
    width: 100%;
    height: 70px;
    padding-left: 5px;
    object-fit: cover;
    padding-right: 5px;
}

.slider.slider-nav.slick-initialized.slick-slider {
    background-color: #fff;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    border-top: 1px solid #f7f7f7;
}

.slider.slider-for.slick-initialized.slick-slider i{
    position: absolute;
    z-index: 1;
    left: 3%;
    top: 47%;
    font-size: 30px;
    background: var(--blue-color);
    border-radius: 40px;
    width: 50px;
    height: 50px;
    padding: 12px 15px;
    color: var(--text-white);
    cursor:pointer;
}

.slider.slider-for.slick-initialized.slick-slider i.fa.fa-angle-right.slick-arrow {
    left: auto;
    padding: 12px 18px;
    right: 3%;
}

.slider.slider-nav.slick-initialized.slick-slider i{
    position: absolute;
    z-index: 1;
    left: -1%;
    top: 30%;
    font-size: 22px;
    background: var(--blue-color);
    border-radius: 40px;
    width: 40px;
    height: 40px;
    padding: 9px 15px;
    color: var(--text-white);
    cursor: pointer;
}

.slider.slider-nav.slick-initialized.slick-slider i.fa.fa-angle-right.slick-arrow {
    left: auto;
    right: -1%;
}

.slider .slick-prev {
    left: -5px;
    z-index: 1;
}

.slider .slick-next {
    right: 5px;
}

.slider.slider-for.slick-initialized.slick-slider .slick-prev {
    left: 50px;
}

.slider.slider-for.slick-initialized.slick-slider .slick-next {
    right: 70px;
}

.slider.slider-for.slick-initialized.slick-slider .slick-next:before, .slider.slider-for.slick-initialized.slick-slider .slick-prev:before{
    font-size: 45px;
}

section.booking.pro-det .container{
    margin-top:0px;
    padding-bottom: 10px;
}

section.detail-sec {
    padding: 0px;
    margin-bottom: 0px;
}

section.detail-sec .container{
    padding: 0px 20px;
      background-color: #fff;
      padding-bottom:40px;
}
.slider.slider-for.slick-initialized.slick-slider .slick-slide img{
     width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 20px;
}

section.detail-sec h1{
    font-size: 21px;
    color: #7b7878;
    font-weight: 600;
    font-family: var(--primary-font);
    line-height: 1.2;
    margin-bottom: 10px;
     max-width:60%;
      margin-top: 10px;
}

section.detail-sec a.open-book-btn{
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(to bottom, #fea400 0%, #d69300 100%);
    border-radius: 4px;
    font-family: var(--primary-font);
    max-width:20%;
}

section.detail-sec .upper-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}

section.detail-sec .nav-tabs .nav-link {
    padding: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    background: linear-gradient(to bottom, #01a3d1 0%, #0077a2 100%);
    border-radius: 5px 5px 0 0;
    border: 1px solid #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width:100%;
    cursor:pointer;
}

section.detail-sec .nav-tabs {
    border-bottom: 0px solid #dee2e6;
     width: 100%;
    flex-wrap: nowrap;
    text-align: center;
    position: sticky;
    top: 0px;
    z-index: 1;
}

section.detail-sec .nav-tabs li.nav-item {
    width: 100%;
}

section.detail-sec .tab-pane {
    padding-left: 0px;
    padding-right: 0px;
}

section.detail-sec .tab-pane h2{
    color: #7b7878;
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 0px;
}

section.detail-sec .tab-pane p{
    line-height: 1.425rem;
}
section.detail-sec .tab-pane a{
    color:var(--blue-color);
}

section.detail-sec .tab-pane a:hover{
    color: #53c0df;
}

section.detail-sec .nav-tabs .nav-link:hover, section.detail-sec .nav-tabs .nav-link.active{
     background: linear-gradient(to bottom, #89ae44 1%, #759e2a 100%);
}

div#accommodations-tab h3, div#amenities-tab h3, div#location-tab h3, div#rates-tab h3, div#book-tab h3{
    font-size: 16px;
    line-height: 36px;
    border-bottom: 1px solid #d9d9d9;
    font-weight: 600;
    color: var(--green-color);
    /* margin-top: 20px; */
    margin-bottom: 10px;
}

div#accommodations-tab small, div#amenities-tab small{
    font-size: 14px;
    line-height: 36px;
    color: #000;
    width: 50%;
    padding-left: 0px;
    display: inline-block;
    float: right;
    font-weight: 400;
}

div#accommodations-tab .col-6, div#amenities-tab .col-6{
    padding-left:0px;
     padding-right:0px;
     width: 49%;
}

div#accommodations-tab .row, div#amenities-tab .row{
    gap:1%;
}

div#accommodations-tab p, div#amenities-tab p, div#rates-tab p{
    margin-bottom:0px;
    line-height: 1.75;
}

div#accommodations-tab .row.inside, div#amenities-tab .row.inside{
     margin-bottom: 20px;
}

div#rates-tab a.special-text {
    display: inline-block;
    color: #e39400 !important;
    border: 1px solid #e39400;
    text-decoration: none;
    padding: 5px 10px;
}

div#rates-tab .specials-container {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
    font-size: 16px;
}

div#book-tab .row{
    justify-content: center;
}

div#custom_calendar {
    max-width: 700px;
    margin: 30px auto 0;
}

section.wedding{
    padding:0px;
}

section.wedding img{
    width: 100% !important;
}

section.wedding .container {
    padding: 20px;
    background: var(--text-white);
    padding-bottom: 0px;
}

section.wedding h2 {
    line-height: 1.1;
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-family: var(--primary-font);
    font-size: 30px;
    color: var(--grey-color);
    margin-bottom: 20px;
    font-weight: 400;
}

section.wedding h3{
    padding-left: 0px;
    padding-right: 0px;
    font-family: var(--primary-font);
    font-size: 21px;
    font-weight: 700;
    color: var(--green-color);
    line-height: 1.1;
    margin-bottom: 10px;
}

section.wedding .img-sec {
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
}

section.wedding p.content {
    padding: 0px;
    text-align: center;
    margin-top: 20px;
    color: var(--grey-color);
    line-height: 1.5;
    margin-bottom: 25px;
}

section.wedding p.content.last {
    text-align: left;
    margin-bottom: 0px;
}

section.wedding .img-sec.img-last img{
    width:100%;
}

section.wedding ul{
    padding-left: 40px;
}

section.wedding li{
    font-size: 14px;
    color: var(--grey-color);
}

section.slider-pro.abt .container-fluid {
    padding: 0px;
    height: 600px;
}

section.slider-pro.abt{
    background: url(../images/abt-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

section.abt-area {
    padding: 0px;
}

section.abt-area .container {
    padding: 0px 20px;
    background: var(--text-white);
    padding-bottom: 20px;
}

section.abt-area p{
    color: var(--grey-color);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0px;
}

section.abt-area .img-sec img{
    width:100%;
    height:370px;
    object-fit:cover;
}

section.abt-area .img-sec{
    margin-bottom:20px;
     margin-top:20px;
}

section.abt-area p a{
    color:var(--blue-color);
}

section.abt-area p a:hover{
    color:var(--hover-color);
}

section.attract .container {
    padding: 0px 20px;
    background: var(--text-white);
    padding-bottom: 20px;
}

section.attract {
    padding: 0px;
}

section.attract h2 {
    line-height: 1.1;
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-family: var(--primary-font);
    font-size: 30px;
    color: var(--grey-color);
    margin-bottom: 20px;
    font-weight: 400;
}

section.attract h3 {
    padding-left: 0px;
    padding-right: 0px;
    font-family: var(--primary-font);
    font-size: 21px;
    font-weight: 700;
    color: var(--green-color);
    line-height: 1.1;
    margin-bottom: 10px;
}

section.attract h4 {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 18px;
    font-family: var(--primary-font);
    /* color: var(--blue-color); */
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

section.attract h4 a{
    color:var(--blue-color);
}

section.attract h4 a:hover{
    color:var(--hover-color);
}

section.attract .img-sec {
    padding-left: 0px;
    padding-right: 0px;
}

section.attract img{
    width:100%;
    height:350px;
    object-fit:cover;
}

section.pro-list-area.atrr-area .container{
    padding-top:40px;
}

section.pro-list-area.specials h2 {
    line-height: 1.1;
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-family: var(--primary-font);
    font-size: 30px;
    color: var(--grey-color);
    margin-bottom: 20px;
    font-weight: 400;
}

section.pro-list-area.specials h3{
    padding-left: 0px;
    padding-right: 0px;
    font-family: var(--primary-font);
    font-size: 21px;
    font-weight: 700;
    color: var(--green-color);
    line-height: 1.1;
    margin-bottom: 10px;
}

section.pro-list-area.specials .cont-sec h3{
    color: var(--blue-color);
    line-height: 1.5;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
    font-family: var(--primary-font);
}

section.pro-list-area.specials .cont-sec a:hover h3{
    color: var(--hover-color);
}

section.pro-list-area a:hover h3 {
    color: var(--hover-color);
}
section.pro-list-area.specials p.text {
    font-size: 12px;
    text-align: center;
    color: var(--grey-color);
    margin-bottom: 0;
}

section.slider-pro.fq .container-fluid {
    padding: 0px;
    height: 600px;
}

section.slider-pro.fq {
    background: url(../images/fq.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

section.faq h2 {
   line-height: 1.1;
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-family: var(--primary-font);
    font-size: 30px;
    color: var(--grey-color);
    margin-bottom: 30px;
    font-weight: 400;
}

section.faq .container {
    padding: 20px;
    background: var(--text-white);
}

section.faq {
    padding: 0px;
}

section.faq .content-sec {
    padding: 0px;
    margin-bottom: 20px;
}

section.faq p{
    color: var(--grey-color);
    margin-bottom: 0px;
    line-height: 1.4;
}

section.faq p.ques{
    font-weight: 700;
}

section.cont-sec {
    padding: 0px;
}

section.cont-sec .container {
    padding: 10px 20px;
    background: var(--text-white);
    padding-bottom: 30px;
}

.cont-sec input, .cont-sec textarea{
   width: 100%;
    height: 40px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    
}
.cont-sec button{
    width: 100%;
    text-shadow: none;
    width: 100%;
    display: block;
    border: 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(to bottom, #0076a0 0%, #006386 100%);
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
}
.cont-sec button:hover{
    background: #01a2d0;
  
}
.cont-sec .col-lg-12{
    padding: 0px;
    margin-bottom: 15px;
}

section.cont-sec h2 {
    line-height: 1.1;
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-family: var(--primary-font);
    font-size: 30px;
    color: var(--grey-color);
    margin-bottom: 20px;
    font-weight: 400;
}

section.cont-sec .cont-addr {
    padding: 0px;
}

section.cont-sec .cont-addr p{
    margin-bottom: 0px;
    color: var(--grey-color);
}

section.cont-sec .cont-addr a{
    color: var(--blue-color);
}

section.cont-sec .cont-addr a:hover{
    color: var(--hover-color);
}

section.cont-sec .cont-form {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    border-color: #ddd;
    padding: 15px;
    width:50%;
}
section.cont-sec .contct-form{
    display:flex;
    justify-content: space-between;
    margin-top:20px;
    padding:0;
}
section.cont-sec .contct-form .col-6{
    width:47.5%;
   
}
section.cont-sec .contct-form .col-6.map-section{
     padding:0;
}

section.cont-sec label.form-label {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
    color: var(--grey-color);
}

section.cont-sec textarea#msg {
    height: 100px;
}

section.cont-sec button i{
    margin-right: 2px;
}

section.pro-detail.details-area {
    padding: 0px;
}

section.pro-detail.details-area .container{
    padding: 20px 10px;
    background: var(--text-white);
    padding-bottom:70px;
}

section.pro-detail.details-area.atrr-area .container{
    padding-top:40px;
}

section.pro-detail.details-area.specials .container{
    padding-top:0px;
}

section.pro-detail.details-area.specials h2{
    line-height: 1.1;
    padding-left: 0px !important;
    padding-right: 0px !important;
    font-family: var(--primary-font);
    font-size: 30px;
    color: var(--grey-color);
    margin-bottom: 20px;
    font-weight: 400;
}

section.pro-detail.details-area.specials h3.top{
    padding-left: 0px;
    padding-right: 0px;
    font-family: var(--primary-font);
    font-size: 21px;
    font-weight: 700;
    color: var(--green-color);
    line-height: 1.1;
    margin-bottom: 10px;
}

section.pro-detail.details-area.specials p.text {
    font-size: 12px;
    text-align: center;
    color: var(--grey-color);
    margin-bottom: 0;
}

section.gallery-area {
    padding: 0px;
    margin-bottom:15px;
}

section.gallery-area .container{
    padding: 0px 0px;
    background-color: #fff;
}

section.gallery-area .col-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

section.gallery-area .left img {
    height: 330px;
    width: 100%;
    object-fit: cover;
}

section.gallery-area .col-6.left {
    padding: 0px;
}

section.gallery-area .col-6.right {
    padding-right: 0px;
    flex-direction: revert;
    flex-wrap: wrap;
    gap: 12px 2%;
}

section.gallery-area .col-6 img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

section.gallery-area .col-6.right img {
   width: 100%;
    height: 159px;
}

section.gallery-area .col-6.right a{
     width: 49%;
}

section.gallery-area .col-6.right img.one {
    border-radius: 0px 10px 0px 0px;
}

section.gallery-area .col-6.right img.two {
    border-radius: 0px 0px 10px 0px;
}

section.gallery-area .col-6 {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    position: relative;
    gap: 12px 0px;
    padding-right: 0px;
}

.gall-btn {
    position: absolute;
  bottom: 20px;
    right: 10px;
}

.gall-btn .main-btn{
    font-size: 14px;
    padding: 8px 20px;
    line-height: 1.4rem;
}

.row.pro-tab .col-lg-8{
    padding-left:0px;
}

.row.pro-tab .col-lg-4{
    padding-right:0px;
    padding-top: 20px;
}


div#fly-search a{
    font-size: 11px;
    color: var(--grey-color);
    text-transform: uppercase;
    padding:2px 4px;
}

div#fly-search a:hover{
    color: #fff;
    background:var(--blue-color);
}

div#fly-search li {
    list-style: none;
}

div#fly-search ul {
    padding-left: 0px;
    margin-bottom: 0px;
    height: 336px;
    overflow-y: scroll;
    padding-right: 12px;
}

div#fly-search {
   position: absolute;
    width: 322px;
    height: 380px;
    z-index: 2000;
    padding: 22px 22px 22px 22px;
    /* background: transparent url(../images/search-by-villa-bg.svg) no-repeat top left; */
   top: 90px;
    right: 0;
    display: none;
    cursor: pointer;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 13px #dad9d9;
}

section.text-area .container {
    background: var(--text-white);
    padding: 20px;
}

section.pro-detail1 .img-area {
    width: 100%;
    height:300px;
    position: relative;
    overflow: hidden;
}

section.pro-detail1 .img-area:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.attr-content {
    padding: 0px;
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100%;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

section.pro-detail1 .attr-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-white);
    text-shadow: 0px 0px 4px #000;
    font-family: var(--primary-color);
    margin-bottom: 0px;
}

.attr-content .main-btn {
    margin-top: 20px;
    width: 180px;
    margin: auto;
    height: 52px;
    transition: all 0.6s ease;
    position: absolute;
    bottom: -200px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

section.pro-detail1 a:hover .img-area:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

section.pro-detail1 a:hover .attr-content {
    bottom: calc(50% + 35px);
    -webkit-transform: translate(0%, 50%);
    transform: translate(0%, 50%);
}

section.pro-detail1 a:hover .main-btn {
    bottom: -80px;
}

section.pro-detail.prro .container{
padding-top:40px;
    padding-bottom:40px;
}

.upper-bg {
    background: url(../images/transition.png) repeat-x center bottom;
}

div#description-tab h3{
    font-size: 32px;
    line-height: 1.3;
}

div#ovabrw_booking_form input.form-control, div#ovabrw_booking_form textarea.form-control{
    padding: 8px 8px;
    border: 1px solid var(--blue-color);
    font-size: 14px;
    border-radius: 0px;

}

header .container.mob-nav{
    display:none;
}

div#ovabrw_booking_form input#show-target-data{
    padding-left:35px;
}

section.slider-pro:hover .carousel-control-next-icon, section.slider-pro:hover .carousel-control-prev-icon{
    display:block;
}

button#reload {
    width: 50px;
}

section.cont-sec .captcha {
    display: flex;
    gap:5px;
}

section.cont-sec input#captcha {
    height: 40px;
}

div#paypal-button-container {
    margin: 0px !important;
    width: 50%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.search-mob.search-img {
    background: var(--green-color);
    border-radius: 0px 0px 5px 5px;
    padding: 15px;
    display:none;
    cursor:pointer;
}

a.sticky.main-btn {
    transform: rotate(-90deg);
    position: fixed;
    left: auto;
    right: -50px;
    top: 52%;
    z-index: 999;
    display: none;
    color: #fff !important;
    background: linear-gradient(to bottom, #fea400 0%, #d69300 100%);
    border:0px solid;
}

section.pro-detail.pro-detail1 a{
    height:300px;
}

section.attract h1{
    color: var(--grey-color);
    font-weight: 400;
    font-family: var(--heading-font);
    font-size: 36px;
    padding-left: 0px !important;
    padding-right: 0px !important;
    line-height: 1.2;
}

div#fly-search ::-webkit-scrollbar-thumb{
	background: var(--green-color);
}

section.detail-sec .upper-detail p{
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(to bottom, #fea400 0%, #d69300 100%);
    border-radius: 4px;
    font-family: var(--primary-font);
    margin-bottom: 10px;
    max-width: 20%;
    margin-top:10px;
}

p.head-pro {
   padding: 6px 12px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(to bottom, #fea400 0%, #d69300 100%);
    border-radius: 4px;
    font-family: var(--primary-font);
    margin-bottom: 10px;
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 0;
    left: 0;
}
section.pro-detail p.head-pro {
     margin-bottom: 0px;
    position: relative;
    border-radius: 0;
}
section.pro-detail p.heading2 {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    background: var(--green-color);
    border-radius: 0px;
    font-family: var(--primary-font);
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
    width: 100%;
    top: 0;
    left: 0;
}
section.pro-detail .heading-area {
    position: absolute;
    width: 100%;
}
p.addrr-prro {
    color: #fea400;
    margin-bottom: 0px;
    font-weight: bold;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}


section.wedding.common h4{
    font-size: 18px;
    font-weight: 700;
    color: #333;
}
section.wedding.common h1{
font-size: 36px;
    color: black;
    font-weight: 400;
    font-family: 'Open Sans';
    line-height: 1;
    padding:0;
}
section.wedding.common h2{
font-weight: 700;
    font-size: 21px;
    color: #8aae44;
}

div#book input#show-target-data{
    height:39px;
}
div#book .main-cal {
    position: relative;
}
.datepicker__close-button{
    background-color: #01a2d0 !important;
}
.datepicker__close-button:hover{
    background-color: #8AAE44 !important;
}