#texto-info-2{
	width: 100%;
	padding: 0px 5% 50px 0px;
	box-sizing: border-box;
	display: flex;
	position: relative;
	flex-direction: row-reverse;
}
#texto-info-2-img{
	width: 500px;
    height: 500px;
    display: block;
    margin: 50px auto 0px auto;
    overflow: hidden;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    box-sizing: border-box;
}
#texto-info-2-cont{
	width: calc(100% - 500px);
	padding:0px 5% 0px 5%;
	box-sizing: border-box;
}
#texto-info-2-titulo{
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	font-family: 'Titulo',helvetica,verdana,sans-serif;
	color: rgba(104,161,36,1);
	font-size: 26px; 
	padding: 30px 20px;
	position: relative;
	margin:20px auto 0px auto;
	font-weight: 600;
	letter-spacing: var(--espaciado-titulos);
}
#texto-info-2-contenido{
	width: 100%;
	box-sizing: border-box;
	text-align: justify;
	margin:20px auto 0px auto;
	font-family: 'Principal',helvetica,verdana,sans-serif;
	color: rgba(80,80,80,1);
	font-size: 17px;
	line-height: 1.6em;
	font-weight: 600;
}
#texto-info-2-contenido a{
    background-color: rgba(104,161,36,1);
    color: rgba(255,255,255,1);
    box-sizing: border-box;
    font-family: 'Titulo',helvetica,verdana,sans-serif;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    z-index: 5;
    width: 150px;
    margin:40px auto 0px auto;
    text-align: center;
    padding: 10px;
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    letter-spacing: var(--espaciado-titulos);
}
#texto-info-2-contenido a:hover{
	background-color: rgba(104,161,36,.8);
}
@media (max-width: 900px){
	#texto-info-2{
		flex-direction: row;
		flex-wrap: wrap;
		padding-top: 50px;
		padding:50px 0px 0px 0px;
	}
	#texto-info-2-img{
		margin:0px auto;
	}
	#texto-info-2-cont{
		width: 90%;
		margin:0px auto 20px auto;
		padding:0;
		display: block;
	}
	#texto-info-2-contenido{
		text-align: justify;
	}
	#texto-info-2-titulo{
		width: 100%;
		left: initial;
		background-color: rgba(0,0,0,0);
	}
}
@media (max-width: 480px){
	#texto-info-2{
		padding:25px 5%;
	}
	#texto-info-2-img{
		width: 300px;
		height:300px;
	}
	#texto-info-2-cont{
		width: 100%;
	}
	#texto-info-2-contenido{
		font-size: 15px;
	}
}