* {
	padding: 0;
	margin: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	background: #101010;
	overflow-x: hidden;
}

/*============ Google fonts ============*/
@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,3001,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*======= CSS variables =======*/
:root {
	--white-color: #fff;
	--dark-color: #222;
	--body-bg-color: #fff;
	--section-bg-color: #202834;
	--navigation-item-hover-color: #3b5378;

	--text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	--box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
}

/*======= Main CSS =======*/

section {
	position: relative;
}

.section {
	color: var(--white-color);
	background: var(--section-bg-color);
	padding: 35px 200px;
	transition: 0.3s ease;
}

/*======= Home =======*/
.home {
	min-height: 100vh;
}

.home:before {
	z-index: 888;
	content: "";
	position: absolute;
	width: 100%;
	height: 50px;
	bottom: 0;
	left: 0;
	background: linear-gradient(transparent, var(--section-bg-color));
}

/*======= Background slider =======*/
.bg-slider {
	z-index: 777;
	position: relative;
	width: 100%;
	min-height: 100vh;
}

.bg-slider .swiper-slide {
	position: relative;
	width: 100%;
	height: 100vh;
}

.bg-slider .swiper-slide img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	background-position: center;
	background-size: cover;
	pointer-events: none;
}

.swiper-slide .text-content {
	position: absolute;
	top: 15%;
	color: var(--white-color);
	margin: 0 100px;
	transition: 0.3s ease;
}

.swiper-slide .text-content .title {
	font-size: 35px;
	font-weight: 700;
	text-shadow: var(--text-shadow);
	margin-bottom: 10px;
	transform: translateY(-50px);
	opacity: 0;
}

.swiper-slide-active .text-content .title {
	transform: translateY(0);
	opacity: 1;
	transition: 1s ease;
	transition-delay: 0.3s;
	transition-property: transform, opacity;
}

.swiper-slide .text-content p {
	max-width: 700px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	text-shadow: var(--text-shadow);
	border-radius: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--box-shadow);
	transform: translateX(-80px);
	opacity: 0;
}

.swiper-slide-active .text-content p {
	transform: translateX(0);
	opacity: 1;
	transition: 1s ease;
	transition-delay: 0.3s;
	transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn {
	border: none;
	outline: none;
	background: var(--white-color);
	color: var(--dark-color);
	font-size: 1em;
	font-weight: 500;
	padding: 8px 25px;
	display: flex;
	align-items: center;
	margin-top: 20px;
	border-radius: 10px;
	cursor: pointer;
	transform: translateX(50px);
	opacity: 0;
}

.swiper-slide-active .text-content .read-btn {
	transform: translateX(0);
	opacity: 1;
	transition: 1s ease;
	transition-delay: 0.3s;
	transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn i {
	font-size: 1.6em;
	transition: 0.3s ease;
}

.swiper-slide .text-content .read-btn:hover i {
	transform: translateX(5px);
}

.dark-layer:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.1);
}

.bg-slider-thumbs {
	z-index: 777;
	position: absolute;
	bottom: 7em;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.3s ease;
}

.thumbs-container {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 10px 3px;
	border-radius: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--box-shadow);
}

.thumbs-container img {
	width: 50px;
	height: 35px;
	margin: 0 5px;
	border-radius: 5px;
	cursor: pointer;
}

.swiper-slide-thumb-active {
	border: 1px solid var(--white-color);
}

.p1,
.p2,
.p3 {
	padding: 10px;
}

.p2,
.p3 {
	display: none;
}

/*======= Media queries (max-width: 1100px) =======*/
@media screen and (max-width: 1100px) {
	header .nav-bar {
		padding: 0 50px;
	}

	.section {
		padding: 25px 50px;
	}

	.media-icons {
		right: 0;
		margin-right: 50px;
	}

	.swiper-slide .text-content {
		top: 12%;
		margin: 0 120px 0 50px;
	}

	.bg-slider-thumbs {
		bottom: 3em;
	}
}

