/*
Theme Name: michael_nugent_01
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0
License: GNU General Public License
License URI: license.txt
Text Domain: michael_nugent_01
Domain Path: /languages/
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.

 michael_nugent_01 is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Inputs and buttons
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
11.0 - Media
--------------------------------------------------------------*/

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
/*	font-size: 1.6rem;*/
	line-height: 1.5;
  font-family: "pt-sans",sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

h1 {
	font-size: 1em;
	margin-bottom: 1em;
}

h2 {
	font-size: 1.875em;
	margin-bottom: 0.8em;
}

h3 {
	font-size: 1.55em;
	margin: 1em 0;
}

p {
	font-size: 0.875em;
	line-height: 1.57142857142857em;
	margin-bottom: 1.42857142857143em;
}

img {
	max-width: 100%;
}

b, strong {
	font-weight: bold;
}
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: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
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;
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Inputs and buttons
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	*vertical-align: middle; /* Improves appearance and consistency in all browsers */
}
/*
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid #ccc;
	border-color: #ccc #ccc #bbb #ccc;
	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);
	cursor: pointer;
	-webkit-appearance: button; 
	font-size: 12px;
	font-size: 1.2rem;
	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 #bbb;
	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 #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="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 98%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: #FFF;
	border-bottom: 2px solid #3e5470;
	padding-bottom: 1px;
	text-decoration: none;
}

a:visited {
/*	color: purple;*/
}
a:hover,
a:focus,
a:active {
	border-bottom-color: #cb1216;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
  font-family: "brandon-grotesque",sans-serif;
	clear: both;
	display: block;
	text-transform: uppercase;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
	font-size: 0.875em;
}
.main-navigation a {
	display: block;
	border: 1px solid #0b1e38;
	padding: 0.5em 1em;
	text-decoration: none;
	margin: 0 1em 0 0;
	font-weight: bold;
}

.main-navigation a:hover {
	background-color: #081b32;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	display: none;
	float: left;
	left: 0;
	position: absolute;
	top: 1.5em;
	z-index: 99999;
	font-size: 1em;
}
.main-navigation ul ul ul {
	left: 100%;
	top: 0;
}
.main-navigation ul ul a {
	width: 200px;
	padding-top: 0.75em;
	padding-bottom: 0.75em;
	margin: 0;
	border: none;
}
.main-navigation ul ul li {
	width: auto;
}

.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	display: block;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
	background-color: #081b32;
}

.main-navigation .children {
	background: #020b17;
	margin-top: 1em;
}

/* Small menu */
.menu-toggle {
	cursor: pointer;
	display: none;
}
@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
		padding: 1em;
		overflow: hidden;
		margin-bottom: 0;
	}

	.main-navigation ul {
		display: none;
	}
}
.site-main [class*="navigation"] {
	margin: 0 0 1.5em;
	overflow: hidden;
}
[class*="navigation"] .nav-previous {
	float: left;
	width: 50%;
}
[class*="navigation"] .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

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

.screen-reader-text:hover,
.screen-reader-text:active,
.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-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 */
}

/*--------------------------------------------------------------
7.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: 0 auto;
}

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

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

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

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

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	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;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

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

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-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;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.wp-caption {
	border: 1px solid #ccc;
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 1.2% auto 0;
	max-width: 98%;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.site-main .gallery {
	margin-bottom: 1.5em;
}
.gallery-caption {
}
.site-main .gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
.site-main .gallery dd {
	margin: 0;
}
.site-main .gallery-columns-4 .gallery-item {
}
.site-main .gallery-columns-4 .gallery-item img {
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*
Custom
*/

body {
	background-color: #041224;
	color: #FFF;
}

.wrapper {
	width: 96%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

#masthead {
	border-top: 3px solid #cb1216;
	width: 100%;
	padding: 2em 0;
	margin-bottom: 1em;
}

.site-branding {
	position: absolute;
}

.main-navigation {
	padding-left: 25%;
}

#contact_details {
	float: right;
	margin-top: 0.35em;
}

#contact_details ul {
	margin: 0;
}

