.news_content
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	overflow: visible !important;
	position: relative;
	padding: 60px 0 0;

	max-width: 1700px;
	width: 83%;
}

.news_content .news_wrap
{
	background: #09172d url(../../../images/slats-blue.png) center center repeat;

	display: flex;
	margin-bottom: 115px;
	position: relative;
	z-index: 2;

	min-height: 410px;
	width: 44.5%;

	outline:none;
	
}

.news_content .news_item_padding
{
	background: #09172d;
	transition: transform 0.15s ease-out;

	border: solid 1px transparent;
	overflow: hidden;
	position: relative;
	padding: 50px;

	width: 100%;
}

.news_content .news_item
{
	display: block;
	padding-top: 40px;
	padding-bottom: 40px;
	position: relative;

	height: 100%;
	width: 100%;
}

.news_content .news_item .header
{ 
	font: normal 300/14px 1.28 "Helvetica Neue", Helvetica, sans-serif;
	letter-spacing: 0.02em;

	display: block;
	position: absolute;
	 top: 0;
	 left: 0;

	width: 100%;
}

.news_content .news_item .header strong
{
	color: #f8be21;

	margin-right: 20px;
}

.news_content .news_item .header time
{
	color: #cdcdcd;
}

.news_content .news_item h2
{
	transform-origin: left top;
	transition: transform .15s ease;

	color: #e5e5e5;
	font: normal 600 34px/1.11 "Barlow Condensed", sans-serif;
	letter-spacing: 0.015em;
	text-transform: none;

	margin-bottom: 0;
	padding-left: 0;
}

.news_content .news_item h2:before
{
	display: none;
}

.news_content .news_item p
{
	opacity: 0;
	transition: opacity .15s ease;

	color: #b3b3b3;
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 14px;
	line-height: 2;
	letter-spacing: 0em;
}

.news_content .news_item .image
{
	position: relative;
	float: right;
	width: 75px;
	height: 75px;
	margin-left: 20px;
	margin-bottom: 30px;
}

