.imagem_texto_lateral_2{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
}
.imagem_texto_lateral_2 .img{
	width: 100%;
	text-align: center;
	display: inline-block;
	margin-bottom: 30px;
	order: 0;
}
.imagem_texto_lateral_2 .img img{
	display: block;
	margin: 0 auto;
	width: auto;
	max-width: 100%;
}
.imagem_texto_lateral_2 .container{
	width: 100%;
	display: block;
}
.imagem_texto_lateral_2 .conteudo .texto{
	width: 100%;
	display: inline-block;
	order: 1;
	padding: 110px 0;
}
@media only screen and (min-width: 768px) {

}

@media only screen and (min-width: 1024px) {
	.imagem_texto_lateral_2{
		flex-direction: row;
		justify-content: flex-end;
		align-items: stretch;
	}
	.imagem_texto_lateral_2 .img{
		width: 50vw;
		margin: 0px;
		margin-left: calc(5vw - 15px);
		display: flex;
		align-items: center;
		justify-content: flex-start;
		position: relative;
		order: 1;
	}
	.imagem_texto_lateral_2 .img img{
		object-fit: cover;
		position: absolute;
		min-height: 100%;
		max-height: 100%;
		object-position: center left;
	}
	.imagem_texto_lateral_2 .container{
		width: 45vw;
		max-width: 640px;
		margin: 0;
		order: 0;
	}
}