body{
	margin: 0px;
	padding: 0px;
	width: 100%;
	color: #000;
	font-family: "Mulish", sans-serif;
	font-weight: 400;
}

html{
	scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Ubuntu Sans", sans-serif;
}

.font-primary{
	font-family: "Mulish", sans-serif;
}

.font-second{
	font-family: "Ubuntu Sans", sans-serif;
}

section{
	background-color: #f1f1f1;
	padding: 60px 0;
	margin: 0px;
}

.spacer{
	margin: 60px 0px 0 0;
	display: block;
}

:root{ 
	--main-color: #85c442;
}

.text-justify{
	text-align: justify;
}

.color{
	color: #f37628!important;
}

.bg-color{
	background-color: #f37628!important;
}

.color2{
	color: #85c442 !important;
}

.bg-color2{
	background-color: #85c442 !important;
}

.bg-white{
	background-color: #ffffff !important;
}

.b-radius-0{
	border-radius: 0px !important;
}

.b-radius-5{
	border-radius: 5px !important;
}

.b-radius-10{
	border-radius: 10px !important;
}

.b-radius-50{
	border-radius: 50% !important;
}

.b-radius-20{
	border-radius: 20px !important;
}

.b-radius-30{
	border-radius: 30px !important;
}

.navbar {
	color: #010101;
	transition: all 0.4s;
	background-color: #ffffff;
}

.navbar-brand img{
	width: 150px;
}

.navbar-brand h2{
	color: #ffffff;
}

.navbar-nav .nav-link{
	padding: 12px;
	background: transparent;
	border: none;
	border-radius: 2px;
	overflow: hidden;
	position: relative;
	cursor: pointer; 
	font-weight: 700;
	font-size: 14px;
	line-height: 16px;
	margin: 0px 8px;
	transition: all 0.5s;
	color: #010101;
	text-transform: capitalize;
	display: flex;
	justify-content: center;
	align-items: center;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link:focus{
	color: #f37628;
}

.navbar-nav .nav-link::before{
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(177, 34, 38, 1);
  transition: 0.5s transform ease;
  transform: scale3d(0,1,1);
  transform-origin: 0 50%;
}

.navbar-nav .nav-link:hover::before{
  transform: scale3d(1,1,1);
}

.navbar-nav .nav-link::before{
  background: #f37628;
  transform-origin: 100% 50%;
}

.navbar-nav .nav-link:hover::before{
	color: var(--main-color);
  transform-origin: 0 50%;
}

/* Active state */
.navbar-nav .nav-link.active::before {
  transform: scale3d(1, 1, 1);
  background: #f37628; /* Adjust if you want a different color for active state */
}

/* Active link text color */
.navbar-nav .nav-link.active {
  color: #f37628; /* Ensure this matches your active text color */
}

@media (min-width: 992px){
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: none;
}

.navbar-toggler-icon { 
	display: inline-block; 
	width: 1.2em; 
	height: 1.1em; 
	vertical-align: middle; 
	background-image: var(--bs-navbar-toggler-icon-bg); 
	background-repeat: no-repeat; 
	background-position: center; 
	background-size: 100%; 
}

.navbar-toggler { 
	padding: 5px 10px; 
	border-radius: 5px; 
    background: var(--main-color);
}

.pulse {
  animation: pulse 1s infinite ease-in-out alternate;
}
@keyframes pulse {
  from { transform: scale(0.8); }
  to { transform: scale(1.0); }
}

.main-btn {
	margin-bottom: 10px; 
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	justify-content: center;
	line-height: 16px;
	padding: 15px 15px;
	text-align: center;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease-out;
	resize: none; 
	box-shadow: none !important; 
	width: 100%; 
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	background: #85c442;
	overflow: hidden;
	border: none;
	z-index: 1;
}

.main-btn:hover {
	background: #f37628;
}

/*phone button*/
a.butn, .button {
	align-items: center;
	background: #85c442;
  	border-radius: 5px;
  	border: 0;
  	box-shadow: rgba(57, 31, 91, 0.24) 0 2px 2px;
  	color: #FFFFFF;
  	cursor: pointer;
  	display: flex;
  	font-size: 16px;
  	font-weight: 500;
  	justify-content: center;
  	line-height: 16px;
  	margin: 0 15px 0 0;
  	padding: 15px 24px;
  	text-align: center;
  	text-decoration: none;
  	user-select: none;
  	-webkit-user-select: none;
  	touch-action: manipulation;
  	vertical-align: baseline;
  	transition: .4s all ease-in;
}

a.butn:hover, .button:hover {
	background: #f37628;
}

/* Form */
.form-control { 
	display: block; 
	width: 100%;
	height: 40px;
	padding: 10px 15px ; 
	font-size: 16px; 
	font-weight: 500; 
	line-height: 22px;
	color: #222222; 
	background-color: rgba(255, 255, 255, 1); 
	background-clip: padding-box;
	border: 0;
	-webkit-appearance: none; 
	-moz-appearance: none; 
	appearance: none;
	margin-bottom: 15px;
	border-radius: 5px;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; 
}

.form-control:focus { 
	color: #222222; 
	background-color: rgba(255, 255, 255, 1); 
	border-color: #fff; 
	outline: 0; 
	box-shadow: none; 
}

.form-control::input-placeholder { 
	color: #aaa;
	font-weight: 300; 
	opacity: 1; /* Firefox */ 
}

.form-control::-webkit-input-placeholder { 
	color: #aaa; 
	font-weight: 300;
}

.form-control::-ms-input-placeholder { 
	color: #aaa; 
	font-weight: 300;
}

.vertical-middle { 
	z-index: 0; 
	position: relative; 
	display: -ms-flexbox; 
	display: flex; 
	width: 100%; 
	min-height: 100%; 
	justify-content: center; 
	flex-flow: column; 
}

.modal-dialog { 
	margin-top:100px !important; 
}

.modal-content {
	border-radius: 0px;
}

.modal-header { 
	background:#000 !important;
	border-radius: 0;
}

.modal-body{ 
	padding:2rem; 
	background:#000 !important; 
	border-radius:0;
}

.modal-body .first-button { 
	display: inline-block; 
	background-color:#254180; 
	margin-bottom: 30px; 
	box-sizing: border-box; 
	color: #fff; 
	font-size: 16px; 
	font-weight: 700; 
	outline: 0 none; 
	letter-spacing: 0.25px; 
	padding: 10px 25px; 
	transition: all .3s; 
	resize: none; 
	box-shadow: none !important; 
	width: 100%; 
	border-radius: 0px; 
	border: none !important; 
}

.modal-header .close { 
	font-size: 30px !important; 
	color: #fff; 
	background-color: transparent !important; 
	margin-right:10px !important; 
	box-shadow: none !important; 
	border: none !important; 
}

.with-errors { 
	color:red; 
	margin-top: -15px; 
	margin-bottom: 5px; 
	font-weight: 500; 
	font-size: 16px; 
}

.formblock { 
	display: flex; 
	flex-wrap: wrap; 
	flex-direction: column; 
}

#enquiry-modal .contact-form {
    margin-top: 110px;
    padding: 1px;
    background: #131c29;
    width: 100%;
    border-radius: 5px;
}
.modal button.close{
    position: absolute;
    right: 20px;
    top: 20px
}
.close{
  font-size: 20px !important;
}

