.activities-list-wrap {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 650px;
	max-height: 100vh;
	overflow: hidden;
	background-color: rgba(0,0,0,1);
	-webkit-box-shadow: 0px 0px 11px rgba(0, 0, 0, .75);
	        box-shadow: 0px 0px 11px rgba(0, 0, 0, .75);
}
.activities-list {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-grow: 1;
	width: 70%;
}
.activity-wrap {
	position: relative;
	display: none;
	background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    width: 100%;
}
.activity-dark-filter {
	background-color: rgba(0,0,0,.8);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.activity {
	position: relative;
	z-index: 3;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 100%;
	padding: 50px 0 50px 50px;
}
.activity-info {
	width: 46%;
	margin: auto auto auto 0;
}
.activity-preview {
	width: 50%;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-align-items: flex-end;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.activity-preview img {
	max-height: 580px;
}

.activity-title a {
	font-size: 55px;
	font-family: "PlumbCondensed";
	color: rgb( 255, 255, 255 );
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 20px;
	display: block;
}
.activity-title a:hover {
	color: rgb(190, 234, 255);
}

.activity-text {
	font-size: 18px;
	font-family: "Candara";
	color: rgb( 255, 255, 255 );
	line-height: 1.25;
}
.activity-text p {
	margin: 0;
}
.activity-text p + p {
	margin-top: 25px;
}

.activity-info .activity-read-more {
	font-size: 12px;
	font-family: "Candara";
	color: rgba( 178, 205, 218, 1);
	text-transform: uppercase;
	position: relative;
	padding: 10px;
	opacity: .75;
	-webkit-transition: opacity 300ms ease-in-out;
	-o-transition: opacity 300ms ease-in-out;
	transition: opacity 300ms ease-in-out;
	margin-top: 30px;
	display: inline-block;
}
.activity-info .activity-read-more:hover {
	opacity: 1;
}
.activity-info .activity-read-more:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	bottom: 5px;
	left: 0;
	height: 1px;
	background-color: rgba( 178, 205, 218, 1);
}