.imagem_texto_lateral_2 {
	width: 100%;
	display: block;
	padding: 110px 0px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}

.imagem_texto_lateral_2 .conteudo {
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.imagem_texto_lateral_2 .conteudo .img {
	width: max-content;
	text-align: center;
	display: inline-block;
	margin-bottom: 30px;
	order: 0;
	position: relative;
	border-radius: 50px;
	overflow: hidden;
	max-width: 100%;
}

.imagem_texto_lateral_2 .conteudo .img a {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.imagem_texto_lateral_2 .conteudo .img a i {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 2px solid var(--color-destaque);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	transition: var(--transition-time);
	color: var(--color-destaque);
}

.imagem_texto_lateral_2 .conteudo .img a:hover>i {
	transform: scale(1.1);
}

.imagem_texto_lateral_2 .conteudo .img img {
	display: block;
	margin: 0 auto;
	width: auto;
	max-width: 100%;

}

.imagem_texto_lateral_2 .conteudo .texto {
	width: 100%;
	display: block;
}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 1024px) {

	.imagem_texto_lateral_2 .conteudo {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
	}

	.imagem_texto_lateral_2 .conteudo .img {
		width: max-content;
		max-width: 50%;
		margin-left: 3%;
		order: 1;
	}

	.imagem_texto_lateral_2 .conteudo .texto {
		width: 47%;
		order: 0;
	}
}