* {
	font-family: 'Raleway', sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
html, body {
	width: 100%;
	height: 100%;
}
body {
	width: 100%;
	background-color: #232323;
	color: #fff;
	margin: 0;
	padding: 0;
}
input, textarea, select, option, div, button, img, a {
  -webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
	border: 0;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	margin: 0;
}
.container {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 1020px;
	position: relative;
}
.row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}

/* HEADER */
header {
	width: 100%;
	background: #000;
	padding: 20px 0;
}
header .logo img {
	height: 63px;
	margin: 0 0 -12px 0;
	width: auto;
}
header .share a {
	width: 32px;
	height: 32px;
	background: #fff;
	border-radius: 10px;
	font-size: 22px;
	color: #000;
	margin: 0 0 0 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}
header .share a:hover {
	-webkit-filter: opacity(80%);
	filter: opacity(80%);
}
header .share span {
	font-size: 16px;
	font-weight: 700;
	margin: 0 4px 0 0;
}
#title {
	padding: 40px 0 45px 0;
}
#title .left {
	text-align: left;
}
#title .left .text {
	text-align: center;
	transform: rotate(-3deg);
}
#title .left .text .sm {
	font-size: 28px;
	color: #fff;
	font-weight: 700;
	text-shadow: 3px 4px 0 #000;
}
#title .left .text .lg {
	font-size: 40px;
	line-height: 36px;
	color: #fff;
	font-weight: 900;
	text-shadow: 3px 4px 0 #000;
}
#title .left .text .bg {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	background: #f95410;
	width: 100%;
	padding: 4px 0;
	display: inline-block;
	margin: 4px 0 0 0;
	box-shadow: 3px 4px 0 #000;
}
#title .right {
	flex: 1;
	text-align: right;
}
#title .right .text {
	padding-left: 60px;
	line-height: 190%;
}
#title .right .text h2 {
    color: #f95410;
	background: #fff;
	display: inline-block;
	font-size: 20px;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0;
	padding: 1px 6px;
}
#title .right .text p {
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 17px;
	font-weight: 400;
}
#title .right .text p strong {
	font-weight: 700;
    color: #f95410;
	background: #fff;
	padding: 1px 4px;
}

