/* General Styles */
html {
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}
body {
	font-family: 'Oswald', sans-serif;
  font-weight: 400;
  width: 100%;
  height:100%;
	overflow-x: hidden;
}
.text-muted {
	color: #777;
}
.text-primary {
  color: #4F6F4C;
}
p {
  font-size: 20px;
	font-weight: 300;
  line-height: 1.40;
}
p.large {
  font-size: 18px;
}
a,
a:hover,
a:focus,
a:active,
a.active {
  outline: 0;
}
a {
  color: #fff;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
}
a:hover,
a:focus,
a:active,
a.active {
  color: #83b058;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
	text-transform: uppercase;
}
.img-centered {
  margin: 0 auto;
}
.bg-light-green {
	background-color: #e7ede0;
}
.bg-dark-green {
	background-color: #112f10;
}
.bg-dark-orange {
	background-color: #c75e12;
}
.bg-dark-red {
	background-color: #5b0b0d;
}

/* Button Styles */
.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
	color: #fff;
  background-color: #112f10;
  border-color: #112f10;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  transition: all .2s;
	margin-bottom: 20px;
}
.btn-primary:hover,
.open .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #83b058;
	border-color: #83b058;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  border-color: #83b058;
  background-color: #83b058;
}
.btn-primary .badge {
  color: #83b058;
  background-color: #ffffff;
}
.btn-xl,
.btn-xl:focus,
.btn-xl:active,
.btn-xl.active {
	margin: 10px;
	padding: 17px 20px;
	color: #FFF;
	background-color: #83b058;
	border: 2px #FFF solid;
	border-radius: 0;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
	letter-spacing: .4px;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  transition: all .2s;
}
.btn-xl:hover,
.open .dropdown-toggle.btn-xl {
  border-color: #8ebf60;
	background-color: #fff;
	color: #8ebf60;
}
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
  background-image: none;
}
.btn-quote,
.btn-quote:focus,
.btn-quote:active,
.btn-quote.active {
	border-color: #112f10;
	background-color: #fff;
	color: #112f10;
}
.btn-quote:hover,
.open .dropdown-toggle.btn-quote {
	border-color: #8ebf60;
	background-color: #fff;
	color: #8ebf60;
}
.btn-quote-orange,
.btn-quote-orange:focus,
.btn-quote-orange:active,
.btn-quote-orange.active {
	border-color: #f8951e;
	background-color: #f8951e !important;
}
.btn-quote-orange:hover,
.open .dropdown-toggle.btn-quote-orange {
	color: #f8951e !important;
	border-color: #fff;
	background-color: #fff !important;
}
.btn-quote-red,
.btn-quote-red:focus,
.btn-quote-red:active,
.btn-quote-red.active {
	border-color: #ee1f28;
	background-color: #ee1f28 !important;
}
.btn-quote-red:hover,
.open .dropdown-toggle.btn-quote-red {
	color: #ee1f28 !important;
	border-color: #fff;
	background-color: #fff !important;
}
/* Navigation Styles */
.navbar {
	margin-bottom: 0;
}
.navbar-default {
  background-color: #fff;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: none;
	width: 100%;
}
.navbar-default .navbar-brand {
	padding-top: 0;
}
.navbar-default .navbar-brand img {
	height: 60px;
}

