/**
	@Author:	Paul Strandoo
	@Date:		21 Feb 2017 / 16 May 2019 
	@Notes:		Flat Glass Solutions
	
	CONTENTS
	-------------
	- Global resets
	- Global typography
	- Structure
	- Header & navigation
	- Reusable sections
	- Pages
	- Footer
	- Utility & Misc 
	
	FONTS & COLORS
	-------------
	Dark Blue: 	#01364a; rgba(1,54,74,1);
	Light Blue:	#006185; rgba(0,97,133,1);
	Lighter Blue: #79a8bf;
	
	font-family: 'Raleway', sans-serif;
	available weight: 300, 400, 400 italic, 800, 800 italic
*/

@import url(reset.css); 
@import url("font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,400i,800,800i");

*, *:before, *:after {
   -moz-box-sizing:    border-box;
   -webkit-box-sizing: border-box;
	box-sizing:        border-box;
	}

@-ms-viewport {
	width: device-width;
}
html {
	font-size: 100%; /* Set a 16px base size */
	height: 100%;
	}
body {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 17px;
	line-height: 1.75em;
	color: #333;
	height: 100%;
	/*-webkit-text-stroke: 0.1px;*/
	}

body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}

body.is-loading * {
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
}

.cd-container {
	/* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
	width: 90%;
	max-width: 768px;
	margin: 0 auto;
}
.cd-container:after {
	content: "";
	display: table;
	clear: both;
}

input, textarea, select {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 17pt;
	line-height: 1.75em;
	color: #333;
	/*-webkit-text-stroke: 0.1px;*/
	}

p,
li,
td {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	/*font-size: 1.1em;*/
	line-height: 1.6em;
	margin: 0 0 1em;
	}
li {
	margin: 0;
	}
.no-margin {
	margin-bottom: 0;
	}

em {
	/*font-family: 'Raleway', sans-serif;*/
	}
b,
strong {
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	}

a {
	color: #006185;
	font-weight: 500;
}
a:hover {
	color: #006185;
	text-decoration: underline;
}

::selection {
	color: #fff;
	background: #79a8bf;
	}

h1,h2,h3,h4 {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	margin: 0 0 0.5em;
	}
h1 {
	font-family: 'Raleway', sans-serif;
	font-size: 3em;
	line-height: 1.1em;
	}

h2 {
	font-family: 'Raleway', sans-serif;
	font-size: 2em;
	line-height: 1.2em;
	}

h3 {
	font-family: 'Raleway', sans-serif;
	font-size: 1.6em;
	color: #333;
	margin: 0.3em 0;
	}
	
h4 {
	font-size: 1;
	font-weight: 700;
	margin: 0;
	padding: 0;
	}

img {
	display: block;
	}

/* ------ [ Sections: Dark/Light ] -----------------*/
.dark {
	background: #2c3037;
	}
.light {
	background: #006185;
	}
.dark,
.dark p,
.dark li,
.dark h2,
.dark h3,
.light,
.light p,
.light li,
.light h2,
.light h3 {
	color: #fff;
	}
.dark a,
.light a {
	color: #fff;
	}
.dark a:hover,
.light a:hover {
	color: #fff;
	text-decoration: underline;
	}
.dark.border-top,
.light.border-top {
	border-top: 8px solid #fff;
	}
	

/* ------ [ Structure ] -----------------*/
header,
section,
footer {
	background: #ffffff;
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	padding: 30px 0;
	overflow: hidden;
	}
.inner {
	position: relative;
	max-width: 1070px;
	margin: 0 auto;
	padding: 0 15px;
	}

.inner-narrow {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 15px;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	}

/* page wrapper for mobile nav */
.cd-main-content {
	position: relative;
	z-index: 2;
	min-height: 100vh;
	background: #fff;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}


/* ------ [ Strandoo Simple Grid System v2 ] --------------- */
.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	}

.row > .col {
	width: 100%;
	display: block;
	float: left;
	vertical-align: top;
	padding: 0 10px;
	text-align: left;
	}

.row.inline > .col {
	display: inline-block;
	float: none;
	margin-left: -5px;
	margin-right: -5px;
	}

.no-padding {
	margin: 0;
	}
.no-padding > .col {
	padding: 0;
	}

img.full {
	width: 100%;
	}
img.half {
	width: 50%;
	float: left;
	}
img.inline-img,
img.inline {
	max-width: 100%;
	display: inline-block;
	margin: 0 10px;
	}

/* ------ [ Masthead ] -----------------*/
header {
	position: fixed;
	/*position: absolute;*/
	z-index: 800;
	height: 80px;
	margin: 0;
	padding: 10px 0;
	background: #01364a;
	backgound: #f00;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.cd-header.menu-is-open {
	height: 100%;
	background: none;
}



header::before {
	/* never visible - this is used in jQuery to check the current MQ */
	display: none;
	content: 'mobile';
}
.cd-main-content::before {
	/* never visible - this is used in jQuery to check the current MQ */
	display: none;
	content: 'mobile';
}
@media only screen and (min-width: 1024px) {
	.cd-main-content::before {
		content: 'desktop';
	}
}

/* ------ [ Angled Header ] ------ */
header {
	padding: 0;
	}	
.masthead {
	background: rgba(255,255,255,0) !important;
	border: none;
	/*overflow: hidden;*/
	}	
.masthead .inner {		
	padding: 0;
	margin: 0 auto;
	max-width: 1070px;
	}
	
.left-side {
	position: relative;
	background: rgba(1,54,74,1);
	width: 100%;
	height: 90px;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	}
.right-side {
	display: none;
	}
	
.banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	}

@media only screen and (min-width: 350px) {
	.left-side {
		position: relative;
		background: rgba(1,54,74,1);
		width: 13%;
		height: 120px;
		margin-right: 300px;
	
		width: 20%;
		width: 115px;
		margin-top: -35px;
		margin-right: 230px;
	
		float: left;
		-webkit-transition: all .3s linear;
		-moz-transition: all .3s linear;
		-o-transition: all .3s linear;
		transition: all .3s linear;
		}
	.left-side:before {
		content: "";
		background: rgba(1,54,74,1);
		position: absolute;
		top: 0;
		bottom: 0;
		right: 100%;
		width: 9999px;
	}
	.left-side:after {
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		left: 100%;
		border: 0 solid transparent;
		border-left: 226px solid rgba(1,54,74,1);
		border-bottom: 120px solid transparent;
		}
	.right-side {
		position: relative;
		background: rgba(1,54,74,1);
		height: 100px;
		width: 100px;
		width: auto;
		top: -30px;
		float: left;
		display:block;
		}
	.right-side:before {
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		right: 100%;
		border: 0 solid transparent;
		border-left: 185px solid transparent;
		border-bottom: 100px solid rgba(1,54,74,1);
		}
	.right-side:after {
		content: "";
		background: rgba(1,54,74,1);
		position: absolute;
		top: 0;
		bottom: 0;
		left: 100%;
		width: 9999px;
		}
}

@media only screen and (min-width: 1024px) {
	.left-side {
		position: relative;
		background: rgba(1,54,74,1);
		width: 13%;
		height: 120px;
		margin-right: 300px;
		margin-top: 0;
		float: left;
		-webkit-transition: all .3s linear;
		-moz-transition: all .3s linear;
		-o-transition: all .3s linear;
		transition: all .3s linear;
		}
	.left-side:before {
		content: "";
		background: rgba(1,54,74,1);
		position: absolute;
		top: 0;
		bottom: 0;
		right: 100%;
		width: 9999px;
		}
	.left-side:after {
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		left: 100%;
		border: 0 solid transparent;
		border-left: 226px solid rgba(1,54,74,1);
		border-bottom: 120px solid transparent;
		}
	.right-side {
		position: relative;
		background: rgba(1,54,74,1);
		height: 100px;
		width: 100px;
		top: -30px;
		float: left;
		}
	.right-side:before {
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		right: 100%;
		border: 0 solid transparent;
		border-left: 185px solid transparent;
		border-bottom: 100px solid rgba(1,54,74,1);
		}
	.right-side:after {
		content: "";
		background: rgba(1,54,74,1);
		position: absolute;
		top: 0;
		bottom: 0;
		left: 100%;
		width: 9999px;
		}
}

/* ------ [ Logo & Top Links ] ------ */
.logowrap {
	position: relative;
	float: left;
	width: 180px;
	margin-left: 10px;
	margin-top: 6px;
	padding: 0 0 0 15px;
	padding: 3px 0 0 15px;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	}
.logowrap a {
	display: block;
	}
.logowrap img {
	width: 100%;
	}
.top-links {
	text-align: right;
	float: right;
	width: 55%;
	margin: 5px 60px 0 0;
	display: none;
	}
.top-links p {
	color: #fff;
	margin: 0;
	padding: 0;
	font-size: 2em;
	line-height: 1.2;
	text-align: right;
	}
.top-links strong {
	font-weight: 600;
	}


/* ------ [ Nav Trigger ] ------ */
.cd-mobile-nav-trigger {
	position: absolute;
	background-color: transparent;
	right: 10px;
	top: 0;
	height: 100%;
	width: 50px;
	z-index: 100;
}
.cd-mobile-nav-trigger .cd-menu-text {
	color: white;
	text-transform: uppercase;
	font-weight: 700;
	/* hide the text on small devices */
	display: none;
}
.cd-mobile-nav-trigger .cd-menu-icon {
	/* this span is the central line of the menu icon */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 18px;
	height: 2px;
	background-color: white;
	-webkit-transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	transition: background-color 0.3s;
	/* these are the upper and lower lines in the menu icon */
}
.cd-mobile-nav-trigger .cd-menu-icon::before,
.cd-mobile-nav-trigger .cd-menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: white;
	right: 0;
	-webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
	-moz-transition: -moz-transform .3s, top .3s, background-color 0s;
	transition: transform .3s, top .3s, background-color 0s;
}
.cd-mobile-nav-trigger .cd-menu-icon::before {
	top: -5px;
}
.cd-mobile-nav-trigger .cd-menu-icon::after {
	top: 5px;
}
.cd-mobile-nav-trigger .cd-menu-icon.is-clicked {
	background-color: rgba(255, 255, 255, 0);
}
.cd-mobile-nav-trigger .cd-menu-icon.is-clicked::before,
.cd-mobile-nav-trigger .cd-menu-icon.is-clicked::after {
	background-color: white;
}
.cd-mobile-nav-trigger .cd-menu-icon.is-clicked::before {
	top: 0;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.cd-mobile-nav-trigger .cd-menu-icon.is-clicked::after {
	top: 0;
	-webkit-transform: rotate(225deg);
	-moz-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	-o-transform: rotate(225deg);
	transform: rotate(225deg);
}


/* ------ [ Main Nav ] ------ */
.cd-main-nav-wrapper {
	position: relative;
	/* width: 80%;
	margin-left: 30%;
	margin-right: 20%; */
	}

.cd-main-nav {
	/* by default it's hidden - on top of the viewport */
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,97,133,0.95);
	z-index: 100;
	text-align: left;
	padding: 50px 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: auto;
	/* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
	-webkit-overflow-scrolling: touch;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
.cd-main-nav li .dropnav li {
	margin: 0.5em 1em;
	margin-left: 1em;
}

.cd-main-nav li {
	font-size: 20px;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 1em 0;
	text-transform: capitalize;
	/*position: relative;*/
	overflow: visible;
}
.cd-main-nav .level-1 {
	text-transform: uppercase;
	}
