@charset "utf-8";
/* CSS Document */

/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

*{
	box-sizing: border-box;
	}
body {
	font-family: "Open Sans", sans-serif;
	overflow-x: hidden;
	}
.container {
	margin: 0 auto;
	max-width: 95vw;
	}
.container-med {
	margin: 0 auto;
	max-width: 1300px;
	}
.container-sm {
	margin: 0 auto;
	max-width: 1100px;
	}

a {
	text-decoration: none;
	color: inherit;
	}
li {
	list-style: none;
	}
	
/*Overlay and cut sheets stuff*/
.overlay {
	background-color: rgba(0,0,16,0.7);
	display: none;
		width: 100%;
		height: 100%;
	position: fixed;
		top: 0;
		left: 0;
		z-index: 500;
}
.modal {
	background-color: #456AE0;
	color: #fff;
	display: block;
	padding: 20px;
	position: absolute;
	top: calc(50% - 200px);
	left: calc(50% - 200px);
	z-index: 520;
	box-shadow: 5px 5px 7px #000;
	font-size: 18px;
	border: 5px solid #000;
	height: auto;
	width: 400px;
	margin: 0 auto;
}
.modal h1 {
	font-weight: 700;
	margin-bottom: 10px;
}
.modal a {
	text-decoration: none;
}
.modal a:hover, .modal a:active {
	color: #fff;
	text-decoration: underline;
}
.modal ul.sheets {
	padding: 10px;
}
.modal ul.sheets li:before {
	font-family: FontAwesome;
	content: "\f00c";
	padding-right: 0.5em;
	}
.sheets li {
	padding-bottom: 5px;
	}
.sheets:after {
	font-family: FontAwesome;
	content: "\f1b9";
	float: right;
	positon: absolute;
	margin-top: -170px;
	font-size: 140px;
	color: #fff;
	text-shadow: 0px 0px 50px #000;
	}
#forms,
.cutSheetsBtn:hover {
	cursor: pointer;
	}

/*End cut sheet stuff*/	

	
.top-header {
	width: 100%;
	background: #f1c40f;
	position: fixed;
	z-index: 6;
	padding: .5rem;
		}
.top-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	
	}
.top-info li {
	color: #fff;
	font-size: 14px;
	}
.top-info i {
	padding: 0rem .25rem;
	}
.header {
	width: 100%;
	position: fixed;
	top: 30px;
	left: 0;
	padding: .5rem;
	z-index: 100;
  background: rgba(69, 106, 224, .9);
  box-shadow: 0px 2px 5px #000;
	}

.inner-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
			width: 100%;
			-webkit-box-pack: justify;
			    -ms-flex-pack: justify;
			        justify-content: space-between;
					padding-top: .5rem;
					-webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
	}
.inner-header img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 275px;
	}
#inner-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	}
#inner-left p {
	color: #fff;
	letter-spacing: .15px;
	font-size: 14px;
	padding: .5rem;
	font-style: italic;
	}
.over-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	}
ul#sm-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: .5rem 0rem;
	
	}
ul#sm-nav li {
	font-size: 12px;
	color: #fff;
	padding: 0rem .5rem;
	}
ul#sm-nav li:hover {
	text-decoration: underline;
	}
ul#requests {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	}
ul#requests li {
	font-size: 15px;
	font-weight: 700;
	color: #f1c40f;
	padding: .5rem;
	-webkit-transition:all 0.2s ease;
	transition: all 0.2s ease;
		}
ul#requests li:hover {
	color: #fff;
	}
.nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 2rem;
	}
.nav li {
	list-style: none;
	padding: .5rem .75rem;
  font-size: 1rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #fff;
  text-transform: uppercase;
  font-family: "Oswald";
  letter-spacing: 1.5px;
  font-weight: 700;
  cursor: pointer;
	}
.nav li:hover {
	color: #f1c40f;
	}
li#contact-nav {
	padding: .5rem;
	}

#menuBtn {
	display: none;
	}
	#vid-wrap {
