.index-content-1 {
	margin-bottom: 80px;
}
.index-content-1__list {
	display: flex;
	align-items: stretch;
	margin-top: 150px;
	margin-bottom: 150px;
}
.index-content-1__item {
	width: 100%;
	max-width: 190px;
	background-color: #F2F7FA;
	box-shadow: 0 8px 16px rgba(61, 107, 148, .16);
	padding: 24px 5px;
	text-align: center;
	flex-grow: 1;
	position: relative;
}
.index-content-1__item--blue {
	background-color: var(--blue);
}
.index-content-1__item:not(:last-child) {
	margin-right: 35px;
}
.index-content-1__item-text {
	margin-top: 35px;
	margin-bottom: 0;
}
.index-content-1__item--blue .index-content-1__item-text {
	color: var(--white);
}
.index-content-1__item-pic {
	width: 80px;
	height: 80px;
	object-fit: contain;
}
.index-content-1__arrow {
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translateY(-100%);
	z-index: 1;
}
.index-content-1__arrow--bot {
	top: calc(100% - 10px);
	transform: translateY(0);
}
.index-content-1__arrow-num {
	margin-top: -70px;
	font-size: 40px;
	line-height: 48px;
	font-weight: 600;
	color: var(--green);
}
.index-content-1__arrow-pic {
	width: 195px;
}

@media screen and (max-width: 1200px) {
	.index-content-1__item-pic {
		width: 75px;
		height: 75px;
	}
	.index-content-1__item-text {
		font-size: 14px;
	}
	.index-content-1__item:not(:last-child) {
		margin-right: 20px;
	}
	.index-content-1__arrow-pic {
		width: 150px;
	}
}

@media screen and (max-width: 800px) {
	.index-content-1 {
		margin-bottom: 40px;
	}
	.index-content-1__list {
		align-items: center;
		flex-direction: column;
		margin-top: 0;
		margin-bottom: 0;
	}
	.index-content-1__item:not(:last-child) {
		margin-right: 0;
		margin-bottom: 25px;
	}
	.index-content-1__arrow-pic {
		transform: rotate(90deg);
	}
	.index-content-1__arrow {
		left: 100%;
		top: 95%;
		transform: translateX(-35%);
	}
	.index-content-1__arrow--bot {
		left: 0;
		transform: translateX(-65%);
	}
}