/* main css */
:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --white-rgb: 255, 255, 255;
  --black-rgb: 21, 21, 21;
  --color1-rgb: 217, 170, 47;
  --color2-rgb: 61, 165, 97;
  --color3-rgb: 18, 34, 67;
  --color4-rgb: 240, 245, 255;
  --color1: #d9aa2f;
  --color2: #3da561;
  --color3: #122243;
  --color4: #f0f5ff;
  --color5: #1d3557;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}

html, body {
	overflow-x: hidden;
}
body {
	font-size:18px;
	color:#555555;
	line-height:30px;
	font-weight:300;
	background-color: var(--white);
	font-family: 'Mulish', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Mulish', sans-serif;
	font-weight: 400;
	color: var(--color2);
}

.bg-overlay {
	position: relative;
}
.bg-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0.8
}
.bg-overlay.theme-overlay:before {
	background-color: var(--color5);
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}

.text-justify { text-align: justify; }

/*********************/
.btn1 {
	position: relative;
	display: inline-block;
	background-color: var(--color2);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 0;
	overflow: hidden;
	transition: var(--transition);
	border: #2a9d8f;
	font-weight: 600;
}
.btn1::before {
	position: absolute;
	inset: 0;
	background-color: var(--color1);
	content: '';
	transform: translateX(-100%);
	transition: var(--transition);
}
.btn1 span {
	position: relative;
	z-index: 1;
}
.btn1:hover::before {
	transform: translateX(0);
}

.bg-1 { background-color: var(--color1); }
.bg-2 { background-color: var(--color2); }
.bg-3 { background-color: var(--color3); }
.bg-4 { background-color: var(--color4); }
.bg-5 { background-color: var(--color5); }
.bg-grey { background-color: var(--grey); }

