.banner-container {
	position: relative;
	width: 100%;
	height: 80vh;
	overflow: hidden;
	margin: 0 0 50px;
}
.banner-container > a,
.banner-image,
.banner-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.banner-container > a{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
}
.banner-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background-size: cover;
	background-position: 50%;
}

/* Градиентное затемнение снизу */
.banner-container::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
	z-index: 1;
}

/* Засветление сверху */
.banner-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 30%;
	background: linear-gradient(to bottom, rgba(255,255,255,0.99) 0%, transparent 100%);
	z-index: 1;
}
.banner-container .container{
	position: relative;
}
.content-overlay {
	position: absolute;
	bottom: 0;
	left: 15%;
	width: 70%;
	text-align: center;
	padding-bottom: 20px;
	z-index: 2;
}

.banner-text {
	color: white;
	font-size: 4rem;
	text-shadow: 0 2px 10px rgba(0,0,0,0.7);
	margin-bottom: 20px;
	position: relative;
	z-index: 3;
}
.banner-text2 {
	color: white;
	font-size: 2rem;
	text-shadow: 0 2px 10px rgba(0,0,0,0.7);
	position: relative;
	z-index: 3;
}

.arrow-container {
	animation: bounce 2s infinite;
	position: relative;
	z-index: 3;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-20px);
	}
	60% {
		transform: translateY(-10px);
	}
}

.arrow-down {
	width: 40px;
	height: 40px;
	fill: white;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

@media screen and (max-width: 770px)
{
	.content-overlay{
		width: 100%;
		left: 0;
		padding: 0 16px;
	}
	.banner-text{
		line-height: normal;
	}
}