/**
	@Author:	Paul Strandoo for Spi-des-ign
	@Date:		9 Aug 2017
	@Notes:		Repco Roof Tiles
	
	
	CONTENTS
	-------------
	- Global resets
	- Global typography & layout rules
	- Page styles
	- Post styles 
	- General bits 
	
	- Media queries	
	
	FONTS & COLORS
	-------------
	dark blue: #002b5c / rgba(0,43,92,1);
	light blue: #1377bb / rgba(19,119,187,1);
	light blue2: #2069b3 / rgba(32,105,179,1);
	red: #ed1c24;
	
	font-family: 'Source Sans Pro', sans-serif;
	available weight: 300, 400, 600, 400italic, 600italic
	
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300, 400, 600
*/

@import url(reset.css); 
@import url("font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,400italic,600italic");


/* ----- [ Globals and Typography ] -----------------*/
* {
   -moz-box-sizing:    border-box;
   -webkit-box-sizing: border-box;
	box-sizing:        border-box;
	}

html {
	font-size: 100%; /* Set a 16px base size */
	}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 18px;
	line-height: 1.3;
	}


body, input, textarea, table {
	font-family: 'Source Sans Pro', sans-serif;
	color: #333;
	}
	
p,
li,
td {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1em;
	line-height: 1.6em;
	margin: 0 0 1em;
	}
li {
	margin: 0;
	}
em {
	font-family: 'Source Sans Pro', sans-serif;
	font-style: italic;
	}
b,
strong {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	}

a {
	color: #ed1c24;
	}
a:hover {
	color: #ed1c24;
	text-decoration: underline;
	}

h1,h2,h3,h4 {
	font-family: 'Source Sans Pro', sans-serif;
	/*font-family: 'Alegreya', serif;*/
	font-weight: 600;
	margin: 0 0 0.5em;
	color: #002b5c;
	}
h1 {
	font-family: 'Source Sans Pro', sans-serif;
	/*font-family: 'Alegreya', serif;*/
	font-weight: 600;
	font-size: 2.2em;
	line-height: 1.1em;
	}
h2 {
	font-family: 'Source Sans Pro', sans-serif;
	/*font-family: 'Alegreya', serif;*/
	font-weight: 600;
	font-size: 2em;
	line-height: 1.2em;
	margin: 0 0 1em;
	}
h3 {
	font-family: 'Source Sans Pro', sans-serif;
	/*font-family: 'Alegreya', serif;*/
	font-weight: 400;
	font-size: 1.6em;
	margin: 0 0 1em;
	}
h4 {
	font-size: 1.1em;
	margin: 0;
	padding: 0;
	}

img {
	display: block;
	}


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


.overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: rgba(0, 0, 0, 0.5);
	z-index: 6;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.overlay.open-quote {
	visibility: visible;
	opacity: 1;
	z-index: 850;
}
.overlay.menu-is-open {
	visibility: visible;
	opacity: 1;
	z-index: 750;
}

/* ----- [ Strandoo Simple Grid System v2 ] --------------- */
.row {
	margin: 0 -15px;
	/*font-size: 0;*/
	}
.row > .col {
	width: 100%;
	float: left;
	vertical-align: top;
	padding: 0 15px;
	margin-bottom: 40px;
	text-align: left;
	}
.row > .col.centered {
	text-align: center;
	}

/* inline-block variation */
.row.inline > .col {
	float: none;
	display: inline-block;
	}
.row.inline.middle > .col {
	vertical-align: middle;
	}

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

/* ----- [ Dark and Light color variations ] -----------------*/
.dark,
.dark p,
.dark li,
.dark h1,
.dark h2,
.dark h3 {
	color: #fff;
	}
.dark a {
	color: #fff;
	}
.dark a:hover {
	color: #fff;
	border-bottom: 2px solid #fff;
	}
.dark {
	background: #002b5c;
	}
.dark h4 {
	color: #002b5c;
	}
.light {
	background: #e8e7ec;
	}


/* ----- [ Masthead ] -----------------*/
header {
	position: absolute;
	/*position: relative;*/
	z-index: 800;
	height: auto;
	margin: 0;
	top: 0;
	left: 0;
	right: 0;

	padding: 0;
	background: #fff;
	border-top: 6px solid #ed1c24;

	-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;
	
	/* display:expression(style.display = "block", 0); */
}

.header-inner {
	padding: 10px 15px;
}