#contact_details li {
	float: left;
	margin: 0 0 0 0.5em;*/
	padding: 0;
	list-style: none;
}

#contact_details li a {
	display: block;
	border: none;
}

#contact_details .gplus {
	width: 20px;
	text-indent: -9999px;
	height: 20px;
	margin-top: 0.15em;
	margin-left: 0.75em;
	background: url(img/gplus.png) no-repeat center center;
	text-indent: -10000px;
}

#contact_details .tw {
	width: 15px;
	text-indent: -9999px;
	margin-top: 0.3em;
	height: 13px;
	background: url(img/tw.png) no-repeat center center;
	text-indent: -10000px;
}

#contact_details .linkedin {
	width: 15px;
	margin-top: 0.3em;
	text-indent: -9999px;
	height: 13px;
	background: url(img/li.png) no-repeat center center;
	text-indent: -10000px;
}

.site-title a {
	background: url(img/michael_nugent_rev_1.png) no-repeat center center;
	width: 250px;
	height: 41px;
	display: block;
	text-indent: -10000px;
	border: none;
	padding: 0;
}

aside#default {
	width: 22%;
	float: left;
}

aside#default p {
	font-size: 0.875em;
	line-height: 1.57142857142857em;
	margin-bottom: 1em;
	color: #dde6f1;
}

aside#default h1, aside#default h2 {
	font-size: 1.25em;
	margin-bottom: 0.625em;
	line-height: 1.4em;
}

aside#default h3 {
	font-size: 1em;
	margin-bottom: 0.2em;
	line-height: 1.2em;
}

aside#default .post-meta {
	font-size: 0.75em;
	color: #627082;
}

aside#default .post-excerpt {
	font-size: 0.875em;
	line-height: .42857142857143em;
}

.mod {
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: 1px solid #17212d;
}

.mod ul {
	padding: 0;
	margin: 0;
	font-size: 0.875em;
	line-height: 1.57142857142857em;
	color: #dde6f1;
}

.mod ul li {
	padding: 0;
	margin: 0 0 0.5em;
	list-style: none;
}

#main {
	width: 75%;
	float: right;
}

.home #main {
	
}

.site-footer .wrapper {
	font-size: 0.875em;
	border-top: 1px solid #0b1e38;
	padding: 1.5em 0;
}

#subnav {
	list-style: none;
	font-size: 0.875em;
	padding: 0;
	margin: 0 0 1em;
}

#subnav li {
	margin: 0 0 0.5em;
}

#subnav a {
	border: none;
	color: #c7d4e5;
}

#subnav a:hover,
#subnav .current_page_item a {
	color: #FFF;
	border-bottom: 2px solid #cb1216;
}

#page-content {
	float: left;
	width: 70%;
}

#page-content h2:first-child {
	margin-bottom: 0.4em;
}

#page-content h2 + p {
	font-size: 1.125em;
	line-height: 1.55555555555556em;
	border-bottom: 1px solid #0b1e38;
	padding-bottom: 1.3em;
	margin-bottom: 1.5em;
}

#page-content h3 {
	border-top: 1px solid #0b1e38;
	padding-top: 1em;
}

body.page-template-projects-php #page-content {
	float: none;
	width: 100%;
}

/*
Project Slider
*/

/* Slider */

.flexslider,
.project_flexslider {
	line-height: 0;
	position: relative;
	margin-bottom: 2em;
}

.flexslider ul,
.project_flexslider {
	margin: 0;
	padding: 0;
}

.flexslider li,
.project_flexslider li {
	line-height: 0;
	position: relative;
	margin: 0;
	padding: 0;
  list-style: none outside none;
}

.flex-direction-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	left: 0;
	z-index: 10;
}

.flex-direction-nav li:first-child {
	float: left;
}

.flex-direction-nav li:last-child {
	float: right;
}

.flex-direction-nav a {
	background: url(img/flex_controls_01.png) no-repeat 0 0;
	color: #FFF;
	display: block;
	width: 60px;
	height: 60px;
	border: none;
	padding: 0;
	text-indent: -9999px;
	overflow: hidden;
	-webkit-transition: opacity 0.25s ease;
	-moz-transition: opacity 0.25s ease;
	-ms-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
}