/* header */
header { 
	position: relative;
}
.topbar {  }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-size: 16px;
	font-weight: 500;
}
.topbar .item i {
	color: var(--color1);
    text-align: center;
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-weight: 700;
	color: var(--black);
	text-decoration: none;
}
.topbar .social {
	font-size: 16px;
	font-weight: 500;
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 0px;
    padding: 5px 25px;
}
.social li {
	display: block;
	color: var(--black);
}
.social li a {
	display: flex;
	width: 35px;
	height: 35px;
	border: 1px solid rgba(var(--black-rgb), .2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.social li img {
	width: 16px;
}
.social li a:hover {
	background-color: var(--color1);
}
.social li a:hover img {
	filter: brightness(0) invert(1);
}

.navbar {
	position: relative;
	z-index: 10;
	background-color: var(--color3);
	/*backdrop-filter: blur(5px);*/
	/* box-shadow: 0 10px 10px rgba(0,0,0,0.2); */
}
.navbar.fixed-top {
	position: fixed;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
	animation: slide-down 0.7s;
}
@keyframes slide-down {
	0% {
	  transform: translateY(-100%);
	}
	100% {
	  transform: translateY(0);
	}
}
.navbar-brand {
	font-size: 43px;
	font-weight: bold;
	color: var(--color1) !important;
	padding: 0;
	line-height: 1.1;
	display: flex;
	align-items: center;
	gap:10px;
}
.navbar-brand .text span { 
	display:block;
	font-size: 24px;
	font-weight: 300;
}
.navbar-brand img { 
	height: 80px; 
}
.navbar-toggler { border:none;}
.navbar-toggler:focus { box-shadow:none;}
.navbar-toggler-icon { filter: brightness(0) invert(1);}

.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-link {
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	padding: 30px;
}
.nav-item:hover .nav-link {
	color: var(--color1);
}
.navbar-toggler { border:none;}
.navbar-toggler:focus { box-shadow:none;}
/* .navbar-toggler-icon { filter: brightness(0) invert(1);} */
.nav-item.dropdown li:not(:last-child) {
	border-bottom: 1px solid #e3e3e3;
}
.dropdown-item {
	padding: 10px 20px;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color1);
	background-color: var(--white);
	padding-left: 25px;
}
.dropdown-toggle::after {
	content: '\f107';
	font-family:"FontAwesome";
	border: none;
	vertical-align: bottom;
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 99;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 240px;
	border: 1px solid #eaecf0;
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--white);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.nav-item.dropdown:hover .dropdown-menu li a {
	position: relative;
}
/*********************/
/* slider */
.owl-slide .item {
	position: relative;
	background-color: var(--color3);
	display: flex;
	justify-content: end;
}
.owl-slide .item::before {
	position: absolute;
	inset: 0;
	content: '';
	background-image: url('../../uploads/shape1.jpg');
	background-color: var(--white);
	background-size: auto 84%;
	background-repeat: repeat-x;
	animation: slide 60s linear infinite;
	-webkit-animation: slide 60s linear infinite;
}
@keyframes slide{
  from { background-position: 0 0; }
    to { background-position: 1920px 0; }
}
@-webkit-keyframes slide{
  from { background-position: 0 0; }
    to { background-position: 1920px 0; }
}
.owl-slide .item img {
	width: 50%;
	height: calc(100vh - 45px);
	object-fit: cover;
	clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
}
.owl-slide .item .desc {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	max-width: 650px;
	padding-left: 60px;
}
.owl-slide .item .desc p {
	font-size: 18px;
	color: var(--white);
	margin-bottom: 10px;
}
.owl-slide .item .desc h1 {
	font-size: 60px;
	font-weight: 800;
	color: var(--white);
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	margin-bottom: 25px;
}
.owl-slide .owl-item.active p,
.owl-slide .owl-item.active h1,
.owl-slide .owl-item.active .btn1 {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInUp;
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active p {
	animation-name: fadeInDown;
	animation-delay: 1s;
}
.owl-slide .owl-item.active .btn1 {
	animation-delay: 1.5s;
}
.owl-slide .item .btn1.type2 {
	border:2px solid var(--white);
	background-color: transparent;
	color: var(--white);
}
.owl-slide .item .btn1.type2::before {
	background-color: var(--white);
}
.owl-slide .item .btn1.type2:hover span {
	color: var(--color3);
}
.owl-slide .owl-nav {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	gap: 10px;
	justify-content: center;
	width: 50%;
}
.owl-slide .owl-nav > div {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color3);
	/* background-color: var(--color3); */
	border: 2px solid var(--color3);
	border-radius: 50%;
	font-size: 20px;
	/* opacity: 0.6; */
	transition: var(--transition);
}
.owl-slide .owl-nav > div:hover{ 
	background-color: var(--color1);
	border-color: var(--color1);
	opacity: 1;
}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
}
/*********************/
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 30px;
}
.owl-carousel .owl-dots > div {
	width: 7px;
	height: 7px;
	border-radius: 7px;
	background-color: var(--black);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color2);
	outline: 1px solid var(--color2);
	outline-offset: 5px;
}
/*********************/
.heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.heading span {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color3);
    position: relative;
    border-bottom: 2px solid var(--color3);
}
.heading h2 {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 46px;
    color: var(--color2);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}
/*********************/
.welcome {
	position: relative;
}
.image-box {
	position: relative;
	padding-left: 30%;
	padding-bottom: 30%;
	height: 100%;
}
.image-box img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}
.image-box figure {
	margin: 0;
}
.image-box .img1 {
	position: relative;
	clip-path: polygon(0% 0%, 85% 0, 100% 100%, 0% 100%);
}
.image-box .img2 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 70%;
	clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0% 100%);
}