/*======= Media queries (max-width: 785px) =======*/
@media screen and (max-width: 785px) {
	header .nav-bar {
		padding: 25px 20px;
	}

	.section {
		padding: 25px 20px;
	}

	.media-icons {
		margin-right: 20px;
	}

	.media-icons a {
		font-size: 1.5em;
	}

	.swiper-slide .text-content {
		margin: 0 70px 0 20px;
	}

	.swiper-slide .text-content p {
		font-size: 0.9em;
	}
}

/*======= Media queries (max-height: 550px) =======*/
@media screen and (max-width: 550px) {
	.p2 {
		display: block;
	}

	.p1,
	.p3 {
		display: none;
	}
}

/*======= Media queries (max-height: 380px) =======*/
@media screen and (max-height: 408px) {
	.p3 {
		display: block;
	}

	.p1,
	.p2 {
		display: none;
	}

	.bg-slider-thumbs {
		bottom: 1em;
	}

	.swiper-slide .text-content {
		top: 15;
	}
}

main {
	height: 100vh;
	width: 100vw;
	position: relative;
	top: 0;
	left: 0;
}

.navbar {
	top: 0;
	left: 0;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 48.5px;
	padding: 0 24px 0 0;
	z-index: 99999999;
	background: transparent;
	transition: all 0.5s;
}
.navbar.active {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 48.5px;
	padding: 0 24px 0 0;
	z-index: 999;
	background: #101010;
	transition: all 0.5s;
}

.navbar-logo img {
	width: auto;
	height: 48.5px;
	cursor: pointer;
	padding: 0 0 0 10px;
	z-index: 9999999999999;
}

.navbar-menu {
	float: right;
	height: 48.5px;
	margin: 0;
	display: flex;
	align-items: center;
}

.navbar-item {
	display: inline-block;
	padding: 0 30px;
	height: 23px;
}

.navbar-links {
	color: #fff;
	font-size: 1.18rem;
	transition: 0.3s ease;
}
.navbar-links:hover {
	background: #fff;
	color: #101010;
	padding: 3px 8px;
	border-radius: 9px;
	text-decoration: none;
}

.hamburger {
	display: none;
	cursor: pointer;
	z-index: 9999999999999;
}

.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	background-color: #fff;
}

@media screen and (max-width: 950px) {
	.hamburger {
		display: block;
	}

	.hamburger.active .bar:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.hamburger.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.navbar-menu {
		display: flex;
		position: fixed;
		left: -100%;
		top: 0;
		gap: 50px;
		flex-direction: column;
		background: rgba(0, 0, 0, 0.8);
		backdrop-filter: blur(10px);
		width: 40%;
		text-align: center;
		transition: 0.3s;
		height: 100%;
		padding-top: 40.5px;
	}

	.navbar-item {
		margin: 16px 0;
	}

	.navbar-menu.active {
		left: 0;
		z-index: 99999;
	}
}

@media screen and (max-width: 570px) {
	.navbar-menu {
		width: 100%;
	}
}

@media screen and (max-height: 450px) {
	.navbar-menu {
		gap: 0;
	}
}

/* navbar section end  */

/* photo section */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400&display=swap");

.gallery a {
	color: #000;
	text-decoration: none;
	padding: 5px;
}

.gallery {
	height: 39px;
}

.slide h3 a {
	color: #000;
	text-decoration: none;
	padding: 5px;
	margin-bottom: 20px;
}

.gallery .gallery-text a:hover {
	text-transform: uppercase;
}

.slide h3 a:hover {
	text-transform: uppercase;
	color: #fff;
	background: #000;
	border-radius: 7px;
}

#slider {
	width: 100vw;
	height: 550px;
	background: #eee;
}

#container {
	width: 100vw !important;
	margin: 0;
	padding: 0 0 0 20px;
}

.my-slider {
	width: 100vw;
}

.slide-img {
	width: 251.5px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.5s;
}

.slide-img img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}

@media screen and (max-width: 840px) {
	.slide-img img {
		width: 251.5px;
		height: 407.69px;
	}

	#slider {
		height: 620px;
	}

	.slider-wrapper {
		padding-left: 20px;
	}
}

