/* General Classes */
.relative {
	position: relative;
}

.jump-link {
	position: absolute;
	top: 0;
}

.center-text {
	text-align: center;
}

.center-self {
	margin-left: auto;
	margin-right: auto;
}

.hide {
	display: none;
}

.in-block {
	display: inline-block;
}
/* End General Classes */

/* Main Content Styles */
.main-content {
	position: relative;
	background-color: #FFFFFF; /* $light */
	margin: auto;
}

.main-content .main {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.main-half {
	-webkit-flex: 0 1 55%;
	-ms-flex: 0 1 55%;
	flex: 0 1 55%;
	display: inline-block;
}

.main-content .right-side {
	margin-left: 4%;
}

.main-content img {
	float: right;
	max-width: 50%;
	margin-left: 1.5rem;
	margin-bottom: .5rem;
	height: auto !important;
}
/* End Main Content Styles */

/* Video Styles */
.media-half .video-poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(/images/video-screenshot.jpg);
	z-index: 1;
	background-position: center;
	background-size: cover;
	transition: .5s ease;
	border: solid 1px #FFFFFF; /* $light */
}

.media-half .video-poster:hover {
	cursor: pointer;
}

.media-half .play-btn {
	position: absolute;
	left: 50%;
	bottom: 10%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.media-half .play-btn:before, .media-half .play-btn:after {
	content: 'PLAY';
	color: #FFFFFF; /* $light */
	transition: .5s ease;
}

.media-half .video-wrapper:hover .play-btn:before, .media-half .video-wrapper:hover .play-btn:after {
	color: #FFFFFF; /* $light */
}

.media-half .play-btn:after {
	content: 'VIDEO';
}

.media-half .play-btn icon:before {
	font-size: 3em;
	z-index: 1;
	color: #134070; /* $tertiary */
	margin: 0 1rem;
	transition: .5s ease;
}

.media-half .video-wrapper:hover .play-btn icon:before {
	color: #2A6091; /* $primary */
}

.media-half .video-wrapper.active .video-poster {
	opacity: 0;
}
/* End Video Styles */

/* Img List Styles (Like Accolades) */
.img-list li {
	-webkit-flex: 0 1 23%;
	-ms-flex: 0 1 23%;
	flex: 0 1 23%;
}

.img-list li .item {
	padding: 2em 14%;
}

.img-list li img {
	display: block;
	margin: auto;
	max-height: 8rem;
}
/* End Img List Styles (Like Accolades) */

/* Scroll Bars */
.ui-scroll {
	overflow: auto;
}

.ui-scroll.horizontal {
	overflow-x: auto;
	overflow-y: hidden;
}

.ui-scroll.vertical {
	overflow-x: hidden;
	overflow-y: auto;
}

.ui-scroll::-webkit-scrollbar {
	width: 12px;
	height: 12px;
	background: none;
}

.ui-scroll::-webkit-scrollbar-track {
	background: none;
}

.ui-scroll::-webkit-scrollbar-thumb {
	border: solid 2px transparent;
	background-clip: padding-box;
	border-radius: 12px;
	background-color: rgba(16, 37, 78, .5);
}

.ui-scroll::-webkit-scrollbar-button {
	width: 0;
	height: 0;
	display: none;
}

.ui-scroll::-webkit-scrollbar-corner {
	background-color: transparent;
}

.ui-scroll-wrap .ui-scroll-thumb {
	position: absolute;
	margin: 2px;
	border-radius: 4px;
	background-color: rgba(16, 37, 78, .5);
}

.ui-scroll-wrap .ui-scroll-thumb.vertical {
	top: 0;
	right: 0;
	bottom: auto;
	left: auto;
	width: 8px;
	height: 100px;
	min-height: 8px;
}

.ui-scroll-wrap .ui-scroll-thumb.horizontal {
	top: auto;
	right: auto;
	bottom: 0;
	left: 0;
	height: 8px;
	width: 100px;
	min-width: 8px;
}

.ui-scroll.horizontal .ui-scroll-thumb.vertical {
	display: none !important;
}

.ui-scroll.vertical .ui-scroll-thumb.horizontal {
	display: none !important;
}
/* End Scroll Bars */

/* Responsive */
@media screen and (min-width:451px) {
}

@media screen and (min-width:801px) {
	.main-content.bottom-space {
		padding-bottom: 0em;
	}
}

@media screen and (min-width:1151px) {
	.main-content.bottom-space {
		padding-bottom: 4em;
	}
}

@media screen and (min-width:1501px) {
}

@media screen and (max-width:1700px) {
}

@media screen and (max-width:1500px) {
}

@media screen and (max-width:1150px) {
	.main-content .main {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.main-half {
		-webkit-flex: 1 0 100%;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
	}

	.main-content .right-side {
		margin-left: 0;
		margin-top: 2em;
		-webkit-flex: 1 0 100%;
		-ms-flex: 1 0 100%;
		flex: 1 0 100%;
		max-width: 100%;
		padding-bottom: 0;
	}
}

@media screen and (max-width:800px) {
	.media-half .video-poster {
		border: solid 3px #134070; /* $tertiary */
	}
}

@media screen and (max-width:550px) {
	.img-list li {
		-webkit-flex: 0 1 48%;
		-ms-flex: 0 1 48%;
		flex: 0 1 48%;
	}

	.img-list li img {
		max-height: 6rem;
	}
}

@media screen and (max-width:450px) {
}
/* End Responsive */