#videobox {
	width: 100%;
	background: #383838;
}
#videobox .player {
	width: 100%;
	height: auto;
	border: 10px solid #525252;
	position: relative;
	z-index: 15;
}
#videobox .player #endvideo {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	z-index: 20;
	background: rgba(0, 0, 0, 0.2);
	visibility: hidden;
	-webkit-filter: opacity(0%);
	filter: opacity(0%);
	transform: translateY(-100%);
}
#videobox .player #endvideo.show {
	visibility: visible;
	-webkit-filter: opacity(100%);
	filter: opacity(100%);
	transform: translateY(0%);
}
#videobox .player #endvideo .center {
	width: 100%;
	background: #000;
	text-align: center;
	padding: 55px;
	line-height: 200%;
}
#videobox .player #endvideo .center > .lg {
	font-size: 30px;
	color: #f95410;
	background: #fff;
	padding: 2px 6px;
	font-weight: 900;
	display: inline-block;
}
#videobox .player #endvideo .center > .md {
	font-size: 22px;
	font-weight: 400;
	color: #fff;
	margin: 10px 0 0 0;
    max-width: 700px;
    display: inline-block;
}
#videobox .player #endvideo .center .md a {
	color: #fff;
	font-weight: 900;
	text-decoration: none;
}
#videobox .player #endvideo .center .button {
	text-align: center;
	margin: 40px 0 -100px 0;
}
#videobox .player #endvideo .center .button a {
	padding: 22px 50px;
	display: inline-block;
	text-align: center;
	border: 5px solid #fff;
	border-radius: 15px;
	background: #46a22c;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
	line-height: 160%;
	text-decoration: none;
	background: -moz-linear-gradient(top,  #46a22c 0%, #38951e 100%);
	background: -webkit-linear-gradient(top,  #46a22c 0%,#38951e 100%);
	background: linear-gradient(to bottom,  #46a22c 0%,#38951e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#46a22c', endColorstr='#38951e',GradientType=0 );
	box-shadow: inset -3px -3px 8px #276815, inset 3px 3px 4px rgba(255, 255, 255, 0.3);
}
#videobox .player #endvideo .center .button a > * {
	-webkit-transition: all 0ms linear;
	-moz-transition: all 0ms linear;
	-ms-transition: all 0ms linear;
	transition: all 0ms linear;
}
#videobox .player #endvideo .center .button a .lg {
	color: #fff;
	font-size: 30px;
	font-weight: 900;
	text-transform: uppercase;
}
#videobox .player #endvideo .center .button a .sm {
	font-size: 16px;
	font-weight: 700;
}
#videobox .player #endvideo .center .button a:hover {
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4), 0 0 10px #fff;
	box-shadow: inset 3px 3px 8px #276815, inset -3px -3px 4px rgba(255, 255, 255, 0.3);
}
#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(35, 35, 35, 0.94);
	z-index: 10;
	visibility: hidden;
	-webkit-filter: opacity(0%);
	filter: opacity(0%);
}
#overlay.show {
	visibility: visible;
	-webkit-filter: opacity(100%);
	filter: opacity(100%);
}
#videobox .player #playerFake {
	width: 100%;
	height: 570px;
	position: relative;
	background-size: cover;
	background-position: center;
}
#videobox .player #playerFake .load {
	width: 56px;
	height: 56px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
	-o-transform: translate(-50%, -50%) rotate(0deg);
	-ms-transform: translate(-50%, -50%) rotate(0deg);
	-moz-transform: translate(-50%, -50%) rotate(0deg);
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	background-image: url(../img/loadVideo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-color: #212121;
	border-radius: 100%;
	z-index: 10;
	animation: spinLoad 1.5s linear infinite;
	display: none;
}
#videobox .player #playerFake .play {
	width: 56px;
	height: 56px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%, -50%);
	-o-transform:translate(-50%, -50%);
	-ms-transform:translate(-50%, -50%);
	-moz-transform:translate(-50%, -50%);
	-webkit-transform:translate(-50%, -50%);
	background-image: url(../img/play-video.png);
	background-color: #fff;
	border-radius: 100%;
	z-index: 5;
}
#videobox .text {
	width: 100%;
	display: inline-block;
	text-align: center;
	padding: 25px 60px 0 60px;
	color: #fff;
}
#videobox .text h3 {
	margin: 0 0 25px 0;
	padding: 0;
	font-size: 34px;
	font-weight: 900;
	text-transform: uppercase;
}
#videobox .text p {
	font-size: 14px;
	font-weight: 400;
	margin: 0 0 25px 0;
	line-height: 180%;
}

.sharebox {
	width: 100%;
	background: #f95410;
	color: #fff;
	text-align: center;
	padding: 25px;
}
.sharebox .row {
	justify-content: center;
}
.sharebox a {
	width: 32px;
	height: 32px;
	background: #fff;
	border-radius: 10px;
	font-size: 22px;
	color: #f95410;
	margin: 0 0 0 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}
.sharebox a:hover {
	-webkit-filter: opacity(70%);
	filter: opacity(70%);
}
.sharebox span {
	font-size: 16px;
	font-weight: 700;
	margin: 0 4px 0 0;
}

.related {
	margin: 50px 0;
}
.related .title {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 20px 0;
}
.related .row {
	width: auto;
	margin: 0 -8px;
}
.related .col {
	flex: 1;
	max-width: calc(25% - 16px);
	margin: 0 8px;
}
.related .col a {
	text-decoration: none;
}
.related .col a:hover {
	filter: opacity(70%);
}
.related .col strong {
	font-size: 13px;
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
	max-width: 100%;
	display: inline-block;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 10px 0 0 0;
}
.related .col small {
	font-size: 11px;
	font-weight: 400;
	color: #aaa;
	padding: 5px 0 0 0;
	display: inline-block;
	width: 100%;
	white-space: nowrap;
	max-width: 100%;
	display: inline-block;
	text-overflow: ellipsis;
	overflow: hidden;
}
.related .col span {
	color: #f95410;
	font-size: 12px;
	font-weight: 400;
	text-decoration: none;
}

