.about-values__panel {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	border-radius: 8px;
	background: linear-gradient(90deg, #edf7ff 0%, #f8fcff 50%, #edf7ff 100%);
}

.about-values__panel article {
	min-height: 166px;
	padding: 27px 18px 23px;
	text-align: center;
}

.about-values__panel article + article {
	border-left: 1px solid #cddff1;
}

.about-values__panel span {
	display: grid;
	height: 40px;
	margin-bottom: 12px;
	color: var(--about-blue);
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
	place-items: center;
}

.about-values__panel span img {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.about-values__panel h3 {
	margin: 0 0 10px;
	color: var(--about-blue);
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
}

.about-values__panel p {
	margin: 0;
	color: #354a66;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
}

@media (max-width: 900px) {
	.about-values__panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-values__panel article + article {
		border-left: 0;
	}

	.about-values__panel article {
		border-bottom: 1px solid #cddff1;
	}
}

@media (max-width: 520px) {
	.about-values__panel {
		grid-template-columns: 1fr;
	}
}
