.imagem_texto_lateral_1{
	width: 100%;
	display: block;
    padding: 100px 0;
}
.imagem_texto_lateral_1 .conteudo{
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}
.imagem_texto_lateral_1 .conteudo .img{
	width: 100%;
	text-align: center;
	display: inline-block;
	margin-bottom: 30px;
	order: 0;
}
.imagem_texto_lateral_1 .conteudo .img img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
}
.imagem_texto_lateral_1 .conteudo .texto{
	width: 100%;
	display: inline-block;
	order: 1;
}
.imagem_texto_lateral_1 .conteudo .texto .botoes{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	margin-top: 50px;
}
.imagem_texto_lateral_1 .conteudo .texto .botoes .btn{
	margin: 0;
}


@media only screen and (min-width: 768px) {

}

@media only screen and (min-width: 1024px) {
	.imagem_texto_lateral_1 .conteudo {
		justify-content: space-around;
	}
	.imagem_texto_lateral_1 .conteudo .img{
		width: 45%;
		order: 1;
		margin-bottom: 0px;
		max-width: 460px;
	}
	.imagem_texto_lateral_1 .conteudo .texto{
		width: 50%;
		order: 0;
		max-width: 560px;
	}
	.imagem_texto_lateral_1 .conteudo .texto .botoes{
		justify-content: flex-start;
		align-items: center;
		flex-direction: row;
	}
	.imagem_texto_lateral_1 .conteudo .texto .botoes .btn{
		margin: 0px 20px 0 0;
	}
	.imagem_texto_lateral_1 .conteudo .texto .botoes .btn:last-child{
		margin-right: 0px;
	}
}