.flexslider img {
	min-width: 100%;
}

.flex-direction-nav a:hover {
	opacity: 0.7;
}

a.flex-next {
	background-position: -60px 0;
}

/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: 10px; text-align: center;}
.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .active {opacity: 1; cursor: default;}

.project_info {
	position: absolute;
	bottom: 5%;
	left: 0;
	z-index: 5;
	width: 100%;
	text-align: center;
}

.project_info .project_title {
	color: #FFF;
	font-size: 26px;
	padding: 0.25em 0.5em;
	margin: 0;
	font-weight: normal;
}

.project_title a {
	color: #FFF;
	font-weight: bold;
	border: none;
	padding-bottom: 0;
}

.project_info p {
	clear: both;
	overflow: hidden;
}

.project_more_link a {
	background-color: ;
	color: #FFF;
	padding: 0.75em 2em 0.75em 3.5em;
	border: none;
	display: inline-block;
	background: #cb1216 url(img/rarr.png) no-repeat 1em center;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: background-color 0.2s ease;
	-moz-transition: background-color 0.2s ease;
	-ms-transition: background-color 0.2s ease;
	-o-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;	
}

.project_more_link a:hover {
	background-color: #970e11;
}

.project_cat {
	text-transform: uppercase;
	margin: 0 0 1.5em;
	opacity: 0.7;
}

.flexslider_clients > ul > li {
  display:none;
}

/*
END
*/

.col-overlay {
	background-color: #041224;
	opacity: 0.4;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 3;
	-webkit-transition: opacity 0.2s ease;
	-moz-transition: opacity 0.2s ease;
	-ms-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;	
}

#featured-projects:hover .col-overlay {
	opacity: 0.2;
}

aside.aux {
	float: right;
	width: 25%;
}

aside.aux h3 {
	font-size: 1.125em;
	margin-top: 0;
	line-height: 1.33333333333333em;
	margin-bottom: 0.88888888888889em;
}

aside.aux p {
	font-size: 0.8125em;
	line-height: 1.61538461538462em;
	margin-bottom: 1.15384615384615em;
	color: #c7d4e5;
}

aside.aux .contact-us p {
	margin-bottom: 0.76923076923077em;
}

aside.aux p:last-child {
	margin-bottom: 0;
}

.module.contact-us {
	background-color: #000;	
	padding: 1.75em;
	margin-bottom: 1.5em;
}

.module.contact-us .btn {
	margin-top: 1.5em;
}

.module.contact-us .btn a {
	background: #cb1216 url(img/rarr.png) no-repeat 1em center;
	padding: 1em 1.5em 1em 3.5em;
	display: block;
	text-align: center;
	border: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: background-color 0.2s ease;
	-moz-transition: background-color 0.2s ease;
	-ms-transition: background-color 0.2s ease;
	-o-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
}

.module.contact-us .btn a:hover {
	background-color: #970e11;
}

.page-intro .contact-us {
	float: right;
	width: 30%;
}

.project {
	width: 23.5%;
	float: left;
	margin: 0 2% 1em 0;
}

.project .meta {
	font-size: 0.75em;
	opacity: 0.5;
}

.project a {
	border: none;
	padding: 0;
}

.project a:hover {
	opacity: 0.8;
}

.project img {
	margin-bottom: 0;
}

.project h3 {
	font-size: 0.9em !important;
	line-height: 1.5em !important;
	margin: 0.5em 0 0 !important;
	padding-top: 0 !important;
	border-top: none !important;
}

.project.last {
	margin-right: 0;
}

.site-info {
	opacity: 0.5;
	float: left;
}

.ld {
	float: right;
}

.ld p {
	margin: 0;
}

.ld a {
	display: block;
	background: url(img/ld.png) no-repeat center center;
	width: 90px;
	height: 19px;
	text-indent: -10000px;
	border: none;
	padding: 0;
	opacity: 0.5;
}

.ld a:hover {
	opacity: 1;
}