position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
  z-index: 0;
  top: 0;
	}
#video {
	/* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 
  
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;
  
  /* Center the video */
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
		  margin-top: -155px;
	}
ul#video-call {
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin-top: 350px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #fff;
	line-height: 2;
	text-align: center;
	padding: 0 10px;
	}
ul#video-call li:nth-child(1) {
	font-family: "Oswald";
	font-weight: 700;
	font-size: 2.75rem;
	letter-spacing: 1px;
	}
ul#video-call li#searchNowBtn {
	font-size: 1rem;
	padding: .5rem 1rem;
	border: 5px solid #fff;
	-webkit-transition:.2s all ease-in-out;
	transition: .2s all ease-in-out;
	}
li#searchNowBtn:hover {
	background-color: #fff;
	color: #456AE0;
	}
	
	
.about {
	background-image: url("../graphics/lg-yard.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,.65);
	background-blend-mode: multiply;
	}
#about-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 100vh;
	text-align: center;
	}
#about-list li {
	padding: 1rem .5rem;
	}
#about-list li:nth-child(1),
#about-list li:nth-child(3) {
	font-family: "Oswald";
	font-weight: 700;
	color: #f1c40f;
	}
#about-list li:nth-child(1) {
	font-size: 2.1rem;
	font-style: italic;
	letter-spacing: 1px;
	}
#about-list li:nth-child(2) {
	color: #fff;
	line-height: 1.7;
	max-width: 77ch;
	text-align: center;
	font-size: 1.2rem;
	}
#about-list li:nth-child(3) {
	font-size: 1.75rem;
	letter-spacing: 1px;
	}
	
	
/**main**/

.main-info {
	background-image: url("../graphics/lgyard1.jpg");
	background-color: rgba(255,255,255,.8);
	background-blend-mode: screen;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 0rem .5rem;
	}

.call-out {
		font-size: 2rem;
		font-family: "Oswald", sans-serif;
		font-weight: 700;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		color: #456AE0;
		}
	#mid-call {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		padding-top: .5rem;
		letter-spacing: 3px;
		padding-bottom: 2rem;
		text-align: center;
		}

#main {
	padding: 4rem .5rem;
	}
h1#main-call {
	padding: 0rem .5rem 1rem .5rem;
	}
#main-img-wrap {
	}
#main-img-wrap img {
	float: right;
	margin: 0px 0px 10px 20px;
	padding: 5px;
	border: 1px solid rgba(0,0,0,.5);
	height: auto;
	width: 45%;
	}
p.biz-info {
	line-height: 1.8;
	font-size: 18px;
	padding: 0rem .5rem;
	font-family: "Monserrat", sans-serif;
	}
p.biz-info a {
	color: #456AE0;
	font-weight: 700;
	}
p.biz-info a:hover {
	text-decoration: underline;
	}
#left-biz {
	background: rgba(255,255,255,.35);
	padding-top: 1rem;
	}
	span.bolder {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1;
	}

/**info**/

#info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	padding: .5rem 1rem 1rem 1rem;
	}
#left-info {
	-webkit-box-flex: 2;
	    -ms-flex: 2;
	        flex: 2;
	background-image: url("../graphics/stack3.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: rgba(253, 181, 21, .95);
	background-blend-mode: screen;
	padding: 1rem;
	}
#right-info {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding-left: .75rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-pack: distribute;
	    -webkit-box-pack: justify;
	        justify-content: space-between;
	}
#left-info h1 {
	margin: 1rem 0rem;
	padding: 1rem .5rem;
	background: rgba(255,255,255,.35);
	}

#left-info img {
	float: left;
	margin: 10px 10px 5px 0px;
	padding: 5px;
	border: 1px solid rgba(148, 34, 33, .5);
	}
	
#hours {
	width: auto;
	overflow: hidden;
	padding: 1rem;
	background: #f1c40f;
	color: #fff;
	box-shadow: 4px 4px 8px #2c2b2c;
	line-height: 1.5;
	}
