/*
Theme Name: Styrorail
Theme URI: http://underscores.me/
Author: Carbure
Author URI: http://carbure.co
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: styrorail
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Styrorail is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
	background:#3d5567;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
	color:inherit;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}
a, a:hover, a:active, a:focus { outline: 0; }
:focus {outline:none;}
::-moz-focus-inner {border:0;}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: Heebo, sans-serif;
	font-weight: 300;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both; font-weight: 500;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	/*background: #fff; /* Fallback for when there is no custom background color defined. */
	overflow-x:hidden;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: inherit;
}

a:visited {
	color: inherit;
}

a:hover,
a:focus,
a:active {
	color: inherit;
}

a:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.products-navigation,
.site,
.site-header,
.site-branding,
.entry-nav { left:0; }
	
.products-is-animating .products-navigation,
.products-is-animating .site,
.products-is-animating .site-header,
.products-is-animating .site-branding,
.products-is-animating .entry-nav {
	-webkit-transition: left 300ms ease;
	-moz-transition: left 300ms ease;
	-ms-transition: left 300ms ease;
	-o-transition: left 300ms ease;
	transition: left 300ms ease;
}
.site-right { right:0; }
.products-is-animating .site-right { 
	-webkit-transition: right 300ms ease;
	-moz-transition: right 300ms ease;
	-ms-transition: right 300ms ease;
	-o-transition: right 300ms ease;
	transition: right 300ms ease;
}
.products-navigation {
	position:fixed;
	top:0;
	bottom:0;
	width:299px;
	left:-300px;
	overflow-y:auto;
	border-right:1px solid #3d5567;
}
.admin-bar .products-navigation { top:32px; }

