.work-list {
	display: flex;
	flex-wrap: wrap;
	margin: 30px -12px;
	padding: -12px 0;
}

.work-item {
	width: 20%;
	padding: 12px;
}

.work-item-wrapper {
	padding: 30px;
	border: 1px solid rgba(215, 215, 215, 1);
	border-radius: 4px 0 0 4px;
	height: 100%;
	display: flex;
	position: relative;
	border-right: none;
}

.work-item-number {
	font-family: Roboto;
	font-weight: 300;
	font-size: 76px;
	color: rgba(240, 240, 240, 1);
	margin: 17px 10px 0 0;
}

.work-item-name {
	font-family: Roboto;
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	vertical-align: middle;
	margin-bottom: 16px;
}

.work-item-desc {
	font-family: Roboto;
	font-weight: 300;
	font-size: 12px;
	line-height: 16px;
	vertical-align: middle;
	color: rgba(63, 63, 63, 1);
	height: 80px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.work-item-wrapper::after {
	content: '';
	display: block;
	width: 89px;
	height: 1px;
	background-color: #d7d7d7;
	position: absolute;
	top: 43px;
	right: -52px;
	transform: rotate(80deg);
}

.arrow-top {
	display: block;
	width: 57px;
	height: 3px;
	background-color: rgba(255, 192, 0, 1);
	position: absolute;
	top: 57px;
	right: -39px;
	transform: rotate(80deg);
	z-index: 10;
}

.work-item-wrapper::before {
	content: '';
	display: block;
	width: 89px;
	height: 1px;
	background-color: #d7d7d7;
	position: absolute;
	bottom: 43px;
	right: -52px;
	transform: rotate(-80deg);
}

.arrow-bottom {
	display: block;
	width: 57px;
	height: 3px;
	background-color: rgba(255, 192, 0, 1);
	position: absolute;
	bottom: 57px;
	right: -39px;
	transform: rotate(-80deg);
	z-index: 10;
}

@media (max-width: 1600px) {
	.work-item {
		width: 33.33%;
	}
}

@media (max-width: 1200px) {
	.work-item {
		width: 50%;
	}
}

@media (max-width: 991px) {
	.work-item {
		width: 100%;
	}
}