#hours h1 {
	font-weight: 700;
	text-align: center;
	font-family: "Oswald", sans-serif;
	font-size: 1.3rem;
	letter-spacing: 2px;
	padding-bottom: .5rem;
	border-bottom: 1px solid #fff;
	margin-bottom: .5rem;
	}
	
li.day {
	float: left;
	}
li.time {
	float: right;
	}
	
ul#form-btns li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #456AE0;
	color: #fff;
	margin: .5rem 0rem;
	padding: .5rem;
	}
ul#form-btns li:hover {
	background: #f1c40f;
	}
#btm-photo-wrap {
	width: 100%;
	height: auto;
	}
#btm-photo-wrap img {
	height: auto;
	width: 100%;
	padding: 5px;
	}
span#didyou {
	font-size: 1.4rem;
	font-weight: 700;
	font-style: italic;
	font-family: "Oswald", sans-serif;
	letter-spacing: 1px;
	}
ul#service-list {
	background: rgba(255,255,255,.35);
	}
ul#service-list li {
	margin-left: 2rem;
	line-height: 1.7;
	font-size: 1.4rem;
	font-weight: 700;
	color: #000;
	}
ul#service-list li span {
	font-size: 12px;
	}
ul#service-list li:before {
	content: "\f046";
	font-family: FontAwesome;
	padding-right: 5px;
	color: #456AE0;
	text-shadow: none;
	}
/**end info**/

/********************************************************************FOOTER**********************************/

.footer {
	background: #456AE0;
	}
.footer-cont {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding: 1rem;
	color: #fff;
	}
.footer-cont h1 {
	font-size: 2.25rem;
	font-weight: 700;
	padding-bottom: 1rem;
	font-family: "Oswald", sans-serif;
	letter-spacing: 2px;
	color: #f1c40f;
	}
.footer-cont li {
	line-height: 1.7;
	font-family: "Oswald", sans-serif;
}
#footer-mid li:hover, #footer-right li:hover {
	color: #f1c40f;
	cursor: pointer;
	}
.footer-cont li i {
	padding-right: .5rem;
	}
p#copy {
	color: #f1c40f;
	font-family: "Oswald", sans-serif;
	letter-spacing: 1px;
	padding: 1rem .5rem;
	}
	
	
/***********************************************   W A R R A N T Y    P A G E   **************************************************/

.hero {
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	position: relative;
	}
#warranty-hero {
	background-image: url("../graphics/herowar.jpg");
	height: auto;
	position: relative;
	}
#warranty-cont {
	padding-top: 200px;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 100px;
	position: relative;
	}
#warranty-cont h1{
	background: #456AE0;
	background-image: url("../graphics/trax.png");
	background-repeat: no-repeat;
	background-blend-mode: multiply;
	background-position: 2% center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border: 12px solid rgba(0,0,0,.5);
	font-size: 2rem;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	letter-spacing: 3px;
	padding: 2rem;
	color: #fff;
	}
#lilboxes {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	}
#lilboxes h2 {
	line-height: 1.5;
	font-size: 1.2rem;
	color: #fff;
	background: #f1c40f;
	border: 12px solid rgba(255,255,255,.4);
	padding: 1rem 2rem;
	-webkit-box-flex: .75;
	    -ms-flex: .75;
	        flex: .75;
	letter-spacing: 2px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	}
#lilboxes h3 {
	line-height: 1.5;
	font-size: 1.2rem;
	color: #fff;
	border: 12px solid #f1c40f;
	background: #456AE0;
	padding: 1rem;
	-webkit-box-flex: 1.25;
	    -ms-flex: 1.25;
	        flex: 1.25;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	}
#lilboxes h3 a {
	font-size: 14px;
	font-weight: 700;
	background: #f1c40f;
	color: #456AE0;
	padding: 5px 10px;
	display: block;
	text-align: center;
	margin: .5rem 0 0 0;
	max-width: 30%;
	-webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property:-webkit-transform;
  transition-property:-webkit-transform;
  transition-property:transform;
  transition-property: transform, -webkit-transform;
	}
