.hero{
	width: 100%;
	height: 100dvh;
	min-height: 800px;
	background-color: black;
	background-image: url("../images/frontPage/hero.webp");
	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%
  );
}
.hero_content{
	width: 100%;
	height: 100dvh;
	min-height: 800px;
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	padding: 20px;
		margin-top: 40px;
	color: #fff;
	font-family: "Nunito Sans", sans-serif;
	display: flex;
	flex-direction: column;
}
.call_to_action{
	width: 100%;
	height: 50%;
	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: 1rem;
}
.call_to_action h3{
	margin: 0;
	text-align: center;
	font-weight: 300;
	font-size: 1.4rem;
	margin-bottom: 4rem;
}
.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: 1.1rem;
}
.hero_clients{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 60px;
}
.hero_clients img{
	--size: 120px;
	width: var(--size);
	height: var(--size);
	object-fit: contain;
}
@media (min-width: 768px) {
	.call_to_action{
		width: 50%;
		max-width: 700px;
		margin-left: 15%;
		align-items: flex-start;
		height: 60%;
	}
	.call_to_action h1{
		margin-bottom: 2rem;
		font-size: 2.5rem;
		text-align: start;
	}
	.call_to_action h3{
		margin-bottom: 2rem;
		text-align: start;
	}
	.hero_clients{
		flex-grow: 1;
		gap: 60px;
	}

}
@media (min-width: 1000px) {
	.call_to_action h1{
		font-size: 4rem;
	}
}