/* FONTS
----------------------------------------------------------------------------------------------------*/

body {
	font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:62.50%;
    font-weight:500;
    color:#4d4d4d;
}

h1, h2, h3 {
	display:inline-block;
	font-weight:700;
}

h1, h2 {
	font-size:2.4em;
	margin-bottom:5px;
	color:#231F20;
}

h1:after,
h2:after,
h3:after {
    content: "";
    display: inline-block;
    height: 3px;
    width:100%;
    background-color: #FF0000;
    -webkit-transition: width 200ms;
    -moz-transition: width 200ms;
    transition: width 200ms;
}

h1:after,
h2:after {
    margin-bottom: 12px;
}

h3:after {
	margin-bottom: 8px;
}

h3 {
	font-size:1.5em;
	color:#000000;
}

p {
	font-size:1.5em;
	line-height:1.3;
	margin-bottom:20px;
}

p strong {
	font-weight:700;
	color:#231F20;
}

p a {
	color:#29ABE2;
	text-decoration:underline !important;
}


/** FONTS RESPONSIVE CSS
*****************************************************************************************************/

/* MAIN LAYOUT
----------------------------------------------------------------------------------------------------*/

body, html {
	height:100%;
}

body {
	background-color:#000000;
	padding-top:100px;
}

.container,
.content,
section {
	position:relative;
	display:block;
	width:100%;
}

.container:after,
.content:after,
section:after {
	display:block;
	content: " ";
	clear: both;
	height:0;
	width:100%;
	*zoom: 1;
}

.container {
	background-color:#ffffff;
	z-index:10;
}

.content,
section {
    padding:3rem 15px;
    margin:0 auto;
    max-width:1140px;
}

.container[id*="-content"] {
	min-height:300px;
}

/* CONTENT PAGE MAIN HEADER */

.main-header {
	position:relative;
}

.main-header section {
	padding:0;
	height:400px;
}

/* IMAGE GRID */