#lilboxes h3 a:before {
	 pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  -webkit-transition-property:opacity, -webkit-transform;
  transition-property:opacity, -webkit-transform;
  transition-property:transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
	}
#lilboxes h3 a:hover {
	background-color: #fff;
	-webkit-transform: translateY(-5px);
  transform: translateY(-5px);
	}
#lilboxes h3 a:hover:before {
	 opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
	}
ul#warranty-list {
	background: #456AE0;
	border: 12px solid #fff;
	max-width: 100%;
	line-height: 2.5;
	padding: 0 0 0 2rem;
	}
ul#warranty-list li {
	font-size: 21px;
	color: #fff;
	font-family: "Oswald", sans-serif;
	text-align: left;
	list-style-position: inside;
	}
ul#warranty-list li:before {
	font-family: FontAwesome;
	padding-right: 1rem;
	color: #f1c40f;
	-webkit-text-stroke: 1px #fff;
	font-size: 1.45em;
	content: "\f00c";
	}

/*********************************************** E N D   W A R R A N T Y    P A G E **************************************************/

/***********************************************  C O N T A C T   P A G E **************************************************/
.form-container {
	background: url("../graphics/lg-yard.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 11.7rem;
	padding-bottom: 2rem;
	}
#mailForm {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: rgba(255,255,255,.9);
	color: #000;
	padding: 1rem .5rem 2rem;
	border: 5px solid #456ae0;
	margin: 2rem 0 0;
}
.form-title {
	font-family: "Oswald", sans-serif;
	font-size: 24px;
	color: #fff;
	background: #456ae0;
	margin: 1rem 0;
	padding: 1rem 2rem;
	border: 5px solid #f1c40f;
	}
#mailForm h1 {
	font-size: 16px;
}
#mailForm label {
	color: #456AE0;
	font-weight: 700;
}
#mailForm .junkerDetails {
	border: 3px double #456AE0;
	margin: .5em 1em 0 1em;
	padding: 1em;
}
#mailForm .fixed {
	display: inline-block;
	width: 10ch;
}
#mailForm .block {
	display: block;
	margin-bottom: 1em;
}
#mailForm .req, #mailForm label.req {
	color: #456AE0;
}
#mailForm .note, #check {
	margin: 1em 0;
}
#mailForm textarea {
	box-sizing: border-box;
		width: 90ch;
		height: 6em;
	outline: none;
	resize:both;
}
#mailForm input[type="submit"], #mailForm input[type="reset"] {
	background: #eee;
	color: #456AE0;
}
#mailForm input[type="submit"]:hover, #mailForm input[type="reset"]:hover {
	background: #eee;
	color: #456AE0;
}

@media screen and (max-width: 999px) {
	#mailForm .junkerDetails {
		margin: 0;
		margin-top: .5em;
	}
	#mailForm .block2 {
		display: block;
		margin-bottom: .5em;
	}
	#mailForm textarea {
		min-width: 30ch;
		max-width: 100%;
	}
}

/*********************************************** E N D  C O N T A C T  P A G E **************************************************/




/************************************************************ M A P   P A G E **************************/

#map-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
			background: rgba(255,255,255,.9);
			padding: 1rem;
	}
ul.location {
	margin: 10px 0;
	line-height: 1.2;
	}
li.location-name {
	font-weight: 700;
	text-decoration: underline;
	margin-bottom: 5px;
	}
/************************************************************ E N D   M A P   P A G E **************************/

@media all and (max-width: 1030px) {
	#info {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		}
	#right-info {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		padding-top: 0;
		}
	}

@media all and (max-width: 936px) {
	.nav {
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
		}
	.nav li {
		padding: .5rem .25rem;
		font-size: 14px;
		letter-spacing: 0;
		}
	}
	
