/* Section */

.section {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}

/* Main Wrapper */

#mainWrapper {
	position: relative;
	text-align: left;
	margin: 0 auto;
	min-width: 320px;
	font-size: 15px;
	overflow: hidden;
}

/* Header */

#header .section {
	height: 138px;
	padding-top: 20px;
}

#header .logo {
	display: block;
	margin: 0 auto;
	width: 397px;
}

#header .contact {
	position: absolute;
	font-family: 'Montserrat-Regular', Arial, sans-serif;
	font-size: 20px;
	top: 36px;
}

#header .contact span {
	display: block;
	text-decoration: uppercase;
	color: #009ee0;
}

#header .contact.left {
	left: 0;
}

#header .contact.right {
	right: 0;
}

/* Top Navi */

#topNavi {
	background: #009ee0;
	position: relative;
	z-index: 2;
}

#topNavi #navigation ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

#topNavi #navigation ul li {
	position: relative;
	margin: 0 -4px 0 0;
	padding: 0;
	list-style: none;
	display: inline-block;
	text-transform: capitalize;
	font-family: 'Montserrat-Regular', Arial, sans-serif;
	font-size: 18px;
}

#topNavi #navigation ul li a {
	position: relative;
	display: inline-block;
	padding: 9px 17px;
	min-width: 1px;
}


#topNavi #navigation ul li ul {
	margin: 0;
	text-align: left;
	position: absolute;
	left: 0;
	padding: 0;
	min-width: 100%;
	z-index: 1000;
}

body.scrolled #topNavi #navigation ul li ul {
	padding-top: 11px;
}

#topNavi #navigation ul li:hover,
#topNavi #navigation ul li ul li {
	background: #088ac1;
}

#topNavi #navigation ul li ul li {
	float: none;
	position: static;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	color: #000;
}

#topNavi #navigation ul li ul li a {
	display: inline-block;
	padding: 5px 11px;
	line-height: 1.2;
	white-space: nowrap;
	color: #fff !important;
}

#topNavi #navigation ul li ul { 
	visibility: hidden;
	opacity: 0;
	margin-left: 0;
	-webkit-transform: translateX(-2%);
	-ms-transform: translateX(-2%);
	    transform: translateX(-2%);
	-webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	-o-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

#topNavi #navigation ul li:hover ul {
	visibility: visible; 
	opacity: 1;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	    transform: translateX(0%);
	-webkit-transition-delay: 0s, 0s, 0.3s;
	-o-transition-delay: 0s, 0s, 0.3s;
	   transition-delay: 0s, 0s, 0.3s;
}


#topNavi #navigation ul li ul li ul {
	position: static;
	padding-left: 18px;
	padding-right: 10px;
}

#topNavi #navigation ul li ul li ul li {
	font-weight: normal;
	font-size: 0.7777777777777778em; /* 14px */
}

#topNavi #navigation ul li ul li ul li a {
	display: inline-block;
	padding: 5px 0;
	min-width: 1px;
}


/* Slider */

#slider .slides {
	margin: 0;
	padding: 0;
}

#slider .slides li {
	margin: 0;
	padding: 0;
	list-style: none;
}

#slider .slides li img {
	display: block;
	width: 100%;
}

#slider .slides .owl-nav.disabled {
	display: block;
}

#slider .slides .owl-nav .owl-prev,
#slider .slides .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	margin-top: -28.5px;
	width: 57px;
	height: 57px;
	text-indent: -9999em;
	background: url(../images/slider-arrows.png) no-repeat left bottom;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	background-size: 100%;
}

#slider .slides .owl-nav .owl-prev {
	left: 20px;
}

#slider .slides .owl-nav .owl-next {
	right: 20px;
	background-position: left top;
}

/* Content */

#content {
	border-bottom: 1px solid #444444;
}

#content .section {
	padding-top: 35px;
	padding-bottom: 35px;
}



/* Products */

#products .listing {
	margin: 0 0 0 -2.857142857142857%;
	padding: 0;
}

#products .listing li {
	display: inline-block;
	vertical-align: top;
	margin: 0 -4px 40px 0;
	padding: 0 0 0 2.857142857142857%;
	list-style: none;
	width: 25%;
	text-align: center;
}

#products .listing li a {
	display: block;
}

#products .listing li .image {
	display: table;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	text-align: center;
	margin-bottom: 28px;
}

#products .listing li .image .pic {
	display: table-cell;
	vertical-align: middle;
	height: 320px;
	background: #fff;
	overflow: hidden;
	padding: 5%;
}