.image-grid {
	display:grid;
	grid-gap:2em;
	grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.image-grid a,
.image-grid > div {
	color:#4D4D4D;
	margin-bottom:2.5rem;
	text-align:center;
}

.image-grid img {
	display:block;
	width:100%;
	height:auto;
	object-fit: contain;
	border-radius:5px;
	padding:5px;
	background:#E6E6E6;
	margin-bottom:10px;
	box-sizing:border-box;
}

.image-grid span {
	display:block;
	font-size:1.5em;
	font-weight:500;
	line-height:1.4;
	text-align:center;
	margin-bottom:15px;
}

.image-grid h2 {
	display:block;
	margin-bottom:0;
}

.image-grid h2:after {
	display:none;
}

.image-grid img,
.image-grid h3 {
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

.image-grid p {
	display:block;
	padding:20px 15px;
	border-bottom:1px solid #E6E6E6;
	margin-bottom:0;
}

.image-grid.product-details ul {
	padding:20px 0;
	border-bottom:1px solid #E6E6E6;
}

.image-grid p:last-child,
.image-grid.product-details ul:last-child {
	border:none;
}

.image-grid p strong {
	color:#4d4d4d;
	display:block;
	margin-bottom:5px;
}

.enable-hover .image-grid a:hover img {
	background-color:#333333;
}

.enable-hover .image-grid a:hover h3 {
	color:#f00;
}

/* IMAGE GRID - PRODUCT DETAILS */

.image-grid.product-details {
	grid-gap:3rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	margin-bottom:25px;
}

.image-grid.product-details > div {
	text-align:center;
}

.image-grid.product-details img {
	display:inline-block;
	padding:0;
	background:none;
	border-radius:0;
	margin-bottom:50px;
}

/* IMAGE GRID - PRODUCT DETAILS - CENTERED */

.image-grid.product-details.centered > div {
	justify-self: center;
}

.image-grid.product-details.centered img {
	margin:30px 0;
	width:auto;
}

/* IMAGE GRID - IMAGE WRAPPER */

.image-grid .image-wrapper {
	display:grid;
	margin-bottom:15px;
}

/* IMAGE GRID - IMAGE WRAPPER - CENTERED */

.image-grid .image-wrapper {
	justify-items: center;
}

/* IMAGE GRID - IMAGE WRAPPER - SPLIT 3 */

.image-grid .image-wrapper.split3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	justify-content: center;
	grid-gap: 2rem;
	margin:30px auto 20px;
}

.image-grid .image-wrapper.split3 > div {
	width:100%;
}

.image-grid .image-wrapper.split3 img {
	width:100%;
	height:auto;
	border:1px solid #E6E6E6;
	border-radius:10px;
	margin:0;
}

/* FLEXBOX PRESETS */
.flexbox-freesize {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
  	justify-content: flex-start;
 	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexbox-absolute-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	-ms-flex-pack: center;
  	justify-content: center;
  	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexbox-justified {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
  	justify-content: space-between;
  	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width:100%;
}

.flexbox-centered {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexbox-divide-two {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
  	justify-content: space-between;
  	-ms-flex-align: stretch;
 	align-items: stretch;
 	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexbox-divide-two > div {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.flexbox-divide-three {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
  	justify-content: space-between;
  	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width:100%;
}

.flexbox-divide-three > div {
	-ms-flex: 0 0 33.3333333%;
	flex: 0 0 33.3333333%;
	max-width: 33.3333333%;
	padding-right:20px;
}


/** MAIN LAYOUT RESPONSIVE CSS
*****************************************************************************************************/

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

	body {
	    padding-top: 80px;
	}

	/* CONTENT PAGE MAIN HEADER */

	.main-header section {
		height:300px;
	}

	/* IMAGE GRID */

	.image-grid a {
		margin-bottom:1.5rem;
	}

	/* IMAGE GRID - IMAGE WRAPPER */

	.image-grid .image-wrapper.split3 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

}

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

	.content,
	section {
	    padding: 2rem 15px 4rem;
	}

	body {
		padding-top:60px;
	}

	/* IMAGE GRID - PRODUCT DETAILS - SINGLE */

	.image-grid.product-details.centered img {
		width:100%;
	}

}

/* NICESCROLL DISABLE CUSTOM SCROLLBAR (UNLESS YOU WANT IT) */

.nicescroll-rails {
	display:none !important;
}

/* HEADER
----------------------------------------------------------------------------------------------------*/

#header {
    position:fixed;
    top:0;
    left:0;
    background:#ffffff;
	-webkit-box-shadow: 0 1px 6px 0px rgba(0,0,0,0.2);;
    -moz-box-shadow: 0 1px 6px 0px rgba(0,0,0,0.2);;
    box-shadow: 0 1px 6px 0px rgba(0,0,0,0.2);;
    z-index:101;
}

#header section {
	width:100%;
    padding:0 15px;
}

#header #header-main {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
  	justify-content: space-between;
  	align-items: center;
  	height:100px;
  	padding-bottom: 10px; /* 10px padding is added to make it "look" centered. (Due to design) */
  	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

/* HEADER LOGO */

#header a#logo,
#header a#logo-alt {
    display:inline-block;
    height:48px;
    width:200px;
    margin-right:25px;
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

#header a#logo img,
#header a#logo-alt img {
	width:100%;
	height:auto;
}

/* HEADER NAVIGATION */

#header-navigation {
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

ul#main-navigation a {
	white-space: nowrap;
	outline:none;
	font-weight:500;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

ul#main-navigation > li {
	display:inline-block;
	position:relative;
	margin:0 0 0 20px;
}

ul#main-navigation > li:first-child {
	margin-left:0;
}

ul#main-navigation > li.dropdown {
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

ul#main-navigation > li > a {
	display:block;
	font-size:1.6em;
	line-height:2.5;
	color:#4d4d4d;
}

ul#main-navigation > li > a:after {
	content: "";
	display:block;
	width:0;
	height:3px;
	background-color:#FF0000;
	margin-top:-10px;
	-webkit-transition: width 200ms;
	-moz-transition: width 200ms;
	transition: width 200ms;
}

ul#main-navigation > li.active,
ul#main-navigation > li > a.current,
ul#main-navigation > li > a.active,
.enable-hover ul#main-navigation > li > a:hover {
    color:#000000;
}

ul#main-navigation > li > a.current:after,
ul#main-navigation > li > a.active:after,
.enable-hover ul#main-navigation > li > a:hover:after {
    width:100%;
}

/* HEADER SUBNAVIGATION */

