


.wrap{
	width: 100%;
	margin: 0px auto;
}

ul.tabs{
	width: 100%;
	background: #858585;
	list-style: none;
    border: none;
	margin: 0;
	padding: 0;
	
}

ul.tabs li{
	border-bottom-color: none;
	width: 100%;
	
}

ul.tabs li a{
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-align: center;
	display: block;
	padding: 30px 0px;
}
ul.tabs li a:hover{
	transition: all .4s ease;
	transform:scale(1.05);
}

.activetabs{
	background: #ffaa00;
	width: 100%;
}

ul.tabs li a .tab-text{
	margin-left: 8px;
}

.secciones{
	width: 100%;
	background: #fff;
}

.secciones article{
	padding: 30px;
}

.secciones article p{
	text-align: justify;
}

@media screen and (max-width: 450px){
	ul.tabs li a{
		padding: 15px 0px;
	}


	.secciones article{
		padding: 20px;
	}

}


@media screen and (max-width: 700px){
	ul.tabs li{
		width: none;
		flex-basis: 0;
		flex-grow: 1;
	}
}


@media screen and (min-width: 1024px){
	ul.tabs{
		display: flex;
	}  
}