.cd-main-nav .level-2 {

	}
.cd-main-nav .level-2 a {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 16px;
	}
.cd-main-nav a {
	color: #fff;
	display: inline-block;
	padding: 0 1em;
	-webkit-transition: background 0.2s;
	-moz-transition: background 0.2s;
	transition: background 0.2s;
	}
.no-touch .cd-main-nav a:hover {
	background-color: #fff;
	}
.cd-main-nav.is-visible {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	}

/* mobile subnav */
.dropnav2 {
	visibility: hidden;
	opacity: 0;
	max-height: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.dropnav2.is-open {
	visibility: visible;
	opacity: 1;
	max-height: 1000px;
	}


.level-2 {
	position: relative;
	}
.level-2 a:after {
	content: "+";
	position: absolute;
	top: 0;
	right: 0;
	font-size: 2.3rem;
	font-weight: 300;
	}
.level-2.is-active a:after {
	content: "−";
	}


/* ------ [ Home Page ] --------------- */
/* ------ [ Home Carousel ] --------------- */
.carousel {
	margin: 0;
	padding: 0;
	}
.hero-carousel {
	max-height: 600px;
	overflow: hidden;
	}
.hero-bg {
	height: 400px;
	}

.owl-content {
	color: #fff;
	position: relative;
	z-index: 100;
	width: 100%;
	margin: 0 auto;
	top: 55%;
	padding: 20px;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	}
.owl-content p {
	color: #01364a;
	font-weight: 100;
	font-size: 1.2em;
	line-height: 1.2em;
	text-align: center;
	margin: 0 auto 10px;
	padding: 5px 15px 10px;
	background: rgba(255,255,255,0.8);
	}
.owl-content h2 {
	color: #fff;
	font-weight: 100;
	font-size: 1.4em;
	line-height: 1.2em;
	text-align: center;
	background: rgba(1,54,74,0.8);
	padding: 5px 15px 10px;
	}
	
.owl-content h3 {
	color: #fff;
	font-weight: 100;
	font-size: 1.2em;
	line-height: 1.2em;

	}
.owl-content h3 em {
	text-align: center;
	background: rgba(1,54,74,0.8);
	padding: 5px 20px 10px;
	}

.owl-content p em {
	padding: 0;
	font-weight: 100;
	}

.owl-content a,
.owl-content a.button {
	display: inline-block;
	font-size: 0.55em;
	line-height: 1em;
	padding: 8px 15px;
	margin: 10px 20px;
	color: #fff;
	background: #01364a;
	background: rgba(1,54,74,0.8);
	border: 2px solid #fff;
	cursor: pointer;
	width: auto;
	font-weight: 500;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	}
.owl-content a.button:hover {
	border-color: #1377bb;
	color: #1377bb;
	}	
	
.hero-carousel .owl-item .owl-content img {
	max-width: 280px;
	}

.home-icons {
	padding: 10px 0;
	}
.home-icons .owl-item img,
.footer-icons .owl-item img {
	height: 50px !important;
	width: auto;
	margin-right: 30px;
	}

@media only screen and (min-width: 600px) {
	.owl-content {
		color: #fff;
		position: relative;
		z-index: 100;
		width: 85%;
		max-width: 1100px;
		margin: 0 auto;
		top: 55%;
		padding: 20px 40px;
		-webkit-transform: translate(0%, -50%);
		-moz-transform: translate(0%, -50%);
		transform: translate(0%, -50%);
		}
	.owl-content p {
		font-size: 1.5em;
		text-align: left;
		margin-right: 5%;
		}
	.owl-content h2 {
		color: #fff;
		font-weight: 100;
		font-size: 1.8em;
		line-height: 1.5em;
		margin-left: 5%;
		}
	.owl-content h3 {
		font-weight: 100;
		font-size: 1.5em;
		line-height: 1.5em;
		}
}
@media only screen and (min-width: 1024px) {
	.owl-content {
		width: 90%;
		max-width: 1100px;
		margin: 0 auto;
		top: 55%;
		padding: 20px 40px;
		}
	.owl-content p {
		font-size: 2em;
		margin: 20px 0;
		background: none;
		}
	.owl-content h2 {
		font-size: 2.8em;
		line-height: 1.2em;
		margin: 0 40px;
		padding: 0px 15px 10px;
		font-weight: 100;
		}
	.owl-content h3 {
		font-weight: 100;
		font-size: 2.2em;
		line-height: 1.5em;
		}

	.owl-content p em {
		background: rgba(255,255,255,0.8);
		padding: 5px 15px 10px;
		font-weight: 100;
		}
}

/* Owl Navigation */
.owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 20px;
	}
.owl-controls .owl-nav .owl-prev,
.owl-controls .owl-nav .owl-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    z-index: 1000;
    height: 51px;
    width: 51px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    /*border: 2px solid #ededed;*/
    margin-top: -25px;
    outline: none;
    opacity: 0.9;
    text-indent: -9999px;
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    -ms-transition-duration: 1s;
    transition-duration: 1s;
    background-color: transparent;
}

