* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", sans-serif;
	background-color: #1f2024;
}

#nav {
	display: flex;
	justify-content: center;
	flex-direction: row;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 2rem;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(10px);
	background-color: transparent;
	box-shadow: 0 4px 20px -6px #222327;
}

#nav-items {
	display: flex;
	flex-direction: row;
	gap: 5rem;
	list-style-type: none;
}

#nav-items a {
	color: white;
	transition: all 0.2s ease-in-out;
	font-weight: 500;
	text-decoration: none;
}

#nav-items a:hover {
	color: #efba00;
	cursor: pointer;
}

.current a {
	color: #efba00 !important;
}

.current a:hover {
	color: white !important;
}

.about-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-left: 2rem;
	padding-right: 2rem;
}

.about {
	margin-top: 9rem;
	min-height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
}

.about-header {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 3rem;
	max-width: 30rem;
	width: 100%;
}

.about h1 {
	font-size: 2rem;
	color: white;
}

#icon {
	color: #efba00;
	margin-right: 1rem;
}

.line {
	border-width: 0;
	height: 2px;
	border-width: 0;
	background-color: white;
	opacity: 8%;
}

.about-wrap {
	gap: 5rem;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.about-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: 34em;
	border-radius: 1.5rem;
	border: 2px solid rgb(255, 255, 255, 0.1);
	padding: 0.3rem;
}
.about-text {
	display: flex;
	flex-direction: column;
	color: white;
	max-width: 40rem;
}

.about-text p {
	font-size: 1rem;
	line-height: 2.5rem;
	opacity: 70%;
}

.purpose {
	margin-bottom: 2rem;
}

.purpose h2 {
	margin-bottom: 0.7rem;
}

.mission h2 {
	margin-bottom: 0.7rem;
}

.vision {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: white;
	text-align: center;
	max-width: 55rem;
}

.vision h3 {
	font-size: 1.6rem;
}

#vision-icon {
	margin-right: 1rem;
}

.vision p {
	margin-top: 1.3rem;
	font-size: 1rem;
	line-height: 2.5rem;
	opacity: 70%;
}

#arrow_down {
	position: absolute;
	bottom: 57%;
	color: #efba00;
	font-size: 1.5rem;
	animation-name: arrow_down;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

@keyframes arrow_down {
	from {
		transform: translate(0, 0px);
	}
	65% {
		transform: translate(0, 10px);
	}
	to {
		transform: translate(0, -0px);
	}
}

#arrow_down:hover {
	cursor: pointer;
}

.services {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	color: white;
}

.services-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.services h2 {
	font-size: 1.6rem;
}

.services p {
	margin-top: 1.3rem;
	font-size: 1rem;
	line-height: 2rem;
	opacity: 70%;
}

.service-box {
	display: flex;
	justify-content: center;
}

.service-box ul {
	max-width: 70rem;
	margin-top: 3rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	list-style-type: none;
	gap: 2rem;
	flex-wrap: wrap;
}

.service-box li {
	max-width: 20rem;
	border: 1px solid rgb(255, 255, 255, 0.2);
	border-radius: 0.3rem;
	padding: 2rem;
}

.service-box li:hover {
	border: 1px solid rgb(255, 255, 255, 0.5);
	cursor: pointer;
}

.service-box h3 {
	margin-top: 1rem;
	font-size: 1.4rem;
}

#service-icon {
	color: #efba00;
	font-size: 2rem;
}

footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1.5rem;
	background-color: #28292e;
	color: white;
}

footer p {
	opacity: 70%;
}

.foot-links {
	display: flex;
	flex-direction: row;
	gap: 0.7rem;
}

.f-link a {
	color: #bcbdbe;
	font-size: 1.2rem;
	margin-right: 2rem;
	transition: all 0.2s ease-in-out;
}

.f-link a:hover {
	cursor: pointer;
	color: #efba00;
	transition: all 0.2s ease-in-out;
}

#mobile_menu {
	display: none;
}

@media only screen and (max-width: 1300px) {
	#arrow_down {
		display: none;
	}
}

@media only screen and (max-width: 1100px) {
	.line {
		display: none;
	}

	.about-wrap {
		flex-direction: column;
		gap: 2rem;
	}
	.about {
		margin-top: 3rem;
		gap: 3rem;
		flex-direction: column;
		text-align: center;
		height: auto;
	}
	.svg {
		display: none;
	}
	.services {
		height: auto;
		margin-top: 10rem;
		margin-bottom: 10rem;
	}
	.service-box ul {
		margin-bottom: 2rem;
	}
}

@media only screen and (max-width: 1000px) {
	.about {
		padding-top: 2rem;
	}
	.about-content {
		padding-top: 0rem;
	}
	#nav {
		display: none;
	}
	#mobile_menu {
		display: block;
	}
}
@media only screen and (max-width: 600px) {
	footer {
		text-align: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1rem;
	}
}