/*********************/
.home_project {
	position: relative;
	padding: 100px 0;
}
.home_project::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('../upload/about1.jpg');
	background-size: cover;
	background-position: center;
	clip-path: polygon(60% 0, 100% 0, 100% 100%, 25% 100%);
	opacity: 0.05;
}
.home_project .item {
	position: relative;
	overflow: hidden;
}
.home_project .item figure {
	position: relative;
}
.home_project .item figure::before {
	content: '';
	position: absolute;
	width: 15px;
	top:25px;
	bottom:25px;
	left:100%;
	background-color: var(--color1)
}
.home_project .item img {
	width: 100%;
	transition: var(--transition);
}
.home_project .item h4 {
	font-size: 30px;
	font-weight: 600;
}
.home_project .owl-nav > div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--black);
	background-color: var(--white);
	border-radius: 50%;
	font-size: 20px;
	transition: var(--transition);
}
.home_project .owl-nav > div.owl-prev { left:15px;}
.home_project .owl-nav > div.owl-next { right:15px;}
.home_project .owl-nav > div:hover{ 
	background-color: var(--color1);
	color: var(--white);
}
/*********************/
/* category */
.category .item {
	display: block;
}
.category .item figure {
	border-radius: 50%;
	border:5px solid #eee;
	overflow: hidden;
}
.category .item img {
	width: 100%;
}
.category .item span {
	display: inline-block;
	background-color: rgb(120,55,250);
	padding: 5px 10px;
	color: #fff;
	border-radius: 5px;
}
/*********************/
/* counter */
.counter_wrap {
	background-size: cover;
	background-attachment: fixed;
}
.counter_wrap h1 {
	font-size: 60px;
	font-weight: 700;
	color: #efcda5;
}
/*********************/
/* testimonials */
.testimonials {
	background-size: cover;
	padding: 100px 0;
}
.testimonials .item .star {
	position: relative;
	z-index: 1;
	background-color: var(--color5);
	color: #ff5e14;
	padding: 5px 10px;
	border-radius: 5px;
	display: inline-block;
	transform: translateY(50%);
}
.testimonials .item .desc {
	position: relative;
	background-color: var(--white);
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 25px;
}
.testimonials .item .desc:after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	content: '';
	background-color: var(--white);
	width: 30px;
	height: 20px;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	margin-top: -1px;
}
.testimonials .item .desc p {
	margin-bottom: 0;
}
.testimonials .item img {
	width: 70px;
	height: 70px;
	border-radius: 70px;
	border:4px solid #fff;
	margin: 0 auto;
	margin-bottom: 15px;
}
/*********************/
/* gallery */
.home-gallery {
	position: relative;
	overflow: hidden;
}
.home-gallery .owl-carousel .owl-stage-outer { overflow: initial;}
.home-gallery .item {
	position: relative;
	padding-bottom: 50px;
}
.home-gallery .item img {
	width: 100%;
	aspect-ratio: 2/1;
	object-fit: cover;
}
.home-gallery .item .desc {
	position: absolute;
	bottom:0;
	left: 0;
	right: 0;
	margin: auto;
	width: 50%;
	padding: 30px;
}
.home-gallery .item .desc h4 {
	font-size: 30px;
	font-weight: 800;
	color: var(--white);
}
.home-gallery .item .desc h4::after {
	content: '';
	display: block;
	width: 100px;
	height: 1px;
	background-color: var(--white);
	margin: 15px auto;
}
.home-gallery .item .desc p {
	margin: 0;
}