.navbar-default .navbar-collapse {
	background-color: #fff;
	border-right: 1px #fff solid;
	border-top: 1px #8ebf60 solid;
	position: absolute;
  width: 100%;
	z-index:1;
}
.collapse-orange {
	border-top: 1px #f8951e solid !important;
}
.collapse-red {
	border-top: 1px #ee1f28 solid !important;
}
.navbar-default .navbar-toggle {
  margin-top: 15px;
  margin-bottom: 15px;
  border: 2px solid #112f10;
  background-color: #fff;
}
.toggle-orange {
	border-color: #c75e12;
}
.toggle-orange:hover,
.toggle-orange:focus {
	color: #f8951e !important;
	border-color: #f8951e !important;
}
.toggle-orange .icon-orange {
	background-color: #c75e12 !important;
}
.toggle-orange:hover .icon-orange {
	background-color: #f8951e !important;
}
.toggle-red {
	border-color: #5b0b0d;
}
.toggle-red:hover,
.toggle-red:focus {
	color: #ee1f28 !important;
	border-color: #ee1f28 !important;
}
.toggle-red .icon-red {
	background-color: #40080a !important;
}
.toggle-red:hover .icon-red {
	background-color: #ee1f28 !important;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
	color: #8ebf60;
	background-color: #ffffff;
	border-color: #8ebf60;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #112f10;
}
.navbar-default .navbar-toggle:hover .icon-bar {
  background-color: #8ebf60;
}
.navbar-default .nav li a {
	color: #112f10;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 900;
	text-transform: uppercase;
}
.navbar-default .nav li a:hover,
.navbar-default .nav li a:focus {
  outline: 0;
  color: #98cc67;
}
.orange-nav {
	color: #c75e12 !important;
}
.orange-nav:hover {
	color: #f8951e !important;
}
.red-nav {
	color: #5b0b0d !important;
}
.red-nav:hover {
	color: #ee1f28 !important;
}
@media(min-width:768px) {
  .navbar-default {
  	padding: 0 0 10px 0;
    border: 0;
	}
	.navbar-default .navbar-brand img {
		padding-top: 5px;
		height: 80px;
  }
	.navbar-default .navbar-collapse {
		background-color: transparent;
		border:none;
		position: inherit;
  }
	.collapse-orange {
		border-top: none !important;
	}
	.collapse-red {
		border-top: none !important;
	}
  .navbar-default .nav li a {
		padding-top: 35px;
		line-height: 32px;
		padding-left: 13px;
		padding-right: 13px;
		-webkit-transition: all .2s;
		-moz-transition: all .2s;
		transition: all .2s;
	}
}

/* Main Page Styles */
/* Call Now Section */
#call-now {
	padding-top: 15px;
	padding-bottom: 12px;
}
#call-now p {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	margin-bottom: 5px;
	line-height: 1.80;
}
#call-now a {
	scroll-behavior: smooth;
}
#call-now a:focus {
	text-decoration: none;
}
.call-green:hover {
	color: #b2e483;
}
.call-orange:hover {
	color: #ffbb67;
}
.call-red:hover {
	color: #f53640;
}
.btn-call {
	background-color: #8ebf60;
	margin-left: 10px;
	display:inline;
}
.btn-call:hover {
	color: #8ebf60;
	background-color: #fff;
	border-color: #fff;
}

/* Header Section */
header {
	background-attachment: scroll;
	background: url('../img/header-bg.jpg') no-repeat center center;
	color: #fff;
}
header .intro-text {
  padding-top: 80px;
  padding-bottom: 100px;
}
header h1 {
	margin-bottom: 20px;
	padding: 0;
	color: #fff;
  font-size: 48px;
	font-weight: 700;
  line-height: 60px;
}
@media(min-width:768px) {
	header .intro-text {
  	padding-top: 100px;
    padding-bottom: 110px;
  }
	header h1 {
	  font-size: 64px;
	  line-height: 84px;
	}
}

/* General Content Section Styles */
section {
	padding: 80px 0;
}
section h2.section-heading {
	margin-top: 0;
	margin-bottom: 30px;
	padding-bottom: 5px;
	color: #112f10;
	font-size: 38px;
	border-bottom: 5px #112f10 solid;
	display: inline-block;
}
section h2.heading-light-green {
	color: #83b058;
	border-bottom: 5px #83b058 solid;
}
section h2.heading-white {
	color: #fff;
	border-bottom: 5px #fff solid;
}
section h2.heading-orange {
	color: #c75e12;
	border-bottom: 5px #c75e12 solid;
}
section h2.heading-red {
	color: #5b0b0d;
	border-bottom: 5px #5b0b0d solid;
}
@media(min-width:768px) {
	section {
  	padding: 80px 0;
  }
	section h2.section-heading {
		font-size: 44px;
	}
}
@media(min-width:992px) {
  .parent {
  	display: table;
   	table-layout: fixed;
	}
	.child {
  	display: table-cell;
    vertical-align: middle;
    float: none;
	}
}

