* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {



	background: #F2F5FE url("../img/fondo.gif") 0 0 repeat-x;
	background-attachment:fixed;   /* poner un color o imagen de fondo fija */

	font-family: 'Roboto Condensed', sans-serif;


}

img {
	width: 100%;
	height: 70%;
	object-fit: cover;
}
.imgmision{
	width: 100%;
	height: 100%;
	object-fit: cover;

}
#imgmision{
	width: 100%;
	height: 100%;
}

a {
	text-decoration: none;
}

.contenedor {

	width: 80%;
	max-width: 1200px;
	margin: 20px auto;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(5, auto);
	grid-template-areas:
		'header			    header   	     header'
        'p                  p                p 	'/*---------- INSERTO AREA GRID  ----------*/
		'container-card  container-card  container-card'/*---------- INSERTO AREA GRID  ----------*/
        'container-card2  container-card2  container-card2'/*---------- INSERTO AREA GRID  ----------*/
		'footer	 		footer 		footer';
}

/* ---------- HEADER ----------*/
.header {

	grid-area: header;
	background: white;




	position: fixed; /* Fijar el contenido d ela cabecera */
	top: 0;  /* Fijar el contenido d ela cabecera */
	left:0;
	right:0;
	z-index:100;   /* superponer un obejeto encma de otro..ejemplo la cabecera sobre el contenido d ela pagina */

	width: 80%;

	max-width: 1200px;
	margin: 0px auto;  /*margen 0 superior */
}




h4{
	margin-top: 2%;
	font-size: 10px; 
	line-height: 10px; 
	font-weight:100;

	color: #868b8d;
	text-align: justify;
}

.banner img{
			
			
	margin-top: 5px;
				width:100%;
		height: auto;
				  
					}

					#btn-menu{
						display: none;
						}
					label{
					
							display: none;
						}
				