.gallery .item {
	display: block;
	position: relative;
	outline: 2px solid #fff;
	outline-offset: -10px;
}
.gallery .item:after {
	font-family:'FontAwesome';
	font-size: 30px;
	color: #fff;
	position: absolute;
	text-align: center;
	content: '\f055';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	transition: 1s;
}
.gallery .item:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	transform: scale(0);
	transition: 0.5s;
}
.gallery .item:hover:after {
	transform: scale(1);
}
.gallery .item:hover:before {
	transform: scale(1);
}
/*********************/
.features .item {
	position: relative;
	background-color: var(--white);
	padding: 40px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: var(--transition);
}
.features .item::before {
	content: '';
	width: 25px;
	height: 25px;
	position: absolute;
	right:10px;
	bottom:10px;
	background-color: var(--color1);
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	transition: var(--transition);
}
.features .item img {
	width: 100px;
	margin-bottom: 20px;
	filter: drop-shadow(0 1000px 0 var(--color1));
	transform: translateY(-1000px);
	transition: var(--transition);
}
.features .item h4 {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.features .item p {
	font-size: 17px;
}
.features .item:hover {
	transform: translateY(-10px);
}
.features .item:hover::before {
	background-color: var(--color2);
}
.features .item:hover img {
	filter: drop-shadow(0 1000px 0 var(--color2));
}

.amenities .d-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 1px;
}
.amenities .item {
	position: relative;
	background-color: var(--white);
	padding: 40px;
	display: flex;
	align-items: center;
	gap:25px;
	transition: var(--transition);
	color: var(--color3);
}
.amenities .item::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--white);
	z-index: 0;
	clip-path: polygon(100% 100%, 100% 100%, 100% 100%);
	transition: var(--transition);
	opacity: 0.1;
}
.amenities .item::after {
	content: '';
	position: absolute;
	right: 15px;
	bottom: 15px;
	width: 15px;
	height: 15px;
	background-color: var(--white);
	clip-path: polygon(100% 100%, 100% 0, 0 100%);
}
.amenities .item figure {
	display: flex;
	flex-shrink:0;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	background-color: var(--color4);
	border-radius: 50%;
	outline: 8px solid rgba(var(--color4-rgb), .3);
	margin: 0;
	overflow: hidden;
}
.amenities .item figure,
.amenities .item div {
	position: relative;
	z-index: 1;
}
.amenities .item img {
	height: 50px;
	filter: drop-shadow(0 1000px 0 var(--color3));
	transform: translateY(-1000px);
}
.amenities .item h4 {
	font-weight: 800;
	color: inherit;
}
.amenities .item p {
	font-size: 15px;
	margin: 0;
}
.amenities .item:hover {
	background-color: var(--color2);
	color: var(--white);
}
.amenities .item:hover figure {
	background-color: var(--white);
}
.amenities .item:hover::before {
	clip-path: polygon(100% 100%, 100% 0, 0 100%);
}
/*********************/

/* form */
.enquiry_wrap {
	position: relative;
	background-size: cover;
}
.form1 .form-control {
	background-color: transparent;
	border-width: 2px;
	border-radius: 0;
	padding: 15px;
}
.form1 ::placeholder {
  color: var(--white);
  opacity: 1; /* Firefox */
}
.form1 ::-ms-input-placeholder { /* Edge 12 -18 */
  color: var(--white);
}

.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #F2F3F5;
  border: 1px solid #ddd; 
  padding: 7px 14px 9px; 
  transition: 0.4s;
}
.wrap-input-8 .input:focus {
  outline: none;
}
.wrap-input-8 {
  position: relative;
  margin-bottom: 10px;
}
.wrap-input-8 .input ~ .focus-border:before,
.wrap-input-8 .input ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color2);
  transition: 0.3s;
}
.wrap-input-8 .input ~ .focus-border:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.wrap-input-8 .input ~ .focus-border i:before,
.wrap-input-8 .input ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: var(--color2);
  transition: 0.4s;
}
.wrap-input-8 .input ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.wrap-input-8 .input:focus ~ .focus-border:before,
.wrap-input-8 .input:focus ~ .focus-border:after {
  width: 100%;
  transition: 0.3s;
}
.wrap-input-8 .input:focus ~ .focus-border i:before,
.wrap-input-8 .input:focus ~ .focus-border i:after {
  height: 100%;
  transition: 0.4s;
}
/*********************/
/* whyus */
.whyus { 
	position: relative;
	background-size: cover; 
	background-attachment: fixed; 
	padding: 100px 0;
}
.whyus:before { 
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*content: '';*/
	background-color: #000;
	opacity: 0.7;
}
.whyus .grid_view {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
}
.whyus .item {
	border: 1px solid #fff;
	border-radius: 20px;
}
.whyus .item img {
	width: 80px;
	margin: 30px 0;
	filter: brightness(0) invert(1);
}

/*********************/
.certificates .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border: 1px solid #ccc;
	padding: 5px;
}
/*********************/

