
/* HERO SECTION */

.hero-video {
	position: relative;
	height: 100vh;
	height: 100dvh;
}

.hero-video video {
	width: 100%;
	height: calc(100vh + 40px);
	height: calc(100dvh + 40px);
	object-fit: cover;
	object-position: center;
}

.logo-hero {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
    padding: 0 var(--spacing-wrapper);
}

/* NEXT */

.next-section {
	position: absolute;
	bottom: 2%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.next-section a {
	width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-orange);
    text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.next-section img {
	rotate: 90deg;
}

@media (max-width: 500px) {
	.next-section {
		display: none;
	}
}