@charset "utf-8";
.mwb-list-mosaic {
	position: relative;
	margin-top: 50px;
}
.mwb-list-mosaic-header {
	padding-bottom: 0;
}
.mwb-list-mosaic-header h2.title {
	text-transform: uppercase;
	letter-spacing: 5px;
	font-size: 2.25rem;
	font-weight: normal;
	color: var(--mwb-body-text-color);
	text-align: center;
}
.mwb-list-mosaic .mosaic-figure-wrapper {
	display: block;
	width: 100%;
	height: 100%;
}
.mwb-list-mosaic figure {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
	border-radius: var(--border-radius);
	-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .298039);
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .298039);
}
.mwb-list-mosaic figure figcaption {
	position: relative;
	background-position: center;
	background-size: cover;
	border-radius: var(--border-radius);
	-moz-transition: all 5s;
	-o-transition: all 5s;
	-webkit-transition: all 5s;
	transition: all 5s;
}
.mwb-list-mosaic figure figcaption img {
	width: 100%;
}
.mwb-list-mosaic figure figcaption:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(115, 115, 115, 0.52);
	opacity: 0;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.mwb-list-mosaic figure.active figcaption {
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}
.mwb-list-mosaic figure.active figcaption:before {
	opacity: .8;
}
.mwb-list-mosaic figure .btn {
	position: absolute;
	top: 70%;
	left: 50%;
	font-weight: bold;
	line-height: 26px;
	border: 2px rgba(255, 255, 255, .2) solid;
	background-color: rgba(125, 125, 125, .5);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-moz-transition: all .3s;
	-o-transition: all .3s;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.mwb-list-mosaic figure.active .btn {
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	-webkit-transition: all .3s;
	transition: all .3s;
	background-color: #fff;
	border-color: #fff;
	color: var(--mwb-body-text-colorr) !important;
}
.mwb-list-mosaic .btn:hover {
	background-color: #fff;
	border-color: #fff;
	color: var(--mwb-body-text-colorr) !important;
}
@media(min-width:768px) {
	.mwb-list-mosaic figure figcaption {
		min-height: 360px;
	}
	.mwb-list-mosaic figure figcaption img {
		display: none;
	}
	.mwb-list-mosaic figure .btn {
		top: 80%;
	}
}