ul.header-subnavigation {
	position:absolute;
	display:block;
	top:40px;
	left:-20px;
	background:#000000;
	padding:12px 0;
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

ul.header-subnavigation.expand {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	transform: scaleY(1);
}

ul.header-subnavigation.hide {
	max-height:inherit !important;
}

ul.header-subnavigation li a {
	position:relative;
	display:block;
	font-size:1.5em;
	line-height:2;
	color:#ffffff;
	padding:0 20px;
}

ul.header-subnavigation li a:after {
	content: "";
	display:block;
	width:30px;
	height:36px;
	position:absolute;
	top:0;
	right:0;
	-webkit-transition: background 200ms;
	-moz-transition: background 200ms;
	transition: background 200ms;
}

ul.header-subnavigation > li > a.current,
ul.header-subnavigation > li > a.active,
.enable-hover ul.header-subnavigation > li > a:hover {
    background-color:#f00;
}

/* HEADER EXPAND BUTTON FOR MOBILE */

a#expand-nav {
	position:absolute;
	top:0;
	right:15px;
	display:none;
	width:40px;
	height:40px;
	padding:13px 11px;
	margin:20px 0;
	cursor:pointer;
	background:#000000;
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	z-index:10;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

a#expand-nav div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	-ms-flex-pack: justify;
  	justify-content: space-between;
	width:18px;
	height:14px;
}

a#expand-nav div span {
	display:block;
	width:18px;
	height:2px;
	background:#ffffff;
	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

#header.mobile-nav-active a#expand-nav{
	background-color:#FFCB09;
}

a#expand-nav.active div span:first-child,
#header.mobile-nav-active a#expand-nav div span:first-child {
	transform: translateX(-2px) rotate(-45deg) scaleX(1.1);
	right:10px;
}

a#expand-nav.active div span:nth-child(2),
#header.mobile-nav-active a#expand-nav div span:nth-child(2) {
	opacity:0;
}

a#expand-nav.active div span:last-child,
#header.mobile-nav-active a#expand-nav div span:last-child {
	transform: translateX(-2px) translateY(2px) rotate(45deg) scaleX(1.1);
}

/* HEADER COMPACT (ON ONSCROLL) */

#header.compact:not(.mobile-nav-active) #header-main {
  	height:60px;
  	padding-bottom: 5px;
}

/* HEADER COMPACT LOGO */

#header.compact:not(.mobile-nav-active) a#logo,
#header.compact:not(.mobile-nav-active) a#logo-alt {
    height:32px;
    width:130px;
}

/* HEADER COMPACT  EXPAND BUTTON FOR MOBILE */

#header.compact:not(.mobile-nav-active) a#expand-nav {
	margin:10px 0;
}


