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

.descriptiontext {
	font-family: 'Playpen Sans';
	line-height: 1.6;
}

img {
	width: 100%;
	display: flex;
}

a {
	text-decoration: none;
}

body {
	font-family: 'Yatra One', sans-serif;
	color: #F0EDEE;
	/* background: linear-gradient(180deg, #223440 0%, #07393C 100%); */
	background: url('../img/shadergradient.gif');
	background-size: cover;
	background-repeat: no-repeat;
}

.center {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

li {
	font-size: larger;
}

/*
* Nav Bar
*/


nav {
	max-width: 1200px;
	margin: auto;
	padding: 2rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.nav-logo {
	max-width: 100px;
}

.nav-links {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 3rem;
}

.link a {
	position: relative;
	padding-bottom: 0.75rem;
	color: #fff;
}

.link a::after {
	content: "";
	position: absolute;
	height: 2px;
	width: 0;
	bottom: 0;
	left: 0;
	background-color: #1d4ed8;
	transition: all 0.3s ease;
}

.link a:hover::after {
	width: 70%;
}

/*
* Button
*/

.btn {
	padding: 1rem 2rem;
	font-size: 1rem;
	color: #fff;
	font-family: 'Playpen Sans', sans-serif;
	background-color: #1d4ed8;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn:hover {
	background-color: #0091ff;
	color: #000000;
}

/*
* Container
*/

.container {
	max-width: 1200px;
	margin: auto;
	padding: 5rem 2rem;
}

.blur {
	position: relative;
	top: -2rem;
	left: 3rem;
	box-shadow: 0 0 1000px 50px #1d4ed8;
	z-index: -100;
}

/*
* Header
*/

header {
	position: relative;
	padding-top: 2rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 2rem;
}

header .content h4 {
	margin-bottom: 1rem;
	color: #ccc;
	font-size: 1rem;
	font-weight: 600;
}

header .content h1 {
	color: #fff;
	margin-bottom: 1rem;
	font-size: 3rem;
	font-weight: 700;
	line-height: 4rem;
}

header .content h1 span {
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px #fff;
}

header .content p {
	margin-bottom: 2rem;
	color: #ccc;
}

header .image {
	position: relative;
}

header .image::before {
	content: "o";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 38rem;
	font-weight: 400;
	line-height: 20rem;
	color: #1d4ed8;
	opacity: 0.2;
	z-index: -100;
}

header .image img {
	max-width: 600px;
	margin: auto;
}

/*
* Section
*/

section .header {
	margin-bottom: 1rem;
	color: #fff;
	text-align: center;
	font-size: 2.25rem;
	font-weight: 600;
}

/*
* Projects
*/

.projects {
	margin-top: 4rem;
	display: grid;
	gap: 2rem;
}

.card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem;
	border: 1px solid transparent;
	border-radius: 15px;
	transition: all 0.3s ease;
}

#elevator-simulator {
	background-color: #323232;
}

#elevator-simulator img {
    margin-bottom: 15px;
}

.card:hover {
	background-color: #323232;
	border-color: #fff;
}

.card h4 {
	text-align: center;
	margin-bottom: 0.5rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 600;
}

.card p {
	text-align: center;
	color: #ccc;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.card-open-for-work {
	background: url('../img/sand_background_1.png');
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem;
	border: 1px solid transparent;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.card-open-for-work:hover {
	background-color: #323232;
	border-color: #fff;
}

.card-open-for-work span {
	display: inline-block;
	background-color: #1e40af;
	padding: 2px 9px;
	margin-bottom: 1rem;
	font-size: 1.75rem;
	color: #fff;
	border-radius: 5px;
}

.card-open-for-work h4 {
	text-align: center;
	margin-bottom: 0.5rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 600;
}

.card-open-for-work p {
	text-align: center;
	color: #ccc;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.card-open-for-work a {
	text-align: center;
	color: #fff;
	transition: all 0.3s ease;
}

.card-open-for-work a:hover {
	color: #1e40af;
}

/*
* Sub Header Description
*/

.sub-header {
	max-width: 600px;
	margin: auto;
	text-align: center;
	color: #ccc;
}

/*
* Footer
*/

footer {
	position: relative;
	display: grid;
	grid-template-columns: 400px repeat(3, 1fr);
	gap: 2rem;
}

footer .column .logo {
	max-width: 100px;
	margin-bottom: 2rem;
}

footer .column p {
	color: #ccc;
	margin-bottom: 2rem;
}

footer .column .socials {
	display: flex;
	align-items: center;
	gap: 1rem;
}

footer .column .socials a {
	color: #ccc;
	border: 1px solid #ccc;
	padding: 5px 10px;
	font-size: 1.25rem;
	border-radius: 100%;
	transition: all 0.3s ease;
}

footer .column .socials a:hover {
	color: #fff;
	background-color: #1d4ed8;
	border-color: #1d4ed8;
}

footer .column h4 {
	color: #fff;
	margin-bottom: 2rem;
	font-size: 1.2rem;
	font-weight: 500;
}

footer .column>a {
	display: block;
	color: #ccc;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

footer .column>a:hover {
	color: #1d4ed8;
}

/*
* Copyright
*/

.copyright {
	max-width: 1200px;
	margin: auto;
	padding: 1rem;
	color: #fff;
	font-size: 0.8rem;
	text-align: center;
}

/*
* Media Responsive Design
*/

@media (width < 900px) {
	.nav-links {
		display: none;
	}

	header {
		grid-template-columns: repeat(1, 1fr);
	}

	header .image {
		grid-area: 1/1/2/2;
	}

	.features {
		grid-template-columns: repeat(2, 1fr);
	}

	.pricing {
		grid-template-columns: repeat(2, 1fr);
	}

	footer {
		grid-template-columns: 1fr 200px;
	}
}

@media (width < 600px) {
	header .image::before {
		display: none;
	}

	.features {
		grid-template-columns: repeat(1, 1fr);
	}

	.pricing {
		grid-template-columns: repeat(1, 1fr);
	}

	footer {
		grid-template-columns: 1fr 150px;
	}
}