.banner {
	position: relative;
	width: 100%;
	/* height: calc(100vh - 160px); */
	height: 100vh;
	background-color: #F5F5F5;
	background-size: cover;
	background-position: center;
	transition: all .1s ease-out;
	background-image: url('../images/foto01.jpg');
	animation: banner 28s infinite linear;
	margin-top: -180px;
}


.banner-content {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	color: #FFF;
	/* background-color: rgba(0, 22, 40, .6); */
	background: #70634065;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.banner-content .textos {
	width: 90%;
	margin: auto;
}

.banner-content h1 {
	margin: 0;
	padding: 0 10px;
	text-align: center;
	font-family: var(--font-titulos);
	font-size: 22pt;
	line-height: 1.2;
	text-shadow: 3px 3px 3px var(--color3);
}

.banner-content h2 {
	font-size: 18pt;
	font-family: var(--font-destacados);
	line-height: 140%;
	margin-top: 25px;
	text-align: center;
	padding: 0 20px;
	text-shadow: 3px 3px 3px var(--color3);
}

.banner-content a {
	text-decoration: none;
	color: #FFF;
	padding: 9px 20px;
	border: 1px solid #FFF;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}

.banner-content a:hover {
	background-color: #fff;
	color: #333;
}

@keyframes banner {
	0% {
		background-image: url('../images/foto01.jpg');
	}

	19% {
		background-image: url('../images/foto01.jpg');
	}

	20% {
		background-image: url('../images/foto02.jpg');
	}

	39% {
		background-image: url('../images/foto02.jpg');
	}

	40% {
		background-image: url('../images/foto03.jpg');
	}

	59% {
		background-image: url('../images/foto03.jpg');
	}

	60% {
		background-image: url('../images/foto04.jpg');
	}

	79% {
		background-image: url('../images/foto04.jpg');
	}

	80% {
		background-image: url('../images/foto05.jpg');
	}

	99% {
		background-image: url('../images/foto05.jpg');
	}
	100% {
		background-image: url('../images/foto01.jpg');
	}

}

/* DESDE */

@media (min-width: 768px) {
	.banner {
		background-image: url('../images/foto01.jpg');
		background-position: center;
	}
		.banner-content .textos {
			width: 50%;
			margin: auto;
		}

	.banner-content h1 {
		font-size: 40pt;
	}

	.banner-content h2 {
		font-size: 24pt;
	}

}