/* HEADER / HEADER NAVIGATION / HEADER SUB NAVIGATION RESPONSIVE CSS
**************************************************************************************/

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

	/* HEADER NAVIGATION */

	ul#main-navigation > li {
	    margin: 0 0 0 1rem;
	}

	ul#main-navigation > li > a {
		font-size:1.3em;
	}

	ul#main-navigation > li > a:after {
		height:2px;
		margin-top:-6px;
	}

}

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

	/* HEADER NAVIGATION */

	ul#main-navigation > li > a {
		font-size:1.1em;
	}

}

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

	/* HEADER */

	#header #header-main {
	  	height:80px;
	}

	/* HEADER EXPAND BUTTON FOR MOBILE */

	a#expand-nav {
		display:block;
	}

	/* HEADER LOGO */

	#header a#logo-alt {
		display:inline-block;
	}

	/* HEADER SUBNAV */

	#header .header-subnav section {
	    padding:0;
	}

	.header-subnav {
		position:relative;
		top:0;
		background:none;
		-webkit-transform: none;
		-moz-transform: none;
		transform: none;
	}

	/* HEADER NAVIGATION */

	#header-navigation {
		position:fixed;
		top:0;
		left:0;
		height:100vh;
		width:100vw;
		background:rgba(30,30,30,1);
		padding:90px 0;
		pointer-events: none;
		opacity:0;
		overflow:scroll;
	}

	ul#main-navigation > li {
		display:block;
		margin:0;
		text-align:center;
		overflow:hidden;
	}

	ul#main-navigation a {
		white-space:normal;
	}

	ul#main-navigation > li > a {
		display:inline-block;
		font-size:2em;
		font-weight:600;
		color:#ffffff;
	}

	ul#main-navigation > li > a:after {
		display:none;
	}

	ul#main-navigation li.limit-height {
		max-height:50px !important;
	}

	ul#main-navigation > li.dropdown > a:after {
		content: "\002B";
		display:inline-block;
		font-size:1.2em;
		color:#000000;
		width:20px;
		height:20px;
		margin-left:5px;
		border-radius:100%;
		background-color:#ffffff;
		text-align:center;
		line-height: 0.9;
		-webkit-transition: all 200ms;
		-moz-transition: all 200ms;
		transition: all 200ms;
	}

	ul#main-navigation > li.dropdown > a.active:after {
		content: "\2212";
		background-color:#ffc318;
	}

	ul#main-navigation > li.active,
	ul#main-navigation > li > a.current,
	ul#main-navigation > li > a.active,
	.enable-hover ul#main-navigation > li > a:hover {
	    color:#FFCB09;
	}

	/* HEADER NAVIGATION - MOBILE NAV ACTIVE */

	#header.mobile-nav-active #header-navigation {
		opacity:1;
		pointer-events: inherit;
	}

	/* HEADER NAVIGATION BACKGROUND DECORATION */

	#header.mobile-nav-active #header-navigation:before,
	#header.mobile-nav-active #header-navigation:after {
		display:block;
	}

	/* HEADER SUBNAVIGATION */

	ul.header-subnavigation {
		position:relative;
		display:block;
		top:0;
		left:0;
		background:none;
		padding:0;
		overflow:hidden;
		-webkit-transform: none;
		-moz-transform: none;
		transform: none;
	}

	ul.header-subnavigation li a {
		position:relative;
		display:block;
		font-size:1.8em;
		font-weight:500;
		line-height:1.2;
		padding:6px 15px;
	}

	ul.header-subnavigation > li > a.current,
	ul.header-subnavigation > li > a.active,
	.enable-hover ul.header-subnavigation > li > a:hover {
	    background:none;
	}

}

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

	/* HEADER COMPACT (ON ONSCROLL) */

	#header #header-main {
	  	height:60px;
	  	padding-bottom: 5px;
	}

	#header a#logo,
	#header a#logo-alt {
	    height:32px;
	    width:130px;
	}

	#header a#expand-nav {
		margin:10px 0;
	}

	/* HEADER NAVIGATION */

	ul#header-navigation > li {
		text-align:left;
	} 

	ul#header-navigation > li > a {
		display:block;
		font-size: 1.8em;
	}

	ul#header-navigation > li.dropdown.limit-height {
		max-height:45px !important;
	}

	ul#header-navigation > li.dropdown > a {
	    margin-left: 0;
	}

	ul#header-navigation > li.dropdown > a:after {
		width:16px;
		height:16px;
	}

	/* HEADER SUBNAVIGATION */

	ul.header-subnavigation li a {
		font-size: 1.6em;
	}

}

/* CONTENT - GENERAL
----------------------------------------------------------------------------------------------------*/

/* GENERAL CLASS */

a,
a:link,
a:focus {
   outline: 0;
   text-decoration:none;
}

.text-center {
	text-align:center;
}

.clear {
	display:block;
	width:100%;
	clear:both;
	float:none;
}

/* LINKS AND BUTTONS */