/*.contact-form .single-form {
    margin-top: 0px;
}

.contact-form .form-bottom-text{
    margin-top: 21px;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #000000;
}
.contact-form .form-bottom-text span{
    font-weight: 600;
    font-size: 24px;
    line-height: 25px;
    text-align: center;
    color: #000000;
}

.contact-form .single-form textarea::placeholder,
.contact-form .single-form input::placeholder {
    opacity: 1;
    color: #AFACAC;
    font-weight: normal;
    font-size: 14px;
    line-height: 27px;
}

.contact-form .single-form textarea::-moz-placeholder,
.contact-form .single-form input::-moz-placeholder {
    opacity: 1;
    color: #AFACAC;
}

.contact-form .single-form textarea::-moz-placeholder,
.contact-form .single-form input::-moz-placeholder {
    opacity: 1;
    color: #AFACAC;
}

.contact-form .single-form textarea::-webkit-input-placeholder,
.contact-form .single-form input::-webkit-input-placeholder {
    opacity: 1;
    color: #AFACAC;
}

.contact-form .single-form textarea {
    height: 160px;
    padding-top: 15px;
    resize: none;
}

@media (max-width: 767px) {
    .contact-form .single-form .main-btn {
        margin-top: 10px;
    }
}*/

.confirmblock img{
  width: 20px;
}

.selectBox{
  height: 40px;
  width:100%;
  margin-bottom: 15px;
  padding: 10px 15px;
  font-size: 16px ;
  font-weight: 500;
  line-height: 22px;
  color: #000;
  border-radius: 5px;
  background: #fff;
  border-bottom: 1px solid #2e5e3c;
  box-sizing: border-box;
  border: none;
  outline: none;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}

input:-ms-autofill,
input:-ms-autofill:hover, 
input:-ms-autofill:focus, 
input:-ms-autofill:active{
	-ms-box-shadow: 0 0 0 30px white inset !important;
}

input:-moz-autofill,
input:-moz-autofill:hover, 
input:-moz-autofill:focus, 
input:-moz-autofill:active{
	-moz-box-shadow: 0 0 0 30px white inset !important;
}

/*Change text in autofill textbox*/
input:-webkit-autofill{
	-webkit-text-fill-color: black !important;
}

input:-ms-autofill{
	-ms-text-fill-color: black !important;
}

input:-moz-autofill{
	-moz-text-fill-color: black !important;
}

