
/*Блок услуги*/
.service_line {
	border-bottom: 2px Solid #ebebeb;
	background: #ebebeb;
	margin: 0 0 50px;
	-webkit-transition: all 0.2s ease-out 0.2s; 
    -moz-transition: all 0.2s ease-out 0.2s;
    -o-transition: all 0.2s ease-out 0.2s;
    transition: all 0.2s ease-out 0.2s;
}
.service_line:hover {
	border-bottom: 2px Solid #1c60ac;
	box-shadow: 0 5px 10px rgba(0,0,0,0.25);
	-webkit-transition: all 0.2s ease-out 0.2s;
    -moz-transition: all 0.2s ease-out 0.2s;
    -o-transition: all 0.2s ease-out 0.2s;
    transition: all 0.2s ease-out 0.2s;
}
.service_line_title {margin: 10px 0 5px !important;}
.service_line_title a {
	margin: 10px 0 0 0 !important;
	padding: 0 10px;
	color: #2e69b0; 
	font-size: 1.1em;
	font-weight: bold;
}
.service_line_description {
	padding: 0 10px;
	font-size: 0.9em;
}
.service_line .thumb_line { 
	position: relative;
   	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0 0 -2px;
}
.pd {padding: 0 !important}
.service_line .thumb_line img {
	width: 105% !important;
	height: 100%;
}
.service_line .thumb_line .mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow:visible;
	/*background: rgba(0,0,0,0.1);*/
	transition: all 0.4s ease-in-out;
}
.service_line .thumb_line a.info {
	position:absolute;
	display: block;
	background: url('../img/plus_img.png') no-repeat;
	background-position: 50%;
	top:0px; /* Center the link */
   	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s 0s ease-in-out;
}
.service_line:hover .thumb_line  .mask {
	opacity: 1;
}
.service_line .thumb_line img  {
   	-webkit-transition: all 0.3s ease-out 0.3s;
    -moz-transition: all 0.3s ease-out 0.3s;
    -o-transition: all 0.3s ease-out 0.3s;
    transition: all 0.3s ease-out 0.3s;
}
.service_line:hover .thumb_line img  {
	-webkit-filter: blur(1px);
	-webkit-filter: grayscale(100%);
   	-webkit-transition: all 0.3s ease-out 0.3s;
    -moz-transition: all 0.3s ease-out 0.3s;
    -o-transition: all 0.3s ease-out 0.3s;
    transition: all 0.3s ease-out 0.3s;
}
.service_line:hover .thumb_line  a.info {
	opacity:1;
	transition-delay: 0.3s;
}
