.company-list {
	padding: 100px 0 50px;
	margin: 0 -15px;
}

.company-item {
	background: #E7ECF1;
	position: relative;
	padding: 45px 25px 30px;
	width: calc(33.33% - 30px);
	margin: 15px;
	border-top: 2px solid #256FB4;
	box-sizing: border-box;
	text-decoration: none;
	transition: 0.3s;
	color: #000000;
}
.company-item:hover {
	background: #f0f5fa;
	transform: scale(1.05);
}

.company-item.select {
	background: #fff;
	border: 1px solid rgba(45, 53, 69, 0.15);
	border-top: 2px solid #256FB4;
}


.company-item::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	border: 12px solid transparent;
	border-right: 12px solid #fff;
	border-bottom: 12px solid #fff;
}

.company-item::before {
	content: '';
	position: absolute;
	right: 23px;
	bottom: 23px;
	width: 9px;
	height: 15px;
	background: url("img/arr.svg") center no-repeat;
}
.company-item-name {
	font-weight: 700;
	font-size: 22px;
	line-height: 130%;
	color: #004A8D;
	margin-bottom: 20px;
}

.company-item.select::after {
	right: -2px;
	bottom: -2px;
	border: 13px solid transparent;
	border-right: 13px solid #fff;
	border-bottom: 13px solid #fff;
}
.company-item.select .company-item-name::after {
	content: '';
	position: absolute;
	right: -5px;
	bottom: 11px;
	width: 32px;
	height: 1px;
	background: rgba(45, 53, 69, 0.15);
	transform: rotate(-45deg);
	z-index: 3;
}
@media (max-width: 992px){
	.company-list {
		padding: 60px 0 30px;
		margin: 0 -15px;
	}

	.company-item {
		background: #E7ECF1;
		position: relative;
		padding: 30px 15px 20px;
		width: calc(50% - 30px);
		margin: 15px;
		border-top: 2px solid #256FB4;
	}
	.company-item-name {
		font-weight: 700;
		font-size: 18px;
		line-height: 130%;
		color: #004A8D;
		margin-bottom: 25px;
	}
	.company-item::after {
		content: '';
		position: absolute;
		right: 0;
		bottom: 0;
		border: 7px solid transparent;
		border-right: 7px solid #fff;
		border-bottom: 7px solid #fff;
	}
	.company-item.select .company-item-name::after {
		content: '';
		position: absolute;
		right: -2px;
		bottom: 5px;
		width: 15px;
		height: 1px;
		background: rgba(45, 53, 69, 0.15);
		transform: rotate(-45deg);
		z-index: 3;
	}
	.company-item.select::after {
		right: -2px;
		bottom: -2px;
		border: 7px solid transparent;
		border-right: 7px solid #fff;
		border-bottom: 7px solid #fff;
	}
	.company-item::before {
		right: 15px;
		bottom: 15px;
	}
}
@media (max-width: 560px){
	.company-list {
		padding: 60px 0 30px;
		margin: 0;
	}
	.company-item {
		background: #E7ECF1;
		position: relative;
		padding: 30px 15px 20px;
		width: 100%;
		margin: 15px 0;
		border-top: 2px solid #256FB4;
	}
	.company-item-name {
		font-weight: 700;
		font-size: 18px;
		line-height: 130%;
		color: #004A8D;
		margin-bottom: 25px;
	}
	.company-item::after {
		content: '';
		position: absolute;
		right: 0;
		bottom: 0;
		border: 7px solid transparent;
		border-right: 7px solid #fff;
		border-bottom: 7px solid #fff;
	}

}