.texto_imagem_lateral{
	width: 100%;
	display: block;
    padding: 90px 0;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}
.texto_imagem_lateral .conteudo{
	display: inline-flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
.texto_imagem_lateral .texto{
	width: 100%;
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(30px);
	padding: 30px;
	border-radius: 30px;
}
@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 1024px) {
	.texto_imagem_lateral{
		background-size: contain;
		background-position-x: 52vw;
	}
	.texto_imagem_lateral .conteudo{
		width: 50%;
	}
}