/* stylelint-disable */
.c-usp__list {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
}

.c-usp__item {
	height: 95px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 1024px) {
	.c-usp__item {
		height: 180px;
	}
}

.c-usp__item:nth-child(odd) {
	background-color: var(--color-blue-1);
}

.c-usp__item:nth-child(even) {
	background-color: var(--color-blue-2);
}

.c-usp__item-image {
	max-width: 90%;
	max-height: 90%;
}

/*# sourceMappingURL=usp.css.map */