
/*Блок услуги*/
.service {
	border: 2px Solid #ebebeb; 
	margin: 0 0 50px;
	min-height: 370px;
	-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:hover {
	border: 2px Solid #fff;
	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_title {	text-align: center;} 
.service_title a {
	padding: 0 10px;
	color: #2e69b0; 
	font-size: 1.1em;
	font-weight: bold;
}
.service_description {
	padding: 0 10px;
	font-size: 0.9em;
	text-align: center;
}
.service .thumb { 
	position: relative;
	margin: -2px -2px 20px;
	width: 101.2%;
	height: 101%;
	overflow: hidden;
}
.service .thumb img {
	width: 101.2%;
	height: 101%;
	overflow: hidden;
	
}
.service .thumb .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 .thumb 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:hover .thumb  .mask {
	opacity: 1;
}
.service .thumb 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:hover .thumb 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:hover .thumb  a.info {
	opacity:1;
	transition-delay: 0.3s;
}
