.SectorItem{
	margin: 10px;
	overflow:hidden;
	position: relative;
}
.SectorItemBG{	
	display: block;
    width: 100%;
    height: 100%;
    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;
    background-repeat: no-repeat;
    background-size: cover;
}
.SectorItem:hover .SectorItemBG{
  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 */ 
}	
.SectorItem .wrapSectorItemTitle {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 5;
    display: table;
    background: rgba(0, 169, 193, 0.65);
}
.SectorItem:hover .wrapSectorItemTitle{
    background: transparent;
}

.SectorItem .wrapSectorItemTitle h3{
	font-size: 24px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    padding: 20px;
    margin: 0px;
}

.SectorItem:hover .wrapSectorItemTitle h3{
	display: none;
}

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

.SectorItem:hover .wrapSectorItemTitle h3:after{
	background: #FFFFFF;
}