@media screen and (max-width: 705px) {
	.slide-img img {
		width: 251.5px;
		height: 407.69px;
	}

	#slider {
		height: auto;
	}
	.slider-wrapper {
		padding: auto;
	}
}

@media screen and (max-width: 561px) {
	.slide-img img {
		width: 163.5px;
		height: 265px;
		margin-right: 20px;
	}

	.slider-wrapper {
		padding: 0px;
	}
}

@media screen and (max-width: 450px) {
	.slide-img img {
		width: 251.5px;
		height: 407.69px;
	}
}

/* appointment section */

@import url("https://fonts.googleapis.com/css2?family=Akaya+Telivigala&display=swap");

.main_bg {
	width: 100%;
	height: min-content;
	padding: 15px 10px;
}

/* .page-region {
	background: #101010;
} */
/* 
.tidycal {
	width: 60%;
	background: #101010 !important ;
	color: #fff !important ;
} */

.black {
	width: 100%;
	height: 45px;
	background: #101010;
	z-index: 12;
	bottom: 0;
	position: absolute;
}

.calendly {
	position: relative;
	max-width: 649px;
	background: #101010 !important ;
	color: #fff !important ;
}

.lmtWIHO_gkbTeeyuvoJC.mOUYF5ZmuNL6I7t0mSFg {
	background-color: #101010;
}

.book {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: 100%;
	border: 0.2px solid #fff;
}

.container-time {
	width: 35%;
	height: 100%;
	justify-content: center;
	text-align: center;
	align-items: center;
}

h4 {
	color: white;
	font-size: 25px;
}

.main_bg .container-time hr {
	width: 300px;
	margin: auto;
}

.heading-information {
	color: white;
}
.heading {
	width: 100%;
	font-size: 35px;
	text-transform: uppercase;
	color: white;
}

.heading-days {
	color: white;
	font-size: 25px;
}

.special-heading-day {
	color: white;
	font-size: 25px;
	text-transform: underline bold;
}

.heading-information {
	font-size: 20px;
}

.container-time p {
	color: #0069ff;
	font-size: 25px;
}

.container-text-span {
	color: #0069ff;
}

@media screen and (max-width: 800px) {
	.book {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.container-time {
		width: 100%;
	}

	.calendly {
		max-width: 649px;
		width: 100%;
	}

	/* .tidycal {
		width: 90%;
		background: #101010 !important ;
		color: #fff !important ;
	} */
}

@media screen and (max-width: 400px) {
	.main_bg .container-time hr {
		width: 250px;
	}
}

@media screen and (max-width: 500px) {
	.book {
		padding: 5px;
	}
}

/* more-info section */

.contact-body {
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		#161b1d 0%,
		#161b1d 37%,
		#0b0d0e 0%,
		#0b0d0e 100%
	);
	display: grid;
	/* grid-template-columns: 2fr 1fr; */
	align-items: center;
}

.more-info {
	position: relative;
	width: 100%;
	padding: 15px 10px 25px 10px;
}

.contact-title {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1em;
}

.contact-title h2 {
	color: #fff;
	font-weight: 300;
}

@media screen and (max-width: 615px) {
	.contact-title h2 {
		font-size: 20px;
	}
}

@media screen and (max-width: 410px) {
	.contact-title h2 {
		font-size: 16px;
	}
}

@media screen and (max-width: 360px) {
	.contact-title h2 {
		font-size: 12px;
	}
}

.map {
	grid-area: map;
}

.info {
	grid-area: info;
}

.form1 {
	justify-content: center;
	align-items: center;
	grid-area: form1;
}

.contact {
	background: #333;
	box-shadow: 0 5px 35px rgb(0, 0, 0, 0.15);
	border-radius: 15px;
}

/* .contact-box {
	position: relative;
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 5fr 4fr;
	grid-template-areas: "map form1" "map info";
	grid-gap: 5px;
	margin-top: 20px;
} */

.contact-box {
	position: relative;
	display: flex;
	margin-top: 20px;
	justify-content: space-around;
}

.contact h3 {
	text-align: center;
	color: #fff;
	padding-top: 7px;
}