.owl-next {
    right: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('../images/arrow-right.png');
    background-size: 100%;
}
.owl-prev {
    left: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('../images/arrow-left.png');
    background-size: 100%;
}

.owl-dots {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 40px;
	z-index: 1000;
	text-align: center;
	}
.owl-dot {
	display: inline-block;
	}
.owl-dot span {
    width: 25px;
    height: 25px;
    margin: 0 4px;
    background: #ffffff;
    display: block;
    border: 2px solid #ffffff;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 0;
    }
.owl-dot.active span,
.owl-dot span:hover {
	background: #006185;
	}
	
	
/* ------ [ Home: Other ] -----------------*/

.small-logo {
	width: 200px;
	margin: -24px auto 20px;
	background: transparent;
	display: inline-block;
	}
.small-logo img {
	width: 75%;
	margin: 0 auto;
	}

.home-logos-1 img {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 10px;
	font-size: 1.1em;
	font-weight: 400;
	}

.dark.home-logos-2 {
	border-top: 20px solid #fff;
	}
.home-logos-2 .logo {
	display: inline-block;
	vertical-align: middle;
	margin: 20px 0;
	padding: 10px 0;
	width: 44%;
	}
.home-logos-2 .logo:first-of-type {
	border-right: 2px solid #fff;
	}
.home-logos-2 img {
	margin: 0 auto;
	}

section.octagon {
	background: url("../images/octagon-background-2.png") center center repeat;
    /* background-size: cover; */
    background-attachment: fixed;
	}
.octagon .inner {
	padding-top: 20px;
	}

.home-text p,
.intro-text p {
	font-size: 1.2em;
	color: #333;
	}
.intro-text p:first-of-type {
	margin-top: 1em;
	}

.service-boxes {
	margin: 30px 5px 10px;
	}
.service-boxes li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #fff;
	color: #006185;
	font-size: 1.2em;
	line-height: 1.2em;
	padding: 12px;
	margin: 0 1% 20px;
	text-align: left;
	}
.service-text {
	text-align: left;
	}
.service-icon {
	display: block;
	height: 48px;
	width: 48px;
	margin-right: 15px;
	background-color: #006185;
	border-radius: 50%;
	}
.service-icon img {
	height: 100%;
	}

@media only screen and (min-width: 800px) {
	.service-boxes {
		margin: 40px auto 20px;
		text-align: center;
		overflow: hidden;
		/*
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin: 40px 20px 30px;
		*/
		}
	.service-boxes li {
		float: left;
		width: 31.3333%;
		justify-content: space-between;
		flex-direction: row-reverse;
		align-items: center;
		padding: 15px 0;
		margin: 0 1% 20px;
		text-align: right;
		}
	.service-text {
		text-align: left;
		margin-left: 15px;
		}
	.service-icon {
		height: 48px;
		width: 48px;
		float: right;
		background-color: #006185;
		border-radius: 50%;
		margin-left: 15px;
		}
}

.big-glass {
	padding-top: 50px;
	border-top: 10px solid #01364a;
	border-bottom: 15px solid #01364a;
	background-size: cover;
	background-image:
		linear-gradient(
			rgba(1,54,74,0.3),
			rgba(1,54,74,0.3)
		),
		url('../images/large-glass-w-octagons.jpg');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	}
.big-glass img {
	margin: 0 auto 20px;
	}


/* ------ [ Sections: Heroes ] -----------------*/
.hero {
	padding: 0;
	}
.hero .inner {
	height: 350px;
	}

@media only screen and (min-width: 800px) {
	.hero .inner {
		height: 550px;
		}
}

.hero-content {
	bottom: 20px;
	color: #01364a;
	position: absolute;
	z-index: 100;
	width: 80%;
	left: 50%;
	text-align: center;
	padding: 10px;
	background: rgba(255,255,255,0.7);
	-webkit-transform: translate(-50%, 0%);
	-moz-transform: translate(-50%, 0%);
	transform: translate(-50%, 0%);
	}
.hero-content h1 {
	font-size: 2.4em;
	margin: 0;
	}
.hero-content h1 span {
	padding: 0;
	background: none;
	}
.hero-content h3 {
	background: none;
	padding: 0;
	color: #01364a;
	}
.hero-content h3 span {
	background: none;
	font-style: italic;
	}

@media only screen and (min-width: 800px) {
	.hero-content {
		background: none;
		padding: none;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		}
	.hero-content h1 {
		font-size: 3em;
		}
	.hero-content h1 span {
		padding: 8px 20px;
		background: rgba(255,255,255,0.7);
		}
	.hero-content h3 {
		margin-top: 1em;
		background: rgba(255,255,255,0.7);
		padding: 10px;
		color: #01364a;
		}
	.hero-content h3 span {
		background: none;
		font-style: italic;
		}
}

@media only screen and (min-width: 800px) {
	.hero-content h3 {
		margin-top: 1em;
		background: none;
		padding: 0;
		}
	.hero-content h3 span {
		padding: 10px 20px;
		background: rgba(255,255,255,0.7);
		font-style: italic;
		}
}



.cms-text ul {
	margin-bottom: 1em;
	}
.cms-text li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0 1.5em;
	}
.cms-text h2,
.cms-text h3 {
	margin-top: 1em;
	}
	

/* ------ [ Section: Contact ] -----------------*/
section.contact {
	margin-top: 30px;
	}


/* ------ [ Category Pages ] -----------------*/
.page-icon {
	margin: 0 auto 30px;
	}
.category-section {
	padding-top: 0;
	padding-bottom: 80px;
	}
.category {
	margin-bottom: 30px;
	}

.category img {
	width: 100%;
	margin: 8px 0 10px;
	}

