.hero-banner {
	position: relative;
	overflow: hidden;
	color: #ffffff;
	padding-top: 150px;

	box-sizing: border-box;
	min-height: 90vh;
	display: flex;
	align-items: flex-end;
}

.hero-background-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero-banner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	gap: 40px;
	padding: 0 50px;
	box-sizing: border-box;
}

.hero-image-col {
	flex: 1;

	flex-shrink: 0;
}
.hero-athlete-img {
	max-width: 750px;
	width: 100%;
	max-height: 900px;
	height: 100%;
	display: block;
}

.hero-image-col {
	position: relative;
	display: inline-block;
}

.hero-athlete-img {
	position: relative;
	z-index: 2;
}

.hero-image-col::before {
	content: '';
	position: absolute;
	inset: 0;
	top: 400px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 1) 70%,
		transparent 70%
	);
	filter: blur(60px);
	z-index: 1;
}

.hero-content-col {
	flex: 1;
	padding-bottom: 20vh;
}

.hero-title {
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 37px;
	color: #ffffff;
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 96px;
	font-style: Regular;
	line-height: 100%;
	letter-spacing: 0%;
}

.hero-description {
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 400;
	font-size: 24px;

	margin-bottom: 33px;
	color: #ffffff;
	max-width: 600px;

	font-style: Regular;

	line-height: 100%;
	letter-spacing: 0%;
}

.hero-description br {
	display: none;
}

.hero-buttons {
	display: flex;
	gap: 30px;
}

.btn {
	padding: 18px 36px;
	text-decoration: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
	border: 2px solid transparent;
	font-family: 'Bebas Neue Cyrillic', sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 100%;
	font-style: Regular;
	white-space: nowrap;
}

.btn-solid {
	background-color: #5acafa;
	border-color: #5acafa;
	color: #000000;
}
.btn-solid:hover {
	background-color: transparent;
	border-color: #5acafa;
	color: #5acafa;
}

.btn-outline {
	border-color: #5acafa;
	color: #5acafa;
}
.btn-outline:hover {
	background-color: #5acafa;
	color: #ffffff;
}

@media (max-width: 1200px) {
	.hero-title {
		font-size: 72px;
		margin-bottom: 25px;
	}
	.hero-description {
		font-size: 20px;
	}
	.btn {
		font-size: 24px;
		padding: 14px 35px;
	}
}

@media (max-width: 992px) {
	.hero-banner {
		padding-top: 100px;
		padding-bottom: 50px;
		min-height: auto;
		align-items: center;
	}
	.hero-container {
		flex-direction: column;
		align-items: center;
		padding: 0 20px;
		text-align: center;
		gap: 0;
	}

	.hero-content-col {
		padding-bottom: 30px;
	}

	.hero-image-col {
		display: none;
	}

	.hero-title {
		font-size: 54px;
	}

	.hero-description br {
		display: block;
	}

	.hero-buttons {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 42px;
		margin-bottom: 20px;
	}
	.hero-description {
		font-size: 18px;
	}
	.btn {
		font-size: 20px;
		padding: 12px 25px;
	}
	.hero-buttons {
		flex-direction: column;
		gap: 15px;
		align-items: center;
	}

	.hero-buttons .btn {
		width: 100%;
		max-width: 300px;
		text-align: center;
		white-space: normal;
		box-sizing: border-box;
	}
}