#products .listing li .image .pic img {
	display: block;
	margin: 0 auto;
	max-height: 100%;
	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	transition: transform 0.3s;
  /*	width: 260px;    */
}

#products .listing li .desc {
	margin-bottom: 20px;	
}

#products .listing li a:hover .image .pic img {
	-webkit-transform: scale(1.04);
	-moz-transform: scale(1.04);
	transform: scale(1.04);
}

#products .listing li .linkBtn {
	display: inline-block;
}

#products .listing li a:hover .linkBtn {
	background-color: #3cb4f8;
}

/* Product */

#product .image {
	float: left;
	display: table;
	border-collapse: collapse;
	border-spacing: 0;
	width: 35.71428571428571%; /* 500px */
}

#product .image a {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 5%;
	background: #fff;
	height: 500px;
}

#product .image a:after {
	content: "";
	position: absolute;
	right: 11px;
	bottom: 11px;
	width: 32px;
	height: 32px;
	background: url(../images/zoom-ico.png) no-repeat;
}

#product .image a img {
	display: block;
	margin: 0 auto;
	max-height: 100%;
	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	transition: transform 0.3s;
}

#product .image a:hover img {
	-webkit-transform: scale(1.04);
	-moz-transform: scale(1.04);
	transform: scale(1.04);
}

#product .details {
	margin-left: 39.28571428571429%;
}

#product .details ul {
	margin: 12px 0 28px;
	padding: 0;
	font-size: 15px;
}

#product .details ul li {
	position: relative;
	margin: 0 0 7px;
	padding: 0 0 0 12px;
	list-style: none;
}

#product .details ul li:after {
	content: "»";
	position: absolute;
	left: 0;
	top: -1px;
}

#product .details .linkBtn {
	display: inline-block;
	text-align: center;
}


/* Footer */

#footer .top {
	border-bottom: 1px solid #474747;
}

#footer .top .section {
	padding-top: 55px;
	padding-bottom: 35px;
}

#footer .top h2 {
	margin-bottom: 20px;
}

#footer .top .location {
	float: left;
	width: 360px;
	padding-right: 40px;
}

#footer .top .location address {
	font-style: normal;
	padding: 0;
	margin: 0;
}

#footer .top .socials {
	float: left;
	width: 330px;
	padding-right: 40px;
}

#footer .top .socials ul {
	margin: 0;
	padding: 0;
}

#footer .top .socials ul li {
	float: left;
	margin: 0 12px 0 0;
	padding: 0;
	list-style: none;
	width: 59px;
}

#footer .top .socials ul li a img {
	display: block;
	width: 100%;
	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	transition: transform 0.3s;
}

#footer .top .socials ul li a:hover img {
	-webkit-transform: scale(1.04);
	-moz-transform: scale(1.04);
	transform: scale(1.04);
}

#footer .top .logos {
	float: right;
	margin: 0;
	padding: 0;
	background: #fff;
}

#footer .top .logos li {
	float: left;
	margin: 0;
	padding: 0;
	list-style: none;
}

#footer .top .logos li img {
	display: block;
	height: 110px;
}

#footer .top .apst {
	float: right;
	margin-right: 111px;
	margin-top: 3px;
}

#footer .bottom .section {
	padding-top: 28px;
	padding-bottom: 28px;
}

#footer .bottom .copyright {
	margin: 0;
	text-align: center;
}

/* Mobile Navigation */

#ContactForm {
	max-width: 400px;
}

#ContactForm .form-group{
	margin-left: 0;
	margin-right: 0;
}


#menuBtn {
	display: none;
	position: absolute;
	left: 10px;
	top: 42px;
    width: 28px;
	outline: none;
	z-index: 1;
}

#menuBtn span {
	display: block;
	height: 4px;
	margin-bottom: 5px;
	background: #009ee0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

#mm-navigation {
	text-align: left;
}

#mm-navigation ul {
	color: #000;
	color: rgba(0, 0, 0, 0.3);
}

#mm-navigation ul li.Current {
	background: #fff;
	background: rgba(255,255,255,0.8);
}

#mm-navigation *:after, #mm-navigation *:before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

#mm-navigation .mm-listview img {
	display: block;
	width: 100%;
}

#mm-navigation .mm-listview p span {
	display: block;
}

#mm-navigation .mm-listview li.color01 a,
#mm-navigation .mm-listview li.color02 a,
#mm-navigation .mm-listview li.color03 a,
#mm-navigation .mm-listview li.color04 a {
	padding-left: 10px;
	color: #fff;
}
label.error {
	display: block;
	min-width: 200px;
	color: yellow;
	font-weight: normal;
	font-size: 11px;
} 