.BlockLinkSystem{
	margin: 5px;
	overflow:hidden;
	position: relative;
    width: 200px;
    height: 200px;
    display: inline-block;
}

.BlockLinkSystemBG{	
	display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: all 1s ease;
	background-position:center;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
}
.BlockLinkSystem:hover .BlockLinkSystemBG{
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1); /* IE 9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')"; /* IE8 */
   filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand'); /* IE6 and 7 */ 
}	
.BlockLinkSystem .wrapBlockLinkSystemTitle {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 5;
    display: block;
    background: rgba(0, 169, 193, 0.65);
}
.BlockLinkSystem:hover .wrapBlockLinkSystemTitle{
    background: transparent;
}

.BlockLinkSystem .wrapBlockLinkSystemTitle h3{
	/*font-size: 18px !important;*/
	font-size: 18px;
    /*font-size: 1vw;*/
	
	padding: 0 5px;
    word-break: break-word;
	font-weight: bold;
	color: rgb(255, 255, 255);
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	display: block;
	height: 100%;
	margin: 0px;
	display: table-cell;
	vertical-align: middle;
	line-height: 1;
}
@media (max-width: 765px) {
	.BlockLinkSystem .wrapBlockLinkSystemTitle h3{
		font-size: 16px !important;
	}
}
.BlockLinkSystem:hover .wrapBlockLinkSystemTitle h3{
	display: none;
}

/*.BlockLinkSystem .wrapBlockLinkSystemTitle h3:after{
	content:'';
	display: block;
	width: 100px;
	height: 1px;
	background: #363636;
	margin: 10px 0 0 0;
}*/

.BlockLinkSystem:hover .wrapBlockLinkSystemTitle h3:after{
	background: #FFFFFF;
}

.BlockLinkSystem .wrapBlockLinkSystemTitle > span {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 5;
    display: table;
}