/* map box */

.map {
	padding: 0;
	width: 50%;
	height: 400px;
}

.map iframe {
	width: 100%;
	height: 100%;
	border-radius: 15px;
}

/* form box */

.formBox {
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}

.formBox .row50,
.formBox .row100,
.formBox .row200 {
	justify-content: center;
	align-items: center;
	display: flex;
	gap: 20px;
}

.inputBox {
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 90%;
}

.inputBox input {
	width: 100%;
	height: 40px;
	padding-left: 5px;
	font-size: 0.96rem;
	margin-top: 10px;
	border-radius: 5px;
	outline: none;
	border: 1px solid #333;
}

.inputBox textarea {
	width: 100%;
	height: 130px;
	padding: 10px 30px 15px 5px;
	margin-top: 10px;
	border-radius: 5px;
	font-size: 1.1rem;
	outline: none;
	border: 1px solid #333;
	min-height: 170px;
	resize: none;
}

.inputBox1 {
	flex-direction: column;
	margin-bottom: 5px;
}

.inputBox1 button {
	width: 100px;
	background: rgb(195, 65, 9);
	color: #fff;
	padding: 10px;
	font-size: 1.1rem;
	outline: none;
	border: 1px solid #333;
	border-radius: 50px;
	font-weight: 500;
	cursor: pointer;
}

.inputBox ::placeholder {
	color: #999;
}

/* info box */

.info {
	padding: 15px;
	width: 40%;
	height: 400px;
}

.info h3 {
	color: #fff;
}

.info .infoBox div {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.info .infoBox div span {
	min-width: 40px;
	height: 40px;
	color: #fff;
	background: #18b7ff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	border-radius: 50%;
	margin-right: 15px;
}

.info .infoBox div p {
	color: #fff;
	font-size: 1.1em;
}

.info .infoBox div a {
	color: #fff;
	text-decoration: none;
	font-size: 1.1em;
}

.icon span img {
	width: 30px;
}

.sci {
	margin: 20px 0 10px 0;
	display: flex;
}

.sci li {
	list-style: none;
	margin-right: 15px;
}

.sci li a img {
	color: #fff;
	font-size: 2em;
	color: #ccc;
}

.sci li a img:hover {
	color: #fff;
}

.sci li a img {
	width: 40px;
}

@media screen and (max-width: 800px) {
	.contact-box {
		flex-direction: column;
		align-items: center;
	}

	.map,
	.info {
		width: 87%;
		height: 300px;
	}

	.info {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 450px) {
	.map,
	.info {
		width: 93%;
		height: 350px;
	}
}

@media screen and (max-width: 600px) {
	.contact-body {
		background: #0b0d0e;
	}
	.more-info {
		padding: 20px;
	}
	/* .contact-box {
		position: relative;
		display: flex;
		flex-direction: column;
	} */
	/* .map {
		display: none;
	} */
	.contact-title {
		font-size: 1em;
	}
}

@media screen and (max-width: 502px) {
	.contact-title {
		font-size: 0.7em;
	}
}

@media screen and (max-width: 362px) {
	.contact-title {
		font-size: 7px;
		font-weight: 100000;
	}
}

/* footer section  */

footer {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	bottom: 0;
	background: #0039e6;
}

.footer-logo {
	position: absolute;
	left: 0;
}

.footer-containt {
	display: flex;
	height: 50px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.footer-containt h3 {
	font-size: 20px;
	margin: 0 0 3px 0;
}

.footer-containt hr {
	width: 105%;
	color: #fff;
	margin: 0;
}

@media screen and (max-width: 500px) {
	.footer-logo {
		display: none;
	}
}

@media screen and (max-width: 400px) {
	footer {
		height: 45px;
	}

	.footer-containt {
		height: 45px;
	}

	.footer-containt h3 {
		font-size: 15.5px;
	}

	.made {
		font-size: 14px;
	}
}

@media screen and (max-width: 330px) {
	footer {
		height: 40px;
	}
	.footer-containt h3 {
		font-size: 13px;
	}

	.made {
		font-size: 12px;
	}
}