.menu {
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	display: flex;
	justify-content: space-between;
	background: linear-gradient(to bottom, #FF7171 0, #7A00F4 100%);


}

.menu a {
	padding: 5px;
	color: white;
	display: block;
	text-decoration: none;
border-bottom: 2px solid white;
	font-weight: 400;
	width: 100%;
	text-align: center;
	transition: 0.2s ease all;
	font-size: 16px;

}

.menu a:hover {
	background: linear-gradient(to bottom, #3773D7 0, #b2acca 50%) no-repeat !important;	
	color: #fff;
}

.menu .active{ /* es para tener activo o saver en que paginas estamos*/
	color: #FFF;
	background:blue ;


	
}
/*---------- INICIA  ESTILOS DE PARRAFO DE CONTACTO  ----------*/

.p{


	margin-top: 22%;
	background: #fff;
	color: #7a7a7a;
	grid-area: p;
	padding: 25px; 
justify-content: center;/*---------- text al centror ----------*/

    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
	box-shadow: 0px 0px 70px rgba(102, 102, 102, 0.2);
	font-weight: 300;

}

/*---------- FINALIZA INICIA  ESTILOS DE PARRAFO DE contacto  ----------*/

 /*Cards contacto*/
 .container-card{
	grid-area: container-card ;
	width: 100%;

	display: flex;
	max-width: 1920px; /*---------- cambia el tamano de la resolucio ----------*/

margin-top: 2%;
}
.title-cards{
	width: 100%;
	max-width: 1080px;
	margin: auto;
	padding: 20px;
	margin-top: 20px;
	text-align: center;
	color: #7a7a7a;
}
.card{
	width: 200%;

	margin: 20px;
	border-radius: 6px;
	overflow: hidden;
	background:#fff;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
	transition: all 400ms ease-out;
	cursor: default;
}
.card:hover{
	box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
	transform: translateY(-3%);
}
.card img{
	width: 100%;

}
.card .contenido-card{
	padding: 10px;
	text-align: center;
}


.card .contenido-card a:hover{
	background: #2fb4cc;
	color: #fff;
}
@media only screen and (min-width:320px) and (max-width:768px){
	.container-card{
		flex-wrap: wrap;
	}
	.card{
		margin: 15px;
	}
}
/*Fin-Cards DE CONTACTO*/
/*==================@mediaquery========================*/
   /* escritorio*/
/*=========================================================================================*/
/*---------- FINALIZA INICIA  ESTILOS DE PARRAFO DE SERVICIOS EN LINEA  ----------*/

 /*Cards DE CONTACTO2*/
 .container-card2{
	grid-area: container-card2 ;
	width: 100%;

	display: flex;
	max-width: 1920px; /*---------- cambia el tamano de la resolucio ----------*/
	max-height: 1080px;/*---------- cambia el tamano de la resolucio ----------*/
margin-top: 2%;
}
.title-cards{
	width: 100%;
	max-width: 1080px;
	margin: auto;
	padding: 20px;
	margin-top: 20px;
	text-align: center;
	color: #7a7a7a;
}
.card{
	width: 200%;

	margin: 20px;
	border-radius: 6px;
	overflow: hidden;
	background:#fff;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
	transition: all 400ms ease-out;
	cursor: default;
}
.card:hover{
	box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
	transform: translateY(-3%);
}
.card img{
	width: 100%;

}
.card .contenido-card2{
	padding: 10px;
	text-align: center;
}


.card .contenido-card2 a:hover{
	background: #2fb4cc;
	color: #fff;
}
@media only screen and (min-width:320px) and (max-width:768px){
	.container-card2{
		flex-wrap: wrap;
	}
	.card{
		margin: 15px;
	}
}
/*Fin-Cards DE CONTACTO2*/
/*==================@mediaquery========================*/
   /* escritorio*/
/*=========================================================================================*/
   /*---------- FOOTER ----------*/
.contenedor .footer  {
	margin-top: -1%;
	background: #fff;
	font-size: 20px; 
	grid-area: footer;
	padding: 25px; 
	text-align: center;/*---------- text al centror ----------*/
	box-shadow: 0px 0px 70px rgba(102, 102, 102, 0.2);
	font-weight: bold;
}

   @media (max-width:1200px){
	body{
		font-size: 14px;
	}
	
	   }
	
	
	/* escritorio*/
	
	   @media (max-width:1000px){
		.articulo.destacado{
			grid-template-columns: 1fr;
		}
		.articulo.destacado .contenedor-thumbnail{
			height: 600px;
		}
		label{
			display: block;
			margin-left: 2px;/*posicionamiento */
			background: rgb(142, 182, 219);
			width: 99%;/*la anchura del label*/
		padding: 2px 1px;/*padding tamano label */
		}

		label .icon-list{
			background: whitesmoke;
			padding: 1px;
			color: black;
		}
	
		.contenedor {

			width: 80%;
			max-width: 1200px;
			margin: 20px auto;
			display: grid;
			grid-gap: 10px;
			grid-template-columns: repeat(3, 1fr);
			grid-template-rows: repeat(5, auto);
			grid-template-areas:
			'header			    header   	     header'
			'p                  p                p 	'/*---------- INSERTO AREA GRID  ----------*/
			'container-card  container-card  container-card'/*---------- INSERTO AREA GRID  ----------*/
			'container-card2  container-card2  container-card2'/*---------- INSERTO AREA GRID  ----------*/
			'footer	 		footer 		footer';
		}
		


		.menu{

			opacity: 50;
				position: absolute;
			border: solid 3px solid red;
				margin: 0;
				padding: 0px;
				background: linear-gradient(to bottom, #FF7171 0, #7A00F4 100%);
			  margin-left: -300%;
			width: 100%;
				padding: 5px;
				color: #000;
				display: block;
				text-decoration: none;
				font-weight: 400;
			border-bottom: 2px solid black;
				text-align: center;
				transition: 0.2s ease all;
				font-size: 16px;
				font-weight: bold;
				
			}
			
			.menu ul {
			
				background: linear-gradient(to bottom, #FF7171 0, #7A00F4 100%);
				flex-direction: column;
				padding: 10px;
				margin-left: 7px;
			}
			
			
			
			
			 #btn-menu:checked ~  .menu  {
				 margin:0;
			
			}
		
		
	   }

	
	/* tables*/
	
	@media (max-width:768px){
	
		.articulo.destacado{
			grid-template-columns: 1fr;
		}
		.articulo.destacado .contenedor-thumbnail{
			height: 600px;
		}
		label{
			display: block;
			margin-left: 2px;/*posicionamiento */
			background: rgb(142, 182, 219);
			width: 99%;/*la anchura del label*/
		padding: 2px 1px;/*padding tamano label */
		}

		label .icon-list{
			background: whitesmoke;
			padding: 1px;
			color: black;
		}

.menu{

opacity: 50;
	position: absolute;
border: solid 3px solid red;
	margin: 0;
	padding: 0px;
	background: white;
  margin-left: -300%;
width: 100%;
	padding: 5px;
	color: #000;
	display: block;
	text-decoration: none;
	background: linear-gradient(to bottom, #FF7171 0, #7A00F4 100%);
	font-weight: 400;
border-bottom: 2px solid black;
	text-align: center;
	transition: 0.2s ease all;
	font-size: 16px;
	font-weight: bold;
	
}

.menu ul {

	flex-direction: column;
	padding: 10px;
	margin-left: 7px;
}




 #btn-menu:checked ~  .menu  {
	 margin:0;

}
	}
	
	/* celular*/
	
	@media (max-width:500px){

	
	
		body{
			
			font-size: 12px;
		margin-left:0;
		}
		.articulo.destacado{
			grid-template-columns: 1fr;
		}
		.articulo.destacado .contenedor-thumbnail{
			height: 30em;
			width: 85%;
		}
		label{
			display: block;
			margin-left: 2px;/*posicionamiento */
			background: rgb(142, 182, 219);
			width: 99%;/*la anchura del label*/
		padding: 2px 1px;/*padding tamano label */
		}

		label .icon-list{
			background: whitesmoke;
			padding: 1px;
			color: black;
		}

.menu{

opacity: 50;
	position: absolute;

	margin: 0;
	padding: 0px;

	background: linear-gradient(to bottom, #FF7171 0, #7A00F4 100%);
  margin-left: -300%;
width: 100%;
	padding: 5px;
	color: #000;
	display: block;
	text-decoration: none;

	font-weight: 400;

	text-align: center;
	transition: 0.2s ease all;
	font-size: 16px;
	font-weight: bold;
	
}

.menu ul {
border: 5px solid blue;
	flex-direction: column;
	padding: 10px;
	margin-left: 7px;
}




 #btn-menu:checked ~  .menu  {
	 margin:0;

}
#imgpersonal{
	margin-top: 3px;
	width: 105%;
	margin-left: 14px;
	height: 58%;

    object-fit: cover;
}

.articulo .extracto {
    font-size: 15px;
    line-height: 15px;
    font-weight: 100;
	margin-bottom: 10px;
	margin-right: 5%;
    color: #868b8d;
    text-align: justify;
}
.articulo .extractop {
    font-size: 14px;
    line-height: 14px;
    font-weight: 100;
	margin-bottom: 5px;
	
    color: #868b8d;
    text-align: justify;
}

.articulo .titulo {
    margin-bottom: 5px;
    font-size: 25px;
}
.contenedor .footer  {
	margin-top: -5%;
	background: #fff;
	font-size: 20px; 
	grid-area: footer;
	padding: 25px; 
	text-align: center;/*---------- text al centror ----------*/
	box-shadow: 0px 0px 70px rgba(102, 102, 102, 0.2);
	font-weight: bold;
}
/* final lo responsivo menu*/

	}


	/*==========*/
	@media (max-width:400px){

		.articulo .contenedor-texto {
			background: white;
			padding: 10px;
			width: 86.5%; /*cambio */
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			
		}
	
	
		body{
			font-size: 12px;
		margin-left: -2px;
		}
		.articulo.destacado{
			grid-template-columns: 1fr;
		}
		.articulo.destacado .contenedor-thumbnail{
			height: 30em;
			width: 85%;
		}
		label{
			display: block;
			margin-left: 2px;/*posicionamiento */
			background: rgb(142, 182, 219);
			width: 99%;/*la anchura del label*/
		padding: 2px 1px;/*padding tamano label */
		}

		label .icon-list{
			background: whitesmoke;
			padding: 1px;
			color: black;
		}

.menu{

opacity: 50;
	position: absolute;

	margin: 0;
	padding: 0px;

	background: linear-gradient(to bottom, #FF7171 0, #7A00F4 100%);
  margin-left: -300%;
width: 100%;
	padding: 5px;
	color: #000;
	display: block;
	text-decoration: none;

	font-weight: 400;

	text-align: center;
	transition: 0.2s ease all;
	font-size: 16px;
	font-weight: bold;
	
}

.menu ul {
border: 5px solid blue;
	flex-direction: column;
	padding: 10px;
	margin-left: 7px;
}




 #btn-menu:checked ~  .menu  {
	 margin:0;

}
#imgpersonal{
	margin-top: 3px;
	width: 98%;
	margin-left: 20px;
	height: 40%;

    object-fit: cover;
}

.articulo .extracto {
    font-size: 15px;
    line-height: 15px;
    font-weight: 100;
	margin-bottom: 10px;
	margin-right: 1%;
    color: #868b8d;
	text-align: justify;
	width: 115%;
}
.articulo .extractop {
    font-size: 14px;
    line-height: 14px;
    font-weight: 100;
	margin-bottom: 5px;
width: 135%;
    color: #868b8d;
    text-align: justify;
}

.articulo .titulo {
    margin-bottom: 5px;
    font-size: 15px;
}
.contenedor .footer  {
	margin-top: -5%;
	background: #fff;
	font-size: 15px; 
	grid-area: footer;
	padding: 25px; 
	text-align: center;/*---------- text al centror ----------*/
	box-shadow: 0px 0px 70px rgba(102, 102, 102, 0.2);
	font-weight: bold;
}
/* final lo responsivo menu*/

	}

	@media (max-width:380px){

		.articulo .contenedor-texto {
			background: white;
			padding: 10px;
			width: 86.5%; /*cambio */
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			
		}
	
	
		body{
			font-size: 12px;
		margin-left: 2px;
		}
		.articulo.destacado{
			grid-template-columns: 1fr;
		}
		.articulo.destacado .contenedor-thumbnail{
			height: 30em;
			width: 85%;
		}
		label{
			display: block;
			margin-left: 2px;/*posicionamiento */
			background: rgb(142, 182, 219);
			width: 99%;/*la anchura del label*/
		padding: 2px 1px;/*padding tamano label */
		}

		label .icon-list{
			background: whitesmoke;
			padding: 1px;
			color: black;
		}

.menu{

opacity: 50;
	position: absolute;

	margin: 0;
	padding: 0px;

	background: linear-gradient(to bottom, #FF7171 0, #7A00F4 100%);
  margin-left: -300%;
width: 100%;
	padding: 5px;
	color: #000;
	display: block;
	text-decoration: none;

	font-weight: 400;

	text-align: center;
	transition: 0.2s ease all;
	font-size: 16px;
	font-weight: bold;
	
}

.menu ul {
border: 5px solid blue;
	flex-direction: column;
	padding: 10px;
	margin-left: 7px;
}




 #btn-menu:checked ~  .menu  {
	 margin:0;

}
#imgpersonal{
	margin-top: 3px;
	width: 98%;
	margin-left: 20px;
	height: 40%;

    object-fit: cover;
}

.articulo .extracto {
    font-size: 15px;
    line-height: 15px;
    font-weight: 100;
	margin-bottom: 10px;
	margin-right: 1%;
    color: #868b8d;
	text-align: justify;
	width: 115%;
}
.articulo .extractop {
    font-size: 14px;
    line-height: 14px;
    font-weight: 100;
	margin-bottom: 5px;
width: 135%;
    color: #868b8d;
    text-align: justify;
}

.articulo .titulo {
    margin-bottom: 5px;
    font-size: 15px;
}
.contenedor .footer  {
	margin-top: -5%;
	background: #fff;
	font-size: 15px; 
	grid-area: footer;
	padding: 25px; 
	text-align: center;/*---------- text al centror ----------*/
	box-shadow: 0px 0px 70px rgba(102, 102, 102, 0.2);
	font-weight: bold;
}
/* final lo responsivo menu*/

	}

	@media (max-width:360px){

		.articulo .contenedor-texto {
			background: white;
			padding: 10px;
			width: 86.5%; /*cambio */
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			
		}
	
	
		body{
			font-size: 12px;
		margin-left: 2px;
		}
		.articulo.destacado{
			grid-template-columns: 1fr;
		}
		.articulo.destacado .contenedor-thumbnail{
			height: 30em;
			width: 85%;
		}
		label{
			display: block;
			margin-left: 2px;/*posicionamiento */
			background: rgb(142, 182, 219);
			width: 99%;/*la anchura del label*/
		padding: 2px 1px;/*padding tamano label */
		}

		label .icon-list{
			background: whitesmoke;
			padding: 1px;
			color: black;
		}

.menu{

opacity: 50;
	position: absolute;

	margin: 0;
	padding: 0px;

	background: linear-gradient(to bottom, #FF7171 0, #7A00F4 100%);
  margin-left: -300%;
width: 100%;
	padding: 5px;
	color: #000;
	display: block;
	text-decoration: none;

	font-weight: 400;

	text-align: center;
	transition: 0.2s ease all;
	font-size: 16px;
	font-weight: bold;
	
}

.menu ul {
border: 5px solid blue;
	flex-direction: column;
	padding: 10px;
	margin-left: 7px;
}




 #btn-menu:checked ~  .menu  {
	 margin:0;

}
#imgpersonal{
	margin-top: 3px;
	width: 98%;
	margin-left: 20px;
	height: 40%;

    object-fit: cover;
}

.articulo .extracto {
    font-size: 15px;
    line-height: 15px;
    font-weight: 100;
	margin-bottom: 10px;
	margin-right: 1%;
    color: #868b8d;
	text-align: justify;
	width: 115%;
}
.articulo .extractop {
    font-size: 14px;
    line-height: 14px;
    font-weight: 100;
	margin-bottom: 5px;
width: 135%;
    color: #868b8d;
    text-align: justify;
}

.articulo .titulo {
    margin-bottom: 5px;
    font-size: 15px;
}
.contenedor .footer  {
	margin-top: -5%;
	background: #fff;
	font-size: 15px; 
	grid-area: footer;
	padding: 25px; 
	text-align: center;/*---------- text al centror ----------*/
	box-shadow: 0px 0px 70px rgba(102, 102, 102, 0.2);
	font-weight: bold;
}
/* final lo responsivo menu*/

	}