header::before {
	/* never visible - this is used in jQuery to check the current MQ */
	display: none;
	content: 'mobile';
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  header {
      left: 0;
      transition: all .5s;
  }
  .shiftnav-open .header, .shiftnav-open #bar-left{
     left:590px;
  }
}


/* --- [ Logo & Top Links ] --------------- */
.logowrap {
	position: relative;
	float: left;
	width: 280px;
	margin: 0;
	}
.logowrap img {
	width: 100%;
	}
.logo {
	display: block;
	}

.logowrap-small {
	float: left;
	width: 160px;
	margin-top: 8px;
	}
.logowrap-small img {
	width: 100%;
	display: none;
	}

.small .logo {
	display: none;
	}
.small .logo-rev {
	display: block;
	}
.small .logowrap {
	margin-top: -150px;
	}
header.small {
	position: fixed;
	top: 0;
	margin-top: -6px;
	-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);
	}
.small .header-inner {
	display: none;
	}


.top-links {
	display: none;
	text-align: right;
	float: right;
	width: 50%;
	margin: 0;
	}
.top-links p {
	color: #ed1c24;
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.2;
	text-align: right;
	}
.top-links strong {
	font-weight: 600;
	}
p.telephone {
	color: #000;
	font-weight: 600;
	font-size: 1.5em;
	margin: 0 0 0.2em;
	}


@media only screen and (min-width: 37.5em) {
	.top-links {
		display: block;
		}
}

@media only screen and (min-width: 1024px) {
	.logo-small {
		float: left;
	}
}

/* --- [ Main Navigation & Search ] --------------- */
.main-nav-wrapper {
	position: relative;
	background: #002b5c;
	margin: 0;
	}

.menu-is-open .main-nav-wrapper {
	padding-bottom: 30px;
}

.menu-trigger a {
	display: block;
	text-align: right;
	font-size: 22px;
	color: #fff;
	font-weight: 600;
	padding: 10px 10px;
	text-transform: uppercase;
	text-decoration: none;
	}
	
.menu-icon {
	border: none;
	display: inline-block;
	background: url("../images/icon_navburger.svg") 50% 50% no-repeat;
	background-size: 100%;
	opacity: 1;
	width: 24px;
	height: 24px;
	text-indent: -9999px;
	margin-top: -3px;
	margin-left: 10px;
	outline: none;
	vertical-align: middle;
	}
.menu-is-open .menu-icon {
	background: url("../images/icon_close.svg") 50% 50% no-repeat;
	background-size: 100%;
	}

.cd-main-nav {
	display: block;
	z-index: 800;
	padding: 3px 0 30px;
	padding: 3px 0;
	position: relative;
	visibility: visible;
	width: auto;
	max-width: 1060px;
	margin: 0 auto;
	height: auto;
	overflow: visible;
	background: transparent;
	text-align: left;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
	
.small .cd-main-nav {
	padding: 10px 0;
	}
	
.cd-main-nav li {
	display: block;
	position: relative;
	margin: 0 12px;
	padding: 0;
	
	margin: 0 5%;
	padding: 5px 0;
	overflow: visible;
	font-size: inherit;
	min-height: 0;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
	}
.cd-main-nav a {
	font-size: 24px;
	color: #eee;
	padding: 0;
	text-transform: uppercase;
	border-bottom: 4px solid transparent;
	}
.cd-main-nav .level-1 a {
	padding: 4px 0;
	padding: 0;
	}
.cd-main-nav .level-2 a {
	padding: 5px 12px;
	font-size: 16px;
	text-transform: none;
	}

.cd-main-nav a.on,
.cd-main-nav a:hover,
.cd-main-nav a.on:hover {
	color: #fff;
	text-decoration: none;
	border-bottom: 4px solid #ed1c24;
	}
.cd-main-nav .level-1 a.on::after,
.cd-main-nav li:hover::after {
	opacity: 1;
	}
.cd-main-nav li .dropnav {
	display: block;
	position: relative;
	width: auto;
	top: 100%;
	left: 0;
	text-align: left;
	color: #fff;
	background: transparent;
	z-index: 1000;
	margin-top: -1px;
	
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: translateX(0px);
	-o-transform: none;
	transform: none;
	}
.cd-main-nav .dropnav > ul {
	margin: 0;
	padding: 5px 15px 15px 20px;
	padding: 15px 0 15px 10px;
	width: auto;
	overflow: hidden;
	}
.cd-main-nav li:hover .dropnav {
	display: block;
	white-space: nowrap;
	padding: 0;
	}

.cd-main-nav .level-2 {
	display: block;
	padding: 4px 0;
	margin: 0;
	margin: 0 0 5px 10px;
	line-height: 1em;
	}
.cd-main-nav .level-2 a {
	padding: 0 0 5px;
	padding: 0;
	font-size: inherit;
	/*font-size: 16px;
	text-transform: none;*/
	border-bottom: none;
	
	}

.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;
	border-bottom: 1px solid #ed1c24;
	}