.products-navigation a { color:inherit; }
.products-navigation ul { margin:0; padding:0; list-style:none; }
.products-navigation ul li { position:relative; margin:0; padding:0; background-color:#263845; color:#1EAFED; }
.products-navigation ul li:hover { background-color:rgba(38, 56, 69, .6);}
.products-navigation ul li:before { position:absolute; top:0; margin-top:10px; right:10px; font-size:32px; width:32px; height:32px; }
.is-webkit .products-navigation ul li:before { line-height:42px; }

.products-navigation ul li a { display:block; padding:20px; font-weight:400; text-transform:uppercase; text-decoration:none; border-bottom:1px solid #405464; }
.products-navigation ul ul li:last-child a { border-bottom:none; }
.products-navigation ul ul li { background-color:#3F5566; color:#fff; }
.products-navigation ul ul li:hover { background-color:rgba(63, 85, 102, .6);}
.products-navigation ul ul li a { padding-top:12px; padding-bottom:12px; font-weight:500; border-bottom:1px solid #688294; }
.products-navigation ul ul li.current-product-ancestor { background-color:#fff; color:#3F5566; }
.products-navigation ul ul li.current-product-ancestor > a { font-weight:bold; border-bottom:1px solid #AFB6BC; }
.products-navigation ul ul ul {  }
.products-navigation ul ul ul li:first-child { padding-top:6px; }
.products-navigation ul ul ul li:last-child { padding-bottom:12px; }
.products-navigation ul ul ul li { background-color:#fff !important; color:#3F5566; }
.products-navigation ul ul ul li a { padding-top:4px; padding-bottom:4px; font-weight:400; border-bottom:0; }
.products-navigation ul ul ul li.current-product-ancestor > a,
.products-navigation ul ul ul li.current-menu-item > a,
.products-navigation ul ul ul li a:hover { font-weight:700; }


.products-open .products-navigation { left:0; }
.products-open .site,
.products-open .site-header,
.products-open.sticky-nav-fixed .entry-nav { left:300px; }
.products-open.sticky-nav-fixed .site-right { right:-300px; }

/*.products-open.sticky-nav-fixed .entry-nav,
.products-open.sticky-nav-fixed .site-right {
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}*/

.main-navigation {
	display: block;
	float: left;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	padding:20px 10px;
	text-decoration: none;
	color:#3F5566;
	font-weight:500;
	text-transform:uppercase;
}
.main-navigation a:hover { color:#00aeef;/*#19262F;*/ }
.main-navigation li:nth-child(1) a { padding-right:20px; }
.main-navigation li:nth-child(2) a { padding-left:20px; }
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}
.menu-item-language-current { display:none; }
.menu-item-language a { font-weight:normal; }
.menu-item-language a:before { display:inline-block; padding-right:20px; content:'|'; }
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}
.menu-toggle { background:transparent; border:0; padding:20px 20px 10px; float:left; box-shadow:inherit; border-radius:0; }
.menu-toggle:hover, .menu-toggle:active, .menu-toggle:focus { box-shadow:inherit; }
.menu-toggle:before { font-size:30px; }
.menu-toggle:hover:before { color:#00aeef; }

.menu-toggle span { display:none; }
@media screen and (min-width: 989px) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
	
	.main-navigation li.toggle-products-navigation a { background-color:#3F5566; color:#fff; }
	.main-navigation li.toggle-products-navigation a:hover { background-color:#2C3F4C; }
	.main-navigation li.icon-menu:before { position:absolute; display:block; top:50%; margin-top:-16px; left:20px; font-size:32px; width:32px; height:32px; color:#fff; vertical-align:middle; }
	.main-navigation li.icon-menu a { padding-left:62px; }
	.is-webkit .main-navigation li.icon-menu:before { line-height:42px; }
	
}
@media screen and (max-width: 990px) {

	.main-navigation ul { position:absolute; top:60px; padding: 10px 20px; background-color:#3F5566; color:#fff; }
	.main-navigation ul li { float:none; display:block; }
	.main-navigation ul li a { padding:6px 10px; color:#fff; }
	.main-navigation ul .icon-menu:before { display:none; }
	
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.site { width:100%; padding-top:62px; position:relative; background-color:#fff; }

.site-header { position:fixed; top:0; left:0; right:0; background-color:#fff; z-index:10; }
.admin-bar .site-header { top:32px; }

.site-branding { position:relative; float:right; }

.site-title { margin:0; padding:5px 30px 0; }
/*.site-title a { display:block; width:169px; height:60px; background-image: url(img/logo.png); background-repeat:no-repeat; }*/
.site-title a { display:block; width:127px; height:45px; background-image: url(img/logo.png); background-repeat:no-repeat; background-size:127px 45px; }
.site-title a span {display:none; }

.entry-header { position:relative; }
.entry-header img { display:block; width:100%; height:auto; }
.entry-header .over { position:absolute; top:60px; left:60px; }
.entry-header .over h2 { margin:0; padding:0; color:#00aeef; font-size:33px; }
.entry-header .over .content { color:#fff; font-size:30px; max-width:16em; }
.entry-header .over .content p { margin:0 0 1em; }
.entry-nav { position:relative; margin-top:-60px; background-color:rgba(28, 44, 56, .4); /*background:rgba(37,56,70,.6);*/ line-height:20px; color:#fff; text-transform:uppercase; }
.entry-nav .inner { padding:20px 20px; background-color:rgba(28, 44, 56, .8);/*background:rgba(37,56,70,.6);*/ }
.entry-nav .category { position:relative; padding-right:30px; font-weight: 500; }
.entry-nav .category:after {
	right:4px;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(65, 86, 102, 0);
	border-left-color: rgba(65, 86, 102, 1);
	border-width: 6px;
	margin-top: -6px;
}
.entry-nav a { position:relative; padding-right:13px; color:#fff; text-decoration:none; }
.entry-nav a.current { font-weight:700; color:#00aeef; }
.entry-nav a:after { content: " "; display: inline-block; height: 14px; width: 14px; border-right:1px solid rgba(65, 86, 102, 1); }
.entry-nav a:last-child:after { display:none; }

.sticky-nav-fixed .entry-nav { position:fixed; margin:0; top:64px; left:0; right:0; z-index:9; }
.sticky-nav-fixed aside.site-right { position:fixed; margin:0; top:124px; right:0; bottom:0; z-index:10; overflow-y:auto; padding-bottom:0; }

.admin-bar.sticky-nav-fixed .entry-nav { top:92px; }
.admin-bar.sticky-nav-fixed aside.site-right { top:152px; }

#primary { }

.site-main { float:left; width: calc(100% - 300px); }

aside.site-right { float:right; width:300px; padding-bottom:50%; background:#3d5567; color:#fff; }
aside.site-right .inner { padding:30px 30px; }

aside.site-right h3 { margin:-30px -30px 0; padding:20px 30px; font-weight:500; font-size:24px; color:#00aeef; background:#253846; border-bottom:1px solid #374e5f; }

aside.site-right .button.full { position:relative; display:block; margin:0 -30px 1px; padding:12px 30px; background:#253846; color:#fff; text-transform:uppercase; text-decoration:none; }
aside.site-right .button.video { background:#81c341; cursor:pointer; }
aside.site-right .button.full:hover { background:rgba(37,56,70,.6); }
aside.site-right .button.video:hover { background:rgba(129,195,65,.6); }

aside.site-right .button:before { position:absolute; top:10px; right:10px; font-size:32px; width:32px; height:32px; }


aside.site-right .description { padding-top:20px; }
aside.site-right .description p { margin:.8em 0; line-height:1.3; }
aside.site-right .description b, aside.site-right .description strong { color:#00aeef; font-size:1.1em; line-height:1.2; }


#contact-services { display:table; width:100%; background:#253846; color:#fff; }
#contact-services > .inner { display:table-row; }

#contact-services .service { float:none; display:table-cell; width:25%; padding:0; border-right:1px solid #374e5f; }
#contact-services .service .content { padding:0 30px 30px; }
#contact-services h3 { margin:0; padding:30px 30px 0; font-weight:500; font-size:24px; line-height:1.1; color:#00aeef; background:#253846; }

#contact-services .desc { padding-top:4px; }
#contact-services .desc p { margin:.8em 0; line-height:1.3; }
#contact-services .desc b,
#contact-services .desc strong { color:#00aeef; font-size:1.1em; line-height:1.2; }

@media screen and (max-width: 1200px) {
	
	#contact-services h3,
	#contact-services .service .content { padding-left:15px; padding-right:15px; }
	#contact-services .service .content { padding-bottom:15px; }
}

@media screen and (max-width: 767px) {
	.site-main { float:none; width:100%; }
	aside.site-right { float:none; width:100%; padding-bottom:0; height: auto !important; }
	.sticky-nav-fixed aside.site-right,
	.admin-bar.sticky-nav-fixed aside.site-right { position:relative; top:0; }
	
	.entry-nav { display:none; }
	
	.entry-header .over { top:20px; left:20px; }
	.entry-header .over h2 { font-size:20px; }
	.entry-header .over .content { font-size:14px; max-width:auto; }
	
	.page-template-page-services #right-side { display:none; }
	
	#contact-services h3 { padding-top:15px;font-size:20px; }
	#contact-services { display:block; }
	#contact-services > .inner { display:block; }
	#contact-services .service { display:block; width:100%;border-right:0;border-bottom:1px solid #374e5f; }
	#contact-services .service .desc { font-size:14px; }
}

.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
/*--------------------------------------------------------------
## Product
--------------------------------------------------------------*/

.single-product h4.subtitle { margin:-20px -30px 0; padding: 5px 30px 20px; color:#00aeef; background:#253846; font-size:16px; line-height:1.1; font-weight:normal; border-bottom: 1px solid #374e5f; }

.product-description { margin:0 auto; padding-top: 5%; padding-left:20px; padding-right:20px; max-width:1000px; }
.product-description h3.subtitle { font-size: 36px; font-weight:bold; line-height: 1; text-transform:uppercase; width:80%; color:#3d5567; }
.product-description .description { font-size: 20px; line-height: 1.3; }

.technical_points { margin:0 auto; padding-top: 5%; max-width:1080px; }
.technical_point { float:left; width:33%; padding: 5%; box-sizing:border-box; text-align:center; }
.technical_point .content { margin:0 auto; max-width:250px; font-size:20px; line-height:1.3; }
.technical_point .content h3 { color:#00aeef; line-height:1.1; }

.technical_point:nth-child(3n+1) { clear:left; }

.alveole { position:relative; margin:0; padding:0; width:100%; height:0; padding-bottom:100%; overflow:hidden; }
.alveole img { position:absolute; left:0; width:99%; height:auto; z-index:1; }
.alveole figcaption { position:absolute; bottom:4%; width:100%; text-align:center; font-weight: 500; color:#fff; z-index:3; }
.alveole:after { position:absolute; content:' '; display:block; top:0; left:0; bottom:0; right:0; background-image: url(img/masque-2.png); background-repeat:no-repeat; background-size:cover; z-index:2; }


@media (max-width: 1024px) {
	
	.technical_point { width:50%; }
	.technical_point:nth-child(3n+1) { clear:none; }
	.technical_point:nth-child(2n+1) { clear:left; }
	
	.technical_point .alveole figcaption { bottom:4.5%; }
	
}

@media (max-width: 480px) {
	
	.technical_point { width:100%; }
	.technical_point:nth-child(2n+1) { clear:none; }
	
	.technical_point .alveole figcaption { bottom:4.5%; }
	
}

.promo { position:relative; }
.promo.light { color:#3d5567; }
.promo.dark { color:#fff; }
.promo .msg {
	position:absolute;
	top:50%;
	left:10%;
	width:40%;
	font-size:36px;
	line-height:1;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.promo.right .msg { left:auto; right:10%; text-align:right; }
.promo .msg p { margin:.5em 0; }
@media screen and (max-width: 1200px) {
	.alveole figcaption { bottom:3%; }
	.promo .msg { font-size:32px; width:50%; }
}
@media screen and (max-width: 1100px) {
	.alveole figcaption { bottom:1.5%; }
	.promo .msg { font-size:26px; }
}
@media screen and (max-width: 800px) {
	.promo .msg { font-size:20px; }
}
@media screen and (max-width: 600px) {
	.promo .msg { font-size:14px; }
}
/*--------------------------------------------------------------
## Services
--------------------------------------------------------------*/

.service { float:left; width:33.33%; padding-left:30px; padding-top:30px; box-sizing:border-box; }
.service .title { margin:0; padding: 20px 30px; background-color:#253846; color:#00aeef; }
.service figure { margin:0; padding:0; }
.service figure img { display:block; width:100%; height:auto; }
.service .description { padding:10px 10px 10px 0; }
.service .description ul { margin-left:0; padding-left:1em; font-weight:500; }
.service .description a { font-weight:500; color:inherit; text-decoration:none; }
.service .description a:hover { text-decoration:underline; }

#service-0 { width:100%; padding-top:0; padding-left:0; }
#service-0 .title { border-right:1px solid #374e5f; }
#service-0 .description { padding:10px 30px; }
#service-0 figure { margin-left:30px; float:right; width:60%; }
#service-4 { clear:both; }
#service-5 { padding-top:0; padding-left:0; padding-bottom:30px; float:right; width:66.66%; border-top:30px solid #fff; border-left:30px solid #fff; background-color:#253846; }
#service-5 .title { border-bottom:1px solid #3d5567; }
#service-5 figure { margin-top:30px; margin-left:30px; float:right; width:50%; }
#service-5 .description { color:#fff; padding:10px 30px; }
#service-5 .description b, #service-5 .description strong { color:#00aeef; text-transform:uppercase; }
#service-6 { clear:both; }
#service-9 { clear:both; width:66.66%; }

@media screen and (min-width:100px) and (max-width: 600px) {
	.service { float:none; width:100%; padding-left:0; }
	.service .description { padding:10px 30px; }
	
	#service-5 { border-left:0; }
	#service-0 figure, #service-5 figure { margin-top:0; margin-left:0; }
	#service-5, #service-8, #service-9, #service-10 { width:100%; }
	#service-0 figure, #service-5 figure { float:none; width:100%; }
	
}
@media screen and (min-width:600px) and (max-width: 1024px) {
	.service { width:50%; }
	#service-5 { border-left:0; }
	#service-0 figure, #service-5 figure { margin-top:0; margin-left:0; }
	#service-5, #service-8, #service-9, #service-10 { width:100%; }
	#service-4 { clear:none; }
}


/*--------------------------------------------------------------
## Retailers
--------------------------------------------------------------*/

.retailer_category_title { margin:0; padding: 20px 30px; background-color:#253846; color:#00aeef; border-right:1px solid #374e5f; }

.retailer { float:left; /*width:33.33%;*/ padding-left:30px; padding-top:30px; padding-bottom:30px; box-sizing:border-box; border-top:1px solid #3d5567; }
.retailer .title { margin:0; padding:0; font-size:18px; text-transform: uppercase; color:#00aeef; }
.retailer .address { padding:0; }

.map-link { margin-top:5px; }
/*.map-link a:before { display:inline-block; content:' '; width:26px; height:27px; vertical-align:middle; background-image:url(img/maps.png); background-repeat:no-repeat; margin-right:6px; }*/

.map-link a { color:#3d5567; text-decoration:none; font-weight:400; font-size:16px; }
.map-link:before { color:#3d5567; margin-left: -5px; vertical-align: middle; font-size:32px; }

aside.site-right .category { margin:-30px -30px; padding:0; list-style:none; }
aside.site-right .category ul { margin:0; padding:0; list-style:none; }
aside.site-right .category li { margin:0; padding:0; }
aside.site-right .category a { text-decoration:none; display:block; }
aside.site-right .category > li > a { padding:20px 30px; font-weight:500; font-size:24px; color:#00aeef; background:#253846; border-bottom:1px solid #374e5f; }
aside.site-right .category li li a { position:relative; display:block; margin:0; padding:12px 30px; background:#253846; color:#fff; text-transform:uppercase; border-bottom:1px solid #374e5f; }
aside.site-right .category li li a:hover { background:rgba(37,56,70,.6); }
aside.site-right .category li li.current-cat a { background:#81c341; cursor:pointer; }

.sorry-not-found { text-align:center; font-size:36px; padding:5em 2em; }

@media screen and (min-width:100px) and (max-width: 600px) {
	.retailer { width:100%; }
}
@media screen and (min-width:600px) and (max-width: 1024px) {
	.retailer { width:50%; }
	.retailer:nth-child(2n+1) { clear:left; }
}
@media screen and (min-width:1024px) {
	.retailer { width:33.33%; }
	.retailer:nth-child(3n+1) { clear:left; }
}

/*

*/
.page-template-page-pse .entry-header .content {
    color: #253846;
		max-width: 24em;
}
.pse { padding-left:30px; padding-top:30px; padding-bottom:30px; box-sizing:border-box; border-top:1px solid #3d5567; border-bottom: 1px solid #253846; }
.pse .title { margin:0; padding:0; font-size:18px; text-transform: uppercase; color:#00aeef; }

/*--------------------------------------------------------------
## Contact
--------------------------------------------------------------*/

h2.site-title { margin:0; padding: 20px 30px; background-color:#253846; color:#00aeef; border-bottom:1px solid #374e5f; }
.page-template-page-contact .entry-header .content { color:#253846; }

div.contact > div { float:left; /*width:33.33%;*/ padding-left:30px; padding-top:30px; padding-bottom:30px; font-size:20px; line-height:29px; box-sizing:border-box; background-color:#253846; color:#fff; }
div.contact > div p { margin:0; padding:0; }

.page-template-page-contact .phone:before,
.page-template-page-contact .fax:before,
.page-template-page-contact .email:before { font-size: 26px; top: 6px; position: relative; padding-right: 3px; line-height: 19px;}
.page-template-page-contact .email:before { top: 7px; }
/*.page-template-page-contact .phone:before { display:inline-block; content:' '; width:26px; height:27px; vertical-align:middle; background-image:url(img/phone.png); background-repeat:no-repeat; margin-right:6px; }
.page-template-page-contact .fax:before { display:inline-block; content:' '; width:26px; height:27px; vertical-align:middle; background-image:url(img/fax.png); background-repeat:no-repeat; margin-right:6px; }
.page-template-page-contact .email:before { display:inline-block; content:' '; width:26px; height:27px; vertical-align:middle; background-image:url(img/email.png); background-repeat:no-repeat; margin-right:6px; }*/
.page-template-page-contact .phone,
.page-template-page-contact .fax,
.page-template-page-contact .email { color:#00aeef; }
.page-template-page-contact .email a { text-decoration:none; }

.page-template-page-contact aside.site-right .inner { background-color:#253846; border-left:1px solid #374e5f; }
.page-template-page-contact aside.site-right h3 { background-color:#253846; border-top:1px solid #374e5f; border-bottom:1px solid #374e5f; }
.page-template-page-contact aside.site-right h3:first-child { border-top:0; }

#map { width: 100%; height: 750px; }

@media screen and (min-width:100px) and (max-width: 600px) {
	div.contact > div { width:100%; }
}
@media screen and (min-width:601px) and (max-width: 1024px) {
	div.contact > div:first-child { width:100%; padding-bottom:20px; }
	div.contact > div { padding-top:0; width:50%; }
}
@media screen and (min-width:1025px) {
	div.contact > div { width:33.33%; }
}

/*--------------------------------------------------------------
## Home
--------------------------------------------------------------*/

.home .swiper-container { max-height:768px; }

.page-template-page-home .site-main { width:100%; }
.page-template-page-home .section { position:relative; margin-top:20px; background:#3d5567; color:#fff; }
.page-template-page-home .section figure { float:left; width:70%; margin:0; padding:0; }
.page-template-page-home .section figure img { display:block; }
.page-template-page-home .section .content { float:right; width:30%; padding:10px 30px; }
.page-template-page-home .section .content h2.title { color:#00aeef; }
.page-template-page-home .section:nth-child(even) { background:#fff; color:#3d5567; }
.page-template-page-home .section:after { content: "";display: table;clear: both; }

.page-template-page-home .section .content .more { width:35px; height:31px; cursor:pointer; background-image:url(img/more.png); }
.page-template-page-home .section .content .more ~ p { display:none; }
.page-template-page-home .section .content.open-more { position:absolute; top:0; right:0; bottom:0; margin-left:-35%; width:65%; background: #3d5567;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}

.page-template-page-home .section:nth-child(2):before { position:absolute; top:0; right:0; bottom:-20px; left:0; content:' '; background-image:url(img/bluefox.png); background-repeat:no-repeat; background-position:bottom right; }

.entry-header .over h2 { text-transform:uppercase; }
.entry-header .style-Dark .over h2 { color:#3d5567; }
.entry-header .style-Dark .over .content { color:#3d5567; }

@media screen and (max-width: 600px) {
	.page-template-page-home .section figure { float:none; width:100%; }
	.page-template-page-home .section .content { float:none; width:100%; }
	.page-template-page-home .section .content.open-more {
		position:relative; top:auto; right:auto; bottom:auto; margin-left:0; width:100%;
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	.page-template-page-home .section:nth-child(2) { padding-bottom:200px; }
}
@media screen and (min-width:601px) and (max-width: 1024px) {
	.page-template-page-home .section figure { width:50%; }
	.page-template-page-home .section .content { width:50%; }
	.page-template-page-home .section .content.open-more { margin-left:-50%; width:100%; min-height:500px; }
	
	.page-template-page-home .section:nth-child(2) { background-size:150px 159px; }
}
@media screen and (min-width:1025px) {
	.page-template-page-home .section figure { width:70%; }
	.page-template-page-home .section .content { width:30%; }
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

.video.full { display:none; }
.video.full.open { display:block; position:fixed; top:0; right:0; bottom:0; left:0; background:rgba(0,0,0,.8); z-index:1000; }
.video .wrapper {
	position: absolute;
	top:50%;
	left:50%;
	width:80%;
	max-width:1280px;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
    -webkit-transform:translate(-50%, -50%);
    -moz-transform:translate(-50%, -50%);
    -ms-transform:translate(-50%, -50%);
    -o-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
}
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}
/*--------------------------------------------------------------
## Images
--------------------------------------------------------------*/
img.full { display:block; width:100%; height:auto; }

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* footer */

.site-footer { background:#00aeef; font-size:.83rem; }
.site-footer .site-info { padding:20px; color:#253846; }
.site-footer .site-info h2 { margin:0; padding:0; color:#fff; font-size:.83rem; }
.site-footer .site-info p { margin:0; padding:0; }
.site-footer .contact-info { padding:20px; background:#253846; color:#fff; }

/* job openings */

.awsm-row { margin:0; }
body a.awsm-grid-item { border-bottom:1px solid #000 !important; }
.awsm-grid-item .awsm-job-item { padding: 30px 15px; margin-bottom: 10px; border:0; -webkit-box-shadow:inherit; box-shadow:inherit; }
.awsm-grid-item .awsm-job-item .awsm-job-post-title { margin-bottom:0; color:#00aeef; }
.awsm-grid-item .awsm-job-item .awsm-job-more { font-weight:bold; }

.awsm-grid-item .awsm-job-item:focus, .awsm-grid-item .awsm-job-item:hover { -webkit-box-shadow:inherit; box-shadow:inherit; }
.awsm-grid-item .awsm-job-item:focus .awsm-job-more, .awsm-grid-item .awsm-job-item:hover .awsm-job-more { color:#00aeef; }

.awsm-filter-wrap { display:none; }

/* -- single job page --- */

.awsm-job-single-content { padding-left:20px; padding-right:20px; }
.awsm-jobs-single-title { color:#00aeef; }