.statistics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:30px;
	width:100%;
}

.statistics span.counter {
	display:inline-block;
	font-family: var(--am-typography-text-font-family);
	color: var(--e-global-color-8877fca);
    font-size: 40px;
    font-weight: 800;
}
.statistics .counter-block .counter-block_title {
	color: var(--e-global-color-8877fca);
    font-family: var(--am-typography-text-font-family);
    font-weight: 500;
    line-height: 20px;
	max-width:100%;
	font-size:14px;
}
.counter-block{
	display:flex;
	gap:30px;
}
.counter-block .ico svg{
	width: 50px;
	height:auto;
}
@media (max-width:768px) {
	.statistics{
		grid-template-columns: repeat(2, 1fr);
	}
	.counter-block{
		gap:12px;
	}
	.statistics span.counter {
		font-size: 24px;
		line-height: 32px
	}
	.counter-block .ico svg{
		width:32px;
	}
	.statistics .counter-block .counter-block_title {
		font-size: 12px;
		line-height: 16px
	}
}