.numbers-section {
	padding: 0px 0px 0px 0px;
}
.numbers {
	border: 1px solid var(--color-gray-05);
	padding: 50px 0px;
	border-radius: 16px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px 0;
}
.numbers__item {
	flex: 0 1 calc(100% / 5);
	width: calc(100% / 5);
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
}
.numbers__item::before {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-image: url('../../images/icon-numbers-badge.svg');
}
.numbers__item:not(:last-child) {
	border-right: 1px solid var(--color-gray-05);
}
.numbers__item-title {
	font-size: 36px;
	line-height: 36px;
	color: var(--color-red);
	font-weight: 500;
	margin-top: 15px;
	white-space: nowrap;
}
.numbers__item-description {
	font-size: 15px;
	line-height: 22px;
	margin-top: calc(15px - 3px);
}
@media (min-width: 550px) and (max-width: 1240px) {
	.numbers {
		padding: 40px 0px;
	}
	.numbers__item {
		flex: 0 1 calc(100% / 2);
		width: calc(100% / 2);
		border-right: none !important;
	}
	.numbers__item:nth-child(2n-1) {
		border-right: 1px solid var(--color-gray-05) !important;
	}
	.numbers__item:nth-child(n+5) {
		display: none;
	}
}
@media (min-width: 550px) and (max-width: 768px) {
	.numbers {
		padding: 30px 0px;
	}
	.numbers__item-title {
		font-size: 32px;
		line-height: 32px;
		margin-top: 10px;
	}
	.numbers__item-description {
		margin-top: calc(10px - 3px);
	}
}
@media (max-width: 549px) {
	.numbers {
		padding: 25px 25px 25px 25px;
		gap: 0;
	}
	.numbers__item {
		flex: 0 1 100%;
		width: 100%;
		padding: 25px 0px calc(25px - 1px) 0px;
		border-right: none !important;
		border-bottom: 1px solid var(--color-gray-05);
	}
	.numbers__item:first-child {
		padding-top: 0px;
	}
	.numbers__item:last-child {
		padding-bottom: 0px;
		border-bottom: none !important;
	}
	.numbers__item-title {
		font-size: 32px;
		line-height: 32px;
		margin-top: 10px;
	}
	.numbers__item-description {
		margin-top: calc(10px - 3px);
	}
}