.category-text {
	}
.category-text h2 {
	font-size: 2.1em;
	}
.category-text li {
	list-style: disc;
	margin: 0 0 0 1.5em;
	}
.category-divider {
	border: none;
	height: 1px;
	background: #006185;
	margin: 40px 0 20px;
	}
.category-divider:first-of-type {
	margin-top: 0;
	}
.small-button {
	font-size: 15px;
	padding: 0px 12px;
	}

/*
.category:before {
	content: "";
	border: none;
	height: 1px;
	background: #006185;
	margin: 40px 10px 20px;
	}
*/


/* ------ [ Product Pages ] -----------------*/
a.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

.tech-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*justify-content: center;*/
	justify-content: flex-start;
	align-items: flex-start;
	}

.thumb-link {
	display: block;
	position: relative;
	}
.thumb-overlay {
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	opacity: 0;
	}
.thumb-overlay:hover {
	opacity: 1;
	}
.thumb-overlay img {
	max-width: 230px;
	}

.tech-features-text {
	padding-bottom: 2em;
	}
.tech-features-text h3 {
	font-size: 1.3em;
	}
.tech-features-text p {
	/*text-align: right;*/
	}
.tech-features-text a {
	text-decoration: underline;
	}

.video-link:after {
	content: " \f03d";
	font-family: FontAwesome;
	/*font: normal normal normal 14px/1 FontAwesome;*/
	}
	/*<span class="fa fa-video-camera"></span>*/

.read-toggle,
.play-video {
	display: block;
	text-align: center;
	}
.read-toggle + div {
	padding: 5px 20px;
	}

.product {
	overflow: hidden;
	position: relative;
	margin: 30px 0;
	padding: 20px 0 30px;
	border-bottom: 1px solid #006185;
	}
.product:last-of-type {
	border-bottom: none;
	}
.product-image {
	}
.product-image img {
	max-width: 100%;
	}
.product-text {
	text-align: left;
	}
.product:nth-of-type(even) .product-image {
	float: left;
	}
.product:nth-of-type(even) .product-text {
	float: right;
	}
.product:nth-of-type(even) .product-text img {
	float: right;
	}


/* Big wheels keep on rolling */
.battellino .product-image img:nth-child(2) {
	max-height: 82px;
	}


.lightbox {
	display: none;
	}
.specs-button {
	margin: 20px 0 0 0;
	}
.specs-table {
	overflow-x: auto;
	max-width: calc(100vw - 30px);
	}
.specs-table table {
	border: 3px solid #79a8bf;
	max-width: 500px;
	max-width: 1200px;	
	}
.specs-table td {
	padding: 4px 8px;
	line-height: 1.2em;
	}
.specs-table td:first-of-type {
	font-weight: bold;
	}
	
.specs-table img {
	width: 100%;
	}

@media only screen and (min-width: 480px) {
	.product-image {
		float: right;
		width: 50%;
		}
	.product-text {
		float: left;
		width: 45%;
		text-align: left;
		}
}

.fa.icon {
	display: inline-block;
	width: 1.8em;
	height: 1.8em;
	font-size: 20px;
	line-height: 1.8em;
	text-align: center;
	vertical-align: baseline;
	margin-right: 8px;
	color: #ffffff;
	background: #006185;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	}

.product-sidebar {
	margin: 40px 0 0;
	padding: 20px;
	border: 1px solid #ccc;
	}
.product-sidebar p:last-child {
	margin-bottom: 0;
	}


/* ------ [ Portfolio Pages (unused) ] -----------------*/
.thumbnail {
	margin: 10px auto;
	padding: 10px;
	border: 1px solid #ccc;
	/*width: 95%;*/
	width: 100%;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	}
.thumbnail:hover {
	border: 1px solid gold;
	}

/* ------ [ Resource Page ] -----------------*/
.downloads {
	background: #fafafa;
	padding: 60px 0 30px;
	}
.document:not(:last-of-type) {
	margin-bottom: 30px;
	}

.document strong,
.card-text strong {
	font-size: 0.9em;
	color: #666;
	}
.doc-thumb {
	width: auto;
	height: 140px;
	height: auto;
	width: 180px;
	margin: 10px 10px 20px auto;
	background: transparent;
	-webkit-box-shadow: 0 2px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 2px 7px rgba(0,0,0,0.3);
	box-shadow: 0 2px 7px rgba(0,0,0,0.3);
	}

.card {
	margin: 0 0 20px;
	}
.card-image {
	width: 100%; 
	margin: 0 0 10px;
	-webkit-box-shadow: 0 2px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 2px 7px rgba(0,0,0,0.3);
	box-shadow: 0 2px 7px rgba(0,0,0,0.3);
	}
	
.card-text h3 {
	font-size: 1.4rem;
	line-height: 1.2;
	font-weight: 400;
	margin: 0;
	}

/* ------ [ CMS Content Styles ] ---------------------*/
/* ------ [ Content/Main ] --------------- */
/**
 * Alignment styles that are used by the InputfieldTinyMCE for 
 * positioning images in bodycopy. If you are using this field type, 
 * you may want to include these or similar styles in your site.
 *
 */
.align_left {
	float: left;
	margin: 0 1em 0.25em 0;
}
.align_right {
	float: right;
	margin: 0 0 0.25em 1em;
}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

figcaption {
	margin: 10px auto;
	}

.home-text .align_left {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 30px 20px 10px;
    }

.cms-content ul {
	margin: 0 0 1em;
	}
.cms-content li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0 1.2em;
	}
	