/* About Us Section */
#about-us a {
	color: #112f10;
	font-weight: 400;
	text-decoration: underline;
	white-space: nowrap;
}
#about-us a:hover {
	color: #8ebf60;
}
#about-us img {
	margin-top: 30px;
}
#about-us span {
	color: #112f10;
	font-weight: 400;
}
.logo-margin {
	margin-top: 0 !important;
}
.caption {
	padding-top: 10px;
	margin-bottom: 0;
	font-weight: 400;
}
@media(min-width:992px) {
	#about-us img {
  	margin-top: 0;
  }
}

/* YouTube Video Section */
#video {
	padding: 20px 0 45px 0;
}
#video p {
	font-size: 19px;
	padding-bottom: 20px;
}
@media(min-width:768px) {
	#video p {
  	font-size: 21px;
  }
}
/* Referrals Section */
#referrals {
	background-attachment: scroll;
	background: url('../img/referral-bg.jpg') no-repeat center center;
	color: #fff;
}
#referrals h2 {
	font-size: 44px;
}
@media(min-width:1200px) {
	#referrals p {
  	padding-left: 90px;
		padding-right: 90px;
  }
}

/* Area of Operation Section */
#operation-area h3 {
	color: #83b058;
	font-size: 34px;
	text-transform: none;
}
#operation-area p {
	color: #112f10;
}
#operation-area ul {
	list-style-type: none;
	margin-bottom: 0;
	padding-left: 0;
	color: #112f10;
}
#operation-area li {
	font-size: 22px;
	padding-bottom: 3px;
	font-weight: 300;
}
#operation-area a {
	color: #112f10;
	font-weight: 400;
	text-decoration: underline;
	white-space: nowrap;
}
#operation-area a:hover {
	color: #8ebf60;
}
@media(min-width:768px) {
	.area-col {
		text-align:center;
	}
}

/* Services Section */
.services-img-top-padding {
	padding-top: 30px;
}
#services {
	padding-bottom: 60px;
}
#services h3 {
	color: #112f10;
	font-size: 32px;
}
#services p {
	margin-bottom: 20px;
}
#services a {
	margin-bottom: 30px;
}
#services-row {
	margin-top: 15px;
}

/* Contact Section */
section#contact {
  background-attachment: scroll;
  background: url('../img/contact-bg.png') no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
#contact p {
	color: #fff;
	margin-bottom: 20px;
}
#contact a:hover {
	color: #fff;
	text-decoration: underline;
}
section#contact .form-group {
  margin-bottom: 25px;
}
section#contact .form-group input,
section#contact .form-group textarea {
  padding: 15px;
}
section#contact .form-group input.form-control {
  height: auto;
}
section#contact .form-group textarea.form-control {
  height: 291px;
}
section#contact .form-control {
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
  font-weight: 400;
	border-radius: 0;
}
section#contact .form-control:focus {
  border-color: #AAEFA2;
}
section#contact label {
	padding-right:5px;
	font-size: 18px;
	font-weight: 400;
	color: #fff;
}
section#contact::-webkit-input-placeholder {
  text-transform: uppercase;
  color: #ccc;
}
section#contact:-moz-placeholder {
  text-transform: uppercase;
  color: #ccc;
}
section#contact::-moz-placeholder {
  text-transform: uppercase;
  color: #ccc;
}
section#contact:-ms-input-placeholder {
  text-transform: uppercase;
  color: #ccc;
}
.text-danger {
  color: #e74c3c;
	font-size: 17px;
}

/* Footer Section */
footer {
	padding: 30px 0;
}
footer ul {
	list-style-type:none;
	padding-left: 0;
	margin-bottom: 0;
}
footer ul li {
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 17px;
	font-weight: 400;
}
#contact-info li {
	padding: 3px 0;
}
#copy li {
	padding: 2px 0;
}
#copy a {
	padding-right: 4px;
	text-decoration: none;
}
.copy-orange:hover,
.copy-orange:focus
 {
	color: #f8951e !important;
}
.copy-red:hover,
.copy-red:focus {
	color: #ee1f28 !important;
}
footer .fa {
	font-size: 30px;
}
@media(min-width:768px) {
	#copy ul li {
		text-align: right;
	}
	#copy a {
		padding-left: 4px;
	}
}
@media(min-width:992px) {
	footer ul li {
		font-size: 17px;
	}
}

