@charset "utf-8";
/***********************************************************
 *																												 *
 * 					IMPORT GOOGLE FONTS/ COMMERCIAL FONTS          *
 *																												 *
 ***********************************************************/
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700,900');

/***********************************************************
 *																												 *
 * 	  		RESETS STYLES FOR CROSSBROWSERS RENDERING        *
 *																												 *
 ***********************************************************/
html,
body{
	height: 100%;
}
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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul{
	margin: 0;
	padding: 0;
	list-style: none; 
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/***********************************************************
 *																												 *
 * 	  	   DEFAULTS, TYPOGRAPHTY AND GLOBAL STYLES         *
 *																												 *
 ***********************************************************/

/************************************
 * 					Typography        			*
 ************************************/
body{
	background-color: #fff;
	font-family: "futura-pt",sans-serif;
	color: #000;
	font-size: 16px;
	font-weight: 300;
}
h1, h2, h3, h4, h5, h6{
	color: #000;
	font-family: 'Playfair Display', serif;
	text-transform: uppercase;
	margin-bottom: 30px;
	font-weight: 700;
}
h1{letter-spacing: 10px; font-size: 30px; line-height: 36px;}
h2{letter-spacing: 10px; font-size: 28px; line-height: 34px;}
h3{letter-spacing: 8px; font-size: 26px; line-height: 32px;}
h4{letter-spacing: 8px; font-size: 24px; line-height: 30px;}
h5{letter-spacing: 8px; font-size: 18px; line-height: 22px;}
h6{letter-spacing: 8px; font-size: 16px; line-height: 20px;}
ol li,
ul li{
	line-height: 34px;
}
p{
	color: #000;
  line-height: 34px;
  margin-bottom: 35px;
  font-size: 16px;
}
.blog p {
    margin-bottom: 26px;
    line-height: 26px;
}
.blog.section-entry ul, .blog.section-entry ol {
    margin-top:20px;
    margin-bottom: 12px;
    margin-left:26px;
}
blockquote{
	color: #000;
}
a{
	color: #8AA90E;
}
a:hover,
button:hover{
  transition: all 0.3s linear 0s; 
  -o-transition:all 0.3s linear 0s; 
  -ms-transition:all 0.3s linear 0s; 
  -moz-transition:all 0.3s linear 0s;
  -webkit-transition:all 0.3s linear 0s;
}
a:focus,
button:focus{
	outline: none;
	text-decoration: none;
}
.blog a:hover {
    color:#000;
    text-decoration:none;
}
.blog ol {
    font-weight:bold;
}
/* Section Block Typography Styles */
.primary-color,
.primary-color p,
.primary-color h1,
.primary-color h2,
.primary-color h3,
.primary-color h4,
.primary-color h5,
.primary-color h6,
.primary-color blockquote,
.primary-color li,
.primary-color span,
.primary-color a,
.primary-color div{
	color: #000000;
}
.secondary-color,
.secondary-color p,
.secondary-color h1,
.secondary-color h2,
.secondary-color h3,
.secondary-color h4,
.secondary-color h5,
.secondary-color h6,
.secondary-color blockquote,
.secondary-color li,
.secondary-color span,
.secondary-color a,
.secondary-color div{
	color: #ffffff;
}


/************************************
 * 					  Global        			  *
 ************************************/
/*Cursor on ReCaptcha*/

/* Section Block Global Background Styles */
.bg-white{background-color: #ffffff;}
.bg-black{background-color: #000000;}
.bg-light-gray{background-color: #EAEAEA;}
.bg-dark-gray{background-color: #383838;}
.bg-maroon{background-color: #7b1113;}
.bg-yellow{background-color: #EEBE04;}
.img-holder{
  background-repeat: no-repeat;
  background-position: 50% top;
  background-size: cover;
}
.bg-image{
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.section-banner .bg-image,
.section-banner.bg-image {background-attachment: initial;}
.bg-image:before, 
.home .img-holder:before{
	position: absolute;
	content: '';
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 9;
}
.bg-image.bg-black:before{background-color: rgba(0, 0, 0, 0.88);}
.bg-image.bg-dark-gray:before{background-color: rgba(56, 56, 56, 0.85);}
.bg-image.bg-maroon:before{background-color: rgba(123, 17, 19, 0.85);}
.section-banner.bg-black:before,.section-banner .bg-black:before{background-color: rgba(0, 0, 0, 0.5);}
.bg-image .section-entry, .bg-image .carousel{position: relative; z-index: 99;}

/* Typography global styles */
.section-entry p strong {
	font-weight: 900;
}
.section-entry p.mb-10 {
	margin-bottom: 10px;
};
.section-entry h1:first-child,
.section-entry h2:first-child,
.section-entry h3:first-child,
.section-entry h4:first-child,
.section-entry h5:first-child,
.section-entry h6:first-child,
.main-page-entry h1,
.main-page-entry h2,
.main-page-entry h3,
.main-page-entry h4,
.main-page-entry h5,
.main-page-entry h6{
	position: relative;
	margin-bottom: 60px;
}
.center {
    display:block;
    margin: 0 auto 1rem;
}
.section-entry.greentec {
    max-width:750px;
    margin: 0 auto 50px;
}
.section-entry h1:first-child:before,
.section-entry h2:first-child:before,
.section-entry h3:first-child:before,
.section-entry h4:first-child:before,
.section-entry h5:first-child:before,
.section-entry h6:first-child:before,
.main-page-entry h1:before,
.main-page-entry h2:before,
.main-page-entry h3:before,
.main-page-entry h4:before,
.main-page-entry h5:before,
.main-page-entry h6:before{
	position: absolute;
	content: '';
	width: 76px;
	height: 2px;
	background-color: #EEBE04;
	bottom: -25px;
	right: 0;
	left: 0;
	margin: 0 auto;
}
.main-page-entry > img{margin-bottom: 40px;}
.main-page-entry p{font-size: 18px; color: #727272; font-weight: 400;}
.section-entry h6:first-child:before{bottom: -40px;}
.section-entry.text-left h1:first-child:before,
.section-entry.text-left h2:first-child:before,
.section-entry.text-left h3:first-child:before,
.section-entry.text-left h4:first-child:before,
.section-entry.text-left h5:first-child:before,
.section-entry.text-left h6:first-child:before{margin: 0;}
.section-entry ul,
.section-entry ol{margin-bottom: 40px;}
.section-entry ul li{
	font-size: 16px;
	position: relative;
  padding-left: 20px;
}
.section-entry ul li:before{
	content: "\f0da"; 
  font-family: FontAwesome;
  left: 0;
  position: absolute;
  color: #8AA90E;
}

/* Call To Action Buttons */
.section-block .section-entry.text-left a{border: 1px solid #000; color: #000; font-size: 18px; background-color: transparent; padding: 10px 50px; display: inline-block;}
.section-block .section-entry.text-left a:hover, .section-block .section-entry.text-left a:focus{text-decoration: none; border: 1px solid #8AA90E; background-color: #8AA90E; color: #fff;}
.section-block .section-entry.text-left p > a, .bg-image .section-entry p > a, .bg-image .carousel-caption p > a{border: none; padding: 0; color: #8AA90E; font-size: inherit;}
.section-block .section-entry.text-left p > a:hover, .bg-image .section-entry p > a:hover, .bg-image .section-entry p > a:focus, .bg-image .carousel-caption p > a:hover,.bg-image .carousel-caption p > a:focus{background-color: transparent; text-decoration: underline; padding: 0; border: none; font-size: inherit; color: #8AA90E;}
.bg-image .section-entry a, .bg-image .carousel-caption a, .bg-image .section-entry.text-left a{color: #fff; font-size: 18px; border: 1px solid #8AA90E; background-color: #8AA90E; display: inline-block; padding: 10px 50px;}
.bg-image .section-entry a:hover, .bg-image .section-entry a:focus, .bg-image .carousel-caption a:hover, .bg-image .carousel-caption a:focus, .bg-image .section-entry.text-left a:hover, .bg-image .section-entry.text-left a:focus{text-decoration: none; background-color: transparent;}

.section-block .cta-buttons{text-align: center;}
.section-block .cta-buttons.bg-dark-gray,.section-block .cta-buttons.bg-green{background-color: transparent;}
.section-block .cta-buttons.no-border a{border: none;}
.section-block .cta-buttons.bg-green a{background-color: #8AA90E;}
.section-block .cta-buttons.bg-dark-gray a{background-color: #313131;}
.section-block .cta-buttons a{
	color: #fff;
	display: inline-block;
	color: #fff;
	font-size: 18px;
	padding: 8px 40px;
	width: 100%;
	margin: 0 0 15px;
}
.section-block .cta-buttons a:hover,
.section-block .cta-buttons a:focus{text-decoration: none;}
.section-block .cta-buttons.bg-green a{background-color: #8AA90E; border: 1px solid #8AA90E;}
.section-block .cta-buttons.bg-green a:hover,
.section-block .cta-buttons.bg-green a:focus{background-color: transparent; border: 1px solid #8AA90E; color: #8AA90E;}
.section-block .cta-buttons.bg-dark-gray a{background-color: #313131; border: 1px solid #313131;}
.section-block .cta-buttons.bg-dark-gray a:hover,
.section-block .cta-buttons.bg-dark-gray a:focus{background-color: transparent; border: 1px solid #313131; color: #313131;}

/* PAGE NAVIGATIONS */
.pageNav{border-top: 2px solid #d7d7d7; margin-top: 82px; padding-top: 20px;}
.pageNav .paginations, .pageNav .navigations{text-align: center; margin-bottom: 15px;}
.pageNav .paginations .page_link{
	color: #8AA90E;
  font-size: 18px;
  display: inline-block;
  padding: 20px 30px;
}
.pageNav .paginations .page_link:hover,
.pageNav .paginations .page_link:focus,
.pageNav .paginations .page_link.current{
	background-color: #fff;
	text-decoration: none;
	color: #000;
}
.pageNav .paginations .page_link.separator{
	color: #000;
  letter-spacing: 8px;
  padding: 20px 5px 20px 15px;
}
.pageNav .paginations .page_link.separator:hover{background-color: transparent;}
.pageNav .navigations .nav_link{
	border-right: 2px solid #d7d7d7;;
	color: #000;
	display: inline-block;
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 27px 25px;
}
.pageNav .navigations .nav_link:last-child{border-right: none;}
.pageNav .navigations .nav_link:hover,
.pageNav .navigations .nav_link:focus{
	color: #EEBE04;
	text-decoration: none;
}

/* Section Block Global Classes Styles */
.v-wrapper{
	display: table;
	height: 100%;
	width: 100%;
	height: 1px;
	min-height: 100%;
	max-height: 100%;
}
.v-inner{
	display: table-cell;
	vertical-align: middle;
}
.section-block{padding: 70px 0 50px;}
.no-padding{padding: 0;}
.section-entry.text-center{
	max-width: 750px;
	margin: 0 auto 50px;
}
.section-banner .section-entry{
	max-width: 850px;
  margin: 0 auto;
  padding: 0;
}
.page-home .section-banner .section-entry{padding: 0 50px;}
.section-banner .section-entry .v-wrapper,
.section-banner .section-entry .v-wrapper{min-height: 767px;}
.section-entry.text-left{padding: 60px 10px;}
.col-lg-6 .section-entry.text-left h3:not(:first-child){margin: 70px 0 40px;}

.section-entry.text-left.no-padding{padding: 0;}
.box-wrap:hover{
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

/* Cotent Horizontal Border */
.horizontal-border{text-align: center;}
.horizontal-border p{margin: 0;}

/* Carousel Styles */
.carousel-caption{
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
}
.section-block .carousel-control{
	position: absolute;
	top: 50%;
	margin-top: -30px;
	background-color: #000;
	color: #fff;
	font-size: 30px;
	text-align: center;
	padding: 3px 25px 5px 15px;
	z-index: 9;
}
.section-block.secondary-color .carousel-control{border: none;}
.section-block .carousel-control:hover,
.section-block .carousel-control:focus{color: #fff; background-color: rgba(0, 0, 0, 0.6);}
.section-block .carousel-control.left{left: 0; padding: 3px 25px 5px 15px;}
.section-block .carousel-control.right{right: 0; padding: 3px 15px 5px 25px;}
.carousel-indicators{bottom: 30px;}
.carousel-indicators li{
	width: 11px;
	height: 11px;
	margin-right: 5px;
	margin-left: 5px;
	border: 1px solid #fff;
	border-radius: 50%;
	background: none;
}


/***********************************************************
 *																												 *
 * 	  	   						HEADER STYLES         						   *
 *																												 *
 ***********************************************************/
.header{
	background-color: rgba(0, 0, 0, 0.9);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1030;
}
	/* Top Bar */
	.top-bar{
		border-bottom: 1px solid rgba(255, 255, 255, 0.26);
		padding: 7px 0;
	}
	.top-bar .nav-menu{margin-top: 5px;}
	.top-bar ul li{float: left;}
	.top-bar ul li a{
	  color: #fff;
	  font-size: 16px;
	  line-height: 14px;
	  padding: 0 9px;
	}
	.top-bar ul li a:hover, 
	.top-bar ul li a:focus,
	.top-bar ul li a.active{color: #8AA90E;}
	.top-bar ul.nav-menu li a{border-right: 1px solid #fff;}
	.top-bar ul.nav-menu li:last-child a{border-right: none;}
	.top-bar ul.nav-icon li:last-child a{padding-right: 0;}
	.top-bar ul.nav-icon li a>i{font-size: 24px;}
	.top-bar ul.nav-icon li a:hover, .top-bar ul.nav-icon li a:focus{color: #fff;}

		/* Main Navigation */
		.navbar-brand{
			max-width: 200px;
			padding-top: 0;
			padding-bottom: 0;
    	font-size: initial;
		}
		.main-nav.fixed-top{
			position: inherit;
		}
		.main-nav .navbar-nav{
			text-align: center;
		}
		.main-nav .navbar-nav li .nav-link{
			font-size: 14px;
			color: #fff;
			position: relative;
			display: inline-block;
		}
		.main-nav .dropdown-item,.main-nav .dropdown-item.active, 
		.main-nav .dropdown-item:active,.main-nav .dropdown-item{
			text-transform: uppercase;
			font-size: 14px;
			color: #fff;
			background: transparent;
		}
		.main-nav .navbar-nav li .nav-link:hover,
		.main-nav .navbar-nav li .nav-link:focus,
		.main-nav .navbar-nav li .nav-link.active,
		.navbar-light .navbar-nav .show>.nav-link,
		.main-nav .dropdown-item:active,.main-nav .dropdown-item:hover,
		.main-nav .dropdown-item.active{
			color: #8AA90E;
		}
		.main-nav .navbar-nav li:last-child .nav-link{
			background-color: #EEBE04;
			border: 1px solid #EEBE04;
	    font-size: 14px;
	    margin-left: 20px;
	    padding: 6px 0;
    	min-width: 160px;
		}
		.main-nav .navbar-nav li:last-child .nav-link:hover,
		.main-nav .navbar-nav li:last-child .nav-link:focus,
		.main-nav .navbar-nav li:last-child .nav-link.active{
			background-color: transparent;
			color: #EEBE04;
			border: 1px solid #EEBE04;
		}
		.main-nav .navbar-nav li:last-child .nav-link:after{
			display: none;
		}
		.navbar-toggler{
			background-color: #EEBE04;
		}
		.main-nav .dropdown-menu {
			background-color: rgba(0, 0, 0, 0.9);
   		margin-top: 0;
		}
		.main-nav .dropdown-toggle::after{
			border-top: none;
			margin-left: 0;
		}


/***********************************************************
 *																												 *
 * 	  	   				SECTION BANNER STYLES        						 *
 *																												 *
 ***********************************************************/
.section-banner{
}
	/* Section Banner Carousel Styles */
	.section-banner h1,
	.section-banner h2{
	  font-size: 30px;
	  line-height: 40px;
	}
	.section-banner .section-entry h1{margin-bottom: 26px;}
	.section-banner p{
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 30px;
	}
	.section-banner .section-entry a{border: 1px solid #fff; background-color: transparent; color: #fff; padding: 10px 30px; font-size: 16px; margin-top: 10px; display: inline-block;}
	.section-banner .section-entry a:hover, .section-banner .section-entry a:focus{text-decoration: none; border: 1px solid #8AA90E; background-color: #8AA90E;}
  .scroll-to-content{
  	position: absolute;
    z-index: 10;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
  }
  .scroll-to-content button{
  	background: transparent;
    border: none;
    cursor: pointer;
  }


/***********************************************************
 *																												 *
 * 	  	   SPECIFIC CONTENT SECTION BLOCK STYLES        	 *
 *																												 *
 ***********************************************************/

/* Events section block */
.featured-event .box-wrap,
.featured-dealers .box-wrap {
	padding: 30px;
	margin-bottom: 30px;
}
.featured-event .img-holder,
.featured-dealers .img-holder {
	position: relative;
  width: 100%;
  height: 100%;
}
.featured-event .img-holder:before{
	content: "";
    display: block;
    padding-top: 65%;
}
.featured-dealers .img-holder:before {
    content: "";
    display: block;
    padding-top: 35%;
}
.featured-event .content-holder,
.featured-dealers .content-holder{
	position: relative;
    margin-top: 40px;
}
.featured-event .content-holder h5,
.featured-dealers .content-holder h5 {letter-spacing: initial; text-transform: unset;}
.featured-event .content-holder a,
.featured-dealers .content-holder a{
  position: relative;
  margin: 0 auto;
  display: inline-block;
  left: auto;
  right: auto;
  bottom: auto;
  transform: translateX(0);
  color: #000000;
  border: 1px solid #000000;
  font-size: 14px;
  padding: 10px 25px;
}
.featured-event .content-holder a:hover, 
.featured-event .content-holder a:focus,
.featured-dealers .content-holder a:hover, 
.featured-dealers .content-holder a:focus{text-decoration: none; border: 1px solid #8AA90E; background-color: #8AA90E; color: #fff;}

/* Section solutions block */
.section-solutions .carousel-caption{
	max-width: 850px;
	margin: 0 auto;
	padding: 0 30px;
}
.carouselSolutions{min-height: 420px;}
.section-solutions .carousel-caption h3{margin-bottom: 60px;}
.section-solutions .carousel-caption p{margin-bottom: 45px;}

/* Section recent work block */
.recent-work{padding: 50px 0;}
.recent-work .box-wrap{
	position: relative;
	margin-bottom: 30px;
}
.recent-work .box-wrap .mask{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	transition: all 0.4s ease-in-out;
	opacity: 0;
}
	.box-wrap:hover .mask{
		opacity: 1;
    background-color: rgba(0,0,0,0.74);
	}
.recent-work.img-holder{
	position: relative;
  width: 100%;
  height: 100%;
}
.recent-work .img-holder:before{
  content: "";
  display: block;
  padding-top: 65%;
}
.recent-work h5:first-child{
	position: relative;
	margin-bottom: 50px;
}
.recent-work h5:first-child:before{
	position: absolute;
	content: '';
	width: 76px;
	height: 2px;
	background-color: #EEBE04;
	bottom: -30px;
	right: 0;
	left: 0;
	margin: 0 auto;
}
.recent-work .v-inner a{
	margin-right: -.4em;
	letter-spacing: 0.3em;
	color: #fff;
  text-transform: uppercase;
  font-size: inherit;
  padding: 0;
	border: none;
}
.recent-work .v-inner a:hover,
.recent-work .v-inner a:focus{
	margin-right: -.4em;
	letter-spacing: 0.3em;
	background-color: transparent;
	border: none;
	text-decoration: underline;
}

/* Section consultation block */
.section-consultation{text-align: center;}
.section-consultation h3,
.section-consultation h3:first-child{margin: 0;}
.section-consultation h3:before{display: none;}
.section-consultation a{
	margin-top: 25px;
  padding: 10px 70px;
  font-size: 22px;
  border: 1px solid #fff;
  display: inline-block;
}
.section-consultation a:hover,
.section-consultation a:focus{text-decoration: none; border: 1px solid #8AA90E; background-color: #8AA90E;}

/* Section used equipment block */
.carouselUsedequip{min-height: 420px; margin-top: 70px;}
.carouselUsedequip .carousel-indicators{bottom: -30px;}
.section-used-equip .carousel-caption{
	max-width: 1150px;
	text-align: left;
	padding: 0 30px;
	margin: 0 auto;
}
.section-used-equip .row .col-lg-6{background-color: #fff;}
.section-used-equip .carousel-caption .product{background-color: #fff;}
.section-used-equip .equip-details{padding: 30px;}
.section-used-equip .carousel-caption h4,
.section-used-equip .carousel-caption label,
.section-used-equip .carousel-caption span{color: #000;}
.section-used-equip .carousel-caption h4:first-child:before{margin: 0;}
.section-used-equip .cta-buttons{text-align: left;}
.section-used-equip .cta-buttons a{width: auto;}

/* Section testimonials block */
.carouselTestimonials{padding: 0 15px;}
.section-testimonials .carousel .testimonials{padding-top: 75px;}
.section-testimonials h3{margin: 0 0 70px;}
.carouselTestimonials .carousel-indicators{bottom: 0;}
.section-testimonials .carousel-caption{text-align: left;}
.section-testimonials .carousel-caption .row{
	margin-right: -30px;
	margin-left: -30px;
}
.section-testimonials .carousel-caption .col-md-6{
  margin-bottom: 80px;
}
.section-testimonials .carousel-indicators li{
	border: 1px solid #000;
}
.section-testimonials .carousel-indicators li.active{
	background-color: #000;
}
	.testimonials .box-wrap h4{font-size: 20px;}
	.testimonials h4:first-child:before{
		margin: 0;
	}
	.testimonials .box-wrap{
		background-color: #fff;
    position: relative;
    padding: 90px 50px 50px;
	}
	.testimonials .profile-thumb{
    left: 50px;
    right: auto;
    margin: 0;
	}
	.testimonials blockquote{
		font-size: 20px;
		line-height: 30px;
	}

/* Section map block */
.section-map h6{text-align: center;}
.section-map{overflow: hidden;}
.section-map .map-info-wrapper{
	position: relative;
}
.section-map .section-entry{
	min-height: 400px;
	max-width: 100%;
	padding: 100px 70px;
}
.section-map #gmap_bg{min-height: 500px;}
	.map-info{
		padding-top: 20px;
	}
	.map-info p{
		overflow: hidden;
	}
	.map-info p span{
		float: left;
	}
	.map-info p span.icon{
		margin-right: 20px;
	}
	.map-info p span.text{
		letter-spacing: 8px;
    width: calc(100% - 40px);
	}

/************************************
 * 			PAGES SECTION STYLES        *
 ************************************/
/* USED EQUIPMENT PAGE */
.section-search-box{padding: 50px 0;}
	.search-form-label{font-weight: 500; padding: 0 0 17px; letter-spacing: 4px; font-size: 16px; display: block; text-align: center;}
	.search-field{
		background-color: #fff;
	}
	.search-field .form-control{
		background: none;
    border: none;
    height: 60px;
    padding: 0 28px;
    font-size: 18px;
    color: #313131;
    letter-spacing: 4px;
	}
	.search-field .form-control::-webkit-input-placeholder {color: #313131;}
	.search-field .form-control::-moz-placeholder {color: #313131;}
	.search-field .form-control:-ms-input-placeholder {color: #313131;}
	.search-field .form-control:-moz-placeholder {color: #313131;}
	.search-field .form-control:focus,
	.search-field:focus,
	.search-field .input-group-append .btn:focus{
		box-shadow: none;
		outline: none;
	}
	.search-field .input-group-append{
		width: 60px;
    margin: 0;
	}
	.search-field .input-group-append .btn{
		background-color: #313131;
    width: 100%;
    border-radius: 0;
    color: #fff;
    font-size: 26px;
	}
.used-equip-products{padding-top: 20px;}
	.used-equip-products .box-wrap{padding: 30px; margin-bottom: 60px;}
	.used-equip-products .section-entry.text-left{padding: 0;}
	.used-equip-products .section-entry small{
		display: block;
		font-size: 24px;
		line-height: 24px;
		font-weight: bold;
	}
	.section-page-used-equip .cta-buttons.bg-dark-gray a:first-child{background-color: #8AA90E; border: 1px solid #8AA90E}
	.section-page-used-equip .cta-buttons.bg-dark-gray a:first-child:hover,
	.section-page-used-equip .cta-buttons.bg-dark-gray a:first-child:focus{background-color: transparent; border: 1px solid #8AA90E; color: #8AA90E;}
	.entry-meta{margin-bottom: 30px;}
	.entry-meta .price-label{
		letter-spacing: 8px;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
	}
	.section-page-used-equip .cta-buttons.bg-dark-gray a{ margin: 0 0 10px 0; color: #fff;}
	.entry-meta .price-text{
		font-size: 22px;
    font-weight: 400;
	}
	.product-carousel .carousel-indicators{
		position: relative;
    bottom: 0;
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
	}
	.product-carousel .carousel-indicators li{
		height: auto;
    width: auto;
    text-indent: initial;
    margin: 0;
    line-height: initial;
    margin: 0;
	}
	.product-carousel .carousel-indicators li:first-child{margin-left: 0;}
	.product-carousel .carousel-indicators li:last-child{margin-right: 0;}
	.product-carousel .carousel-indicators li:before,
	.product-carousel .carousel-indicators li:after{display: none;}
	.product-carousel .carousel-indicators li img{border: 2px solid transparent; min-height: 90px}
	.product-carousel .carousel-indicators li.active img{border: 2px solid #EEBE04;}
	.product-slider, .product-slider .carousel-inner{margin-bottom: 30px;}
	.product-carousel .carousel-item img{width: 100%;}
	.section-page-used-equip .product-carousel .carousel-control{
		background: none;
    border: none;
    color: #DEDEDE;
    top: auto;
    bottom: 10%;
    font-size: 50px;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -o-transform: translateY(20px);
	}
	.section-page-used-equip .product-carousel .carousel-control:hover,
	.section-page-used-equip .product-carousel .carousel-control:focus{
		color: #EEBE04;
		background: none;
		border: none;
	}
	.section-page-used-equip .product-carousel .carousel-control.left
	{       padding: 0 .2em;
		    z-index: 101;
		    background-color: rgba(0,0,0, 0.6);
		    margin-bottom: -10px;
	}
	.section-page-used-equip .product-carousel .carousel-control.right
	{       padding: 0 .2em;
		    z-index: 101;
		    margin-bottom: -10px;
		    background-color: rgba(0,0,0, .6);
	}
	.product-description .nav-tabs .nav-link{
		font-size: 18px;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    padding: 20px 0;
	}
	.product-description .tab-content{padding: 40px 0;}
	.product-description .tab-content ul li span{color: #7b7b7b; display: inline-block;}
	.product-description .tab-content ul li span:first-child{
    color: #000;
    font-weight: 400;
    margin-right: 10px;
	}
	#iframe-used-equipment iframe{
		height: 800px;
		margin: 50px 0;
	}
.iframe-wrapper {

    -webkit-overflow-scrolling: touch;
  	overflow-y: scroll;
}
.iframe-wrapper iframe {
  height: 100%;
  width: 100%;
}
/* EVENTS PAGE */
.hero-events-banner.bg-image.bg-black:before{background-color: rgba(0, 0, 0, 0.79);}
.hero-events-banner h1{text-transform: initial;}
.hero-events-banner h1 > sup{
  font-size: 18px;
  letter-spacing: 5px;
  position: relative;
  top: -20px;
}
.banner-date-sched .col-md-4{border-top: 1px solid #fff; border-left: none; padding: 0;}
.banner-date-sched .col-md-4:first-child{border-left: none;}
.banner-date-sched .sched-text{min-height: 70px;}
.banner-date-sched .sched-text p{margin: 0; font-size: 18px; line-height: 24px; text-align: center; width: 100%;}
.section-events-richtext .section-entry.text-left{padding: 0;}
.richtext-banner.section-entry{max-width: 380px; background-attachment: initial;}
.richtext-image{position: relative; z-index: 99; padding: 60px 20px;}
.section-events-richtext .richtext-image a{
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  padding: 10px 50px;
  display: inline-block;
	margin: 46px 0 0;
}
.section-events-richtext .richtext-image a:hover, .section-events-richtext .richtext-image a:focus{text-decoration: none; border: 1px solid #8AA90E; background-color: #8AA90E;}
.upcoming-events-header h3{text-align: center;}
.upcoming-events-header .search-field{
	background: #EAEAEA;
	margin-top: 10px;
	max-width: 520px;
	margin: 0 auto;
}
.upcoming-events-header .search-field .input-group-append .btn{background: none; color: #000;}
.section-event .pageNav .paginations .page_link:hover,
.section-event .pageNav .paginations .page_link:focus,
.section-event .pageNav .paginations .page_link.current,
.section-categorize-faqs .pageNav .paginations .page_link:hover,
.section-categorize-faqs .paginations .page_link:focus,
.section-categorize-faqs .paginations .page_link.current{background-color: #EAEAEA;}
.section-event .pageNav .paginations .page_link.separator:hover,
.section-categorize-faqs .pageNav .paginations .page_link.separator:hover{background-color: transparent;}
.section-events-richtext .percentage-text {
  max-width: 187px;
  margin: 0 auto;
}
.section-events-richtext .percentage-text .text-get-richtext {font-size: 42px;}
.section-events-richtext .percentage-text .text-off {font-size: 90px; line-height: 74px;}
.section-rsvp.section-block{padding: 60px 0;}
.section-rsvp{text-align: center;}
.section-rsvp h3{margin-bottom: 0;}
.section-rsvp a{
	background-color: #8AA90E;
	color: #fff;
	font-size: 20px;
	display: inline-block;
	font-weight: 400;
	padding: 20px 40px;
	margin-top: 35px;
}
.section-rsvp a:hover, .section-rsvp a:focus{text-decoration: none; background-color: #313131;}
.section-cta .percentage {
  height: 341px;
  max-width: 340px;
  z-index: 999;
  padding: 67px 0;
  margin: 26px auto 60px;
  position: relative;
}
.section-cta .percentage:before{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	height: 341px;
	width: 105px;
	background-image: url(../img/rec2.png);
}
.section-cta .percentage:after{
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	height: 341px;
	width: 105px;
	background-image: url(../img/rec1.png);
}
.text-get{
	font-size: 42px;
  position: absolute;
  top: -28px;
  right: 0;
  left: 0;
}
.text-off{
	line-height: 66px;
  font-size: 89px;
}
.text-serv{
	position: absolute;
  font-size: 24px;
  bottom: -15px;
  left: 0;
  right: 0;
}

/* HELP PAGE */
.section-help-banner .search-field{margin-top: 70px;}
.section-help-banner .search-field .input-group-append .btn{background-color: #EEBE04;}
.faqs-cat-nav-tab label{font-size: 20px; color: #000; letter-spacing: 4px; margin-bottom: 40px;}
.faqs-cat-nav-tab{margin-bottom: 60px;}
.faqs-cat-nav-tab .nav-tabs{border: none;}
.faqs-cat-nav-tab .nav-tabs .nav-item{width: 100%;}
.faqs-cat-nav-tab .nav-tabs .nav-link{
	font-size: 14px;
  color: #727272;
  border: 1px solid #cecece;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 6px;
  padding: 12px 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.faqs-cat-nav-tab .nav-tabs .nav-link:hover,
.faqs-cat-nav-tab .nav-tabs .nav-link:focus,
.faqs-cat-nav-tab .nav-tabs .nav-link.active{
	color: #000000;
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
	border: 1px solid transparent;
}
.section-categorize-faqs .faqs-cat-content h6{
	margin-top: 50px;
	margin-bottom: 70px;}
.section-categorize-faqs .faqs-cat-content h6:before{margin: 0;}
.faqs-list{padding-top: 20px;}
.faqs-list .list-col{margin-bottom: 20px;}
.faqs-list h5{text-transform: initial; letter-spacing: 3px;}

.faqs-list p{
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 25px;
	font-weight: 400;
}

/* AGRIGOLD PAGE */
.carry-agrigold-box{max-width: 970px; margin: 0 auto; padding-top: 20;}
.carry-agrigold-box .carry-list{margin-bottom: 30px;}
.carry-agrigold-box p{margin-bottom: 0; font-size: 24px; padding: 31px; line-height: 30px; font-weight: 400;}
.section-catalog .section-entry.text-left{padding: 0;}
.product-catalog .catalog-details.text-left h3{
	font-size: 40px;
	line-height: 44px;
	margin: 0 0 65px;
}
.agrigold-product-catalog{padding-top: 50px;}
.catalog-product-thumbnail{margin-bottom: 30px;}
.section-catalog .product-catalog{padding: 40px; margin-bottom: 57px;}
.catalog-details h5{
	font-family: inherit;
	font-weight: 400;
	font-size: 28px;
}
.product-catalog .sub-order{margin-top: 10px;}
.product-catalog .sub-order li:before{content: '\f111'; font-size: 8px;}
.product-catalog .sub-order li{
	font-size: 14px;
  margin: 0 0 0 15px;
  line-height: 20px;
}
.product-catalog-tabs .nav-tabs{border-bottom: 1px solid #aeaeae;}
.product-catalog-tabs .nav-tabs .nav-item{width: 100%; text-align: center;}
.product-catalog-tabs .nav-tabs .nav-item a {
  display: block;
  padding: 24px 0;
  margin-right: 23px;
  border-bottom: 2px solid #eebe0400;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
}
.product-catalog-tabs .nav-tabs .nav-item a.active,
.product-catalog-tabs .nav-tabs .nav-item a:hover,
.product-catalog-tabs .nav-tabs .nav-item a:focus{border-bottom: 2px solid #EEBE04;}
.section-catalog .tab-content a{
  color: #000;
  position: relative;
  padding: 0px 26px;
  border:none;
  font-weight: 300;
  font-size: 18px;
}
.section-catalog .tab-content a:before{
  content: '\f0da';
  font-family: FontAwesome;
  color: #EEBE04;
  position: absolute;
  left: 0;
  visibility: hidden;
}
.section-catalog .tab-content a:hover:before{visibility: visible;}
.section-catalog ul li:before{color: #EEBE04;}
.content-order li{font-size: 18px; font-weight: 400;}
.product-catalog-tabs li a{color: #000;}
.product-catalog-tabs .tab-content ul{margin: 30px 0;}
.product-catalog-tabs .tab-content li{display: inline-block; min-width: 112px;}
.product-catalog-tabs .tab-content li a:hover{color: #EEBE04;}
.product-catalog-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{border:none; border-bottom: 2px solid #EEBE04;}
.section-catalog .section-catalog{margin: 30px;}
.section-field-advisors .section-entry a{margin-top: 50px;}


/* PRODUCT LIST PAGE */
.related-products .box-wrap{
	background-color: #EAEAEA;
  padding: 35px;
  margin-bottom: 50px;
}
.related-products .box-wrap:hover{
	background-color: #fff;
}
.related-products .box-wrap h4{
	font-size: 30px;
	line-height: 34px;
	position: relative;
	margin-bottom: 60px;
}
.related-products .box-wrap h4:before{
	position: absolute;
	content: '';
	width: 76px;
	height: 2px;
	background-color: #EEBE04;
	bottom: -25px;
	right: 0;
	left: 0;
	margin: 0;
}
.related-products .box-wrap p{font-size: 14px; line-height: 24px; font-weight: 400;}
.related-products .box-wrap a{
	background-color: #8AA90E;
	border: 1px solid #8AA90E;
	color: #fff;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  padding: 8px 40px;
}
.related-products .box-wrap:hover a,
.related-products .box-wrap:focus a{
	text-decoration: none;
	background-color: #313131;
	border: 1px solid #313131;
}
.related-prod-thumbnail{
	min-height: 250px;
}

/* CONTACT US PAGE */
.section-contact-form .section-entry.text-center{max-width: 1000px;}
.section-contact-form .form-control{background-color: #EAEAEA;}
.section-contact-form .btn:hover, .section-contact-form .btn:focus{background-color: #313131; border: 1px solid #313131;}
.page-inner .section-map #gmap_bg{margin-left: -500px;}

/* POETTINGER PAGE */
.section-poettinger-line .section-entry.text-center{max-width: 100%;}
.poettinger-products{padding-top: 30px;}
.section-poettinger-line .box-wrap{padding: 40px 20px; margin-bottom: 40px;}
.section-poettinger-line .product-thumb{margin-bottom: 30px;}
.section-poettinger-line .section-entry.text-left .cta-buttons a{margin: 0; color: #fff;}
.section-poettinger-line .section-entry.text-left .cta-buttons a:hover, .section-poettinger-line .section-entry.text-left .cta-buttons a:focus{color: #8AA90E;}

/* ABOUT PAGE */
.meet-the-team-wrapper{
	max-width: 1440px;
  margin: 0 auto;
  padding: 140px 0 50px;
}
.meet-the-team-wrapper .team-details{margin-bottom: 100px; padding: 80px 30px 60px; position: relative;}
.team-details h4{position: relative; margin-bottom: 35px;min-height:70px}
.team-details h4:before{
	position: absolute;
  content: '';
  width: 76px;
  height: 2px;
  background-color: #EEBE04;
  bottom: -25px;
  left: 0;
}
.team-details h6{
	font-family: "futura-pt",sans-serif;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: initial;
	font-weight: 400;
	text-transform: capitalize;
	min-height: 60px;
	margin-bottom:0;
}
.team-details li{margin-top: 15px;}
.team-details li a{
	color: #000;
	font-size: 16px;
	display: flex;
	word-break: break-word;
	line-height: 22px;
}
.team-details li a:hover,
.team-details li a:focus{
	color: #8AA90E;
	text-decoration: none;
}
.team-details li a>i{
	color: #8AA90E;
	font-size: 24px;
	min-width: 32px;
}
.team-details li:last-child a>i{font-size: 20px;}
.profile-thumb{
	width: 100px;
	height: 100px;
	top: -55px;
	position: absolute;
	right: 0;
	left: 0;
  margin: 0 auto;
  border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
}
.box-wrap:hover .profile-thumb,
.box-wrap:hover .year{
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
}
.team-description{padding: 0 20px 30px;}
.team-description p{font-size: 20px; line-height: 28px;}
.section-close .horizontal-border p, .section-closing-remarks .horizontal-border p{font-size: 16px;}
.section-success .section-entry.text-center{max-width: 100%;}
.section-success h2{line-height: 50px;}
.story-year{padding: 50px 30px; margin-top: 130px; position: relative;}
.story-year:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 98%;
	background: url(/cms-assets/images/about/year-separator.png) no-repeat;
	width: 40px;
	height: 155px;
	margin: 0 auto;
}
.story-year:first-of-type:after{display: none;}
.story-year .year{
	width: 100px;
	height: 100px;
	top: -55px;
	position: absolute;
	left: 0;
}
.story-year .year h5{
	margin: 0;
	color: #fff;
}
.story-year p{
	color: #383838;
	letter-spacing: 2px;
	font-weight: 400;
	margin: 0;
}

/* SOLUTIONS PAGE */
.faqs-solutions .nav-tabs .nav-link{
	border-radius: 0;
	display: block;
  padding: 24px 20px;
  border-bottom: 2px solid #eebe0400;
  border-right: none; border-left: none; border-top: none;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
}
.faqs-solutions .nav-tabs .nav-item{width: 100%; text-align: center;}
.faqs-solutions .nav-tabs .nav-item a.active,
.faqs-solutions .nav-tabs .nav-item a:hover,
.faqs-solutions .nav-tabs .nav-item a:focus{border-bottom: 2px solid #EEBE04; color: #000;}
.faqs-solutions .faqs-list{padding: 60px 30px;}
.faqs-solutions .faqs-list h5{    
	font-size: 14px;
    font-family: "futura-pt",sans-serif;
    font-weight: 700;
    letter-spacing: unset;
    text-transform: unset;}
.faqs-solutions .faqs-list .category-details p{
	letter-spacing: unset;
    text-transform: unset;
	font-size: 20px;
    font-family: "futura-pt",sans-serif;
    font-weight: 300;
}

.faqs-solutions .list-group{
	border-right: 1px solid rgba(0, 0, 0, 0.4);
	overflow: hidden;
	border-bottom: 1px solid rgba(0, 0, 0, 0.4);
	margin-bottom: 60px;
}
.faqs-solutions .list-group-item{
	border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 0;
  border-right: none;
  margin: 0;
  border-bottom: none;
  font-weight: 400;
  line-height: 26px;
  padding: 20px 10px;
}
.faqs-solutions .list-group-item.head,
.faqs-solutions .list-group-item.right{
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 4px;
}
.faqs-solutions .list-group-item.head{font-size: 20px;}

/* PARTS PAGE */
.page-inner .section-form-parts .contact-form{padding: 60px 0 0;}
.section-form-parts .contact-form input[type="text"], .section-form-parts .contact-form input[type="number"], .section-form-parts .contact-form input[type="email"], .section-form-parts .contact-form select, .section-form-parts .contact-form textarea{
	background-color: #EAEAEA;
}
.section-form-parts .contact-form .row{margin-bottom: 50px;}
.section-form-parts .contact-form button.btn[type="submit"]{
	/*margin-top: 70px;*/
	padding: 0 60px;
}
.section-form-parts .contact-form button.btn[type="submit"]:hover,
.section-form-parts .contact-form button.btn[type="submit"]:focus{
	background-color: #313131;
  border: 1px solid #313131;
}
/*REQUEST QUOTE Page*/
.section-qoute-parts #request_form input[type="text"], .section-qoute-parts #request_form input[type="number"], .section-qoute-parts #request_form input[type="email"], .section-qoute-parts #request_form select, .section-qoute-parts #request_form textarea{
	background-color: #EAEAEA;
  	height: 54px;
    border-radius: 0;
    border: none;
}
.section-qoute-parts label{ margin-bottom: 20px; }
.section-qoute-parts{ margin: 100px auto 50px; }

/***********************************************************
 *																												 *
 * 	  	   				BOTTOM AREA STYLES        				 			 *
 *																												 *
 ***********************************************************/
/* contact form */
.contact-form{
	padding: 60px 0 80px;
}
.page-inner .section-contact-form .contact-form{padding: 0;}
.contact-form .form-group{
	margin-bottom: 30px;
}
.contact-form label{
	margin-bottom: 20px;
	display: block;
	font-size: 14px;
	letter-spacing: 4px;
	text-transform: capitalize;
}
.contact-form input[type="text"],
.contact-form input[type="number"],
.contact-form input[type="email"],
.contact-form select{
	height: 54px;
	border-radius: 0;
	border: none;
}
.contact-form .form-control:focus,
.contact-form .form-control:hover{border: none; box-shadow: none;}
.contact-form select.form-control:not([size]):not([multiple]){height: calc(54px)}
.contact-form textarea{
	border-radius: 0;
	border: none;
	min-height: 211px;
}
.contact-form button{
	border: 1px solid #8AA90E;
	border-radius: 0;
  background-color: #8AA90E;
  color: #fff;
  font-size: 18px;
  height: 54px;
  padding: 0 25px;
}
.contact-form select{-webkit-appearance:none;}
.contact-form button:hover, .contact-form button:focus{background-color: transparent;}

.contact-form [type="radio"]:checked,
.contact-form [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.contact-form [type="radio"]:checked ~ label,
.contact-form [type="radio"]:not(:checked) ~ label{
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 18px;
  display: inline-block;
  color: #000;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
}
.contact-form [type="radio"]:checked ~ label:before,
.contact-form [type="radio"]:not(:checked) ~ label:before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.contact-form .form-check{
    padding-left: 1rem;
}
.contact-form .form-check.cbox{
    padding-left: 2.5rem;
}
.contact-form .form-check-label.cbox-label{
    margin-left: 10px;
}
.contact-form [type="radio"]:checked ~ label:after,
.contact-form [type="radio"]:not(:checked) ~ label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #8AA90E;
  position: absolute;
  top: 3px;
  left: -2px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.contact-form [type="radio"]:not(:checked) ~ label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.contact-form [type="radio"]:checked ~ label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(1);
}

/* drop and drop files*/
.contact-form input[type="file"]{
	opacity: 0;
	width: 95%;
	height: 95%;
	position: absolute;
	z-index: 99;
	cursor: pointer;

}
.contact-form button.btn[type="file"],
.contact-form .photo-container p{
	font-size: 14px;
	line-height: 17px;

}
.contact-form .photo-container{
	min-height: 310px;
  background-color: #eaeaea;
  margin: 0;
  outline-color: #c9c9c9;
  outline-style: solid;
  outline-offset: -20px;
  text-align: center;
}

.photo-container button.btn[type="file"]{
	width: 131px;
	height: 34px;
}
.drop-upload{
	display: none;
}

/***********************************************************
 *																												 *
 * 	  	   						FOOTER STYLES        				 			   *
 *																												 *
 ***********************************************************/
.footer{
	background-color: #000;
	padding: 80px 0 80px;
}
.footer p,
.footer li a{
	color: #fff;
	letter-spacing: 4px;
	font-size: 14px;
}
	/* footer info */
	.footer-info{
		border-top: 2px solid rgba(255, 255, 255, 0.2);
		padding-top: 80px;
		text-align: center;
	}
	.page-inner .footer-info{border-top: none; padding-top: 50px;}
		.footer-links{
			margin-bottom: 10px;
		}
		.footer-links li{
			display: block;
	    border-left: none;
	    line-height: 14px;
	    padding: 0 15px;
	    margin-top: 15px;
		}
		.footer-links li:first-child{
			border: none;
			padding-left: 0;
		}
		.social-links{
			text-align: center;
		}
		.social-links a{
			display: inline-block;
			color: #fff;
			font-size: 26px;
			margin-left: 15px;
		}
		.social-links a:hover,
		.social-links a:focus{
			color: #EEBE04;
		}
.section-testimonials .iframe_video{
	pointer-events: none;
}
.videoFrame{
	position: relative;
}
	.btnWrapper{
	  height: 60px;
    width: 75px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    position: absolute;
    z-index: 99;
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
	}
	.btnWrapper > a{text-indent: -9999px; width: 100%; height: 100%; position: absolute; z-index: 999;}
	.btnWrapper:hover{
	  background-color: rgba(0, 173, 239, 1);
	}
	.btnWrapper:after{
	  content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 25px;
    margin: 0 auto;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 1);
	}
	
	.btnWrapper-thumb{
	  height: 40px;
    width: 40px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    position: absolute;
    z-index: 99;
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
	}
	.btnWrapper-thumb > a{text-indent: -9999px; width: 100%; height: 100%; position: absolute; z-index: 999;}
	.btnWrapper-thumb:hover{
	  background-color: rgba(0, 173, 239, 1);
	}
	.btnWrapper-thumb:after{
	  content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 8px;
    margin: 0 auto;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 1);
	}
	
	.textareaMessage{min-height: 270px;}
	.recaptcha-btn-row div{margin-top: 25px;}
	.recaptcha-btn-row div .btn{float: right;}

	.errorMsg, .secondary-color .errorMsg{
		color: #f00;
		display: inline-block;
		font-size: 14px;
		margin-top: 5px;
		font-weight: 500;
	}

	.contact-form.allForms button.btn{
		border: 1px solid #8AA90E;
	    border-radius: 0;
	    background-color: #8AA90E;
	    color: #fff;
	    font-size: 18px;
	    height: 54px;
	    padding: 0 25px;
	}
	.contact-form.allForms button.btn:hover{
		background-color: #313131;
		border: 1px solid #313131;
	}


#search_product{
	padding: 10px;
	font-size: 24px;
	width: 100%;
	border-radius: 5px;
	border: none;
}
#modal_search .modal-content{
	background: transparent;
	border:none;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.right-icon img{
  width: 20%;
}
.meet-the-team{
  padding: 20px;
  padding-top: 200px;
}
.meet-the-team .box-wrap{
  background-color: #fff;
  position: relative;
  padding: 90px 10px 17px;
  
}

.mt-1 {
  margin-top: 10%!important;
}

.mt-100 {
  margin-top: 100px !important;
}

.align-left {
  text-align: left!important;
}

.align-left h4 {
  text-align: left!important;
}

.meet-the-team p.role{
  font-size: 24px;
  font-weight: 300;
  min-height: 80px;
}

.meet-the-team .icon{
  width: 15%;
  padding-right: 10px;
  position: relative;
  top: 10px;
}

.video-button-link{
  margin-top: -10px!important;
}
#map {
    width:100%;
    height:100%;
}
.box-wrapper {
    padding:1rem;
    border:1px solid #000;
    width:100%;
    min-height:7rem;
}
.box-wrapper p {
    margin:0;
    text-align:center;
}
#contentarea #policy {
    text-align: left;
    padding: 50px 0;
}
#contentarea #policy h2 { 
    text-align: left !important;
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 24px;
    letter-spacing: 0.1em;
}
#contentarea #policy .accordion-heading {
    font-size: 18px;
    letter-spacing: 0.1em;
}
#contentarea #policy .accordion-heading:before {
    display: none;
}
#contentarea #policy .accordion-section-heading {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0.1em;
}
@media (min-width:992px) {
    h5 { 
      font-size:18px!important;
      line-height:22px!important;
      
    }
}

.thumbnail .img-fluid {
    width:100%;
}