.other-services__list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	margin: 0 -20px;
}

.other-services__list-item {
	padding: 0 20px 30px;
	width: calc(100%/3);
}

.other-services-item {
	height: 100px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border-radius: 10px;
}

.other-services-item__link {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	position: relative;
}

.other-services-item__link::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(10,38,76,0.3);
	border-radius: 10px;
	transition: background .3s ease;
}

.other-services-item__link:hover {
	text-decoration: none;
}

.other-services-item__title {
	color: #ffffff;
	font: 24px/121% "Museo Sans Cyrl";
	position: relative;
	z-index: 1;
}

.other-services-item:hover .other-services-item__link::before {
	background: rgba(10,38,76,0.7);
}

@media screen and (max-width: 767px) {
	.other-services__list-item {
		width: calc(100%/2);
		padding: 0 10px 20px;
	}

	.other-services__list {
		margin: 0 -10px;
	}
}

@media (max-width: 480px) {
	.other-services-item__title {
		font-size: 18px;
	}

	.other-services__list-item {
		width: 100%;
		padding-bottom: 15px;
	}
}