.quicklink {
	position: relative;
	display: block;
	margin-bottom: 0.9375em;
}

.quicklink a {
	border: none;
	padding: 0;
}

.quicklink img {
	opacity: 0.5;
	z-index: 1;
	-webkit-transition: opacity 0.2s ease;
	-moz-transition: opacity 0.2s ease;
	-ms-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.quicklink:hover {
	cursor: pointer;
}

.quicklink:hover img {
	opacity: 0.8;
}

.quicklink h3 {
	position: absolute;
	z-index: 2;
	bottom: 1em;
	left: 5%;
	margin: 0;
	font-size: 1em;
	text-transform: uppercase;
}

.quicklink h3 a {
	padding: 0;
	border: none;
}

.service-list {
	-moz-column-count: 3; /* Firefox */
	-webkit-column-count: 3; /* Safari and Chrome */
	column-count: 3;
	margin: 1em 0;
	padding: 0.5em 0 0.75em;
	font-size: 0.875em;
}

.service-list li {
	list-style: square;
	margin: 0 0 0.75em 1em;
	line-height: 1.35em;
	color: #cb1216;
}

.service-list li span {
	color: #FFF;
}

#colophon {
	margin-top: 2em;
}

/*
Single Project Pages
*/

aside .back-to-overview {
	font-size: 0.8125em !important;
	margin-bottom: 1.5em;
}

.back-to-overview a {
	background: url(img/left.png) no-repeat left center;
	opacity: 0.6;
	padding-left: 1em;
}

.back-to-overview a:link {
	border: none;
}

.back-to-overview a:hover {
	opacity: 0.8;
}

.project-gallery { position: relative; overflow: auto; margin-bottom: 2em; }
.project-gallery li { list-style: none; }
.project-gallery ul, .project-gallery li { margin: 0; padding: 0; }
.project-gallery ul li { float: left; }

.project-gallery img {
	min-width: 100%;
}

.get-in-touch {
	background: #0c213c;
	padding: 1.5em 4% 1.7em;
	position: relative;
}

.get-in-touch h3 {
	margin: 0 0 0.5em;
}

.get-in-touch p {
	margin-bottom: 0;
	font-size: 1em;
}

.cta {
	position: absolute;
	right: 3em;
	top: 2em;
}

.cta a {
	background: #cb1216 url(img/rarr.png) no-repeat 1em center;
	padding: 1em 1.75em 1em 3.75em;
	display: block;
	text-align: center;
	border: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: background-color 0.2s ease;
	-moz-transition: background-color 0.2s ease;
	-ms-transition: background-color 0.2s ease;
	-o-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
}

.cta a:hover {
	background-color: #970e11;	
}

.project-nav {
	border-top: 1px solid #0b1e38;
}

.project-nav {
	font-size: 0.8125em;
}

.project-nav a {
	opacity: 0.6;
	padding: 1em 0;
	display: inline-block;
	border: none;
}

.project-nav a:hover {
	opacity: 0.8;
}

.project-nav .prev {
	float: left;
	width: 48%;
}

.project-nav .next {
	float: right;
	text-align: right;
	width: 48%;
}

.project-nav .prev a {
	background: url(img/left.png) no-repeat left center;
	padding-left: 1em;
}

.project-nav .next a {
	background: url(img/right.png) no-repeat right center;
	padding-right: 1em;
}


/*
Projects Navigation
*/

