/**
 * What You Get Section
 */

.what-you-get-section {
	background: var(--white);
}
.what-you-get-section .row {
	row-gap: 30px;
	justify-content: center;
}
.what-you-get-section .col {
	width: 33.333%;
	display: flex;
}
.what-you-get-section .stat-card {
	width: 100%;
	background: var(--gray);
	border-radius: 24px;
	padding: 32px;
}
.what-you-get-section .stat-card .subtitle {
    color: var(--black);
}
.what-you-get-section .stat-card .value {
	display: block;
	color: var(--blue);
	margin-bottom: 8px;
}

@media only screen and (max-width: 991px) {
	.what-you-get-section .col {
		width: 50%;
	}
	.what-you-get-section .stat-card {
		padding: 26px;
	}
	.what-you-get-section .stat-card .value {
		font-size: 40px;
	}
}
@media only screen and (max-width: 767px) {
	.what-you-get-section .col {
		width: 100%;
	}
	.what-you-get-section .stat-card {
		padding: 24px;
		border-radius: 18px;
	}
	.what-you-get-section .stat-card .value {
		font-size: 36px;
	}
}
