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


body{
	background: #06baba; 
	font-family: 'Open sans';
}

.wrap{
	width: 1000px;
	max-width: 98%;
	margin: 30px auto;
}

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

ul.tabs li{
	width: 18%;
}

ul.tabs li a{
	color: rgb(233, 221, 221);
	text-decoration: none;
	font-size: 16px;
	text-align: center;

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

.active{
	background: rgb(27, 104, 129);
}

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

.secciones{
	width: 100%;
	background: rgba(198, 212, 218, 0.904);
}

.secciones article{
	padding: 30px;
}

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


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

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

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

	.secciones article{
		padding: 10px;
	}
	
}
.boton_personalizado{
	text-decoration: none;
	padding: 100px;
	font-weight: 800;
	font-size: 30px;
	color: #5f11c5;
	background-color: #050236;
	border-radius: px;
	border: 2px solid #5f6e6e;
}

