.grid-help-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	width: 80vw;
	padding-bottom: 10vh;
}

.icon-box-light {
	color: #abcbff;
}

.help-point-container {
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	width: 25vw;
	margin-top: 5vh;
	justify-self: center;
	gap: 20px;
}

.smaller-icon {
	gap: 32px;
}

/* .help-point { */
/* font-size: 18px; */
/* max-width: 350px; */
/* } */

@media screen and (max-width: 1100px) {
	.help-point-container {
		width: 90%;
	}
}

@media screen and (max-width: 950px) {
	.grid-help-container {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr 1fr;
	}
	.help-point-container {
		margin-top: 3vh;
	}
}

/* ####################################### */

.question-grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	width: 80vw;
	place-content: space-between;
}

.help-question-box {
	display: flex;
	justify-content: start;
	align-items: start;
	flex-direction: column;
	color: var(--emphasis-color);
	border-radius: 20px;
	margin-bottom: 5vh;
	max-width: 90%;
}

.help-question-box:nth-child(2) {
	transition-delay: 150ms;
}

.help-question-box:nth-child(3) {
	transition-delay: 300ms;
}

.help-question-box:nth-child(4) {
	transition-delay: 450ms;
}

.help-question {
	text-align: start;
	font-weight: bold;
	/* font-size: 2vh; */
}

.help-question-response {
	text-align: start;
	margin-top: 20px;
}

@media screen and (max-width: 1100px) {
	.question-grid-container {
		display: flex;
		flex-direction: column;
	}
}
