.section {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
}

.section:not(.active) {
	transform: translateY(100vh);
}

.section:nth-child(2) {
	background-color: var(--main-color);
}


.section.bck-img-2 {
	background: url('../img/aguerri-home.jpg');
	background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 100%;
}


.section.bck-img-2::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}