.slogan {
	display: none;
	}

.cd-main-nav {
	display: none;
}
	



.cd-main-nav.is-visible {
	display: block;
}

/* @media only screen and (min-width: 37.5em) { */
@media only screen and (min-width: 860px) {
	
	.slogan {
		display: block;
		}
		
	.top-links {
		width: 60%;
		}
	
	.menu-trigger {
		display: none;
		}
	
	.cd-main-nav {
		text-align: right;
		display: block;
		padding: 3px 0;
		}
	.cd-main-nav li {
		display: inline-block;
		position: relative;
		margin: 0 12px;
		padding: 0;
		overflow: visible;
		font-size: inherit;
		min-height: 0;
		-webkit-transition: opacity .3s ease;
		-moz-transition: opacity .3s ease;
		-o-transition: opacity .3s ease;
		transition: opacity .3s ease;
		}
	.cd-main-nav a {
		font-size: 15px;
		color: #eee;
		padding: 0;
		text-transform: uppercase;
		border-bottom: 4px solid transparent;
		}
	.cd-main-nav .level-1 a {
		padding: 4px 0;
		}
	.cd-main-nav .level-2 a {
		padding: 0 0 5px;
		}
	.cd-main-nav li .dropnav {
		display: none;
		position: absolute;
		width: auto;
		top: 100%;
		left: 0;
		text-align: left;
		color: #fff;
		background: transparent;
		z-index: 1000;
		margin-top: -1px;
		
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: translateX(0px);
		-o-transform: none;
		transform: none;
		}
	.cd-main-nav .dropnav > ul {
		margin: 0;
		padding: 15px 15px;
		width: auto;
		overflow: hidden;
		background: #002b5c;
		border-bottom: 4px solid #ed1c24;
		}
	.cd-main-nav li:hover .dropnav {
		display: block;
		white-space: nowrap;
		padding: 0;
		}
}






/* ---- [ Search Form; Header ] -------- */
li.search {
	padding: 5px 0.5em 0 1em;
	padding: 0;
	}
.search-close,
.search-trigger {
	display: none;
	}
.search-submit {
	border: none;
	display: block;
	/* background: url("../images/search.png") 50% 50% no-repeat; */
	background: url("../images/mag-glass.png") 50% 50% no-repeat;
	opacity: 1;
	width: 30px;
	height: 40px;
	text-indent: -9999px; 
	cursor: pointer;
	outline: none;
	float: right;
	}
.search-query {
	width: 80%;
	background: rgba(255,255,255,0);
	border: none;
	padding: 0.5em 0;
	color: #fff;
	outline: none;
	font-size: 24px;
	padding: 0;
	border-bottom: 2px solid #fff;
	}

