*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


/*---------------------------------PANTALLA DE ESCRITORIO*/	
@media all and (min-width: 1024px), only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (min-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (min-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (min-width: 1024px), only screen and (min-resolution: 192dpi) and (min-width: 1024px), only screen and (min-resolution: 2dppx) and (min-width: 1024px) {	

body{
	background: #D4D4D4;
	font-family: 'Open sans';
}

.wrap{ /*sec entera*/
	width: 1200px;
	max-width: 90%;
	min-height: 400px;
	overflow: hidden;
	margin: 30px auto;
	padding: 0 0 40px 0;
	border:#666 1px solid;
	/* box-shadow: 2px 2px 2px #999; */
}

ul.tabs{ /*ancho de la pestaña*/
	width: 1200px; 
	background: #999;
	list-style: none;
	display: flex;
}

ul.tabs li{ /*ancho de cada pestañ*/
	width: 25%;
}

ul.tabs li a{
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-align: center;

	display: block;
	padding: 20px 0px;
}

.active{ /*pestaña seleccionada*/
	background: #333;
}

ul.tabs li a .tab-text{
	margin-left: 8px;
}

.secciones{
	width: 100%;
	min-height: 400px;
	overflow: hidden;
	background: #fff;
}

.secciones article{
	padding: 30px;
}

.secciones article p{
	text-align: justify;
}

}


/*---------------------------------PANTALLA DE MOVIL-------------*/

@media screen and (max-width: 1024px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px){


	.wrap{ /*sec entera*/
		background: #fff;
		padding: 0 0 2px 0;
	}

	ul.tabs li{
		width: none;
		flex-basis: 0;
		flex-grow: 1;
	}

	ul.tabs{ /*ancho de la pestaña*/
		max-width: 320px; 
		background: #999;
		list-style: none;
		display: flex;
	}

	/* .tab-text{ */
		/* margin-left: 8px; */
		/* background:#f00; */
	/* } */

	ul.tabs li a{
		height: 40px;
		color: #fff;
		text-decoration: none;
		font-size: 12px;
		text-align: center;
	
		display: block;
		padding: 3px 0px;
	}

	ul.tabs li{ /*ancho de cada pestaña*/
		width: 15%;
	}
}