footer {
	background: #000;
	margin: 30px 0 0 0;
	position: relative;
	z-index: 12;
}
footer .top {
	padding: 36px 0 0 0;
}
footer .top .left {
	min-width: 210px;
}
footer .top .right {
	flex: 1;
	padding: 0 0 30px 50px;
}
footer .top .right .text {
	line-height: 200%;
}
footer .top .right .text h4 {
	font-size: 20px;
	color: #f95410;
	background: #fff;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 5px 0;
	padding: 1px 6px;
}
footer .top .right .text p {
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	margin: 0;
	padding: 0;
}
footer .top .right .text p a {
	text-decoration: none;
	color: #fff;
	font-weight: 900;
}
footer .top .right .text .button {
	margin: 30px 0 0 0;
	padding: 22px 50px;
	display: inline-block;
	text-align: center;
	border: 5px solid #fff;
	border-radius: 15px;
	background: #46a22c;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
	line-height: 160%;
	text-decoration: none;
	background: -moz-linear-gradient(top,  #46a22c 0%, #38951e 100%);
	background: -webkit-linear-gradient(top,  #46a22c 0%,#38951e 100%);
	background: linear-gradient(to bottom,  #46a22c 0%,#38951e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#46a22c', endColorstr='#38951e',GradientType=0 );
	box-shadow: inset -3px -3px 8px #276815, inset 3px 3px 4px rgba(255, 255, 255, 0.3);
}
footer .top .right .text .button > * {
	-webkit-transition: all 0ms linear;
	-moz-transition: all 0ms linear;
	-ms-transition: all 0ms linear;
	transition: all 0ms linear;
}
footer .top .right .text .button .lg {
	font-size: 30px;
	font-weight: 900;
	text-transform: uppercase;
}
footer .top .right .text .button .sm {
	font-size: 16px;
	font-weight: 700;
}
footer .top .right .text .button:hover {
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4), 0 0 10px #fff;
	box-shadow: inset 3px 3px 8px #276815, inset -3px -3px 4px rgba(255, 255, 255, 0.3);
}
footer .bottom {
	text-align: center;
	font-size: 11px;
	text-transform: uppercase;
	padding: 25px 0;
	border-top: 1px solid #272727;
}

/* VIDEO JS */
.video-js .vjs-big-play-button {
	width: 56px;
	height: 56px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%, -50%);
	-o-transform:translate(-50%, -50%);
	-ms-transform:translate(-50%, -50%);
	-moz-transform:translate(-50%, -50%);
	-webkit-transform:translate(-50%, -50%);
	background-image: url(../img/play-video.png);
	border: 0;
	background-color: #fff;
	border-radius: 100%;
	z-index: 5;
	cursor: pointer;
	outline: 0;
	-webkit-transition: all .2s linear !important;
	-moz-transition: all .2s linear !important;
	-ms-transition: all .2s linear !important;
	transition: all .2s linear !important;
}
.video-js .vjs-big-play-button span {
	display: none;
}
.vjs-poster {
	background-size: cover;
}
.vjs-ended .vjs-poster {
	display: inline-block !important;
}
.vjs-ended .vjs-control-bar {
	display: none !important;
}

@keyframes spinLoad {
	from{
		transform: translate(-50%, -50%) rotate(0deg);
		-o-transform: translate(-50%, -50%) rotate(0deg);
		-ms-transform: translate(-50%, -50%) rotate(0deg);
		-moz-transform: translate(-50%, -50%) rotate(0deg);
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
	}
	to{
		transform: translate(-50%, -50%) rotate(360deg);
		-o-transform: translate(-50%, -50%) rotate(360deg);
		-ms-transform: translate(-50%, -50%) rotate(360deg);
		-moz-transform: translate(-50%, -50%) rotate(360deg);
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
	}
}

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

	.container {
		max-width: 94%;
	}
	.row {
		flex-wrap: wrap;
	}
	
	/* HEADER */
	header {
		padding: 12px 0;
	}
	header .logo img {
		height: 30px;
		width: auto;
	}
	header .share a {
		width: 28px;
		height: 28px;
		font-size: 20px;
		margin: 0 0 0 6px;
	}
	header .share span {
		font-size: 11px;
	}
	#title {
		padding: 20px 0;
	}
	#title .left {
		margin: 0 auto;
		text-align: center;
	}
	#title .left .text .sm {
		font-size: 25px;
	}
	#title .left .text .lg {
		font-size: 35px;
		line-height: 40px;
	}
	#title .left .text .bg {
		font-size: 14px;
		width: auto;
		padding: 5px 20px;
	}
	#title .right {
		min-width: 100%;
		max-width: 100%;
		text-align: center;
	}
	#title .right .text {
		padding: 0 5%;
		margin: 20px 0 0 0;
		line-height: 140%;
	}
	#title .right .text h2 {
		font-size: 15px;
		max-width: 200px;
		margin: 0 auto;
	}
	#title .right .text p {
		font-size: 13px;
	}
	
	#videobox .player {
		border: 5px solid #7b7b7b;
	}
	#videobox .player #endvideo .center {
		margin: -15px 0 0 0;
		padding: 25px 6%;
		line-height: 130%;
	}
	#videobox .player #endvideo .center .lg {
		font-size: 12px;
	}
	#videobox .player #endvideo .center .md {
		font-size: 13px;
	}
	#videobox .player #endvideo .center .button {
		text-align: center;
		margin: 10px 0 -40px 0;
	}
	#videobox .player #endvideo .center .button a {
		padding: 8px 20px;
		border: 2px solid #fff;
	}
	#videobox .player #endvideo .center .button a .lg {
		font-size: 16px;
	}
	#videobox .player #endvideo .center .button a .sm {
		display: none;
	}
	#videobox .player #playerFake {
		height: 0;
		padding-top: 65%;
	}
	#videobox .text {
		width: 100%;
		display: inline-block;
		text-align: center;
		padding: 20px 15px 5px 15px;
		color: #fff;
	}
	#videobox .text h3 {
		margin: 0 0 15px 0;
		font-size: 18px;
	}
	#videobox .text p {
		font-size: 13px;
		margin: 0 0 15px 0;
		line-height: 160%;
	}
	
	.sharebox {
		padding: 15px;
	}
	
	.related {
		margin: 30px auto 0 auto;
	}
	.related .title {
		font-size: 14px;
		margin: 0 0 12px 0;
	}
	.related .row {
		margin: 0 -5px;
	}
	.related .col {
		max-width: calc(50% - 10px);
		margin: 0 5px 15px 5px;
	}
	.related .col strong {
		font-size: 12px;
		padding: 6px 0 0 0;
	}
	.related .col small {
		padding: 3px 0 0 0;
		line-height: 8px;
	}
	.related .col span {
		font-size: 11px;
		line-height: 11px;
	}
	
	footer .top {
		padding: 26px 0 0 0;
	}
	footer .top .left {
		min-width: 100%;
		text-align: center;
	}
	footer .top .left img {
		max-width: 150px;
	}
	footer .top .right {
		padding: 0 5%;
	}
	footer .top .right .text {
		line-height: 180%;
	}
	footer .top .right .text h4 {
		font-size: 18px;
		text-align: center;
		padding: 6px 12px;
		border-radius: 10px;
	}
	footer .top .right .text p {
		font-size: 15px;
		text-align: center;
	}
	footer .top .right .text .button {
		width: 100%;
		margin: 20px 0 0 0;
		padding: 15px 12px;
		border: 4px solid #fff;
	}
	footer .top .right .text .button .lg {
		font-size: 22px;
	}
	footer .top .right .text .button .sm {
		font-size: 11px;
		font-weight: 700;
	}
	footer .bottom {
		margin: 20px 0 0 0;
		font-size: 11px;
		line-height: 160%;
		padding: 15px 0;
	}
	
	/* VIDEO JS */
	.video-js .vjs-big-play-button {
		width: 56px;
		height: 56px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform:translate(-50%, -50%);
		-o-transform:translate(-50%, -50%);
		-ms-transform:translate(-50%, -50%);
		-moz-transform:translate(-50%, -50%);
		-webkit-transform:translate(-50%, -50%);
		background-image: url(../img/play-video.png);
		border: 0;
		background-color: #fff;
		border-radius: 100%;
		z-index: 5;
		cursor: pointer;
		outline: 0;
		-webkit-transition: all .2s linear !important;
		-moz-transition: all .2s linear !important;
		-ms-transition: all .2s linear !important;
		transition: all .2s linear !important;
	}
	.video-js .vjs-big-play-button span {
		display: none;
	}
	.vjs-poster {
		background-size: cover;
	}



}