/* @media only screen and (min-width: 768px) { */
@media only screen and (min-width: 860px) {

	.main-nav-wrapper {
		margin: 0;
		}

	/*.search-form {*/
	li.search {
		
		}
	li.search {
		position: absolute;
		position: relative;
		overflow: visible;
		width: 0;
		width: 30px;
		height: 30px;
		padding: 0;
		margin: -12px 2px -10px 4px;
		opacity: 1;
		-webkit-transition: all .4s ease;
		-moz-transition: all .4s ease;
		-o-transition: all .4s ease;
		transition: all .4s ease;
		}
	li.search.open {
		overflow: visible;
		}
		
	.search-form {
		width: 0;
		height: 32px;
		overflow: hidden;
		opacity: 1;
		position: absolute;
		right: 30px;
		top: 0;
		border-bottom: 4px solid red;
		-webkit-transition: all .3s;
		-moz-transition: all .3s;
		-o-transition: all .3s;
		transition: all .3s;
		}
	.open .search-form {
		width: 440px;
		opacity: 1;

		}
	
	.search-query {
		font-size: 1em;
		position: relative;
		width: 400px;
		margin-right: 5px;
		padding: 10px 3px;
		padding: 0;
		height: 30px; 
		background: transparent;
		color: #fff;
		outline: none;
		border-bottom: none;
		/*border: 1px solid rgba(255,255,255,0.5);*/
		}
	.open .search-query {
		
		}
	
	.search-trigger,
	.search-submit {
		border: none;
		display: block;
		/* background: url("../images/search.png") 50% 50% no-repeat; */
		background: url("../images/mag-glass.png") 50% 50% no-repeat;
		opacity: 1;
		width: 30px;
		height: 30px;
		text-indent: -9999px; 
		cursor: pointer;
		outline: none;
		float: left;
		}
	.search-submit {
		opacity: 0;
		-webkit-transition: all .4s ease;
		-moz-transition: all .4s ease;
		-o-transition: all .4s ease;
		transition: all .4s ease;
		}
	.open .search-submit {
		opacity: 1;
		}
	.open .search-trigger {
		opacity: 1;
		/* background: url("../images/24_close.png") 20% 40% no-repeat; */
		background: url("../images/x-close.png") 20% 40% no-repeat;
		}

	.cd-main-nav.fade-out li {
		opacity: 0;
		}
	.cd-main-nav.fade-out li.search {
		opacity: 1;
		}
}




/*
.page-wrapper::before {
	display: none;
	content: 'mobile';
}
@media only screen and (min-width: 1024px) {
	.page-wrapper::before {
		content: 'desktop';
	}
}
*/
.page-wrapper {
	position: relative;
	/*z-index: 2;
	top: 0;
	min-height: 100vh;
	background: #fff;*/
	/*border-top: 120px solid #fff;*/
	-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;
}


/* ----- [ Buttons ] -----------------*/
.button {
	display: inline-block;
	font-size: 20px;
	padding: 6px 15px;
	color: #fff;
	background: #1377bb;
	border: 2px solid #fff;
	border: 2px solid #1377bb;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	cursor: pointer;
	width: auto;
	font-weight: 500;
	}
.button-small {
	font-size: 14px;
	font-weight: 600;
	padding: 5px 10px;
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	}
.button-xsmall {
	font-size: 12px;
	font-weight: 600;
	padding: 3px 8px;
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	margin: 0 auto;
	text-align: center;
	}
.quote-button {
	background: #ed1c24;
	border: none;
	}
.hero .button {
	color: #fff;
	border-color: #fff;
	background: transparent;
	}
	
.button:hover,
.button.cancel:hover {
	color: #fff;
	background: #2069b3;
	text-decoration: none;
	}
.button.cancel:hover {	
	border: 2px solid #1377bb;	
	}
	
.hero .button:hover {
	color: #fff;
	background: transparent;
	text-decoration: none;
	}


.owl-content a.button {
	color: #fff;
	}
.owl-content a.button:hover {
	border-color: #1377bb;
	color: #1377bb;
	}	

/* ----- [ Pages ] --------------- */
/* ----- [ Heros ] --------------- */
.hero {
	padding: 0;
	border-top: 120px solid #002b5c;
	}
.hero .inner {
	height: 430px;
	}

.hero-image img {
	width: 100%;
	height: auto;
	}

.hero-bg {
	/*padding-bottom: 40%;*/
	height: 430px;
	}

.hero-content {
	position: absolute;
	top: 50%;
	bottom: auto;
	left: 50%;
	max-width: 1070px;
	width: 90%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	}

.hero-content h1,
.hero-content h2 {
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.8);
	margin-bottom: 0;
	}

.down-arrow {
	display: block;
	height: 51px;
	width: 51px;
	margin: 10px auto 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('../images/arrow-down.png');
    background-size: 100%;
    opacity: 0.8;
	}
.down-arrow:hover {
	opacity: 1;
	}
	
/*.shadow-thingie {*/
.hero .inner::after,
.product-nav::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%; 
	max-width:1000px;
	left:50%;
	margin-left: -500px;
	background: #fff;
	height: 70px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
 }
.product-nav::after {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	}
.carousel .inner::after {
	display: none;
	}



.page-intro .inner,
.blog-intro .inner {
	margin-top: -100px;
	margin-bottom: 0;
	background: #fff;
	max-width: 1000px;
	padding: 30px;
	}

/* ----- [ Home ] --------------- */
.home-circles {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	display: block;
	margin-bottom: 40px;
	}
