.mosaic {
	margin-bottom: 60px;
	overflow: hidden;
}

.mosaic .title-cont {
	padding-left: 10px;
	padding-right: 10px;
	margin-right: 30px;
}

.mosaic .title-cont h2 {
	font: 500 100px 'Titling-Gothic-fb-skyline', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 0.9em;
	-webkit-transform: skew(30deg, 0deg) translate3d(200px, 0, 0);
    transform: skew(30deg, 0deg) translate3d(200px, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    opacity: 0;
    -webkit-transition: all cubic-bezier(0, 1, 1, 1) 1.5s;
    transition: all cubic-bezier(0, 1, 1, 1) 1.5s;
}

.mosaic .title-cont.active h2 {
    opacity: 1;
    -webkit-transform: skew(0deg, 0deg) translate3d(0px, 0, 0);
    transform: skew(0deg, 0deg) translate3d(0px, 0, 0);
}

.mosaic .title-cont h5 {
	font: 500 25px 'Titling-Gothic-fb-skyline', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1em;
	margin-bottom: 12px;
	-webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
    -webkit-transition: all ease 0.8s 0.7s;
    transition: all ease 0.8s 0.7s;
}

.mosaic .title-cont.active h5 {
	transform: translateY(0);
    opacity: 1;
}

.mosaic .title-cont .view-all {
	position: relative;
	display: inline-block;
}

.mosaic .title-cont .view-all {
	display: inline-block;
	font: 500 15px 'franklin-gothic-urw', sans-serif;
	font-style: italic;
	letter-spacing: 1px;
	line-height: 1em;
	padding: 5px 50px;
	border: 2px solid black;
	color: black;
	text-decoration: none;
}

.mosaic .title-cont .view-all:hover::after {
	top: 0;
	left: 0;
}

.mosaic .title-cont .view-all::after {
	content: "";
	display: block;
	background-color: #f15d22;
	width: calc(100% + 1px);
	height: calc(100% + 1px);
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: -1;
	transition: top .5s, left .5s;
}


.mosaic .cols {
	display: flex;
	flex-wrap: wrap;
	padding-top: 64px;
}

.mosaic .slide {
	flex-basis: calc(50% - 2.5px);
	margin-bottom: 5px;
}

.mosaic .slide:nth-of-type(2n) {
	margin-left: 2.5px;
}

.mosaic .slide:nth-of-type(2n+1) {
	margin-right: 2.5px;
	margin-top: -40px;
}

.mosaic .inner {
	position: relative;
}

.mosaic .img-cont {
	position: relative;
	overflow: hidden;
}

.mosaic .img-cont::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70%;
	pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
	transition: all ease 0.3s;
	-webkit-transition: background ease 0.3s;
	pointer-events: none;
}

.mosaic .slide:hover .img-cont::after {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.58)), color-stop(50%, rgba(0, 0, 0, 0.58)), to(rgba(0, 0, 0, 0.58)));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.58) 100%);
	-webkit-transition: background ease 0.3s;
	height: 100%;
}

.mosaic .img-cont img {
	width: 100%;
}

.mosaic .content-section {
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 10px;
	width: 100%;
}

.mosaic .slide:hover .content-section {
	-webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.mosaic .content-section h4,
.mosaic .content-section h4 a {
	font: 600 18px 'franklin-gothic-urw-comp', sans-serif;
	letter-spacing: 1px;
	line-height: 1em;
	color: white;
	margin-bottom: 5px;
}

.mosaic .content-section h4 a:hover {
	text-decoration: none;
}

.mosaic .content-section .time-to-read {
	color: white;
	font: 400 14px 'franklin-gothic-urw', sans-serif;
	line-height: 1em;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}

.mosaic .content-section .time-to-read i {
	margin-right: 3px;
}

@media (min-width: 64em) {
	.mosaic {
		display: flex;
		flex-direction: row-reverse;
		margin-bottom: 112px;
	}

	.mosaic .title-cont {
		padding-top: 84px;
		width: 49.5%;
	}

	.mosaic .title-cont h2 {
		font-size: 150px;
	}

	.mosaic .title-cont h5 {
		font-size: 30px;
	}

	.mosaic .title-cont .view-all {
		font-size: 20px;
		padding: 7px 75px;
		border-width: 3px;
		font-weight: 400;
	}

	.mosaic .title-cont .view-all .orange-box { 
		top: 8px;
		left: 8px;
	}

	.mosaic .cols {
		width: 50.5%;
		padding-top: 84px;
	}

	.mosaic .slide {
		flex-basis: calc(50% - 4px);
		margin-bottom: 8px;
	}

	.mosaic .slide:nth-of-type(2n) {
		margin-left: 4px;
	}
	
	.mosaic .slide:nth-of-type(2n+1) {
		margin-right: 4px;
		margin-top: -84px;
	}

	.mosaic .content-section h4,
	.mosaic .content-section h4 a {
		font-size: 30px;
		letter-spacing: 1px;
	}

	.mosaic .content-section .time-to-read {
		font-size: 15px;
	}
}

@media screen and (min-width: 1400px) {
	.mosaic .title-cont h2 {
		font-size: 230px;
		letter-spacing: 3px;
	}

	.mosaic .title-cont h5 {
		font-size: 50px;
	}
}