/* 

COLORS

blue-1000: #040439
blue-600: #1A63FF
blue-300: #98B9F7
blue-100: #DAE7FF
slate: #4F4F6D
red: #E31E24 

 */

.functional-section {
	position: relative;
	background-color: var(--blue-1000);
	z-index: 1;
}

.functional-section.animated-background-image.transparent::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.functional-section .filled {
	margin: 0 auto;
	margin-top: 20px;
	pointer-events: all;
}

.functional-section .header .title {
	color: white;
}

.functional-section .cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.functional-section .card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}

.functional-section .card:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	justify-self: center;
	width: 45%;
}

.functional-section .card .image-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

.functional-section .card .image-container .image {
	width: auto;
	height: 60px;
}

.functional-section .card .description {
	font-size: 12px;
}

@media (min-width: 768px) {
	.functional-section .cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.functional-section .card {
		align-items: flex-start;
		text-align: left;
	}

	.functional-section .card:last-child:nth-child(odd) {
		grid-column: unset;
		justify-self: unset;
		width: unset;
	}

	.functional-section .card .image-container {
		flex-direction: row;
		gap: 16px;
	}

	.functional-section .card .image-container .image {
		width: 50px;
		height: auto;
	}

	.functional-section .card .image-container .title {
		font-size: 16px;
	}

	.functional-section .card .description {
		font-size: 14px;
	}
}

@media (min-width: 1440px) {
	.functional-section .cards {
		gap: 30px;
	}

	.functional-section .card {
		gap: 20px;
	}

	.functional-section .card .image-container .title {
		font-size: 24px;
	}

	.functional-section .card .description {
		font-size: 20px;
	}
}
