@media (max-width: 767px) {

	.home-banner {
		height: 100%;
	}

	.home-banner::before {
		content: unset;
		bottom: 0;
		top: unset;
		width: 100%;
		height: 60%;
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.72) 100%);
	}

	.home-banner__image {
		height: 100%;
	}

	.home-banner__image * {
		display: none;
	}

	.home-banner__wrapper {
		gap: 1.5em;
		padding-bottom: 100px;
		align-items: center;
		justify-content: flex-end;
		margin-top: 55vw;
	}

	.home-banner__wrapper-title h1 {
		text-align: center;
	}

	.home-banner__wrapper-title span {
		text-align: center;
		display: block;
		font-size: 20px;
		line-height: 1.3em;
		margin-top: 15px;
	}

	.home-banner .home-banner__video {
		height: 45vh;
		bottom: 50px;
	}

	.home-banner .hero-banner__footer .footer__container {
		width: 100%;
		left: unset;
	}


}

@media (min-width: 768px) and (max-width: 1024px) {

	.home-banner::before {
		width: 70%;
	}

}

@media (min-width: 768px) {
	.home-banner__image .light.light-1 {
		animation: Light 5s infinite 3s ease-in-out,
		rotate 1500s infinite linear reverse;
	}

	.home-banner__image .light.light-2 {
		animation: Light 5s infinite ease-in-out,
		rotate 1500s infinite linear;
	}

	.home-banner__image .light.light-3 {
		animation: Light 5s infinite 1s ease-in-out,
		rotate 1000s infinite linear;
	}

	@keyframes Light {
		0%,
		100% {
			opacity: 0;
		}
		50% {
			opacity: 1;
		}
	}

	@keyframes rotate {
		0% {
			transform: rotate(0deg);
		}
		100% {
			transform: rotate(360deg);
		}
	}
}