.home-circles col {
	width: 33.33%;
	}

@media only screen and (min-width: 480px) { 
	.home-circles {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		flex-wrap: wrap;
		}
}


.small-logo {
	width: 220px;
	margin: 0 auto;
	}
.page-icon {
	margin: 0 auto;
	width: 200px;
	height: 200px;
	}
.circle {
	/*background: #002b5c url('../images/logo-watermark.png') 50% 50% no-repeat;*/
	background-size: 110%;
	border: 4px solid rgba(255,255,255,0.8);
	background: rgba(255,255,255,0.3);
	margin-bottom: 15px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
	}
/* if we use links... */
a:hover .circle {
	background: rgba(255,255,255,1);
	border: 4px solid #ffffff;
	}
	
.home-tagline {
	margin-top: 30px;
	border-top: 8px solid #fff;
	border-bottom: 8px solid #fff;
	padding-top: 50px;
	padding-bottom: 50px;
	}
.tagline {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 300;
	font-size: 2.2em;
	line-height: 1.1em;
	color: #fff;
	margin: 0.8em 0.5em 0.5em;
	}


.logo-band {
	margin-bottom: 20px;
	margin-top: -20px;
	padding-top: 50px;
	padding-bottom: 50px;
	}

.product-nav .inner {
	padding: 25px 0;
	max-width: 960px;
	overflow: hidden;
	}
	
.fixed-hero {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width:100%;
	height: 400px; 
	padding: 0;
	/*background: #eee url('{$page->hero_image->first->url}');*/
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	}


.centered h2 {
	padding: 0;
	}

@media only screen and (min-width: 37.5em) { 
	.centered h2 {
		padding: 0 1em;
		}
}

.page-intro p {
	font-size: 1.1em;
	max-width: 900px;
	margin: 0 auto 1em;
	}




/* ----- [ Product Pages ] -----------------*/
.product-group {
	/*border-top: 1px solid #002b5c;*/
	padding-top: 0.5em;
	padding: 20px;
	margin-bottom: 50px;
	margin-bottom: 0;
	}
	
.product-group-head::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin-top: -0.6em;
	border-bottom: 2px solid #002b5c;
	}
.product-group-head span {
	background: #fff;
	padding: 0 0.3em;
	}

.product-name {
	margin: 0 0 0.5em;
	}

.product-name + p {
	/*margin: 0;*/
	font-size: 0.9em;
	line-height: 1.3em;
	font-style: italic;
	}

/* .product-name + p .button { */
.product .button {
	margin: 0;
	font-size: 12px;
	line-height: 1.3em;
	font-style: normal;
	}

.product-table table {
	width: 100%;
	display: none;
	}

@media only screen and (min-width: 960px) { 
	.product-table table {
		display: inline;
		}
}

.lightbox {
	display: none;
	}
.specs-button {
	margin: 20px 0 0 0;
	}
.specs-table h3 {
	text-align: center;
	margin: 0 0 0.5em;
	}
.specs-table table,
.product-table table {
	border: 3px solid #fff;
	width: 100%;
	}
.specs-table table {
	max-width: 500px;
	border: 3px solid #d3e5fa;
	}
.specs-table td,
.specs-table th,
.product-table td,
.product-table th {
	font-size: 0.9em;
	padding: 4px 8px;
	line-height: 1.2em;
	border: 3px solid #fff;
	}
.specs-table td,
.specs-table th {
	border: 1px solid #d3e5fa;
	}
.specs-table th,
.product-table th {
	font-weight: bold;
	}
	
thead th {
	text-align: center;
	color: #fff;
	background: #2069b3;
	vertical-align: top;
	}
.product-table td:first-of-type {
	text-align: left;
	}
.product-table tr:nth-of-type(odd) {
	background: #d3e5fa;
	}
.product-table td[colspan="12"] {
	text-align: center;
	padding: 8px;
	color: #fff;
	background: #002b5c;
	}

.product-table h3 {
	font-size: 1.2em;
	padding: 8px;
	margin: 0 3px;
	text-align: center;
	color: #fff;
	background: #2069b3;
	vertical-align: top;
	}
	




.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: rgba(19,119,187,1);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	}



/* ----- [ Sidebar/Columns ] -----------------*/
.sidebar h3,
.sidebar h4 {
	border-top: 1px solid #002b5c;
	margin-top: 0;
	padding-top: 12px;
	font-size: 1.2em;
	font-weight: 500;
	}