a.link-btn {
	display:inline-block;
    font-size:1.6em;
    font-weight:500;
    line-height:2.5;
    color:#000000;
    padding:0 18px;
    border-radius:4px;
    border:1px solid #CCCCCC;
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

.enable-hover a.link-btn:hover {
	border:1px solid #f00;
	color:#ffffff;
	background:#f00;
}

a.back-btn {
	position:relative;
    display:inline-block;
    font-size:1.6em;
    font-weight:500;
    line-height:2.5;
    color:#000000;
    padding:0 25px 0 40px;
    border-radius:4px;
    border:1px solid #CCCCCC;
}

a.back-btn,
a.back-btn img {
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

a.back-btn img {
	position: absolute;
    top: 12px;
    left: 25px;
}

.enable-hover a.back-btn:hover {
	background-color:#f00;
	color:#ffffff;
}

.enable-hover a.back-btn:hover img {
	filter: brightness(0) saturate(100%) invert(100%) sepia(45%) saturate(2%) hue-rotate(305deg) brightness(105%) contrast(101%);
}

/* LIST STYLE - ARROW LIST */

ul.arrow-list li {
	position:relative;
	padding-left:20px;
	font-size:1.6em;
	margin-bottom:5px;
}

ul.arrow-list li:before {
	content: "";
	display:block;
	width:11px;
	height:11px;
	background:url("../images/svg/icon-arrow-olive.svg") no-repeat center top;
	background-size:11px 11px;
	position:absolute;
	top:2px;
	left:0;
}

/* LIST STYLE - BULLET LIST */

ul.bullet-list {
	margin-bottom:20px;
}

ul.bullet-list:last-child {
	margin-bottom:0;
}

ul.bullet-list li {
	position:relative;
	font-size:1.6em;
	line-height:1.3;
	padding-left:15px;
	margin-bottom:2px;
}

ul.bullet-list li:before {
    content: "\2022";
    position:absolute;
    top:1.5px;
    left:0;
    font-size:1.6em;
    line-height:0.6;
}

ul.bullet-list li.sub-heading {
	padding-left:0;
}

ul.bullet-list li.sub-heading:before {
	display:none;
}

ul.bullet-list li.sub-heading strong {
	font-weight:600;
}

/* LIST STYLE - DEFAULT LIST */

ul.default-list {
	text-align:center;
}

ul.default-list li {
	font-size:1.5em;
	line-height:1.2;
	margin-bottom:6px;
	padding:0 15px;
}

ul.default-list li.heading {
	font-weight:700;
	list-style:none;
}

/* LIST STYLE - CLEAR LIST */

ul li.clear-list {
	clear:both !important;
	float:none !important;
	width:100% !important;
	height:auto !important;
	padding:0 !important;
	margin:0 !important;
	border:none !important;
	background:none !important;
}

ul li.clear-list:before,
ul li.clear-list:after {
	display:none !important
}

/* HEXAGON BOX FRAME */

.grid-box {
	display:grid;
	place-items:center;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}

.grid-box h1 {
	line-height:1.2;
}

.grid-box h1:after,
.grid-box h2:after {
	display:none;
}

.hexagon-frame {
	position:relative;
	display:block;
}

.hexagon-frame svg {
	width:100%;
	height:auto;
}

.hexagon-frame .details {
	position:absolute;
	top:0;
	left:0;
	text-align:center;
}

.hexagon-frame,
.hexagon-frame .details {
	width:177px;
	height:200px;
}

.hexagon-frame.lrg,
.hexagon-frame.lrg .details {
	width:220px;
	height:250px;
}

.hexagon-frame .details {
	display:grid;
	place-items:center;
}

.hexagon-frame .details h2,
.hexagon-frame .details span {
	width:100%;
}

.hexagon-frame .details h2 {
	margin-bottom:10px;
}

.hexagon-frame .details span {
	font-size:1.4em;
	color:#cccccc;
	-webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

#hexagon {
    -webkit-transition: fill .4s ease;
    -moz-transition: fill .4s ease;
    transition: fill .4s ease;   
    fill:white;
 }

 a.hexagon-frame:hover #hexagon {
    fill:red;
 }

 a.hexagon-frame:hover span {
    color:#ffffff;
 }

/* SECTIONS - HOME
----------------------------------------------------------------------------------------------------*/

/* SLICK SLIDER OVERRIDES */

#home-slider .slick-track {
	max-height:600px;
	overflow:hidden;
}

#home-slider .slick-slide img {
	width:100%;
	height:auto;
	object-fit: contain;
}

.slick-dots {
	bottom:25px;
}

.slick-dots li.slick-active button {
	background-color: #FFDC00;
	border: 1px solid #FFDC00;
}

.slick-dots li button {
	background-color:#ffffff;
}

/* SLICK SLIDER CUSTOM CSS */

#home-slider .slide-caption {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	max-height:600px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	-ms-flex-pack: center;
  	justify-content: center;
  	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

#home-slider .slide-caption header {
	max-width:650px;
	text-align:center;
}

#home-slider .slide-caption span {
	display:inline-block;
	font-size:42px;
	font-weight:700;
	line-height:1.2;
	margin:6px 0;
	padding:0 15px;
	color:#ffffff;
	text-align:center;
	background-color:rgba(0,0,0,0.5);
}

/* HOME - OWL CAROUSEL OVERRIDES */

.owl-carousel .owl-item img {
	width:100%;
    height:auto;
    object-fit: contain;
    max-height:85px;
}

/* HOME - ABOUT US */

#home-about-us-grid {
	display:grid;
	grid-template-columns:auto 40%;
}

#home-about-us-grid img {
	width:100%;
	height:auto;
}

