.mosaic {
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 35px;
}
.mosaic,
.mosaic .img-cont {
	position: relative;
}
.mosaic .slide {
	margin-bottom: 3px;
}
.mosaic .slide .inner {
	position: relative;
}
.mosaic .img-cont::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #000;
	opacity: 0;
	height: 100%;
	pointer-events: none;
	background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.01) 51%);
	transition:  opacity 0.5s ease-in-out;
}
.mosaic .img-cont img {
	display: block;
	width: 100%;
}
.mosaic h4,
.mosaic h4 a {
	font-weight: bold;
    pointer-events: all;
    font-size: 30px;
    line-height: 37px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-family:"Mont W05 SemiBold";
    letter-spacing: 3px;
    text-align: center;
}
.mosaic .content-section {
	padding: 0;
    pointer-events: none;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mosaic .content-section:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #000;
	height: 100%;
	pointer-events: none;
	background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.01) 51%);
	transition: opacity 0.5s ease-in-out;
	z-index: -1;
}
@media (min-width: 40em) {
	.panel-two-col .mosaic {
		margin-bottom: 0;
	}
	.mosaic .cols {
		display: flex;
		flex-wrap: wrap;
	}
	.mosaic .cols .slide.bottom {
		width: 49.7%;
		flex: 0 1 calc((100% - 4px) / 2);
		flex-basis: 0 1 calc((100% - 4px) / 2);
		margin-right: 4px;
	}
	.mosaic .cols .slide:nth-of-type(3) {
		margin-right: 0;
	}
	.mosaic .cols .slide.top {
		width: 100%;
	}
}
@media (min-width: 640px) and (max-width: 750px) {
	.mosaic .cols .slide.bottom {
		width: 49.6%;
	}
}
@media (min-width: 64em) {
	.mosaic {
		max-width: 1160px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}
	.mosaic h4, 
	.mosaic h4 a {
		font-size: 30px;
		line-height: 38px;
	}
	.mosaic .title-cont {
		margin-bottom: 45px;
	}
	.mosaic .slide .inner {
		height: 100%;
		overflow: hidden;
	}
	.mosaic .slide .img-cont {
		transform: scale(1);
		transition: transform .5s ease-in-out;
	}
	.mosaic .slide:hover .img-cont {
		transform: scale(1.075);
		transition: transform .5s ease-in-out;
	}
	.mosaic .img-cont {
		overflow: hidden;
	}
	.mosaic .slide:hover .img-cont::after {
		background: #000;
		opacity: 0.3;
		transition: opacity .5s ease-in-out;
	}
}