.sidebar p {
	font-size: 1em;
	line-height: 1.4em;
	}







/* ----- [ Misc. ] -----------------*/

	
/* ----- [ Social Media Buttons ] -----------------*/
.social-media-static {
	display: none;
	position: fixed;
	top: 28%;
	right: 0;
	width: 56px;
	z-index: 1000;
	}
.static-icon {
	float: left;
	width: 56px;
	height: 51px;
	text-indent: -9999px;
	margin: 0;
	background: #fff url("../images/i-skype-sq.png") 0 0 no-repeat;
	border-left: 5px solid transparent;
	}

.static-icon.twitter { background: url("../images/i-twitter.png") 0 0 no-repeat; }
.static-icon.linkedin { background: url("../images/i-linkedin-sq.png") 0 0 no-repeat; }
.static-icon.facebook { background: url("../images/i-facebook-sq.png") 0 0 no-repeat; }
.static-icon.email { background: url("../images/i-email.png") 0 0 no-repeat; }

.static-icon:hover {
	border-left: 5px solid #ed1c24;
	}

.static-icon a,
.footer-icon a {
	display: block;
	height: 100%;
	}

@media only screen and (min-width: 37.5em) { 
	.social-media-static {
		display: block;
		}
}


	
/* --- [ News Pages ] --------------- */
.news-intro,
.contact-intro,
.team-intro {
	margin-bottom: 0;
	}
.news-intro .inner,
.contact-intro .inner,
.team-intro .inner {
	padding-top: 50px;
	}
.news-intro h1 {
	margin-bottom: 0;
	}
.news-intro h1 + h2 {
	margin-bottom: 0;
	}

.news-post,
.post {
	padding: 15px 0;
	border-top: 1px solid #002b5c;
	overflow: hidden;
	}
.post-thumb {
	/*float:left;
	width: 30%;*/
	margin: 5px 0 10px;
	}
.single-post .post-thumb {
	margin-right: 25px;
	}
.post-thumb img {
	width: 100%;
	height: auto;
	}
.post-summary {
	/*float: right;
	width: 67%;*/
	}
.post-summary.full-width,
.single-post .post-summary {
	float: none;
	width: 100%;
	}
	
.post-summary p > img,
.post-featured-image {
	max-width: 100%;
	margin-bottom: 20px;
	}

.post-date,
.post-byline {
	font-size: 13px;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	}
.post-headline {
	margin: 0 0 0.3em !important;
	}

.post-foot p {
	margin: 0;
	}
.prev-post,
.next-post {
	float: left;
	width: 50%;
	}
.next-post {
	text-align: right;
	}

.news-item-image {
	border: 1px solid #ccc;
	padding: 12px;
	margin: 5px 20px 15px 0;
	}
.sidebar .links {
	margin: 0 0 12px;
	}

.sticky {
	position: relative;
	}
.sticky.fixed {
	position: fixed;
	top: 100px;
	}
.is_stuck {
	padding-left: 15px;
	padding-right: 15px;
	/*border: 1px solid red;*/
	}

.archive-list li {
	margin: 0;
	font-size: 18px;
	line-height: 1.4em;
	}

.news-hero {
	width: 100%;
	height: auto;
	margin: 0 0 20px;
	}

@media only screen and (min-width: 600px) {
	.post-thumb {
		float:left;
		width: 30%;
		}
	.post-summary {
		float: right;
		width: 67%;
		}
}

/*
.post-thumb.events {
	border-top: 4px solid #ffe000;
}
.post-thumb.events::before {
	content: "Events";
	}
.post-thumb.news {
	border-top: 4px solid #ef9884;
}
.post-thumb.news::before {
	content: "News";
	}
*/

.post-thumb h2 {
	font-size: 20px;
	}

.older-news h2 {
	margin: 0 0 5px;
	padding-top: 5px;
	}
.older-news li {
	line-height: 1.2;
	}

.thumbnail {
	margin: 0 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 #2069b3;*/
	}

.product-name {
	font-weight: 400;
	}



/* ----- [ Downloads Page ] -----------------*/
.download-links {
	max-width: 920px;
	margin: 0 auto 30px;
	}
.download-links li {
	display: inline-block;
	width: 100%;
	overflow: hidden;
	border-top: 1px solid #002b5c;
	padding-top: 10px;
	margin: 0;
	text-align: left;
	vertical-align: top;
	}