#home-about-us-grid > div {
	display:grid;
	place-items:center;
}

#home-about-us-grid > div:first-child {
	padding-right:30px;
}

/* HOME - PRODUCTS SERVICES */

#home-products-services section {
	padding:0;
	max-width:inherit;
}

#home-products-services-flexbox {
	height:calc(50vw - 200px);
}

#home-products-services-flexbox > div {
	position:relative;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	max-height:calc((100vw / 2) - 200px);
	overflow:hidden;
}

#home-products-services-flexbox .simple-parallax.first {
	background-image:url("../images/home/products.jpg");
	background-repeat:no-repeat;
	background-position:center 0%;
	background-size:cover;
}

#home-products-services-flexbox .simple-parallax.second {
	background-image:url("../images/home/services.jpg");
	background-repeat:no-repeat;
	background-position:center 50%;
	background-size:cover;
}

/* HOME - NOTABLE CLIENTS */

#home-clients section {
	padding:4rem 15px;
	text-align:center;
}

#home-clients h2 {
	margin-bottom:40px;
}

/** SECTIONS - HOME RESPONSIVE CSS - HOME ABOUT US
*****************************************************************************************************/

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

	/* HOME - PRODUCTS SERVICES */

	#home-products-services-flexbox {
		height:250px;
	}

	#home-products-services-flexbox > div {
		max-height:250px;
	}

}

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

	/* HOME - ABOUT US */

	#home-about-us-grid > div:first-child {
	    padding-right: 10px;
	}

	/* SLICK SLIDER CUSTOM CSS */

	#home-slider .slide-caption span {
		font-size:3em;
	}

}

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

	/* HOME - ABOUT US */

	#home-about-us-grid {
		display:grid;
		grid-template-columns: 100%;
		text-align:center;
	}

	#home-about-us-grid > div:last-child {
	    grid-row-start:1;  
	}

	#home-about-us-grid > div:last-child img {
		margin-bottom:2rem;
	}

	/* HOME - PRODUCTS SERVICES */

	#home-products-services-flexbox {
		height:100%;
		max-height:600px;
	}

	#home-products-services-flexbox > div {
		-ms-flex: 0 0 1050%;
		flex: 0 0 100%;
		max-width: 100%;
		max-height:300px;
		height:100vw;
	}

}

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

	/* SLICK SLIDER */

	#home-slider .slick-slide img {
		margin-left: calc((100vw - 600px) / 2);
		min-width:600px;
		min-height:250px;
	}

	/* SLICK SLIDER CUSTOM CSS */

	#home-slider .slide-caption header {
		max-width:300px;
	}

	#home-slider .slide-caption span {
		font-size:2em;
		margin:3px 0;
		padding:0 5px;
	}

	/* HOME - PRODUCTS SERVICES */

	#home-products-services-flexbox .simple-parallax.first {
		background-size:120%;
	}

	#home-products-services-flexbox .simple-parallax.second {
		background-size:120%;
	}

}

/* SECTIONS - ABOUT US
----------------------------------------------------------------------------------------------------*/

#company-overview {
	background:url("../images/about/main.jpg") no-repeat center top;
	background-size:cover;
}

#company-overview-content {
	text-align:center;
}

#company-overview-content section {
	padding: 4rem 15px;
}

#company-overview-content section:first-child {
	padding-bottom:0;
}

/* SECTIONS - PRODUCTS
----------------------------------------------------------------------------------------------------*/

#products {
	background:url("../images/products/main.jpg") no-repeat center top;
	background-size:cover;
}

#products-content section {
	padding:4rem 15px 6rem;
}

/* SECTIONS - SERVICES
----------------------------------------------------------------------------------------------------*/

#services {
	background:url("../images/services/main.jpg") no-repeat center top;
	background-size:cover;
}

#services-content section {
	padding:4rem 15px 6rem;
}

/* SECTIONS - PRODUCT DETAILS
----------------------------------------------------------------------------------------------------*/

#product-details {
	text-align:center;
}

#product-details section {
	padding: 4rem 15px;
}

#product-details > h2 {
	margin-bottom:4rem;
}

/* PRODUCT DETAILS - STRUCTURAL STEEL */

#structural-steel-grid.product-details > div {
	max-width:550px;
}

/* PRODUCT DETAILS - ACTIVE TELEMATICS */

#active-telematics-grid p {
	padding:0;
}