/* Other Page Header Styles */
#other-title {
	padding: 0;
	height: 200px;
}
#other-title h1 {
	padding-top: 80px;
	color: #fff;
  font-size: 48px;
	font-weight: 700;
  line-height: 60px;
}
.services-bg {
	background-attachment: scroll;
  background: url('../img/services-bg.jpg') no-repeat top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.projects-bg {
	background-attachment: scroll;
  background: url('../img/projects-bg.jpg') no-repeat top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
@media(min-width:768px) {
	#other-title h1 {
	  font-size: 64px;
	  line-height: 84px;
	}
}

/* Services Page Styles */
.title-margin {
	margin-top: 40px !important;
}
.service-title {
	color: #df6913;
	font-size: 24px;
	font-weight: 400;
}
#services-main a {
	color: #df6913;
	font-weight: 400;
	text-decoration: underline;
	white-space: nowrap;
}
#services-main a:hover {
	color: #f8951e;
}
#services-main img {
	margin-top: 15px;
}

/* Gallery Page Styles */
#gallery h3 {
	margin-top: 20px;
	margin-bottom: 30px;
	font-size: 42px;
}
#gallery-p a {
	color: #5b0b0d;
	font-weight: 400;
	text-decoration: underline;
	white-space: nowrap;
}
#gallery-p a:hover {
	color: #ee1f28;
}
#gallery-p a.thumbnail:hover, #gallery-p a.thumbnail:focus,
#gallery-p a.thumbnail:active {
		border-color: #ee1f28;
}
#gallery-set p {
	padding-bottom: 15px;
	font-size: 20px;
}
#gallery-set span {
	font-weight: 400;
}
#gallery-set a:hover,
#gallery-set a:focus {
	border-color: #ee1f28;
}
.project-p-pad {
	padding-bottom: 30px;
}
.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
    outline: 0;
}
::-moz-selection {
    text-shadow: none;
    background: #AAEFA2;
}
::selection {
    text-shadow: none;
    background: #AAEFA2;
}
img::selection {
    background: 0 0;
}
img::-moz-selection {
    background: 0 0;
}
body {
    -webkit-tap-highlight-color: #AAEFA2;
}

/* Colorbox Lightbox Gallery CSS */
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
/* Colorbox User Styles */
#cboxOverlay{background:url(../img/overlay.png) repeat 0 0; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
#cboxTopLeft{width:21px; height:21px; background:url(../img/controls.png) no-repeat -101px 0;}
#cboxTopRight{width:21px; height:21px; background:url(../img/controls.png) no-repeat -130px 0;}
#cboxBottomLeft{width:21px; height:21px; background:url(../img/controls.png) no-repeat -101px -29px;}
#cboxBottomRight{width:21px; height:21px; background:url(../img/controls.png) no-repeat -130px -29px;}
#cboxMiddleLeft{width:21px; background:url(../img/controls.png) left top repeat-y;}
#cboxMiddleRight{width:21px; background:url(../img/controls.png) right top repeat-y;}
#cboxTopCenter{height:21px; background:url(../img/border.png) 0 0 repeat-x;}
#cboxBottomCenter{height:21px; background:url(../img/border.png) 0 -29px repeat-x;}
#cboxContent{background:#fff; overflow:hidden;}
.cboxIframe{background:#fff;}
#cboxError{padding:50px; border:1px solid #ccc;}
#cboxLoadedContent{margin-bottom:28px;}
#cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
#cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
#cboxLoadingOverlay{background:url(../images/loading_background.png) no-repeat center center;}
#cboxLoadingGraphic{background:url(../images/loading.gif) no-repeat center center;}
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}
#cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#ee0024;}
#cboxPrevious{position:absolute; bottom:0; left:0; background:url(../img/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
#cboxPrevious:hover{background-position:-75px -25px;}
#cboxNext{position:absolute; bottom:0; left:27px; background:url(../img/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
#cboxNext:hover{background-position:-50px -25px;}
#cboxClose{position:absolute; bottom:0; right:0; background:url(../img/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
#cboxClose:hover{background-position:-25px -25px;}
/* IE7 & IE8 Alpha Fix */
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}