.wp-pagenavi {
	font-size: 0.875em !important;
	color: #a5a5a5;
	opacity: 0.7;
	-webkit-transition: opacity 0.2s ease;
	-moz-transition: opacity 0.2s ease;
	-ms-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.wp-pagenavi:hover {
	opacity: 1;
}

.wp-pagenavi span {
	border: none !important;	
}

.wp-pagenavi a {
	border: none !important;
	color: #7e7f81 !important;
}

.wp-pagenavi span {
	border: none !important;
	color: #a5a5a5 !important;
}

/*
Page Styling
*/

.page_title {

}

.page_title h2 {
	font-size: 2.5em;
	margin-bottom: 0.3em;
}

.service h3 {
	font-size: 1.25em;
	margin-bottom: 0.6em;
}

.page_title img {
	opacity: 0.3;
}

.page-intro {
	border-bottom: 1px solid #0b1e38;
	padding-bottom: 1.3em;
	margin-bottom: 1.5em;
}

.intro-para {
	float: left;
	width: 65%;
}

.page-intro h2 {
	margin-bottom: 0.4em;
}

.intro-para p {
	font-size: 1.125em;
	line-height: 1.44444444444444em;
	margin-bottom: 0;
}

.service_quicklinks {
	margin-top: 2em;
}

.service {
	float: left;
	margin-right: 5%;
	width: 30%;
}

.service p {
	color: #c7d4e5;
	font-size: 0.8125em;
	line-height: 1.61538461538462em;
}

.page-id-10 #main h2:first-child  {

}

#quicklinks {
	background: #0b1e38;
	padding: 2em 0 1em;
	margin-top: 1em;
}

#quicklinks .service .quicklink-thumbnail {
	float: left;
	width: 40%;
	margin-right: 5%;
	margin-bottom: 3em;
}

#quicklinks .service h3 {
	clear: none;
	margin-top: 0;
}

#page-content .service h3 {
	border-top: 0;
	padding-top: 0;
	line-height: 1.2em;
}

.service.last {
	margin-right: 0;
}

.quicklink-thumbnail {
	position: relative;
	overflow: hidden;
}

.quicklink-thumbnail a {
	border: none;
	padding: 0;
}

.quicklink-img {
	position: relative;
	line-height: 0;
}

.quicklink-overlay a {
	display: none;
	background: rgba(0,0,0,0.8) url(img/ql-arr.png) no-repeat center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
	text-align: center;
}

.quicklink-thumbnail:hover .quicklink-overlay a {
	display: block !important;
	cursor: pointer;
}

p.more a {
	background: url(img/rarr.png) no-repeat left center;
	padding: 0.5em 0 0.5em 2.25em;
}

/* News */

#page-content .post {
	border-bottom: 1px solid #0b1e38;
	margin-bottom: 1em;
	padding-bottom: 0.2em;
}

#page-content .post h3 {
	margin-top: 0;
	border: none;
	clear: none;
	margin: 0 0 0.4em;
	font-size: 1.25em;
	padding-top: 0;
}

.post h3 a,
.post .meta a {
	padding-bottom: 0;
	border: none;
}

.post h3 a:hover {
	border-bottom: 2px solid #cb1216;
}

.post img {
	float: right;
	margin: 0 0 1em 5%;
	width: 30%;
}

.post .meta {
	font-size: 0.875em;
	opacity: 0.6;
	margin-top: 0;
}

.social4i {
	margin: 2em 0 1em;
}

.s4plusone div {
	width: 61px !important;
}

.s4twitter {
	width: 78px !important;
}

body.single-project .s4twitter {
	width: 58px !important;
}

.page-id-42 #main {
	margin-bottom: 0;
}

/*
Contact us page
*/

.locations {
	margin-bottom: 1em;
}

.location {
	background: #000;
	padding: 1.5em;
	float: left;
	margin-right: 5%;
	width: 30%;
}

.location img {
	border: none !important;
	padding: 0;
	margin-bottom: 1em;
}

.location h3 + a {
	border: none;
	padding: 0;
}

strong {
	font-weight: bold;
}

.location h3 {
	font-size: 1.125em;
	font-weight: bold;
	margin: 0 0 0.55555555555556em;
}

.location p {
	margin-bottom: 0.71428571428571em;
}

.location address {
	margin: 0 0 0.625em;
}

.location p:last-child {
	margin-bottom: 0;
}

.location.last {
	margin-right: 0;
}

.contact-col1 {
	float: left;
	position: relative;
	width: 48%;
}

.contact-col2 {
	float: right;
	position: relative;
	width: 48%;	
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
	width: 95%;
	background-color: #e3efff;
	border: none;
	margin-top: 0.625em;
	font-size: 1em;
	padding: 0.625em 2.5%;
}