.input-group-text {
	display: flex;
	align-items: center;
	height: 40px;
	padding: 0 0.75rem;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	color: #aaa;
	text-align: center;
	white-space: nowrap;
	border-right: 0px;
	border: 0px solid #eee;
	background-color: rgba(255, 255, 255, 1); 
	border-radius: 8px 0px 0px 8px;
}

.input-group>.form-control {
	position: relative;
	flex: 1 1 auto;
	width: 78%;
	height: 40px;
	min-width: 0;
	border-radius: 0px 8px 8px 0px !important;
}

.swiper{
	width: 100%;
	position: relative;
	height: 550px;
	z-index: 2;
	margin-bottom: 0px;
}

.overlay-banner {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(15,15,43, 0.7903536414565826) 10%, rgba(0, 0, 0, 0) 69%);
	display: flex;
	justify-content: center;
	align-items: center; 
}

.overlay-thankyou-banner {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: rgba(15,15,43, 0.7);
	display: flex;
	justify-content: center;
	align-items: center; 
} 
.text-stroke{
	text-shadow: 
     1px  1px     #fff, 
    -1px  1px     #fff, 
     1px -1px     #fff, 
    -1px -1px     #fff,
     1px  1px 5px #555;
}


@keyframes fadeIn{
	100%{
		opacity: 1;
		transform: none;}
}

.owl-carousel .owl-item img { 
	display: block; 
	margin: auto; 
	width: auto; 
	text-align: center; 
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
    background: #3d91cd !important;
}
/** Price Section **/

.services-block-three{
	margin:20px 0px;
}

.services-block-three .services-content {
    display: block;
    border: 4px solid #f37628;
    border-radius: 4px;
    text-align: center;
    background: #fff;
    padding:60px;
    position: relative;
    min-height: 244px;

}
.services-block-three .services-content:before {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-bottom: 4px solid #200d1a;
    border-right: 4px solid #200d1a;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.services-block-three .services-content:after {
    display: block;
    content: "";
    width: 9%;
    height: 17%;
    position: absolute;
    top: -2px;
    left: -2px;
    border-top: 4px solid #200d1a;
    border-left: 4px solid #200d1a;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}
.services-block-three h4 {
    color:black;
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 600;
}
.services-block-three p {
    margin-bottom: 0;
  color: #757575;
  font-size: 18px;
}
.services-block-three .services-content:hover {
    opacity: 1;
    border-color: #f37628;
}
.services-content:hover, .services-content:active {
    color: #03a9f5;
    text-decoration: none;
}

.services-block-three .services-content:hover:before, .services-block-three .services-content:hover:after {
    width: 95%;
    height: 90%;
}

/** Amenity Section**/

.wrapper{
	width: 100%;
	margin: auto;
}

.tab-wrapper{
	text-align: center;
	display: block;
	margin: auto;
	max-width: 100%;
}

.tabs{
	margin: 0;
	padding: 0;
	display: block;
	justify-content: center;
}

.tab-link{
	margin: 0 1%;
	list-style: none;
	display: inline-block;
	padding: 10px 10px;
	color: #85c442;
	line-height: 20px;
	cursor: pointer;
	font-weight: 700;
	transition: all ease 0.5s;
	
	letter-spacing: 1px;
}

.tab-link:hover{
	color: #85c442;
	border-color: #b12226;
}

.tab-link.active{
	color: #f37628;
	border-color: #b12226;
}

.tab-link:nth-of-type(1).active{
	color: #f37628;
	border-color: #b12226;
}

.content-wrapper{
	padding: 20px 20px 0;
}

.tab-content{
	display: none;
	text-align: center;
	font-size: 15px;
	opacity: 0;
	transform: translateY(15px);
	animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active{
	display: block;
}


/** Amenity Section**/



@media (max-width: 991.98px){
	.swiper { 
		height: 500px;
	}
}
@media (max-width: 1024px){
    .swiper {
        height: 750px;
    }
	.overlay-banner{
        top:30px
    }
}

@media (max-width: 576.98px){
	.swiper { 
		height: auto
	}
	.owl-dots{ 
		display: none; 
	}
	.navbar-brand img {
	    width: 120px;
	}
}
@media (max-width: 321px){
	.navbar-brand img {
    width: 120px;
	}
	.swiper { 
		height: auto
	}
}

/* */
@media only screen and (max-width: 1480px) {
    .list-content {
        margin-top: 0px;
    }
}
.overlay-form{
    background-color: rgba(12, 19, 15, 0.84);;
    padding: 30px 25px ;
    border-radius: 15px;
}
.overlay-form h4 {
    color: #fff;
    margin-bottom: 20px;
    border: 1px solid;
    border-radius: 5px;
    padding: 10px 15px;
}
.list-content {
    position: relative;
    z-index: 1;
    margin-top: 15px;
    margin-bottom: 15px;
    list-style: none;
    padding: 0;
    max-width: 600px;
    /* margin-left: 34px; */
}
.list-content li img {
    padding-right: 10px;
}