@import url('./index.css');
@import url('./header.css');
@import url('./footer.css');

.hero {
 	min-height: 100vh;
 	display: flex;
 	flex-direction: column;
}

.hero__content {
 	flex: 1;
}


.logo {
 	display: block;
 	width: 100%;
 	height: 200px;
 	object-fit: cover;
}

.cont {
 	position: relative;
}

.overlay {
 	text-transform: uppercase;
 	position: absolute;
 	top: 50%;
 	right: 0;
 	left: 0;
 	text-align: center;
 	font-weight: bold;
 	font-family: var(--Quicksand);
 	font-size: 1.5em;
	color: var(--blanco);
}

.content__figures {
	margin: 40px 0;
}

.figure__row {
	display: flex;
	justify-content: space-evenly;
	margin-bottom: 24px;
}

.figure__row:last-child {
	margin-bottom: 0;
}

.figure__anchor {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 600px;
	height: 200px;
}

.figure__anchor:hover .figure__text {
	border: 1px solid var(--gris);
	color: var(--gris);
}

.figure__image {
	width: inherit;
	height: inherit;
	object-fit: cover;
}

.figure__text {
	position: absolute;
	color: var(--blanco);
	font-family: var(--Quicksand);
	font-size: 22px;
	border: 1px solid var(--blanco);
	padding: 68px 25%;
}