.news_content .news_item .image .fill
{
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	height: 100%;
	text-indent: -9999em;
	transform-origin: right top;
	transition: transform .15s ease;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.news_content .news_item .image:before
{
	content: "";
	position: absolute;
	z-index: 1;
	top: 10px;
	left: 10px;
	width: 100%;
	height: 100%;
	background: url(../../../images/slats-blue.png) center center repeat;
	background-size: auto 27%;
	opacity: 1;
	transition: opacity .15s ease;
}

.news_content .news_item .image:after
{
	content: "";
	float: right;
	width: 100px;
	height: 100px;
	z-index: 2;
}

.news_content .news_item .cta_wrap
{
	font-family: "Barlow Condensed", sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.1em;
	position: absolute;
	left: 0;
	right: auto;
	bottom: 0;
	height: 45px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #e5e5e5;
	text-transform: uppercase;
	border-bottom: solid 1px #1e293a;
	width: 100%;
}


/* .news_content .news_item .cta_wrap:after
{
	content: "View More";
	position: absolute;
	left: 0;
	top: 0;
	height: 45px;
	z-index: 1;
	display: flex;
	align-items: center;
	transform: translateX(0);
	transition: transform 0.6s ease-out;
} */


.news_content .news_item .cta_wrap .cta
{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	z-index: 2;
	height: 100%;
	white-space: nowrap;
	transform: translateX(-200%);
	transition: transform 0.3s ease-out;
}

.news_content .news_item .cta_wrap .cta i:before
{
	display: block;
	margin-left: 5px;
	font-size: 46px;
	color: #f8be21;
}

.news_content .news_item .cta_wrap .cta .uspis-icon-chevron-right:before
{
	font-size: 42px;
}

.news_content .news_wrap.alert .news_item_padding:after
{
	content: "";
	position: absolute;
	z-index: -1;
	top: -15px;
	right: -195px;
	width: 540px;
	height: 470px;
	background-image: url(../../../images/alert.svg);
	background-position: left 34%;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0;
	transition: opacity .5s ease;
}

@media only screen and (min-width: 768px)
{
	.news_content:after
	{
		content: "";
		position: absolute;
		top: 40px;
		left: 50%;
		height: calc(100% - 155px);
		border-right: solid 1px #1e293a;
	}

	.news_content .news_wrap:hover .news_item_padding,
	.news_content .news_wrap:focus .news_item_padding,
	.news_content .news_wrap[data-focus] .news_item_padding
	{
		transform: translate(-20px, -20px);
		border: solid 1px #1e293a;
	}

	.news_content .news_wrap:focus .news_item_padding,
	.news_content .news_wrap[data-focus] .news_item_padding
	{
		border: solid 1px #f8be21;
	}

	.news_content .news_wrap:hover .news_item_padding:after,
	.news_content .news_wrap:focus .news_item_padding:after,
	.news_content .news_wrap[data-focus] .news_item_padding:after
	{
		opacity: 1;
	}

	.news_content .news_wrap h2
	{
		transform: scale(0.82);
	}

	.news_content .news_wrap p
	{
		opacity: 1;
	}

	.news_content .news_wrap:hover .image .fill,
	.news_content .news_wrap:focus .image .fill,
	.news_content .news_wrap[data-focus] .image .fill
	{
		transform: scale(1.27);
	}

	.news_content .news_wrap:hover .image:before,
	.news_content .news_wrap:focus .image:before,
	.news_content .news_wrap[data-focus] .image:before
	{
		opacity: 0;
	}

	.news_content .news_wrap .cta_wrap
	{
		border: none;
	}

	/* .news_content .news_wrap .cta_wrap:after
	{
		transform: translateX(-200%);
	} */

	.news_content .news_wrap .cta_wrap .cta
	{
		transform: translateX(0);
	}

}

@media only screen and (max-width: 1176px)
{
	.news_content
	{
		width: 94%;
	}

	.news_content .news_wrap
	{
		width: 46%;
		min-height: 285px;
	}

	.news_content .news_item_padding
	{
		padding: 25px;
	}

	.news_content .news_item_padding:after
	{
		width: 410px;
		height: 310px;
	}

	.news_content .news_item
	{
		padding-top: 30px;
	}

	.news_content .news_item h2
	{
		font-family: "Barlow Condensed", sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 22px;
		line-height: 1.27272727;
		letter-spacing: 0.03em;
		margin-bottom: 10px;
		transform: none !important;
	}
}

@media only screen and (max-width: 767px)
{
	.news_content
	{
		width: 84%;
	}

	.news_content .news_wrap
	{
		width: 100%;
		margin-bottom: 75px;
	}

	.news_content .news_item_padding
	{
		padding: 0;
		width: 100%;
	}

	.news_content .news_item
	{
		display: flex;
		padding-bottom: 0;
	}

	.news_content .news_item .mobile_body
	{
		overflow: hidden;
		overflow-x: auto;
		display: flex;
		width: 100%;
		margin: 0 -5%;
		padding-bottom: 20px;
		scroll-snap-points-x: repeat(100%);
		scroll-snap-type: x mandatory;
		scroll-snap-type: mandatory;
		-ms-scroll-snap-type: mandatory;
		-webkit-scroll-snap-type: mandatory;
		scroll-snap-destination: 100% 0;
		-webkit-scroll-snap-destination: 100% 0;
		-webkit-overflow-scrolling: touch;
	}

	.news_content .news_item .mobile_body .mobile_left,
	.news_content .news_item .mobile_body .mobile_right
	{
		border-bottom: solid 1px #1e293a;
		width: 100%;
		flex-shrink: 0;
		padding: 0 5%;
		scroll-snap-align: center;
		scroll-snap-coordinate: 0% 0%;
		-webkit-scroll-snap-coordinate: 0% 0%;
	}

	.news_content .news_item .mobile_body .mobile_left
	{
		position: relative;
		padding-bottom: 50px;
	}

	.news_content .news_item .mobile_body .mobile_left:after
	{
		content: "Swipe to view more";
		position: absolute;
		bottom: 25px;
		width: 94%;
		font-family: "Barlow Condensed", sans-serif;
		font-style: normal;
		font-weight: 600;
		font-size: 17px;
		line-height: 1;
		letter-spacing: 0.1em;
		color: #e5e5e5;
		text-align: center;
		text-transform: uppercase;
	}

	.news_content .news_item .mobile_body .mobile_right
	{
		display: flex;
		 flex-direction: column;
		 justify-content: space-between;
	}

	.news_content .news_item .mobile_body:before,
	.news_content .news_item .mobile_body:after
	{
		background-color: #e5e5e5;
		border-radius: 100%;
		transition: background-color 0.25s ease 0s;
		transform: translateX(0);

		display: inline-block;
		overflow: hidden;
		position: absolute;
		 bottom: 0;
		 left: 50%;

		height: 6px;
		width: 6px;

		content: "";
	}

	.news_content .news_item .mobile_body:before
	{
		background-color: #f8be21;
		transform: translateX(-150%);
	}

	.news_content .news_item .mobile_body:after
	{
		transform: translateX(150%);
	}

	.news_content .news_item .mobile_body.swiped:before
	{
		background-color: #e5e5e5;
	}

	.news_content .news_item .mobile_body.swiped:after
	{
		background-color: #f8be21;
	}

	.news_content .news_item a
	{
		padding: 0;
		position: static;
		left: 0;
		top: 0;

		height: auto;
		width: auto;
	}

	.news_content .news_item .cta_wrap
	{
		position: static;
		border: none;
	}

	.news_content .news_item .cta_wrap:after
	{
		display: none;
	}

	.news_content .news_item .cta_wrap .cta
	{
		transform: none;
		transition: none;
	}

	.news_content .news_item p
	{
		opacity: 1;
	}
}

.news_content .news_wrap.alert .news_item .header:after,
.news_content .news_wrap.alert .news_item .header:before
{
	position: absolute;
	top: 0;
	right: 5px;
	z-index: 1;
	height: 22px;
	width: 60px;
}

.news_content .news_wrap.alert .news_item .header:after
{
	font-family: "Barlow Condensed", sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.35714286;
	letter-spacing: 0.02em;
	color: #000;
	text-align: center;
	text-transform: uppercase;
	align-items: center;
	box-sizing: border-box;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	content: "Alert";
}

.news_content .news_wrap.alert .news_item .header:before
{
	background: #f8be21;
	transform: skew(-20deg);
	content: "";
}