@import url('https://fonts.googleapis.com/css?family=Raleway|Roboto+Condensed');

#info {
	background: #fff;
	color: #fff;
	padding-top: .5em;
	padding-bottom: 1em;
}

#info .contenedor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#picture {
	width: 100%;
	background-color: rgb(229, 231, 234);
	
}

#picture img {
	width: 100%;
	height: auto;
	display: none;
}

.texto {
	width: 100%;
	background-color: rgb(229, 231, 234);
}

.texto .titulo_seccion {
	color: rgb(14, 10, 114);
	text-align: left;
	font-size: 1.8em;
	font-family: 'Raleway', sans-serif;
	margin-top: 0;
	margin-left: 1em;
	margin-bottom: 0;
}

.texto p {
	margin-top: 0%;
	padding: 2em;
	font-size: 16px;
	color: #333;
	text-align: justify;
}

#info .ton a {
	color: rgb(14, 10, 114);
	border-radius: 25px;
	border: 1px solid orange;
	padding: 2px 3%;
	margin: 1em;
}

#info .ton a:hover {
	border-radius: 25px;
	color: #fff;
	background-color: steelblue;
	border: 0px;
}

/* MEDIA QUERYS */

@media (min-width: 480px) {

	#info {
	background: #fff;
	color: #fff;
	padding-top: 1em;
	padding-bottom: 1em;
}

	#picture {
		width: 50%;
	}

	#picture img {
		padding-left: 0%;
		width: 100%;
		height: auto;
		border-radius: 0;
	}

	.texto .titulo_seccion {
		font-size: 2.2em;
	}

}

@media (min-width: 1024px) {

	#picture {
		width: 33%;
	}

	#picture img {
		padding-left: 0%;
		width: 380px;
		height: auto;
		display: table;
	}

	.texto {
		width: 67%;
	}

	.texto p {
		margin-top: 15px;
		padding: 0 2rem;
		padding-right: 100px;
		font-size: 22px;
		color: #333;
	}

}