/* ------ [ About Us (CMS Content: consider moving out of CKedit) ] -----------------*/
p.portrait {
	height: 200px;
	width: 200px;
	border-radius: 50%;
	overflow: hidden;
	text-align: center;
	margin: 50px auto 20px;
	padding: 0 !important;
	}
p.portrait img {
	width: 100%;
	height: auto;
	}
p.job-description {
	margin: 0 auto;
	}
/*
.main img {
	max-width: 100%;
	}

.main p img {
	display: inline;
	}
*/



/* ------ [ Contact Forms ] --------------- */
.contact-big li {
	text-align: left;
	margin: 0 0.5em 1em;
	}

.contact-form {
	max-width: 800px;
	margin: 20px auto 30px;
	}
.contact-form li {
	margin: 0 0 14px;
	padding: 0;
	position: relative;
	}
.antispam {
	display: none;
	}
.contact-form label {
	display: none;
	/* color: #999;
	position: absolute;
	top: 4px;
	left: 10px; */
	}

input,
select,
textarea {
	font-weight: 300;
    font-size: 1em;
    width: 100%;
    padding: 6px 8px;
	color: #333;
	/*padding-left: 1.5em;*/
    /*-webkit-appearance: none;*/
    border: 1px solid #555;
    border-radius: 0;
    }
    
.form-contact-form input,
.form-contact-form select,
.form-contact-form textarea {
	/*padding-left: 1.5em;*/
    -webkit-appearance: none;
    border: none;
    border-radius: 0;
    }
input[type=submit],
input.button {
    -webkit-appearance: none;
	}

input[type=checkbox] {
	width: auto;
	float: left;
	margin: 2px 10px 20px 0;
	}

.contact-form label.check-control {
	display: block !important;
	text-align: left !important;
	font-size: 0.9em;
	line-height: 1.1em !important;
	}
label.required:after {
	content: "*";
	}

/* ------ [ Buttons ] ----- */
.button {
	display: inline-block;
	font-size: 18px;
	padding: 5px 15px;
	color: #fff;
	background: #006185;
	border: 2px solid #006185;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
	text-align: center;
	font-weight: 500;
	}
.button:hover {
	color: #006185;
	background: #fff;
	text-decoration: none;
	}
	
.hero .button {
	color: #fff;
	border-color: #fff;
	background: transparent;
	}
.hero .button:hover {
	color: #fff;
	background: transparent;
	text-decoration: none;
	}

@media only screen and (min-width: 480px) {
	.button {
		width: auto;
	}
}

.error,
.success {
	padding: 5px;
	color: #fff;
	border: 4px solid orange;
	background: orange;
	margin: 0 0 20px;
	width: auto;
	}
.success {
	border: 4px solid green;
	background: green;
	}
.ui-widget-content p {
	text-align: right;
	margin: -1.6em 0 0;
	}
span.ui-state-error {
	color: red;
	}

p.input-block {
    position: relative;
    margin-bottom: 12px;
    }




/* ------ [ Map (not used?) ]--------- */
section.map {
	padding: 0;
	}

.address-overlay {
	position: absolute;
	left: 50%;
	top: 20px;
	bottom: 20px;
	right: 100px;
	padding: 3% 40px;
	background: rgba(255,255,255,0.7);
	/* transform: translate(0, -50%); */
	/* box-shadow: 2px 2px 5px rgba(0,0,0,0.3); */
	z-index: 500;
	/* attention */
	display: none;
	} 
/* position: absolute; left: 50%;right: 100px;bottom: 0;top: 0;background: rgba(255,255,255,0.7);z-index: 1000 */
/**.address-overlay p {
	font-size: 16px;
	line-height: 1.4em;
	}
.gm-style-iw {
   width: 350px !important;
   top: 20px !important;
   left: 20px !important;
   border-radius: 2px 2px 0 0;
}
**/


/* ------ [ Site Map ] --------------- */
.sitemap li {
	list-style: none;
	margin:  0;
	font-size: 16px;
	line-height: 1.2em;
	padding: 0 0 0 1em;
	}
.sitemap li li {
	list-style: disc;
	}
.sitemap li li li {
	list-style: circle;
	}
.sitemap li li li li {
	list-style: square;
	}


/* ------ [ Footer ] --------------- */
footer {
	clear: both; 
	background: #01364a;
	padding: 1em 10px;
	color: #fff;
	margin-top: 40px;
	border-top: 6px solid #006185;
	border-bottom: 8px solid #006185;
	}
	
.footer-logo {
	display: block;
	margin: 0 0 30px;
	}
.footer-logo img {
	width: 100%;
	max-width: 200px;
	margin: 0;
	}

footer p,
footer li {
	font-size: 0.85em;
	line-height: 1.4em;
	font-weight: 400;
	color: #fff; 
	margin: 0 0 0.35em;
	}

.footer-icons {
	text-align: center;
	border-bottom: 2px solid #006185;
	padding: 0;
	margin: 0 0 30px;
	}
.home-icons img,
.footer-icons img {
	display: block;
	vertical-align: middle;
	text-align: center;
	margin: 20px auto;
	}