/* footer */
footer {
	background-size: cover;
}
footer h4 {
	position: relative;
	color: #fff;
}
footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
footer h4:after {
	position: relative;
	display: block;
	content: '';
	width:60px;
	height: 3px;
	background-color: var(--white);
	margin: 20px 0;
}
footer .links {
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
footer .links li {
	display: block;
}
footer .links li a {
	display: block;
	color: var(--white);
}
footer .social li a {
	filter: brightness(0) invert(1);
}
.footer-bottom {
	background-color: rgba(0,0,0,0.3);
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	color: var(--white);
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-contact li a {
	color: var(--white);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer-contact li i {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	margin-right: 15px;
	border-radius: 10px 10px 10px 0;
	background: var(--color1);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--white);
}
.footer-social {
	display: flex;
	gap: 15px;
}
.footer-social li {
	list-style: none;
}
.footer-social li a {
	display: block;
	height: 38px;
	width: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 10px 10px 10px 0;
	background: var(--white);
	color: var(--color2);
	transition: 0.3s;
}
.footer-social li a img {
	height: 20px;
	transition: 0.3s;
}
.footer-social li a:hover {
	background: var(--color2);
}
.footer-social li a:hover img {
	filter: brightness(0) invert(1);
}

.call-fixed {
  position: fixed;
  box-shadow: 0px 0px 10px #e0e0e0;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  bottom: 25px;
  left: 25px;
  z-index: 10;
}
.call-fixed a {
  display: block;
  margin: 10px 0;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--color2);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:before {
  /* content: ""; */
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--color1);
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--black);
  color: var(--white);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--black);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:auto;
    height:initial;
    padding:5px;
    color:#111;
    background-position: right 10px center;
    border-radius:3px;
    border:1px solid #ddd;
}
.goog-te-gadget { font-size: 0 !important;}
#google_translate_element span { display:none;}

.socialfix {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	padding: 5px;
	display: flex;
	gap: 6px;
	flex-direction: column;
	background-color: rgba(var(--white-rgb), .5);
	border: 1px solid var(--white);
	border-radius: 0 8px 8px 0;
	z-index: 1;
}
.socialfix li {
	display: block;
}
.socialfix img {
	height: 28px;
}
/**************/
.whatsappfix {
  position: fixed;
  left: 50px;
  bottom: 90px;
  z-index: 1
}
.whatsappfix .video-btn > span {
  background-color: rgba(37, 211, 102,1);
}

.video-btn {
  text-align: initial;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  font-size: 28px;
  font-style: italic;
  padding: 6px 0 6px 4.125rem;
  font-weight: 600;
}
.video-btn > span {
  position: absolute;
  left: 0;
  text-align: center;
  height: 3.6875rem;
  width: 3.6875rem;
  line-height: 3.6875rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  top: 0;
}
.video-btn:hover, 
.video-btn:focus {color: #fff;}

/*=== Pulse Animation ===*/
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4.0625rem;
  margin-left: -4.0625rem;
  background-color: inherit;
  -webkit-animation: pluse 2s linear infinite;
  -ms-animation: pluse 2s linear infinite;
  -o-animation: pluse 2s linear infinite;
  animation: pluse 2s linear infinite;
  width: 8.125rem;
  height: 8.125rem;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
}
.spinner:after {
  -webkit-animation: pluse 2s linear 2.3s infinite;
  -ms-animation: pluse 2s linear 2.3s infinite;
  -o-animation: pluse 2s linear 2.3s infinite;
  animation: pluse 2s linear 2.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
/************************/
/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
	.navbar-brand { font-size: 36px; padding: 5px 0;}
	.navbar-brand .text span { font-size: 21px;}
	.navbar-brand img { height: 60px;}
	.navbar-collapse { margin: 0 -12px;}
	.nav-item { padding: 0;}
	.nav-link { padding: 10px 20px; border-top:1px solid rgba(255,255,255,0.2);}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
	.dropdown-toggle::after { float: right;}
	.owl-slide .item { flex-direction: column;}
	.owl-slide .item img { width: 100%; height: 250px; clip-path:margin-box; order: 2;}
	.owl-slide .item .desc { position: relative; padding: 20px; max-width: 100%;}
	.owl-slide .item .desc h1  { font-size: 30px;}
	.owl-slide .item .desc .btn1  { font-size: 14px; padding: 2px 10px;}
	.heading span { font-size: 14px;}
	.heading h2 { font-size: 36px;}
	.amenities .d-grid { grid-template-columns: 1fr;}
	.amenities .item { padding: 20px;}
	.amenities .item figure { width: 80px; height: 80px;}
	.home-gallery .item { padding-bottom: 0;}
	.home-gallery .item .desc { position: relative; width: 100%;}
}