* {
	font-family: Sans-Serif;
	margin: 0;
	scroll-behavior: smooth;
}

/* -----------------------------CSS for navigation bar--------------------------------------------------------------- */
.menu-container {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	background: #2084f7;
	color: #ffffff;
	padding: 20px;
	z-index: 2;
	-webkit-user-select: none;
	user-select: none;
	box-sizing: border-box;
	/* line-height: 50px; */
}

.menu-logo {
	line-height: 0;
	margin: 0 20px;
}

.menu-logo img {
	max-height: 70px;
	max-width: 100px;
	flex-shrink: 0;
}

.menu-container a {
	text-decoration: none;
	color: #2084f7;
	transition: color 0.3s ease;
}

.menu-container a:hover {
	color: #ff0042;
}

.menu-container input {
	display: block;
	width: 35px;
	height: 25px;
	margin: 0;
	position: absolute;
	cursor: pointer;
	opacity: 0; /* hide this */
	z-index: 2; /* and place it over the hamburger */
	-webkit-touch-callout: none;
}

/* Burger menu */
.menu-container span {
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;
	background: #ffffff;
	border-radius: 3px;
	z-index: 1;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.menu-container span:first-child {
	transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
	transform-origin: 0% 100%;
}

.menu-container input:checked ~ span {
	opacity: 1;
	transform: rotate(45deg) translate(3px, -1px);
	background: #2084f7;
}

.menu-container input:checked ~ span:nth-child(4) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked ~ span:nth-child(3) {
	transform: rotate(-45deg) translate(-5px, 11px);
}

.menu ul {
	list-style: none;
}

.menu li {
	padding: 10px 0;
	font-size: 22px;
}

/* mobile styles */
@media only screen and (max-width: 761px) {
	.menu-container {
		flex-direction: column;
		align-items: flex-end;
	}

	.menu-logo {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.menu-logo img {
		max-height: 30px;
	}

	.menu {
		position: absolute;
		box-sizing: border-box;
		width: 300px;
		right: -300px;
		top: 0;
		margin: -20px;
		padding: 75px 50px 50px;
		background: #ffffff;
		-webkit-font-smoothing: antialiased;
		/* to stop flickering of text in safari */
		transform-origin: 0% 0%;
		transform: translateX(0%);
		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
	}

	.menu-container input:checked ~ .menu {
		transform: translateX(-100%);
	}
}

/* desktop styles */
@media only screen and (min-width: 762px) {
	.menu-container {
		width: 100%;
	}

	.menu-container a {
		color: #ffffff;
	}

	.menu-container input {
		display: none;
	}

	/* Burger menu */
	.menu-container span {
		display: none;
	}

	.menu {
		position: relative;
		width: 100%;
		display: flex;
		justify-content: space-between;
	}

	.menu ul {
		display: flex;
		padding: 0;
	}

	.menu li {
		padding: 0 20px;
	}
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
	padding-top: 60px;
}

/* ---------------------------------CSS for mainy body--------------------------------------------------------------- */
.page {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex-direction: column;
	padding-top: 40px;
}

.home-about {
	padding: 20px;
	/* min-height: 50vh; */
	font-size: 20px;
}

.home-about p {
	margin: 0 150px;
}

.page .text {
	position: relative;
	z-index: 1;
	font-size: 50px;
	text-transform: uppercase;
	font-weight: 800;
	color: #050505;
}
.page .text:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 5px;
	background: #ff0042;
	border-radius: 50px;
	left: 0;
	bottom: -10px;
}
.page .image {
	position: absolute;

	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	filter: brightness(15%);
}
.part {
	position: relative;
	min-height: 50vh;
	padding: 80px 0;
	width: 100%;
}
.part h1 {
	font-size: 80px;
	text-transform: uppercase;
	margin: 20px 120px;
	position: relative;
}
.part h1:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 5px;
	background: #ff0042;
	border-radius: 50px;
	left: 0;
	bottom: -10px;
}
.part p {
	font-size: 40px;
	margin: 80px 150px;
	text-align: justify;
}
.part ol li {
	font-size: 22px;
	margin: 35px 150px;
	text-align: justify;
}
.part ol li ol li {
	font-size: 20px;
	margin: 15px 120px;
}
.part:nth-child(even) {
	background: #ffffff;
	color: #000;
}
.part:nth-child(odd) {
	background: #000;
	color: #ffffff;
}
.part ol .team {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(312px, 1fr));
}
.team-member {
	position: relative;
	border-radius: 50%;
	height: 150px;
	width: 150px;
}
.member.links {
	display: flex;
	justify-content: center;
}
.member.links a {
	margin: 0 10px;
}
#contact ol {
	list-style-type: none;
	margin-right: 100px;
}

