* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family:
		"Segoe UI",
		Arial,
		sans-serif;
	color: #163d72;
}

.header {
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 7%;
	position: absolute;
	width: 100%;
	z-index: 5;
}

.logo img {
	width: 150px;
}

nav {
	display: flex;
	gap: 25px;
	align-items: center;
}

nav a {
	text-decoration: none;
	color: #163d72;
	font-weight: 600;
	font-size: 1vw
}

nav a:hover {
	text-decoration: underline;
}

.btn,
button {
	background: #ff6428;
	color: white !important;
	border: 0;
	border-radius: 8px;
	padding: 15px 30px;
	font-size: 1vw;
	font-weight: bold;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	box-shadow: 4px 5px 10px #00000066;
}
.btn:hover {
	background: #cd5120;
}

.hero {
	height: 900px;
	background:
		linear-gradient(90deg,
			rgba(255, 255, 255, .95),
			rgba(255, 255, 255, .15)),
		url("/media/images/landing/hero.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding-left: 7%;
}

.hero-content {
	max-width: 35%;
}

.eyebrow {
	font-weight: bold;
}

h1 {
	font-size: 80px;
	line-height: .9;
	margin: 20px 0;
}

.hero p {
	font-size: 1.1vw;
}

p {
	font-size: 1vw;
}
.users {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 40px;
	font-size: .9vw;
}

.users img {
	width: 7vw;
}

.intro {
	text-align: center;
	padding: 30px 20px 10px 20px;
}

.orange {
	color: #ff6428;
	font-weight: bold;
	letter-spacing: 3px;
	font-size: 1vw;
}

h2 {
	font-size: 2vw;
}

.cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 40px 7%;
}

.card {
	min-height: 450px;
	border-radius: 20px;
	padding: 50px;
	display: flex;
	align-items: flex-end;
	color: white;
	background-size: cover;
	background-position: center;
	box-shadow: 4px 5px 10px #00000066;
}

.seeker {
	background:
		linear-gradient(90deg, #164982aa, #16488256),
		url("/media/images/landing/seeker.jpg");
				background-size: cover;
		background-position: 15% 15%;
}

.employer {
	background:
		linear-gradient(90deg, #ff6428aa, #ff652817),
		url("/media/images/landing/employer.jpg");
		background-size: cover;
		background-position: 15% 15%;
}

.card h3 {
	font-size: 2.2vw;
}

.card li {
	margin: 12px 0;
	font-size:.8vw;
}

.features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 0px 7%;
	background: #eef5fc;
	text-align: center;
}

.features div {
	padding: 25px;
}

.cta {
	/* margin-top: 50px; */
	text-align: center;
	padding: 100px 20px;
	background:
		linear-gradient(#163d72aa, #163d72aa),
		url("/media/images/landing/cta.jpg");
	background-size: cover;
	color: white;
}

footer {
	background: #102f59;
	color: white;
	display: flex;
	justify-content: space-around;
	padding: 40px;
}
.login {
		font-weight:800;
}

.header-btn{
	text-decoration: none !important;
}
/* MOBILE */
@media(max-width:768px) {
	.header {
		position: fixed;
		background-color:white;
		height: auto;
		padding: 20px;
		flex-direction: column;
		gap: 20px;
		box-shadow: 0px 5px 10px #00000066;
	}

	nav {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero {
		height: auto;
		padding: 120px 25px 80px;
		background-position: center;
	}

	.hero-content {
		max-width: 100%;
		text-align: center;
	}

	h1 {
		font-size: 55px;
	}

	.cards {
		grid-template-columns: 1fr;
		padding: 20px;
	}
	h2 {
		font-size: 3vh
	}

	p, .orange, .hero p, nav a, .btn {
		font-size: 2vh
	}

	.card li, .users {
		font-size: 1.5vh;
		text-align: left;
	}
	.card h3 {
		font-size: 2.5vh;
	}
	.card {
		height: 500px;
		padding: 30px;
	}

	.users img {
		width: 30%;
	}

	.features {
		grid-template-columns: 1fr;
	}

	footer {
		flex-direction: column;
		gap: 25px;
		text-align: center;
	}
	.logo {
		display: none;
	}
	.login {
		font-weight:800;
		color: #ff6428;
	}
}