/** @format */

.hero {
	padding-top: 300px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	height: auto;
	text-align: center;
}

.hero .hero-content {
	position: relative;
	z-index: 2;
	width: var(--width-100);
	color: var(--white-color);
}

.hero .h1 {
	font-size: 45px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--white-color);
	animation-delay: 1.5s;
}

.hero .h1 span {
	display: block;
	font-weight: 400;
}

.hero .hero-sub-title {
	margin-bottom: 14px;
	display: block;
	font-size: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--primary-color);
	animation-delay: 1s;
}

.hero .hero-description {
	line-height: 1.4;
	margin-bottom: 34px;
	font-size: 20px;
	animation-delay: 2s;
}

.hero p strong {
	display: block;
}

.hero .button {
	margin-right: -40px;
	margin-left: -40px;
	width: calc(100% + 80px);
	font-size: 15px;
	animation-delay: 2.5s;
}

.hero .button:after {
	margin-left: 20px;
}

.hero .hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--width-100);
	height: var(--height-100);
	padding-top: 55px;
}

.hero .hero-image:after {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: var(--width-100);
	height: 75%;
	background: linear-gradient(to bottom, rgba(26, 24, 24, 0) 0%, rgba(26, 24, 24, 0.1) 10%, rgba(26, 24, 24, 1) 100%);
	content: '';
}

.hero .hero-image img {
	width: var(--width-100);
	height: var(--height-100);
	object-fit: cover;
	object-position: top center;
}

@media only screen and (min-width: 768px) {
	.hero {
		padding-top: 0;
		align-items: center;
		min-height: 750px;
		text-align: left;
	}

	.hero .hero-content {
		margin-left: auto;
		width: auto;
		max-width: 640px;
/* 		margin-top: 80px; */
		margin-top: 436px;
	}

	.hero:after {
		top: 0;
		bottom: auto;
		width: 60%;
		height: var(--height-100);
		background: linear-gradient(to right, rgba(26, 24, 24, 0) 0%, rgba(26, 24, 24, 0.1) 10%, rgba(26, 24, 24, 1) 100%);
	}

	.hero p strong {
		display: inline-block;
	}

	.hero .button {
		margin-right: 0;
		margin-left: 0;
		width: auto;
	}
}

@media only screen and (min-width: 992px) {
	.hero .h1 {
		font-size: 73px;
	}

	.hero .hero-sub-title {
		font-size: 25px;
	}

	.hero p {
		font-size: 23px;
	}
}

@media screen and (min-width: 1025px) {
	.hero .hero-image {
		padding-top: 0;
	}
}

@media only screen and (min-width: 1281px) {
	.hero {
		height: 100vh;
	}

	.hero .hero-content {
		padding-right: 50px;
		max-width: 800px;
		margin-top: 140px;
	}

	.hero .h1 {
		font-size: 84px;
	}

	.hero .hero-sub-title {
		font-size: 32px;
		letter-spacing: 2px;
	}

	.hero p {
		font-size: 29px;
	}
}
