.imagem_texto_lateral_1 {
	width: 100%;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	overflow: visible;
	padding: 50px 0 ;
}

.imagem_texto_lateral_1.dark {
	background-attachment: fixed;
}

.imagem_texto_lateral_1 .container {
	position: relative;
}

.imagem_texto_lateral_1 .conteudo {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	
	position: relative;
	z-index: 2;
}

.imagem_texto_lateral_1 .conteudo .img {
	width: 100%;
	text-align: center;
	display: inline-block;
	margin-bottom: 30px;
}

.imagem_texto_lateral_1 .conteudo .img img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

.imagem_texto_lateral_1 .conteudo .texto {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	gap: 40px;
	padding: 60px 0;
}

.imagem_texto_lateral_1 .conteudo .texto .titulo_principal {
	width: 100%;
	display: block;
	margin: 0;
}

.imagem_texto_lateral_1 .conteudo .texto .titulo_principal small {
	background: linear-gradient(90deg, #0b83c9 0%, #14b7d7 100%);
}

.imagem_texto_lateral_1 .conteudo .texto .descricao_principal {
	width: 100%;
	display: block;
}

.imagem_texto_lateral_1 .conteudo .texto .botoes {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 30px;
}

.imagem_texto_lateral_1.dark .conteudo .texto .titulo_principal,
.imagem_texto_lateral_1.dark .conteudo .texto .descricao_principal {
	color: var(--color-white);
}

/* CARD BRANCO DOS ÍCONES */
.imagem_texto_lateral_1 .icons {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	flex-direction: column;
	background: #fff;
	border-radius: 12px;
	padding: 35px 40px;
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
	gap: 25px;
}

.imagem_texto_lateral_1 .icons .icon_item {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 22px;
	padding: 28px;
	border-bottom: 1px solid #e5e8ee;
}

.imagem_texto_lateral_1 .icons .icon_item:last-child{
    border-bottom: 0px solid #e5e8ee;
}



.imagem_texto_lateral_1 .icons .icon_item .icone {
	width: 70px;
	min-width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.imagem_texto_lateral_1 .icons .icon_item .icone img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.imagem_texto_lateral_1 .icons .icon_item .info {
	width: 100%;
	display: block;
}

.imagem_texto_lateral_1 .icons .icon_item .info h3 {
	width: 100%;
	display: block;
	margin: 0 0 8px;
	color: #071d3a;
	font-size: 18px;
	line-height: 1.2;
	font-family: var(--font-family-bold);
	font-weight: 800;
	text-transform: uppercase;
}

.imagem_texto_lateral_1 .icons .icon_item .info .descricao_icon {
	width: 100%;
	display: block;
	color: #26384f;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 400;
}

.imagem_texto_lateral_1 .icons .icon_item .info .descricao_icon p {
	margin: 0;
}

@media only screen and (min-width: 768px) {
    .imagem_texto_lateral_1 .icons {
    	flex-direction: row;
    	gap: 30px;
    }
    
    .imagem_texto_lateral_1 .icons .icon_item {
    	width: calc(50% - 15px);
    	border-bottom: 0px;
    }
    
    .imagem_texto_lateral_1 .icons .icon_item:nth-child(2n+1){
        border-right: 1px solid #e5e8ee;
    }
    
    
	.imagem_texto_lateral_1 .conteudo .texto .botoes {
		justify-content: flex-start;
		align-items: center;
		flex-direction: row;
	}
}

@media only screen and (min-width: 1024px) {
	.imagem_texto_lateral_1 .conteudo {
		padding-top: 0;
	}

	.imagem_texto_lateral_1 .conteudo .img {
		width: 45%;
		margin-bottom: 0;
	}

	.imagem_texto_lateral_1 .conteudo .texto {
		width: 50%;
		padding: 120px 0 150px 0;
	}

	.imagem_texto_lateral_1 .conteudo .texto .botoes {
		justify-content: flex-start;
		align-items: center;
		flex-direction: row;
	}
	
	.imagem_texto_lateral_1 .icons .icon_item{
	    width: calc(25% - 23px);
	    border-right: 1px solid #e5e8ee;
	    flex-direction: column;
	    text-align: center;
	}
	.imagem_texto_lateral_1 .icons .icon_item:nth-child(4n+4){
        border-right: 0px solid #e5e8ee;
    }
}



@media only screen and (min-width: 1440px){
   .imagem_texto_lateral_1 .icons {
        position: absolute;
	    top: 94%;
        left: 0;
        margin: 0 25px;
        max-width: calc(100% - 50px);
    }
 .imagem_texto_lateral_1 .icons .icon_item{
	    flex-direction: row;
	    text-align: left;
	}   
}