.download-links img {
	float: left;
	width: 100px;
	margin: 0 15px 15px 0;
	border: 1px solid #ccc;
	}
.download-links p {
	font-size: 0.9em;
	}




/* --- [ CMS Content ] --------------- */
.cms-content ul {
	margin: 0 0 1em;
	}
.cms-content li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0 1.2em;
	}
.cms-content h3 {
	margin-bottom: 0;
	}

/* CMS: 2 or 3 placed image. New CMS-styles for paragraphs with images */
p.image-row-2 > img,
p.image-row-3 > img {
	float: none;
	width: 100%;
	margin: 0 0 1em 0;
	}



/* --- [ Contact Forms ] --------------- */
form.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;
	}
.contact-form label.show {
	display: inline-block;
	}

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;
    }
    
.contact-form input,
.contact-form select,
.contact-form textarea {
	/*padding-left: 1.5em;*/
    /*-webkit-appearance: none;*/
    border-radius: 0;
    }
.contact-form textarea {
	height: 140px;
	}
input[type=submit],
input.button {
    -webkit-appearance: none;
	}

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

ul.form-input {
	margin-bottom: 0 !important;
	}

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

.form-consent {
	border: 1px solid #ccc;
	padding: 10px 10px 10px !important;
	margin: 0 0 15px;
	}
textarea {
	vertical-align: top;
	}




/* -----[ Quote form ]------------ */
form.contact-form {
	max-width: 800px;
	margin: 20px auto 30px;
	}

.quote-form li {
	margin: 0 0 15px;
	position: relative;
	overflow: hidden;
	}
.antispam {
	display: none;
	}
.quote-form label {
	display: none;
	}
.quote-form .telephone {
	float: left;
	width: 63%;
	}
.quote-form .postcode {
	float: right;
	width: 33%;
	text-transform: uppercase;
	}
.contact-form label.show {
	display: inline-block;
	}

.quote-form textarea {
	height:208px;
	}
.quote-form input[type=text] {
	height: 40px;
	}

.contact-big li {
	display: inline-block;
	margin: 10px;
	}

		/* button-see above */
		.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;
			}

		.quote-form-header {
			height: 30px;
			margin-bottom: 1em;
			}
		.quote-form-header h3 {
			float: left;
			}

		#quote-form-message {
			float: right;
			text-align: right;
			}
		#quote-form-message.error,
		#quote-form-message.success {
			padding: 15px 0 0;
			color: gold;
			border: none;
			background: none;
			margin: 0;
			}
		#quote-form-message.success {
			color: #c5d301;
			font-weight: 400;
			}

/*
@media only screen and (min-width: 1024px) {
	::-webkit-input-placeholder { color: #fff; }
	:-moz-placeholder { color: #fff; }
	::-moz-placeholder { color: #fff; }
	:-ms-input-placeholder { color: #fff; }
	input-placeholder { color: #fff; }

}
*/

/* --- [ Location Map ] --------------- */
.address-overlay {
	position: relative;
	width: 80%;
	left: auto;
	top: 50%;
	padding: 20px;
	margin: 0 auto;
	background: #fff;
	background: rgba(255,255,255,0.8);
	transform: translate(0, -50%);
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
	}
.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;
}

@media only screen and (min-width: 768px) { /* 48em */
	.address-overlay {
		position: absolute;
		width: 300px;
		left: 53%;
		top: 50%;
		padding: 20px;
		background: #fff;
		background: rgba(255,255,255,0.8);
		transform: translate(0, -50%);
		box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
		}

}


/* --- [ 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;
	}

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

img.right {
	float: right;
	}
.fright {
	float: right;
	}
.fleft {
	float: left;
	}
	
.centered,
.centered p,
.centered h2,
.centered h3,
.centered h4 {
	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;
	}




/* --- [ Footer ] --------------- */
footer {
	clear: both; 
	border-top: 6px solid #ed1c24;
	background: #002b5c;
	padding: 30px 0 10px;
	color: #fff;
	text-align: left;
	margin-top: 40px;
	}

footer a {
	color: #eee;
	}
footer a:hover {
	text-decoration: underline; 
	color: #ffffff; 
	}

footer p,
footer li {
	font-size: 0.9em;
	font-weight: 500;
	color: #fff; 
	margin: 0 0 0.5em;
	}
footer li {
	margin: 0;
	}
	
.footer-logo {
	width: 260px;
	margin-bottom: 30px;
	}