.wpcf7 textarea {
	width: 97.5%;
	background-color: #e3efff;
	border: none;
	margin-top: 0.625em;
	font-size: 1em;
	padding: 1em 2.5%;
}

#wpcf7-f491-p12-o1 input[type="submit"] {
	color: #FFF !important;
	padding: 0.75em 2em 0.75em 3.5em !important;
	border: none !important;
	display: inline-block !important;
	background: #cb1216 url(img/rarr.png) no-repeat 1em center !important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: background-color 0.2s ease;
	-moz-transition: background-color 0.2s ease;
	-ms-transition: background-color 0.2s ease;
	-o-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;	
}

#wpcf7-f491-p12-o1 input[type="submit"]:hover {
	background-color: #970e11 !important;
	cursor: pointer !important;
}

.wpcf7 .your-message {
	clear: both;
}

.find-us-online {
	margin: 0 0 2em 0;
	padding: 0;
}

.find-us-online li {
	list-style: none;
	padding: 0 0 0 1.5em;
	margin: 0 0 0.5em;
}

.find-us-online li.twitter {
	background: url(img/tw.png) left center no-repeat;
}

.find-us-online li.linkedin {
	background: url(img/li.png) left center no-repeat;
}

.find-us-online li.googleplus {
	background: url(img/gplus.png) left center no-repeat;
}

a[href$='.pdf'] { padding:10px 0 10px 40px; background:transparent url(img/pdf.png) no-repeat left center; font-size: 1.25em; border: none;
margin: 1.25em 0 1em	; display: block; color: #dde6f1; font-weight: bold; }

a[href$='.pdf']:hover { color: #FFF; }

body.home #colophon {
	margin-top: 0;
}

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

	.main-navigation a {
		padding: 0.5em;
	}

}

@media only screen and (max-width: 1210px) {
	
	.main-navigation li {
		font-size: 0.75em;
	}

}

@media only screen and (max-width: 1110px) {
	
	.site-branding {
		position: relative;
	}
	
	.main-navigation {
		padding: 0;
	}

	.main-navigation li {
		font-size: 0.875em;
	}

}

@media only screen and (max-width: 768px) {
	
	.wrapper {
		margin: 0 auto;
		width: 90%;
	}
	
	#contact_details {
		float: none;
	}
	
	#page-content {
		float: none;
		width: 100%;
		margin-bottom: 1em;
	}
	
	aside.aux {
		width: 100%;
		float: none;
	}
	
	#quicklinks .service .quicklink-thumbnail {
		margin-bottom: 0;
	}

	#contact_details ul {
		margin: 1em 0 0;
	}
	
	#contact_details li {
		margin: 0 0.5em 0 0;
	}
	
	.service {
		width: 100%;
		float: none;
		margin: 2em 0;
	}
	
	.get-in-touch p.cta {
		position: relative;
		right: auto;
		top: auto;
		margin-bottom: 1em;
	}
	
	.project-nav .prev,
	.project-nav .next {
		float: none;
		margin-bottom: 1em;
		width: 100%;
	}
	
	.main-navigation li {
		margin-bottom: 0.5em;
		float: none;
	}
	
	.main-navigation ul.children {
		display: none !important;
	}
	
	.main-navigation a {
		margin-right: 0;
	}
		
	#masthead {
		padding-bottom: 1em;
		border-bottom: 1px solid #17212d;
	}
	
	.main-navigation {
		padding: 0;
		background-color: #000;
	}
	
	.menu {
		background-color: #010913;
	}
	
	.site-branding {
		position: relative;
	}
	
	#main {
		padding: 1em 0 0;
		float: none;
		width: 100%;
	}
	
	aside#default {
		position: relative;
		width: 100%;
	}
	
	.project {
		float: none;
		margin: 0 0 1em;
		width: 100%;
	}
	
	.site-info {
		float: none;
	}
	
	.ld {
		float: none;
	}
	
	.location {
		float: none;
		width: 100%;
		margin: 0 0 1em;
	}
	
	.home #main {
		overflow: hidden;
	}
	
}