@media all and (max-width: 767px) {
	body {
		overflow-X: hidden;
		}
	.top-header {
		line-height: 1.3;
		text-align: center;
		position: relative;
		}
	.top-info li {
	color: #fff;
	font-size: 2vw;
	}
	.header {
		position: relative;
		top: 0;
		width: 100%;
		overflow: hidden;
		background-color: #456AE0;
		}
	.inner-header {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		}
	.over-nav {
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		}
	#menuBtn {
		width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: flexend;
	    -ms-flex-pack: flexend;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	z-index: 400;
	margin: 0;
	font-size: 2rem;
	position: relative;
	background-color: #f1c40f;
	}
#menuBtn i {
	padding: .5rem 1rem .5rem 0;
	color: #fff;
	}
#menuBtn:focus {
	background: #456AE0;
	}
	.nav {
		display: none;
		position: absolute;
		z-index: 101;
		}

.nav.active {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
			height: auto;
			width: 100%;
			background: #456AE0;
			z-index: 50000;
			padding-top: 0;
				}
.nav li {
	text-align: left;
	padding: 1rem 0rem 1rem 1rem;
	font-size: 16px;
	width: 100vw;
	color: #fff;
}
li#contact-nav {
	padding: 1rem 0rem 1rem 1rem;
	}
.nav li:hover {
	background: #282828;
	color: #f1c40f;
	width: 100%;
	}
#right-info {
	padding-left: 0;
	padding-top: .5rem;
	}
#hours {
	box-shadow: none;
	}
.footer-cont {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	}
.footer-cont > ul {
	margin: .5rem 0;
	}
	
	
	/****  V I D E O   /   H E R O   S T U F F *****/
	
#vid-wrap {
	position: absolute;
	top: 0;
	height: 700px;
	}

#vid-wrap {
	}
#video {
	display: none;
	}
#mobile-vid-fallback {
	height: 100%;
	width: 100%;
	background-image: url("../graphics/stack1.jpg");
	background-color: rgba(0,0,0,.6);
	background-blend-mode: multiply;
	background-size: cover;
	}
ul#video-call {
	position: absolute;
	margin-top: 380px;
	line-height: 1.5;
	}
.about {
	padding-top: 375px;
	text-align: center;
	}
#about-list {
	min-height: 120vh;
	}
	/****** E N D   V I D E O   S T U F F ****/
	
#main-img-wrap img {
	float: none;
	width: 100%;
	margin: 0;
	}
h1#main-call {
	text-align: center;
	padding: .5rem;
	}
#info {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	}
ul#service-list li {
	margin-left: .5rem;
	line-height: 1.7;
	font-size: 1.2rem;
	}
ul#service-list li span {
	font-size: 12px;
	}
ul#service-list li:before {
	content: "\f046";
	font-family: FontAwesome;
	padding-right: 5px;
	color: #000;
	text-shadow: none;
	}
#warranty-cont {
	padding-top: 30px;
	width: calc(100% - 50px);
	}
#lilboxes {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	}
ul#warranty-list {
	line-height: 1.3;
	padding: 0 0 0 0rem;
	}
ul#warranty-list li {
	font-size: 21px;
	}
/*map page*/
#map-wrap {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	}
iframe {
	max-width: 100%;
	}

/*end map page mobile*/
	
/*contact page*/
.form-container {
	margin-top: 0;
	padding: 1rem;
	}
#mailForm {
	padding: 2rem .5rem;
}
#mailForm textarea {
		width: 50%;
}
/*end contact page */
}

@media all and (max-width: 425px) {
	#inner-left p {
		text-align: center;
		}
	#sm-nav {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		}
	
	}
	
/**thank you page**/
#thank-you {
	height: 600px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	line-height: 1.6;
	background-image: url("../graphics/high.jpg");
	background-position: center;
	background-size: cover;
	background-color: rgba(0,0,0,.75);
	background-blend-mode: multiply;
	color: #fff;
	}
#thank-you h1 {
	font-size: 3rem;
	padding: 0 .5rem;
	}
#thank-you a {
	background-color: #f1c40f;
	font-weight: 700;
	border-radius: 8px;
	text-shadow: 0px 0px 5px #000;
	padding: 10px 20px;
	}