@import url(menu.css);
@import url(banner.css);
@import url(info.css);

* {
    margin:0;
    padding:0;
	box-sizing: border-box;
	border-top-left-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 30px;
}
body{
	font-family: "Constantia", serif;
    background:#172c61;
	color: #172c61;
}
header{
    width:100%;
	height: 50px;
    background:#172c61;
	color: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
.top-menu {
	height: 4px;
}
.contenedor {
   width:98%;
   margin:auto;
}
h1 {
   float:left;
}
header .contenedor {
	display:table;
}
.fondo{
    background:#fff;
	padding:5px;
	margin:5px;
}
section{
	width:100%;
	margin-bottom:25px;
}
.titulo {
	text-align: center;
	font-size: 2rem;
	padding: 11px;
	background-color: #172c61;
	color: white;
	border-top-left-radius: 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 30px;
	margin-bottom: 5px;
	margin-left: 70px;
	margin-top: 15px;
	margin-right: 70px;
	
}
.imagen{
    margin-top:40px;
	position:relative;
	height:100%;
	width:100%;
}
.texto {
	padding:10px; 
	text-align:justify;
}

footer .contenedor {
	background-color:#FFFFFF;
	height:20px;
}
@media (min-width:1024px){
	.contenedor{
	    width:90%;
	}
	.texto{
	   padding: 20px 90px 10px 90px;
	}
}	





