.default-hero {
	padding: 0;
	height: 80vh;
	position: relative;
	box-shadow: var(--section-box-shadow);
}

/*background*/
.default-hero__background {
	height: 100%;
	width: 100%;
}
img.default-hero__background__image,
.default-hero__background__image img {
	width: 100vw;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}

/*overlay*/
.default-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 80vh;
	width: 100%;
	content: "";
	background-color: var(--midnight-blue);
	opacity: 0.53;
}
.default-hero__gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	height: 36%;
	width: 100%;
	content: "";
	background: linear-gradient(180deg, #00132500 0%, #000000 100%);
	opacity: 0.53;
}

/*title*/
.default-hero__text {
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;

	font-size: 70px;
	line-height: 1.01;
	text-align: center;
	color: var(--white);
}

/*media queries*/

@media (max-width: 992px) {
	.default-hero__text {
		bottom: 15px;
		font-size: 40px;
		line-height: 45px;
		width: max-content;
		max-width: 95%;
	}
}
