.hero{
	width: 100%;
	height: 100dvh;
	min-height: 600px;
	background-color: black;
	background-position: 50% 50%;
	position: relative;
	overflow: hidden;
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 0, 0, 0) -100%,
		rgba(0, 0, 0, 1) 100%
	);
}
.main_hero{
	background-image: url("../images/frontPage/hero.webp");
}
.web-development_hero{
	background-image: url("../images/web-development/hero.webp");
}
.hero_content{
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	padding: 20px;
	color: #fff;
	font-family: "Nunito Sans", sans-serif;
	display: flex;
	flex-direction: column;
}
.call_to_action{
	width: 100%;
	height: 60%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}
.call_to_action h1{
	margin: 0;
	text-align: center;
	font-weight: 800;
	font-size: 2.2rem;
	margin-bottom: 2rem;
}
.call_to_action h2{
	margin: 0;
	text-align: center;
	font-weight: 300;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}
.call_to_action a{
	color: #fff;
	text-decoration: none;
	width: 100%;
	height: 50px;
	min-height: 50px;
	max-width: 400px;
	background: var(--blue);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1rem;
	transition: transform 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
	.call_to_action a:hover {
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
		transform: translateY(-4px);
	}
}
.hero_clients{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 2rem;
}
.hero_clients img{
	--size: 100px;
	width: var(--size);
	height: var(--size);
	object-fit: contain;
}
@media (min-height: 768px) {
	.call_to_action h1{
		margin-bottom: 2rem;
		font-size: 2.5rem;
	}
	.call_to_action h2{
		font-size: 1.4rem;
		margin-bottom: 2rem;
	}
	.hero_clients{
		flex-grow: 1;
		padding: 0;
	}
	.hero_clients img{
	--size: 120px;
	}
}
@media (min-width: 768px) {
	.call_to_action{
		width: 70%;
		max-width: 700px;
		margin-left: 15%;
		align-items: flex-start;
		height: 60%;
	}
	.call_to_action h1{
		margin-bottom: 2.2rem;
		font-size: 2.5rem;
		text-align: start;
	}
	.call_to_action h2{
		font-size: 1.4rem;
		margin-bottom: 2rem;
		text-align: start;
	}
	.hero_clients{
		flex-grow: 1;
		gap: 60px;
	}

}
@media (min-width: 1000px) {
	.call_to_action h1{
		font-size: 3rem;
	}
}

@media (min-width: 1400px) {
	.call_to_action a{
		font-size: 1.1em;
	}
	.call_to_action h1{
		font-size: 4rem;
	}
}