@media only screen and (min-width: 480px) {
	.footer-logo {
		float: right;
		margin: 0 5px 0 0;
		width: 30%;
		}
	.footer-logo img {
		float: right;
		width: 100%;
		max-width: 200px;
		margin: 10px 0;
		}
	.contact-info {
		float: left;
		width: 60%;
		}
	.contact-info li {
		margin: 0;
		padding: 0;
		}
		
	.footer-icons {
		padding: 20px 0 20px;
		margin: 0 0 50px;
		}
	.home-icons img,
	.footer-icons img {
		display: inline-block;
		margin: 0 25px 20px;
		}		


/* ------ [ Social Media Icons (footer: not used) ] --------------- */
.social-networks {
	text-align: center;
	}
.social-networks li {
	display: inline-block;
	margin: 0;
	padding: 5px;
	}
.social-networks a {
	display: block;
	text-indent: -9999px;
	height: 44px;
	width: 44px;
	margin: 0;
	opacity: 1;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	}
.social-networks a.twitter { background: url('../images/i-twitter.png') 0 0 no-repeat; background-size: 100%; }
.social-networks a.linked-in { background: url('../images/i-linked-in.png') 0 0 no-repeat; background-size: 100%; }
.social-networks a.facebook { background: url('../images/i-facebook.png') 0 0 no-repeat; background-size: 100%; }

.social-networks a:hover {
	opacity: 1;
	}

.site-credit {
	font-size: 0.75em;
	margin: 10px 0;
	padding: 0;
	}

footer a,
.site-credit a {
	color: #eee;
	}
footer a:hover,
.site-credit a:hover {
	text-decoration: underline; 
	color: #ffffff; 
	}

.top-link {
    position: fixed;
    bottom: 0px;
    right: 16px;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    z-index: 100;
    display: none;
	}
.top-link a {
    /*background: #2069b3 url('../images/arrow-up.png') center center no-repeat;*/
    /*background: #fff;*/
    background: #01364a;
    color: #d2000a;
    color: #fff;
    font-size: 32px;
    line-height: 40px;
    display: block;
    height: 40px;
	width: 40px;
    position: relative;
    z-index: 1;
    text-align: center;
    }

.top-link.show {
	opacity: 1;
	}
#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	z-index: 1000;
	}
#editpage:hover {
		background: #ffffcc;
		color: #000; 
	}

/* Debugging */
.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}

/* ------ [ Utility Styles ] --------------- */

img.right {
	float: right;
	}
.fright {
	float: right;
	}
.fleft {
	float: left;
	}

.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}
	
.text-left,
.text-left p,
.text-left h2,
.text-left h3 {
	text-align: left;
	}
.text-right,
.text-right p,
.text-right h2,
.text-right h3 {
	text-align: right;
	}
.text-small {
	font-size: 1em;
	}
.footnote {
	font-size: 16px;
	}
	
.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}

.TextformatterVideoEmbed {
	padding-top: 0;
	margin-bottom: 6px;
	}
	
a.small,
a.morelink {
	font-weight: 500;
	}

/* ------ [ Media Queries ] -------- */
/* 480px equivalent breakpoint */
/* @media only screen and (min-width: 30em) { */
@media only screen and (min-width: 480px) {
}

/* 600px equivalent breakpoint */
/* @media only screen and (min-width: 37.5em) { */
@media only screen and (min-width: 600px) {

	.row > .col {
		padding: 0 10px;
		}
	
	.row.no-padding,
	.row.padding-0 {
		}
	.row.padding-1 {
		margin-left: -1px;
		margin-right: -1px;
		}
	.row.padding-2 {
		margin-left: -2px;
		margin-right: -2px;
		}
	.row.padding-5 {
		margin-left: -5px;
		margin-right: -5px;
		}
	.row.padding-10 {
		margin-left: -10px;
		margin-right: -10px;
		}
	.row.padding-20 {
		margin-left: -20px;
		margin-right: -20px;
		}
	.row.padding-30 {
		margin-left: -30px;
		margin-right: -30px;
		}

	.no-padding > .col,
	.padding-0 > .col {
		padding-left: 0;
		padding-right: 0;
		}
	.padding-1 > .col {
		padding-left: 1px;
		padding-right: 1px;
		}
	.padding-2 > .col {
		padding-left: 2px;
		padding-right: 2px;
		}
	.padding-5 > .col {
		padding-left: 5px;
		padding-right: 5px;
		}
	.padding-10 > .col {
		padding-left: 10px;
		padding-right: 10px;
		}
	.padding-20 > .col {
		padding-left: 20px;
		padding-right: 20px;
		}
	.padding-30 > .col {
		padding-left: 30px;
		padding-right: 30px;
		}

	.row-2 > .col { width: 100%; }
	.row-3 > .col { width: 33.333%; }
	.row-4 > .col { width: 50%;}
	.row-5 > .col { width: 20%;}
	.row-6 > .col { width: 33.333%;}

	.row-2 .span-2 { width: 100%; }
	.row-3 .span-2 { width: 66.666%; }
	.row-4 .span-2 { width: 50%; }
	.row-4 .span-3 { width: 75%; }
	.row-5 .span-2 { width: 40%; }
	.row-5 .span-3 { width: 60%; }
	.row-5 .span-4 { width: 80%; }
	
	h2 {
		font-size: 2.4em; */
	}
	
	.contact-big li {
		display: inline-block;
	}
	.check-list li {
		display: inline-block;
		vertical-align: top;
		width: 45%;
	}
	.top-links {
		display: block;
		padding-top: 3px;
	}
	.address-overlay {
		left: 40%;
		right: 10px;
		display: block;
	}
	.top-link {
		display: block;
    }
}

/* 768px equivalent breakpoint */
/* @media only screen and (min-width: 48em) { */
@media only screen and (min-width: 768px) { 
	.row-2 > .col { width: 50%; }
	.row-3 > .col { width: 33.3333%; }
	.row-4 > .col { width: 25%; }
	.row-4 > .col { width: 24%; }

	.row-2 .span-2 { width: 100%; }
	.row-3 .span-2 { width: 66.6666%; }
	.row-4 .span-2 { width: 50%; }
	.row-4 .span-3 { width: 75%; }
	
	.tech-features img {
		display: block;
	}
	
	.address-overlay {
		left: 50%;
		right: 20px;
	}
	
	.hero-three,
	.hero-three:nth-of-type(2) {
		display: block;
		width:32.8333%;
	}
	.check-list li {
		width: 30%;
	}
}

