.site-services-second-row {
	clear: both;
}

.site-service {
	margin-bottom: 30px;
	cursor: pointer;
	position: relative;
	transition: all 0.25s;
	background: rgba(177,177,177, 0.1); /** b1b1b1 **/
}

.site-service:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;	
	background: rgba(0, 0, 0, 0.1);
	transition: all 0.25s;
}

.site-service:hover:after {
	background: rgba(0, 0, 0, 0.92);
}

.site-service:hover .site-service-content-title {
	background: transparent;
}

.site-service:hover .site-service-content-text {
	line-height: 1.3;
	overflow: visible;
}

.site-service img {
	width: 100%;
	display: block;
}

.site-service-content {
	z-index: 1;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	color: var(--site-color);
	padding: 20px 10px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-service-content-title {
	display: inline-block;
	background: rgba(0,0,0,0.8);
	padding: 10px 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--site-color);
}

.site-service-content-text {
	padding-left: 20px;
	padding-right: 20px;
	line-height: 0;
	overflow: hidden;
	font-size: 14px;
	color: #fff;
	transition: all 0.1s;
}



@media only screen and (min-width: 980px) {
	#site-services {
		background: rgba(177,177,177, 0.1);
		padding: 100px 70px;
		border-radius: 30px;
		max-width: 1170px;
		margin: auto;
		margin-bottom: 100px;
		box-sizing: content-box;
	}
}

@media only screen and (max-width: 980px) {
	#site-services {
		padding: 100px 0px;
	}
}