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

body{
	
	font-family: 'Open sans';
    font-size: 14px;
	
}
input[type="text"]{
	font-family: 'Open sans';
    font-size: 13px;
	font-weight: bold;
	
}

.wrapper{
	width: 1600px;
	max-width: 100%;
	margin: 30px auto;
}

ul.tabs{
	width: 100%;
	background: #363636;
	list-style: none;
	display: flex;
}

ul.tabs li{
	width: 18%;
}

ul.tabs li a{
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-align: center;

	display: block;
	padding: 10px 0px;
}

.active{
	background: #0984CC;
}

ul.tabs li a .tab-text{
	margin-left: 8px;
}

.secciones{
	width: 100%;
	
}

.secciones article{
	padding: 10px;
}

/*
.secciones article p{
	text-align: justify;
}
*/

@media screen and (max-width: 700px){
	ul.tabs li{
		width: none;
		flex-basis: 0;
		flex-grow: 1;
	}
}

@media screen and (max-width: 450px){
	ul.tabs li a{
		padding: 15px 0px;
	}

	ul.tabs li a .tab-text{
		display: none;
	}

	.secciones article{
		padding: 20px;
	}
}

.hidden {
	display: none;
}

.columna {
	float: left;
	width: 33%;
	padding: 5px;
 }

 .fila::after {
	content: "";
	clear: both;
	display: table;
 }

 img {
	/* Para que sea responsiva */
	max-width: 60%;
	max-height: 80%;
 }