/* -----------------------------CSS for Footer-------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

footer {
	/* position: fixed; */
	background: #000;
	width: 100%;
	bottom: 0;
	left: 0;
}
footer::before {
	content: '';
	position: absolute;
	left: 0;
	top: 100px;
	height: 1px;
	width: 100%;
	background: #000;
}
footer .content {
	max-width: 1250px;
	margin: auto;
	padding: 30px 40px 40px 40px;
}
footer .content .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}
.content .top .logo-details {
	color: #fff;
	font-size: 30px;
}
.content .top .media-icons {
	display: flex;
}
.content .top .media-icons a {
	height: 40px;
	width: 40px;
	margin: 0 8px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	color: #fff;
	font-size: 17px;
	text-decoration: none;
	transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1) {
	background: #4267b2;
}
.top .media-icons a:nth-child(1):hover {
	color: #4267b2;
	background: #fff;
}
.top .media-icons a:nth-child(2) {
	background: #1da1f2;
}
.top .media-icons a:nth-child(2):hover {
	color: #1da1f2;
	background: #fff;
}
.top .media-icons a:nth-child(3) {
	background: #e1306c;
}
.top .media-icons a:nth-child(3):hover {
	color: #e1306c;
	background: #fff;
}
.top .media-icons a:nth-child(4) {
	background: #0077b5;
}
.top .media-icons a:nth-child(4):hover {
	color: #0077b5;
	background: #fff;
}
.top .media-icons a:nth-child(5) {
	background: #ff0000;
}
.top .media-icons a:nth-child(5):hover {
	color: #ff0000;
	background: #fff;
}
footer .content .link-boxes {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
footer .content .link-boxes .box {
	width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
	position: relative;
}
.link-boxes .box .link_name::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 35px;
	background: #fff;
}
.content .link-boxes .box li {
	margin: 6px 0;
	list-style: none;
}
.content .link-boxes .box li a {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.4s ease;
}
.content .link-boxes .box li a:hover {
	opacity: 1;
	text-decoration: underline;
}
.content .link-boxes .input-box {
	margin-right: 55px;
}
.link-boxes .input-box input {
	height: 40px;
	width: calc(100% + 55px);
	outline: none;
	border: 2px solid #afafb6;
	background: #140b5c;
	border-radius: 4px;
	padding: 0 15px;
	font-size: 15px;
	color: #fff;
	margin-top: 5px;
}
.link-boxes .input-box input::placeholder {
	color: #afafb6;
	font-size: 16px;
}
.link-boxes .input-box input[type='button'] {
	background: #fff;
	color: #140b5c;
	border: none;
	font-size: 18px;
	font-weight: 500;
	margin: 4px 0;
	opacity: 0.8;
	cursor: pointer;
	transition: all 0.4s ease;
}
.input-box input[type='button']:hover {
	opacity: 1;
}
footer .bottom-details {
	width: 100%;
	background: #2c303a;
}
footer .bottom-details .bottom_text {
	max-width: 1250px;
	margin: auto;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
	font-size: 14px;
	font-weight: 300;
	color: #fff;
	opacity: 0.8;
	text-decoration: none;
}
.bottom-details .bottom_text a:hover {
	opacity: 1;
	text-decoration: underline;
}
.bottom-details .bottom_text a {
	margin-right: 10px;
}
@media (max-width: 900px) {
	footer .content .link-boxes {
		flex-wrap: wrap;
	}
	footer .content .link-boxes .input-box {
		width: 40%;
		margin-top: 10px;
	}
}
@media (max-width: 700px) {
	footer {
		position: relative;
	}
	.content .top .logo-details {
		font-size: 26px;
	}
	.content .top .media-icons a {
		height: 35px;
		width: 35px;
		font-size: 14px;
		line-height: 35px;
	}
	footer .content .link-boxes .box {
		width: calc(100% / 3 - 10px);
	}
	footer .content .link-boxes .input-box {
		width: 60%;
	}
	.bottom-details .bottom_text span,
	.bottom-details .bottom_text a {
		font-size: 12px;
	}
}
@media (max-width: 520px) {
	footer::before {
		top: 145px;
	}
	footer .content .top {
		flex-direction: column;
	}
	.content .top .media-icons {
		margin-top: 16px;
	}
	footer .content .link-boxes .box {
		width: calc(100% / 2 - 10px);
	}
	footer .content .link-boxes .input-box {
		width: 100%;
	}
}