#active-telematics-grid.product-details > div {
	max-width:900px;
}

#active-telematics-grid .image-wrapper img:first-child {
	margin:30px 0 10px;
}

#active-telematics-grid .image-wrapper p {
	font-size:0.55rem;
	width:450px;
	padding:0;
	margin:0 auto;
	border:none;
}

#active-telematics-grid .image-wrapper p strong {
	display:inline-block;
	margin:0;
}

/* PRODUCT DETAILS - HOSES & HYDRAULIC FITTING */

#hoses-grid p {
	max-width:530px;
	margin:0 auto;
}

/* IMAGE GRID - IMAGE WRAPPER - SPLIT 3 */

#hoses-grid .image-wrapper {
	max-width:730px;
}

/* PRODUCT DETAILS - HOSES & HYDRAULIC FITTING */

#hoses-grid p,
#fastener-bolt-nut-grid p,
#fastener-bolt-nut-grid ul {
	max-width:580px;
	margin:0 auto;
}

/** SECTIONS - PRODUCT DETAILS RESPONSIVE CSS
*****************************************************************************************************/

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

	/* PRODUCT DETAILS - ACTIVE TELEMATICS */

	#active-telematics-grid .image-wrapper img:first-child {
		margin:30px 0 20px;
	}

	#active-telematics-grid .image-wrapper p {
		font-size:0.7rem;
		width:100%;
		margin-bottom:20px;
	}

}

/* SECTIONS - CONTACT US
----------------------------------------------------------------------------------------------------*/

#contact-us section {
	padding:6rem 15px 3rem;
}

#contact-us-flexbox > div {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

#contact-us-flexbox > div section {
	padding:0;
}

#contact-us-flexbox h1,
#contact-us-flexbox h2 {
	margin-bottom:20px;
}

#contact-details p.address strong {
	display:block;
	margin-bottom:5px;
}

#contact-details p.contact strong {
	display:inline-block;
	color:#4d4d4d;
	margin-right:5px;
}

/* GOOGLE MAPS */

#map-canvas {
	width:100%;
	height:600px;
}

/* SECTIONS - CONTACT US RESPONSIVE CSS
**************************************************************************************/

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

	#contact-us section {
	    padding: 3rem 15px;
	}

	#contact-us-flexbox > div {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	#contact-details {
		margin-bottom:3rem;
	}

}


/* CONTENT - ERROR PAGE
----------------------------------------------------------------------------------------------------*/

#error-content h1 {
	text-transform:uppercase;
}

/* CONTENT - FORMS
----------------------------------------------------------------------------------------------------*/

#ajax-form-container,
#ajax-form {
    width:100%;
}

#ajax-form-container .left-column,
#ajax-form-container .right-column {
	display:block;
	width:49%;
	margin-bottom:15px;
}

#ajax-form-container .left-column {
	float:left;
}

#ajax-form-container .right-column {
	float:right;
}

#ajax-form-success-message {
	display:none;
	padding:20px 0 0;
}

#ajax-form-success-message h3 {
	margin-bottom: 10px;
    display: inline-block;
    background-color: #32b508;
    padding: 10px 20px;
    border-radius: 5px;
}

.form {
	position:relative;
	display:block;
	padding:0;
}

.form-row {
	margin-bottom:10px;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.form .field {
	position:relative;
	text-align:left;
	min-width:inherit;
	background:none;
	margin-bottom:15px;
	clear:both;
}

.form .field:last-child {
	margin-bottom:0;
}

.form #message.field {
	margin-bottom:17px;
}

.form #captcha.field {
	overflow:hidden;
}

.form label {
	display:block;
	font-size:1.5em;
	font-weight:500;
	line-height:1;
	margin-bottom:6px;
}

.form-control {
	display:block;
    height:25px;
	width:100%;
	padding:0 15px;
	border-top:none;
	border-left:none;
	border-right:none;
	border-bottom:1px solid #E6E6E6;
	background-color:#ffffff;
	background-clip: padding-box;
    font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:1.5em;
    font-weight:400;
	line-height:40px;
    color:#4d4d4d;
	outline:none;
}

textarea.form-control {
	border:1px solid #E6E6E6;
	height:140px;.
	-moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
} 

