#bg-main{
	display: flex;
	flex-direction: column;
	justify-content: center;
    width: calc(100% - 160px);
    padding: 20px 80px;
	height: 100vh;
	background: URL("../imgs/bg6_compressed.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}

.slogan{
	position: relative;
	float: left;
	width: 100%;
	font-size: 28pt;
	color: var(--branco);
}

.slogan2{
	position: relative;
	float: left;
	width: 100%;
	font-size: 18pt;
	color: var(--idsecundario);
}

#about-main{
	gap: 1em;
}

.about-text{
	position: relative;
	float: left;
	width: calc(50% - 20px);
	text-indent: 30px;
	text-align: justify;
	font-size: 12pt;
	padding: 10px;
}

.about-img{
	position: relative;
	float: left;
	width: calc(50% - 40px);
	height: 213.75px;
	box-shadow: 0px 0px 8px var(--cinza);
	padding: 10px;
	margin: 10px;
}

.about-img:nth-child(even){
	background: url("../imgs/bg2_compressed.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}

.about-img:nth-child(odd){
	background: url("../imgs/bg_compressed.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}


@media (max-width: 999px) {

	.about-img{
		width: calc(100% - 60px);
		height: 320px;
		margin: 0px;
		margin-top: 20px;
	}

	#about-img2{
		top: 0px;
	}

	.about-text{
		width: calc(100% - 60px);
		margin: 0px;
		margin-top: 20px;
	}

}