
.main {
	margin-left: 0 !important;
}

#hero .down-arrow {
	bottom: 80px !important;
}

#videotext .item {
	position: absolute;
	bottom: 200px;
	left: 0;
	padding: 0;
	width: 100%;
	z-index: 1;
	text-align: right;
}
#videotext .item div {
	display: inline-block;
	background: rgba(0,0,0,0.55);
	padding: 24px;
	text-align: left;
}
#videotext span {
	color: #fff;
	font-size: 20px;
	line-height: 27px;
	font-weight: 200;
	display: inline-block;
	text-transform: uppercase;
}
#videotext span:before {
	content: "";
	display: block;
	width: 50px;
	border-top: 2px solid #fff;
	padding-top: 30px;
}

@media screen and (min-width: 768px) {
	#videotext .item {
		top: auto;
		bottom: 200px;
	}
	#videotext .item div {
		padding: 40px;
		display: inline-block;
	}
	#videotext span {
		font-size: 30px;
		line-height: 37px;
	}
	#videotext span:after {
		padding-top: 25px;
	}
}

#hero {
	grid-template-rows: 1fr !important;
}

.jquery-background-video-wrapper {
	position: relative;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	    	background-size: cover;
}
.jquery-background-video {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	top: 50%;
	left: 50%;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	    	transform: translate(-50%,-50%);
}
/**
 * Fade in videos
 * Note the .js class - so non js users still
 * see the video
 */
.js .jquery-background-video {
	opacity: 1;
	-webkit-transition: opacity 300ms linear;
			transition: opacity 300ms linear;
}
.js .jquery-background-video.is-visible {
	opacity: 1;
}

/**
 * Pause/play button
 */ 
.jquery-background-video-pauseplay {
	position: absolute;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	width: 20px;
	height: 20px;
	bottom: 70px !important;
	left: 25px !important;
	padding: 0 !important;
	cursor: pointer;
	outline: none !important;
}
@media screen and (min-width: 768px) {
	.jquery-background-video-pauseplay {
		top: 500px !important;
		right: 57rem !important;
	}
}
.jquery-background-video-pauseplay span {
	display: none;
}
.jquery-background-video-pauseplay:after,
.jquery-background-video-pauseplay:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: all .3s ease;
			transition: all .3s ease;
}
.jquery-background-video-pauseplay.play:before {
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #FFF;
}
.jquery-background-video-pauseplay.pause:before,
.jquery-background-video-pauseplay.pause:after {
	border-top: 10px solid #FFF;
	border-bottom: 10px solid #FFF;
	border-left: 5px solid #FFF;
}
.jquery-background-video-pauseplay.pause:after {
	left: 10px;
}