select.form-control {
	padding: 0 12px;
	width:200px;
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::-moz-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

select.form-control:focus::-ms-value {
	color: #495057;
	background-color: #fff;
}

textarea.form-control {
	padding:10px 15px;
	line-height:1.3;
}

.form div#spamtrap {
	visibility:hidden
}

.form .error {
	position:relative;
	display:block;
	margin:0;
	z-index:2;
	float:none;
	clear:both;
}

.form #ajax-form-server-errors {
	position:relative;
	/*margin-bottom:20px;*/
	color:#f00;
	visibility:visible;
}

.form #ajax-form-server-errors.error div {
	padding:0 0 20px;
}

.form .error div {
	display:block;
	clear:both;
	font-size:1.2em;
	line-height:2;
	padding:0;
	margin:0;
    color:#f00;
}

.form .error:before {
	position:absolute;
	top:0;
	left:0;
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent; 
	border-right:10px solid blue; 
}

.form fieldset#antispam {
	padding:2px;
	border-top:1px solid #EEE;
	border-left:0;
	border-right:0;
	border-bottom:0;
	width:350px;
}

.form fieldset#antispam legend {
	font-size: 0.8em;
	font-weight:bold;
	color:#333;
}

.form .button {
	position:relative;
    line-height:2;
    background-color:#ffffff;
    padding:0 15px;
    font-family: "Montserrat", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:1.5em;
    font-weight:500;
    border:none;
    height:40px;
    width:auto;
    min-width:inherit;
    display:inline-block;
    color:#231F20;
	cursor:pointer;
	border:1px solid #CCCCCC;
	border-radius:4px;
    -webkit-appearance: none;
    -moz-appearance: none;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

.enable-hover .form .button:hover {
	border-color:#000000;
    background-color:#000000;
    color:#ffffff;
}

#ajax-form-recaptcha {
	position:relative;
	width: 290px;
	overflow:hidden;
}

#ajax-form-recaptcha:before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	border: 1px solid #d3d3d3;
	pointer-events: none;
	height:76px;
	width:290px;
	border-radius:2px;
	z-index:10;
}

#ajax-form-recaptcha > div {
	margin-left:-5px;
}

/* spam_trap: This input is hidden. This is here to trick the spam bots*/

.form .spmhidip {
	display:none;
	width:10px;
	height:3px
}
#fg_crdiv {
	font-size: 0.3em;
	opacity: .2;
	-moz-opacity: .2;
	filter: alpha(opacity=20);
}
#fg_crdiv p {
	display:none;
}

.form input[type=submit]:disabled,
.form button:disabled,
.form input[type=submit][disabled=disabled],
.form button[disabled=disabled],
.form input[type=text]:disabled,
.form input[type=text][disabled=disabled],
.form text:disabled,
.form text[disabled=disabled] {
    background:#cccccc !important;
}

.form input[type=submit]:disabled,
.form button:disabled,
.form input[type=submit][disabled=disabled],
.form button[disabled=disabled] {
	color:#999999 !important;
}

.form input[type=submit]:disabled .icon,
.form button:disabled .icon,
.form input[type=submit][disabled=disabled] .icon,
.form button[disabled=disabled] .icon {
	filter: brightness(0) saturate(100%) invert(53%) sepia(0%) saturate(1926%) hue-rotate(88deg) brightness(111%) contrast(83%);
}

/* CONTENT - ANIMATION STYLES - SELECTED FROM ANIMATE.CSS (ZOOMIN,FADEINUP,FADEINLEFT)
----------------------------------------------------------------------------------------------------*/

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/* CUSTOM ANIMATE CSS ADDITION */

.animated.delay-02s {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

.animated.delay-04s {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.animated.delay-06s {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.animated.delay-08s {
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
}

/* CONTENT - FOOTER
----------------------------------------------------------------------------------------------------*/

#footer {
	background-color:#000000;
    text-align: center;
}

#footer section {
    padding: 3rem 15px;
}

/* FOOTER COPYRIGHT */

#footer p {
	font-size:1.4em;
	color:#cccccc;
	margin:0;
	line-height:1.6;
}

#footer p span {
	display:block;
}

#footer p span,
#footer p span a {
	color:#4d4d4d ;
}

#footer p span a {
	text-decoration:none !important;
}

/** CONTENT - FOOTER
*****************************************************************************************************/

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

	#footer p {
		font-size:1.2em;
	}

}

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

	#footer p {
		font-size:1.1em;
	}

	#footer p span {
		margin-top:5px;
	}

}
