/*CONTENIDO WEB*/
.contenido {
	position:relative;
	float:left;
	margin:50px 0 50px 0;
	padding:0 0 50px 0;
	width:100%;
	z-index:96;
	overflow:hidden;	
	display: flex;
	justify-content: center;
	align-items: center;
}
.contenido section {
	width:500px;
}
.contenido section img {
	width:400px;
	position:fixed;
	bottom:50px;
}
.contenido section h1 {
	font-size:35px;
}
.contenido section h1 span {
	font-size:30px;
	margin-left:5px;
}
.contenido section p {
	width:100%;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:20px;
	line-height:150%;
	text-align:justify;
}
.contenido section p a {
	text-decoration:none;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#000;
	opacity:0.8;
}
.contenido section p a:hover {
	text-decoration: underline;
}
@media screen and (max-width:1000px ) {
	.contenido section {
		width:400px;
	}
	.contenido section img {
		width:300px;
	}
	.contenido section p {
		width:100%;
	}
}
@media screen and (max-width:800px ) {
	.contenido section {
		width:50%;
	}
	.contenido section img {
		width:250px;
	}
	.contenido section p {
		width:calc(100% - 20px);
		margin:0 10px;
	}
}
@media screen and (max-width:500px ) {
	.contenido section {
		width:100%;
	}
	.contenido section img {
		display:none;
	}
	.contenido section p {
		width:calc(100vw - 20px);
		margin:0 10px 30px 10px;
	}
}