.mosaic {
	background-color: #f8f5ee;
}

.mosaic .slide {
	margin-bottom: 10px;
}

.mosaic .inner, .mosaic .img-cont {
	position: relative;
	height: 100%;
}

.mosaic .title-cont {
	text-align: center;
	margin-top: 25px;
	margin-bottom: 25px;
	margin-left: 20px;
	margin-right: 20px;
}

.mosaic .subtitle-cont {
	display: flex;
	justify-content: center;
}

.mosaic .subtitle-cont img {
	height: 64px;
	width: 100px;
}

.mosaic .img-cont img {
	width: 100%;
	height: 100%;
}

.mosaic .img-cont::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70%;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	pointer-events: none;
}

.mosaic .content-section {
	position: absolute;
	bottom: 10px;
	left: 20px;
	margin-right: 20px;
	z-index: 1;
}

.mosaic h2 {
	font: 900 50px 'proxima-nova-condensed', sans-serif;
	color: #4b3123;
	text-transform: uppercase;
	line-height: 1em;
}

.mosaic h3 {
	font: 400 32px 'Galada', cursive;
	color: #4b3123;
	line-height: 1.1em;
	text-align: left;
	margin-left: 5px;
}

.mosaic .view-all {
	font: 900 18px 'proxima-nova-condensed', sans-serif;
	color: #4483a0;
	text-transform: uppercase;
}

.mosaic h4, .mosaic h4 a {
	font: 900 28px 'proxima-nova-condensed', sans-serif;
	color: white;
	text-transform: uppercase;
	line-height: 1.1em;
	margin-bottom: 0;
}

.mosaic .date-block {
	display: inline-block;
	font: 900 18px 'proxima-nova-condensed', sans-serif;
	color: #4b3123;
	line-height: 1.3em;
	text-transform: uppercase;
	background-color: white;
	padding: 0 10px;
	margin-bottom: 8px;
}

.mosaic .date-block .middle-dot {
	font-size: 25px;
}

.mosaic .date-range {
	font: 400 18px 'proxima-nova-condensed', sans-serif;
	color: white;
	margin-bottom: 5px;
}

.mosaic .read-more {
	font: 900 18px 'proxima-nova-condensed', sans-serif;
	color: #ece4d6;
}

.mosaic .read-more img, .mosaic .view-all img  {
    width: 33px;
    height: 15px;
    margin-bottom: 3px;
    margin-left: 2px;
}

.mosaic .read-more img.hover, .mosaic .view-all img.hover  {
    display: none;
}

@media screen and (max-width: 640px) {
	.mosaic .slide:last-child {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 640px) {
	.mosaic {
		background: url("https://res.cloudinary.com/simpleview/image/upload/v1571786467/clients/boonenc/beige-background.png");
		padding-top: 45px;
	}

	.mosaic .subtitle-cont img {
		height: 55px;
		width: 85px;
		margin-left: -80px;
	}

	.mosaic h2 {
		margin-top: -5px;
	}
}

@media screen and (min-width: 1100px) {
	.mosaic .slide {
		margin-bottom: 15px;
	}

	.mosaic .mosaic-grid {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		display: -ms-grid;
		-ms-grid-columns: 1fr 1fr 1fr;
	}

	.mosaic .mosaic-grid .slide:nth-child(1) {
		grid-row: 1 / span 2;
		grid-column: 1;
		-ms-grid-row: 1;
		-ms-grid-row-span: 2;
		-ms-grid-column: 1;
		margin-right: 8px;
	}

	.mosaic .mosaic-grid .slide:nth-child(2) {
		grid-row: 1 / span 2;
		grid-column: 2;
		-ms-grid-row: 1;
		-ms-grid-row-span: 2;
		-ms-grid-column: 2;
		margin-left: 8px;
		margin-right: 8px;
	}

	.mosaic .mosaic-grid .slide:nth-child(3) {
		grid-row: 1 / span 1;
		grid-column: 3;
		-ms-grid-row: 1;
		-ms-grid-row-span: 1;
		-ms-grid-column: 3;
		margin-left: 8px;
	}

	.mosaic .mosaic-grid .slide:nth-child(4) {
		grid-row: 2 / span 1;
		grid-column: 3;
		-ms-grid-row: 2;
		-ms-grid-row-span: 1;
		-ms-grid-column: 3;
		margin-left: 8px;
	}

	.mosaic .inner::after {
		position: absolute;
		content: "";
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		background-color: #f69320;
		transition: opacity 0.5s;
		pointer-events: none;
	}

	.mosaic .inner:hover::after {
		opacity: 0.5;
	}

	.mosaic .title-cont {
		position: relative;
		max-width: 1190px;
		margin: 0 auto 50px;
	}

	.mosaic .view-all {
		position: absolute;
		right: 10px;
		bottom: 0;
		margin-left: 81%;
	}

	.mosaic .view-all:hover {
		color: #32657c;
	}

	.mosaic .read-more:hover img.hover,
	.mosaic .view-all:hover img.hover {
			display: inline-block;
	}

	.mosaic .read-more:hover img.no-hover,
	.mosaic .view-all:hover img.no-hover {
			display: none;
	}
}

@media screen and (min-width: 1200px) {
	.mosaic .subtitle-cont img {
		height: 55px;
		width: 85px;
	}

	.mosaic h2 {
		font-size: 60px;
	}

	.mosaic h3 {
		font-size: 37px;
		line-height: 1em;
		margin-left: 10px;
		margin-bottom: 0px;
	}

	.mosaic h4, .mosaic h4 a {
		font-size: 32px;
	}
}
