.list1 {
	background: #272424;
	color: #ffffff;
	padding-bottom: 94px;
	font-family: 'Roboto Condensed', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.list1__wrapper {
	max-width: 1394px;
	margin: auto;
}

.list1__header {
	font-size: 38px;
	line-height: 50px;
	font-weight: bold;
	max-width: 500px;
	margin-bottom: 54px;
}

.list1__subheader {
	font-size: 28px;
	line-height: 37px;
	font-weight: bold;
	margin-bottom: 39px;
}

.list1__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	counter-reset: list1__list-item;
}

.list1__list-item {
	font-size: 16px;
	line-height: 21px;
	font-weight: bold;
	width: 240px;
	margin-right: 48px;
}

.list1__list-item:last-child {
	margin-right: 0;
}

.list1__list-item::before {
	counter-increment: list1__list-item;
	content: counter(list1__list-item);
	display: block;
	width: 68px;
	height: 68px;
	border: solid #ffffff 1px;
	border-radius: 10px;
	text-align: center;
	font-size: 38px;
	line-height: 68px;
	margin-bottom: 14px;
}

@media screen and (max-width: 1500px) {
	.list1 {
		padding-bottom: 3vw;
	}

	.list1__wrapper {
		max-width: 90vw;
		min-width: 290px;
	}

	.list1__list {
		flex-wrap: wrap;
	}

	.list1__list-item {
		padding-bottom: 2vw;
	}
}

@media screen and (max-width: 960px) {
	.list1 {
		padding-bottom: 11vw;
	}

	.list1__header {
		font-size: 20px;
		line-height: 26px;
		max-width: 280px;
		margin-bottom: 48px;
	}

	.list1__subheader {
		font-size: 18px;
		line-height: 24px;
	}

	.list1__list-item {
		font-size: 14px;
		line-height: 19px;
	}

	.list1__list {
		display: block;
	}

	.list1__list-item + .list1__list-item {
		margin-left: 0;
		margin-top: 16px;
	}
}