.contact-info {
	width: 100%;
	text-align: left;
	}

.credit {
	margin: 30px 0 6px;
	font-size: 0.8em;
	}

@media only screen and (min-width: 37.5em) { 
	.contact-info {
		float: right;
		width: 60%;
		text-align: right;
		}
		
	.footer-logo {
		float: left;
		width: 260px;
		margin-bottom: 30px;
		}
}

.top-link {
	display: none;
    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;
	}
.top-link a {
    /*background: #2069b3 url('../images/arrow-up.png') center center no-repeat;*/
    background: #002b5c;
    color: #fff;
    font-size: 2.2em;
    line-height: 45px;
    display: block;
    height: 50px;
	width: 50px;
    outline: medium none;
    position: relative;
    /*text-indent: -9999px;*/
    z-index: 0;
    text-align: center;
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    }
.top-link.show {
	opacity: 1;
	}


@media only screen and (min-width: 37.5em) { 
	.top-link {
		display: block;
		}
}


/* --- [ MarkupSocialShareButtons ] --------------- */
.MarkupSocialShareButtons {
    list-style-type: none !important;
    margin: 0 0 20px;
    padding: 0;
    overflow: hidden;
}
.MarkupSocialShareButtons li {
    list-style-type: none !important;
    float: left;
    margin: 0 2px !important;
    padding: 0 !important;
}
.MarkupSocialShareButtons li a {
    display: inline-block;
    text-decoration: none;
    border: none;
    width: 32px;
    height: 32px;
    opacity: 0.8;
}
.MarkupSocialShareButtons li a:hover{
    opacity: 1;
}

.MarkupSocialShareButtons img{
    width: 100%;
    height: auto;
}


/* --- [ MarkupPagerNavigation ] --------------- */
.MarkupPagerNav {
	text-align: right;
	margin-right: 1em;
	}
.MarkupPagerNav li {
	display: inline-block;
	border: 1px solid #222;
	font-size: 15px;
	line-height: 1em;
	margin: 0;
	}
.MarkupPagerNav a {
	display: block;
	padding: 6px 8px;
	/*font-weight: bold;*/
	}
.MarkupPagerNavOn a {
	background: #002b5c;
	color: #fff;
	}

@media only screen and (min-width: 580px) { 
	.MarkupPagerNav {
		margin-right: 0;
	}	
}


/**
 * The edit link that appears when you are logged in.
 * It is recommended that you implement an edit button 
 * in your templates to make it easy to switch to and
 * from the admin control panel when editing pages. 
 *
 */
#editpage {
	position: absolute;
	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; 
	}


/**
 * 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;
	}


/**
 * WireFatalError is a class that ProcessWire will use to output
 * fatal errors in the design, but only if debug mode is on, or if
 * you are logged in as a superuser. 
 *
 */
.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}


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

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

	.row-2 > .col { width: 50%; }
	.row-3 > .col { width: 33.333%; }
	.row-4 > .col { width: 25%;}

	.row-2 .span-2 { width: 100%; }
	.row-3 .span-2 { width: 66%; }
	.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%; }
	
	/* CMS styles */
	p.image-row-2 > img {
		float: left;
		width: 48.75%;
		margin: 0 2.4% 2.4% 0;
	}
	p.image-row-2 > img:nth-of-type(even) {
		float: right;
		margin-right: 0;
	}

	p.image-row-3 > img {
		float: left;
		width: 31.7%;
		margin: 0 2.4% 2.4% 0;
	}
	p.image-row-3 > img:nth-of-type(3) {
		float: right;
		margin-right: 0;
	}

	p.image-row-4 > img {
		float: left;
		width: 23.2%;
		margin: 0 2.4% 2.4% 0;
	}
	p.image-row-4 > img:nth-of-type(4) {
		float: right;
		margin-right: 0;
	}	

}

/* 768px equivalent breakpoint */
@media only screen and (min-width: 48em) { 
	.alignleft,
	.alignright {
		float: left;
		display: inline;	
	}


	.alignright {
		float: right;
	}
	
	
}

/* 1024px equivalent breakpoint */
/*@media only screen and (min-width: 64em) {  */
@media only screen and (min-width: 860px) { 

}

/* 1260px equivalent breakpoint */
@media only screen and (min-width: 78.75em) { 
}
/* END : Media Queries */


/* PRINT STYLES */

@media print {
	/* If you're going to have a print stylesheet, now's the time */
}