.gods_container {
	background-color: var(--cinza-escuro);
	padding: 10vh 1vw;
	position: relative;
}

.gods_container > img {
	position: relative;
	z-index: 2;
	width: 100%;
}

.gods_container > h1 {
	color: var(--white);
	font-size: 3em;
	font-weight: 400;
	padding: 0vh 4vw;
	margin-bottom: 2em;
	position: relative;
	z-index: 2;
}

.gods_box_container {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.gods_box_item {
	width: 20%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	padding: 2em;
	background-color: var(--vermelho-vinho);
	border-radius: 0px 0px 200px 200px;
	-moz-border-radius: 0px 0px 200px 200px;
	-webkit-border-radius: 0px 0px 200px 200px;
	border: 0px solid #000000;
	position: relative;
	z-index: 2;
}

.gods_box_item > h3 {
	color: var(--mostarda);
	font-size: 1.3em;
	font-weight: 400;
	margin-top: 1em;
	margin-bottom: 1em;
}

.gods_box_item > p {
	width: 100%;
	margin-bottom: 2em;
	font-weight: 400;
	color: var(--white);
}

@media (max-width: 1000px) {
	.gods_box_container {
		display: flex;
		flex-direction: column;
		gap: 5em;
	}
	.gods_box_item {
		width: 70%;
	}
}