/* 1024px equivalent breakpoint */
/* @media only screen and (min-width: 64em) { */
@media only screen and (min-width: 1024px) {
	.dropnav2 {
		visibility: visible;
		opacity: 1;
		max-height: 1000px;
		}
		
	.level-2 a:after {
		display: none;
		}
	
	header {
		height: auto;
		}
	header.nav-is-visible {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
	header::before {
		content: 'desktop';
	}
	.cd-mobile-nav-trigger {
		display: none;
	}
	.cd-main-nav-wrapper {
		}
	.top-links {
		padding-top: 0;
		margin: 5px 0 0 0;
	}
	.logowrap {
		width: 240px;
		margin: 10px 0 0 0;
		}

	/* Small Styles */
	header.small {
		position: fixed;
		top: 0;
		margin-top: -25px;
		/*background: rgba(7,14,56,1);*/
		}
	.small .inner {
		height: 70px;
		}
	.small .left-side {
		top: -30px;
		margin-right: 240px;
		margin-left: 0px;
		width: 90px;
		}
	.small .logowrap {
		margin-top: 30px;
		margin-bottom: 0;
		width: 130px;
		}

	.hero-carousel,
	.hero-bg {
		height: 600px;
		}
	
	.cd-main-nav {
		z-index: 800;
		position: relative;
		visibility: visible;
		width: auto;
		height: auto;
		padding: 30px 0 0;
		overflow: visible;
		background: transparent;
		text-align: right;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
		display: block;
		}
	.cd-main-nav li {
		display: inline-block;
		/*position: relative;*/
		margin: 0;
		padding: 0;
		overflow: visible;
		font-size: inherit;
		border-bottom: none;
		min-height: 0;
		}
	.cd-main-nav a {
		font-size: 0.8em;
		font-weight: 700;
		letter-spacing: 1px;
		color: #fff;
		padding: 0;
		text-transform: uppercase;
		/*border-bottom: 2px solid transparent;*/
		}
	.cd-main-nav .level-1 a {
		padding: 5px 12px;
		}
	.cd-main-nav .level-2 a {
		padding: 5px 0;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		}

	.cd-main-nav a.on,
	.cd-main-nav a:hover,
	.cd-main-nav a.on:hover {
		color: #fff;
		opacity: 1;
		text-decoration: none;
		/*border-bottom: 2px solid #fff;*/
		}
	.cd-main-nav a.on {
		border-color: #999;
		}
	.cd-main-nav li .dropnav {
		display: none;
		position: absolute;
		/*max-width: 624px;*/
		width: auto;
		width: 100%;
		top: 100%;
		right: 0;
		text-align: left;
		color: #fff;
		background: transparent;
		z-index: 9999;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: translateX(0px);
		-o-transform: none;
		transform: none;		
		}

	.cd-main-nav .dropnav > ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-end;
		background: #01364a;
		background: rgba(1,54,74,0.9);
		margin: 20px 0 0 0;
		padding: 20px 10px;
		width: auto;
		overflow: hidden;
		-webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.3);
		-moz-box-shadow: 0 3px 5px rgba(0,0,0,0.3);
		box-shadow: 0 3px 5px rgba(0,0,0,0.3);
		}
	.cd-main-nav li .dropnav li {
		margin: 0;
		flex: 1 0 0;
		}
	
	.cd-main-nav .machinery > a {
		position: relative;
		}
	.cd-main-nav .machinery > a:after {
		content: '';
		position: absolute;
		height: 0px;
		width: 0px;
		top: 111%;
		left: 50%;
		margin-left: -16px;
		border: 16px solid transparent;
		border-bottom: 16px solid rgba(1,54,74,0.9);
		border-top: none;
		display: none;
		}
	.cd-main-nav .machinery:hover > a:after {
		display: block;
		}

	.cd-main-nav li:hover .dropnav {
		display: block;
		/*white-space: nowrap;*/
		padding: 0;
		}

	.cd-main-nav .level-2 {
		display: block;
		/*float: left;
		width: 48%;*/
		padding: 0 15px;
		margin: 0;
		line-height: 1em;
		}
	
	.cd-main-nav .level-2 > a {
		display: block;
		border-radius: 0;
		border-bottom: none;
		border-bottom: 1px solid #006185;
		white-space: nowrap;
		padding-bottom: 10px;
		margin-bottom: 10px;
		}
	.cd-main-nav .level-2 > a:hover {
		border-bottom: 1px solid #79a8bf;
		}
	
	.cd-main-nav .level-2 {
		}
	
	.cd-main-nav li.level-3 {
		display: block;
		line-height: 1em;
		margin-bottom: 10px !important;
		}
	.cd-main-nav li.level-3 a {
		font-size: 13px;
		font-weight: 800;
		padding-bottom: 0;
		opacity: 0.9;
		}
	.cd-main-nav li.level-3 a:hover {
		opacity: 1;
		}
		
	.cd-main-nav .dropnav a:hover {
		color: #fff;
		}

	.cd-main-nav ul a.on,
	.cd-main-nav ul a:hover,
	.cd-main-nav ul a.on:hover {
		border-bottom: none;
		}
	
	.contact-big li {
		font-size: 1.5em;
		}

}