/* 

COLORS

blue-1000: #040439
blue-600: #1A63FF
blue-300: #98B9F7
blue-100: #DAE7FF
slate: #4F4F6D
red: #E31E24 

 */

.section {
	display: flex;
	flex-direction: column;
	gap: 20px;

	padding-top: 40px;
	padding-bottom: 40px;
}

.section .header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 8px;
	text-align: center;
}

.section .header .title {
	color: var(--blue-1000);
}

.section .header .description {
	font-size: 16px;
	color: var(--red);
}

@media (min-width: 768px) {
	.section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.section .header .title {
		font-size: 32px;
	}

	.section .header .description {
		font-size: 20px;
	}
}

@media (min-width: 1440px) {
	.section {
		gap: 30px;
	}

	.section .header .title {
		font-size: 48px;
	}

	.section .header .description {
		font-size: 32px;
	}
}
