@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	scroll-padding-top: 3rem;
	font-family: var(--font-family-2);
}
:root {
	--main-color: #1768ac;
	--text-color: #03256c;
	--container-color: #06bee1;
	--bg-color: #ffffff;
	--text-alter-color: #2541b2;
	--poppins-font: "Poppins", sans-serif;
	--font-family-1: "Raleway", sans-serif;
	--font-family-2: "Roboto Slab", serif;
}
body {
	color: var(--text-color);
}
a {
	text-decoration: none;
}
li {
	list-style: none;
}
img {
	width: 100%;
}
section {
	padding: 3rem 0 2rem;
}
.container {
	max-width: 1000px;
	margin: auto;
	width: 100%;
} /*header*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
header.shadow {
	background: var(--bg-color);
	box-shadow: 0 1px 4px hsl(0deg, 4% 15% / 10%);
	transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}
.logo {
	font-size: 1.7rem;
	font-weight: 900;
	letter-spacing: 1px;
	color: var(--text-color);
}
.navbar {
	display: flex;
	align-items: center;
	column-gap: 1.5rem;
}
.nav-link {
	position: relative;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-color);
	font-family: var(--poppins-font);
	transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0px;
	width: 0%;
	height: 2px;
	background: var(--text-color);
	transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav-link:hover.nav-link::after {
	width: 100%;
	transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.menu-icon {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 5px;
	cursor: pointer;
	z-index: 200;
	transition: 0.3s;
}
.menu-icon div {
	display: block;
	background: var(--text-color);
	height: 3px;
	width: 25px;
	transition: 0.3s;
}
.move .line1 {
	transform: rotate(-45deg) translate(-5px, 5px);
}
.move .line2 {
	opacity: 0;
}
.move .line3 {
	transform: rotate(45deg) translate(-5px, -5px);
}
.book-btn {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-color);
	padding: 10px 24px;
	margin-left: 2rem;
	border: 1px solid var(--text-color);
}
.btn {
	padding: 10px 24px;
	border-radius: 0.2rem;
	font-family: var(--poppins-font);
	transition: 0.3s all linear;
}
.book-btn:hover,
.explore-btn:hover {
	color: var(--bg-color);
	background: var(--text-color);
}
.home {
	min-height: 640px;
	background: var(--container-color);
}
.home-img {
	display: none;
}
.home-data {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
}
.home-text {
	display: flex;
	flex-direction: column;
	row-gap: 1rem;
}
.home-text h3 {
	margin-top: 3rem;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 1px;
	font-family: var(--poppins-font);
}
.home-text h2 {
	font-size: 2.2rem;
	font-weight: 600;
	letter-spacing: 1px;
	font-family: var(--font-family-2);
}
.home-btns {
	display: flex;
	align-items: center;
	column-gap: 1.5rem;
	margin-top: 1.5rem;
}
.booking-btn {
	border: 1px solid var(--text-color);
	color: var(--bg-color);
	background: var(--text-color);
	border-radius: 0.2rem;
}
.booking-btn:hover {
	color: var(--text-color);
	background: transparent;
}
.explore-btn {
	border: 1px solid var(--text-color);
	color: var(--text-color);
	border-radius: 0.2rem;
}
.home-bg {
	position: relative;
	width: 500px;
	height: 500px;
	bottom: -140px;
	z-index: 2;
}
.home-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.home-bg::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: -2rem;
	left: -2rem;
	border: 1px solid var(--main-color);
	background: transparent;
	z-index: -1;
}
.contact-info {
	display: inline-block;
	margin-top: 1.5rem;
}
.contact-info-box {
	display: inline-flex;
	align-items: center;
	column-gap: 0.5rem;
	margin-bottom: 1rem;
	margin-right: 1rem;
}
.contact-info-box .bx {
	font-size: 1.3rem;
	color: var(--text-color);
}
.contact-info-box span {
	font-size: 1.075rem;
	color: var(--text-color);
}
.about-text {
	text-align: center;
	margin-top: 4rem !important;
}
.heading {
	position: relative;
	display: inline-flex;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 1px;
	font-family: var(--poppins-font);
}
.heading::after {
	content: "";
	position: absolute;
	right: -12px;
	width: 40px;
	height: 40px;
	bottom: 0;
	background: #06bce1ad;
	z-index: -1;
	clip-path: polygon(
		50% 0%,
		83% 12%,
		100% 43%,
		94% 78%,
		68% 100%,
		32% 100%,
		6% 78%,
		0% 43%,
		17% 12%
	);
}
.about-text h1 {
	font-size: 1.8rem;
	letter-spacing: 1px;
	margin: 1rem 0;
}
.about-text p {
	max-width: 600px;
	margin: auto;
	font-size: 1.075rem;
	color: var(--text-alter-color);
	margin-bottom: 1.5rem;
}
.learn-more {
	display: inline-flex;
	align-items: self-end;
	color: var(--text-color);
}
.learn-more .bx {
	font-size: 1.2rem;
	margin-left: 0.4rem;
	transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.learn-more:hover .bx {
	margin-left: 0.8rem;
	transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.about-data {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, auto));
	gap: 2rem;
	margin-top: 2rem;
}
.about-box {
	position: relative;
	width: 100%;
	height: 280px;
}
.about-box::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 7px;
	left: 7px;
	border: 1px solid var(--main-color);
	background: transparent;
	z-index: -1;
}
.about-box img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.about-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: hsla(189, 68%, 94%, 0.7);
	padding: 15px;
	clip-path: circle(0% at 50% 50%);
	transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.overlay-text h2 {
	font-size: 1.2rem;
	margin-top: 0.5rem;
}
.overlay-text p {
	font-size: 0.978rem;
}
.about-box:hover .about-overlay {
	clip-path: circle(70.7% at 50% 50%);
	transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.services .heading {
	margin-bottom: 1rem;
}
.ser-img {
	position: relative;
	width: 380px;
	height: 450px;
	margin-top: 1rem;
}
.ser-img::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: -1rem;
	right: -1rem;
	border: 1px solid var(--main-color);
	background: transparent;
	z-index: -1;
}
.ser-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.service-box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
.box-data h2 {
	font-size: 1.8rem;
}
.box-data p {
	font-size: 1.075rem;
	color: var(--text-alter-color);
	letter-spacing: 1px;
	margin: 1.5rem 0;
}
.package {
	display: grid;
	row-gap: 1rem;
	margin: 2rem 0 1rem;
}
.p-box {
	display: flex;
	align-items: center;
	column-gap: 0.5rem;
}
.p-box .bx {
	font-size: 1.2rem;
	color: #06bce1ad;
}
.p-box span {
	font-weight: 500;
}
.book-now {
	max-width: 150px;
	text-align: center;
	border: 1px solid var(--text-color);
	color: var(--text-color);
	border-radius: 0.2rem;
	margin-top: 1.5rem;
}
.book-now:hover {
	border: 1px solid var(--main-color);
	color: var(--bg-color);
	background: #06bce1ad;
}
.slider-btns {
	display: flex !important;
	justify-content: center;
	width: 100%;
	max-width: 1000px;
	margin: 1.5rem auto 1.5rem auto;
}
.swiper-button-next,
.swiper-button-prev {
	transform: translate(0%, 0%);
	margin: 10px 0 0 10px !important;
	background: #06bce1ad;
	width: 100px !important;
	height: 45px !important;
	border-radius: 5px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 20px !important;
	font-weight: 800;
	color: #ffffff !important;
}
.testimonial .heading {
	margin-bottom: 1rem;
}
.testimonial h3 {
	font-size: 1.8rem;
	letter-spacing: 1px;
	font-weight: 500;
}
.testimonial-data {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}
.t-img {
	width: 100%;
	height: 10px;
	position: relative;
	margin-bottom: 1.5rem;
}
.t-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.t-box .bx {
	font-size: 1.2rem;
	position: absolute;
	bottom: -1.2rem;
	right: 1rem;
	padding: 15px;
	color: var(--bg-color);
	background: #06bce1ad;
}
.t-box h2 {
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}
.t-box p {
	font-size: 1.02rem;
}
.footer {
	background: var(--text-color);
	color: #f6f6f6;
	border: 2px solid #06bce1ad;
}
.footer-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.footer-container .logo {
	color: var(--bg-color);
	margin-bottom: 1rem;
}
.footer-container .logo:hover {
	color: var(--bg-color);
}
.footer-container .footer-box {
	display: flex;
	flex-direction: column;
}
.social {
	display: flex;
	align-items: center;
}
.social a {
	font-size: 24px;
	color: var(--bg-color);
	margin-right: 1rem;
}
.social a:hover {
	color: #06bce1ad;
}
.footer-box h3 {
	font-size: 1.1rem;
	font-weight: 400;
	margin-bottom: 1rem;
}
.footer-box a {
	color: #ffffff;
	margin-bottom: 10px;
}
.footer-box a:hover {
	color: #06bce1ad;
	transition: 0.3s all linear;
}
.copyright {
	text-align: right;
	margin-top: 1.2rem;
	margin-right: 1.2rem;
	color: #faf0e4 !important;
	z-index: 500;
}
.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: hsl(0, 0%, 99%);
	display: grid;
	place-items: center;
	z-index: 1000;
}
.loader img {
	width: 280px;
}

@media (max-width: 985px) {
	.container {
		margin: 0 auto;
		width: 90%;
	}
	.home {
		min-height: 600px;
		padding-top: 7rem;
	}
	.home-bg {
		width: 420px;
		height: 420px;
		bottom: -150px;
	}
}
@media (max-width: 875px) {
	.nav {
		padding: 15px 0;
	}
	.home-bg {
		width: 350px;
		height: 350px;
		bottom: -154px;
		transform: translateX(38px);
	}
	.service-box {
		display: grid;
		grid-template-columns: 1fr;
		place-items: center;
	}
	.testimonial-data {
		grid-template-columns: (2, 1fr);
	}
	.footer-container {
		grid-template-columns: (2, 1fr);
	}
	.box-data {
		text-align: center;
	}
}
@media (max-width: 864px) {
	.home-bg {
		position: unset;
		transform: translateX(0);
	}
	.home-bg::after {
		top: -1rem;
		left: -1rem;
	}
}
@media (max-width: 800px) {
	.nav {
		padding: 14px 0;
	}
	.home-img {
		display: initial;
	}
	.home-bg {
		display: none;
	}
	.home-data {
		grid-template-columns: 1fr;
	}
	.home-img {
		position: relative;
		width: 350px;
		height: 350px;
		z-index: 2;
		margin-top: 1.5rem;
	}
	.home-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	.home-img::after {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: -1rem;
		left: -1rem;
		border: 1px solid var(--main-color);
		background: transparent;
		z-index: -1;
	}
	.home-text h3 {
		font-size: 1rem;
	}
	.home-text h2 {
		font-size: 2.4rem;
	}
	.menu-icon {
		display: flex;
	}
	.navbar {
		position: absolute;
		top: 0;
		right: 0;
		width: 300px;
		min-height: 100vh;
		background-color: var(--main-color);
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 50px 0;
		clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
		transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
	}
	.nav-link {
		display: block;
		margin: 1rem 0;
	}
	.book-btn {
		margin: 1.5rem 0 0 0;
	}
	.open-menu {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
		transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
	}
	.heading,
	.services .heading,
	.testimonial .heading {
		font-size: 1.3rem;
	}
	.about-text {
		margin-top: 0 !important;
	}
	.ser-img {
		width: 344px;
		height: 395px;
	}
	.heading::after {
		width: 35px;
		height: 35px;
	}
	.about-text h1,
	.box-data h2,
	.testimonial h3 {
		font-size: 1.5rem;
	}
	.t-box h2 {
		font-size: 1.2rem;
	}
	.about-text p,
	.box-data p {
		font-size: 1.02rem;
	}
}
@media (max-width: 680px) {
	.home {
		padding-top: 5rem;
	}
	.about-data {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media (max-width: 550px) {
	.testimonial-data {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 445px) {
	.about-data {
		grid-template-columns: repeat(1, 260px);
		justify-content: center;
	}
	.ser-img {
		width: 100%;
		height: 370px;
	}
	.home-text h3 {
		font-size: 0.9rem;
	}
	.home-text h2 {
		font-size: 1.7rem;
	}
	.footer-container {
		grid-template-columns: 1fr;
	}
	.footer-box iframe {
		width: 360px;
		height: 250px;
	}
}
@media (max-width: 385px) {
	.home-img {
		width: 95%;
		transform: translateX(16px);
		left: -16px;
	}
	.ser-img {
		width: 90%;
	}

	.about-text h1,
	.box-data h2,
	.testimonial h3 {
		font-size: 1.3rem;
	}
	.footer-box iframe {
		width: 305px;
		height: 250px;
	}
}
@media (max-width: 315px) {
	.navbar {
		width: 100%;
	}
	.home-btns {
		display: grid;
		align-items: center;
		margin-top: 1.5rem;
		text-align: center;
		row-gap: 1rem;
	}
	.about-data {
		grid-template-columns: 1fr;
	}
	.about-box {
		width: 95%;
	}
	.ser-img {
		height: 310px;
	}
	.contact-info {
		display: flex;
		flex-direction: column;
	}
	.footer-box iframe {
		width: 285px;
		height: 250px;
	}
}
