@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Poppins&display=swap&family=Lexend:wght@100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
}

body,
html {
	height: 100%;
	background-color: #F8F9FA;
}

body {
	color: #343a40;
}


.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px;
	position: relative;
	background-color: transparent;
	box-shadow: 0 4px 30px rgba(88, 88, 88, 0.1);
	-webkit-backdrop-filter: blur(4.8px);
	backdrop-filter: blur(4.8px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
}

.logo img {
	width: 100px;
	margin-left: 100px;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
	margin-right: 100px;
}

.nav-links li a {
	color: #343a40;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.nav-links li a:hover {
	background: rgba(254, 254, 254, 0.176);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	-webkit-backdrop-filter: blur(4.8px);
	backdrop-filter: blur(4.8px);
	border-bottom: 4px solid #5ba3f7;
}

.sel {
	border-bottom: 4px solid #5ba3f7;
}

.sel:hover {
	border-bottom: none;
}

.menu-icon {
	display: none;
	flex-direction: column;
	gap: 5px;
}

.menu-icon span {
	width: 25px;
	height: 3px;
}

/*---------------header-----------------*/

.header {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.in-image {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 20px;
	padding-bottom: 50px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	color: #343a40;
}

.in-image h1 {
	font-size: 75px;
	font-family: lexend;
}

.in-image .min {
	font-weight: 300;
}

.in-image .veryMin {
	font-size: 25px;
}

.in-image .bold {
	font-weight: 500;
}


.details {
	margin-top: 20px;
	font-size: 40px;
	font-family: lexend;
	text-align: center;
}

.under-blu {
	margin-top: 50px;
	font-size: 20px;
	color: #fff;
	max-width: 500px;
	font-family: Josefin Sans;
}

.header-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 100px;
}

.header-card a,
.header-card span {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #343a40;
	background-color: #59c3f5;
	padding: 40px;
	margin: 10px;
	text-align: center;
	font-family: "Lexend";
	font-size: 20px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	height: 100px;
	width: 200px;
}

.header-card span {
	background-color: #f8cb7095;
	color: #343a4075;
	cursor: default;
}

.header-card a:hover {
	background-color: #59c3f5;
	transition: 0.5s;
}

.header-card h2 {
	font-weight: 500;
	margin-bottom: 30px;
}


/*----------------footer---------------- */

.footer {
	left: 0px;
	bottom: 0px;
	right: 0px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(4.8px);
	-webkit-backdrop-filter: blur(4.8px);
	padding: 20px 100px;
	margin: 15px 0px 0px 0px;
	z-index: 999;
	overflow: hidden;

}

.footer img {
	margin-top: 15px;
	float: left;
	width: 200px;
}

.footer-txt {
	float: right;
	text-align: end;
}

.footer-txt p {
	font-family: lexend;
	margin-bottom: 5px;
}

.footer-txt a {
	text-decoration: none;
	background: linear-gradient(90deg, #ffb600, #ff7900, #ff4800);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-block;
}


.btn-white {
	padding: 12px 20px;
	background-color: #fefefe;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 20px;
}

.btn-white:hover {
	background-color: #59c3f5;
	transition: 0.5s;
}

@media (max-width: 768px) {

	.navbar {
		padding: 20px;
	}

	.menu-icon {
		display: flex;
		color: #f8f9fa;
	}

	.logo {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	.logo img {
		width: 110px;
		margin-left: 0;
	}

	.nav-links {
		display: none;
	}

	/*---------HEADER---------*/

	.header {
		flex-direction: column;
		background-size: auto;
	}

	.in-image {
		margin-top: 30px;
	}

	.in-image h1 {
		font-size: 60px;
		text-align: center;
	}

	.header-card {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	/*---------FOOTER---------*/

	.footer {
		flex-direction: column;
		align-items: center;
	}

	.footer img {
		margin-top: 15px;
		margin-bottom: 12px;
		float: none;
	}

	.footer-txt {
		float: none;
		text-align: center;
	}


}