/*
	 jQuery Mosaic v0.15.2
	 https://github.com/tin-cat/jquery-mosaic
 */

 .jQueryMosaic {
	width: 100%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}

.jQueryMosaic > div,
.jQueryMosaic > a,
.jQueryMosaic > img {
	float: left;
}

.jQueryMosaic > .item {
	position: relative;
}

.jQueryMosaic > .item.withImage {
	background-size: cover;
	    display: block!important;
		    transition: ease,1.5s;
			overflow:hidden;
			position: relative;
}
.jQueryMosaic > .item.withImage:hover
{
	 transform: scale(1.05);
}
.jQueryMosaic > .item > .overlay {
	opacity: 0;
	position: absolute;
	left: 0px; right: 0px; top: 0px; bottom: 0px;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
	    height: 100%;
    width: 100%;
    z-index: 9999;
}

.jQueryMosaic > .item:hover > .overlay {
	opacity: 1;
	width: 100%;
    height: 100%;
	position: absolute;
	 background: rgba(0, 0, 0, 0.5);
}

.jQueryMosaic > .item > .overlay > .texts {
	    
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 15pt;
   
    color: #fff;
   position:absolute; 
  
    text-align: center;
    font-size: 18px;
	margin: auto;

  top: 41%; left: 0; bottom: 0; right: 0;
}
}

.jQueryMosaic > .item > .overlay > .texts h1,
.jQueryMosaic > .item > .overlay > .texts h2 {
	margin: 0;
	line-height: 1.3em;
}

.jQueryMosaic > .item > .overlay > .texts h1 {
	font-size: 17pt;
}

.jQueryMosaic > .item > .overlay > .texts h2 {
	font-size: 13pt;
}