/*
Theme Name: MIM
Theme URI: http://madicarusmedia.com/
Description: Mad Icarus Media Theme
Author: Mad Icarus Media Team
Author URI: http://madicarusmedia.com/
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: mim
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.

MIM 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
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Responsive Grid
# Icons
# Media Queries
--------------------------------------------------------------*/

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

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

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

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

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

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

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

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

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"] {
	padding: 3px;
}

textarea {
	padding-left: 3px;
	width: 100%;
}

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

a:visited {
	color: purple;
}

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

a:focus {
	outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.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;
	text-decoration: none;
}

.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 {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

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

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

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

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

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

/*--------------------------------------------------------------
## Responsive Grid
--------------------------------------------------------------*/

.span1, .span10, .span11, .span12, .span2, .span3, .span4, .span5, .span6, .span7, .span8, .span9 {
margin: 0;
padding: 0;
float: left;
display: block;
}
.span12 {width: 100%}
.span11 {width: 91.666666666666666666666666666664%}
.span10 {width: 83.333333333333333333333333333331%}
.span9 {width: 74.999999999999999999999999999998%}
.span8 {width: 66.666666666666666666666666666665%}
.span7 {width: 58.333333333333333333333333333332%}
.span6 {width: 49.999999999999999999999999999999%}
.span5 {width: 41.666666666666666666666666666666%}
.span4 {width: 33.333333333333333333333333333333%}
.span3 {width: 25%}
.span2 {width: 16.666666666666666666666666666667%}
.span1 {width: 8.3333333333333333333333333333333%}
.container {
max-width: 1200px;
float: none;
margin: 0 auto;
width: 100%;
}
.row {
margin: 0;
position: relative;
clear: both;
}
img {max-width: 100%}

/*--------------------------------------------------------------
## Additional Forms
--------------------------------------------------------------*/
.question input{-webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; transition: all 0.3s ease-out;}
.question input[type="text"], .question textarea{outline: none; border: 1px solid #cccccc; border-radius: 3px; padding: 7px 10px; background: #f1f1f1; color: #333; margin: 0 0 4px 0; width: 100%; max-width: 600px;}
.question input[type="text"]:hover{background:#ccc;}
.question input[type="text"]:focus, .question input[type="text"]:active, .question textarea:focus, .question textarea:active{background: #bee6f6; color: #666;}
.question input[type="checkbox"]{outline: none; border: 1px solid #cccccc; border-radius: 3px; padding: 7px 10px; background: #f1f1f1; color: #968b7c; margin: 0 10px 4px 0;}
.question{margin: 15px 0 15px 0; padding: 0 0 0 5px; color: #666;}
label{display: block; color: #666; margin: 0 0 6px 0; padding: 0;}
.question .button{margin: 20px 0 0 0;}
.question input[type="submit"]{ margin: 20px 0; padding: 10px 10px; background: #db5407; color:#fff; cursor:pointer; outline:none; width: 300px; border-radius: 4px; font-family: 'Roboto Slab', serif; text-transform: uppercase; box-shadow: none; border: none; padding: 15px 0; font-size: 1em; }
.question input[type="submit"]:hover{background: #00a0c6; color: #fff; transition: background .3s ease-in-out;}
.question input[type="submit"]:active{background-color: #00a0c6; color: #fff; transition: background .3s ease-in-out;}
.required{color: #d70000; display: none;}
fieldset{margin: 0; color: red; border: red solid 1px; padding: 10px;}
legend{font-weight: bold;}
.error{color: red;}
.main_errors{display: none;}

/*--------------------------------------------------------------
## Icons
--------------------------------------------------------------*/
@charset "UTF-8";

@font-face {
  font-family: "mim-icon";
  src:url("font-icons/mim-icon.eot");
  src:url("font-icons/mim-icon.eot?#iefix") format("embedded-opentype"),
    url("font-icons/mim-icon.woff") format("woff"),
    url("font-icons/mim-icon.ttf") format("truetype"),
    url("font-icons/mim-icon.svg#mim-icon") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "mim-icon" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "mim-icon" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-three-bars:before {
  content: "a";
}
.icon-linkedin:before {
  content: "b";
}
.icon-linkedin-square:before {
  content: "c";
}
.icon-youtube-square:before {
  content: "d";
}
.icon-youtube:before {
  content: "e";
}
.icon-google-plus:before {
  content: "f";
}
.icon-google-plus-1:before {
  content: "g";
}
.icon-twitter:before {
  content: "i";
}
.icon-facebook:before {
  content: "j";
}
.icon-facebook-square:before {
  content: "k";
}
.icon-call-phone:before {
  content: "l";
}
.icon-call-phone-square:before {
  content: "m";
}
.icon-instagram:before {
  content: "n";
}
.icon-close-delete:before {
  content: "o";
}
.icon-mobile:before {
  content: "q";
}
.icon-twitter-square:before {
  content: "p";
}
.icon-arrow-circle-left:before {
  content: "r";
}
.icon-arrow-circle-right:before {
  content: "s";
}
.icon-quote-left:before {
  content: "h";
}
.icon-quote-right:before {
  content: "t";
}
.icon-pinterest:before {
  content: "u";
}
.icon-pinterest-square:before {
  content: "v";
}
.icon-plate-and-leaves:before {
  content: "w";
}
.icon-arrow-circle-down:before {
  content: "x";
}

/*--------------------------------------------------------------
## Website Specific Styles
--------------------------------------------------------------*/
body {
margin: 0;
padding: 0;
border: none;
font-family: 'Roboto', sans-serif;
color: #333;
width: 100%;
line-height: 1.5;
font-size: 16px;
}
a {
color: #2aabe4;
text-decoration: none;
outline: 0;
border: 0;
background: none;
}
a:active, a:focus, a:hover {
color:#333;
transition: color .2s ease-in-out;
}
a:focus {
	outline: none;
	outline: none;
}
.btn a{
	background: #db5407;
	display: block;
	padding: 8px;
	text-align: center;
	color: #fff;
	font-size: 1em;
	font-family: 'Roboto Slab', serif;
	border-radius: 4px;
	max-width: 250px;
	margin-left: auto;
	margin-right: auto;
	transition: background .2s ease-in-out;
}
.btn a:hover{
	background: #00a0c6;
	color: #fff;
}
h1,h2,h3,h4,h5{
	font-family: 'Roboto Slab', serif;
}

	#notification{
		width: 100%;
		background: #1c3c44;
		color: #fff;
		padding: 20px 0;
		text-transform: uppercase;
	}
		#notification .notification-text p{
			margin: 0;
			float: right;
		}
		#notification .notification-text p span{
			float: left;
			padding: 8px 0 0 0;
			margin-right: 50px;
		}
			#notification .notification-text p span:last-child{
				margin-right: 0;
			}
		
			#notification .notification-text p span.btn{
				padding: 0;
			}
				#notification .notification-text p span.btn a{
					text-transform: capitalize;
					margin: 0;
					border: solid 1px #fff;
					background: none;
					padding: 8px 25px;
					border-radius: 0;
					max-width: 250px;
					margin-left: auto;
					margin-right: auto;
					font-size: 0.85em;
					transition: background .2s ease-in-out;
				}
					#notification .notification-text p span.btn a:hover{
						background: #00a0c6;
						color: #fff;
					}
#header-wrapper{
	background: url(images/hero-bg.jpg) no-repeat center;
	background-size: cover;
}
#header{
	background: url(images/header-bg.png) repeat-x top center;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;   
}
	#header #navigation{
		height: 45px;
		display: block;
	}
	#header #phone{
		text-align: right;
		padding-top: 15px;
	}
		#header #phone a{
			color: #222;
			font-size: 1.25em;
			font-family: 'Roboto Slab', serif;
		}
		#header #phone a:hover{
			color: #db5407;
		}
		#header #mobile-menu-button{
			display: none;
		}
			#header #mobile-menu-button a{
				display: block;
				padding: 11px 30px 11px 30px;
				background: #da9a39;
				text-transform: uppercase;
				color: #fff;
				float: right;
				font-size: 0.9em;
			}
				#header #mobile-menu-button a:hover{
					background: #db5407;
					transition: background .2s ease-in-out;
				}
				#header #mobile-menu-button a span{
					vertical-align: middle;
				}
		#mobile-menu{
			display: none;
			position: absolute;
			top: 47px;
			right: 0;
			background: #db5407;
			opacity: 0;
		}
			.page-template-home-page #mobile-menu{top: 194px;}
			
			#mobile-menu #menu-main-menu-1{
				list-style: none;
				margin: 0;
				padding: 10px 0;
			}
				#mobile-menu #menu-main-menu-1 li{
					margin: 0;
					width: 100%;
					padding: 0 20px;
				}
					#mobile-menu #menu-main-menu-1 li .sub-menu{
						list-style: none;
						margin: 0;
						padding: 0;
						border: solid #da9a39;
						border-width: 1px 0;
						padding: 10px 0;
					}
						#mobile-menu #menu-main-menu-1 li .sub-menu a{
							padding: 5px 10px;
							color: #ffffff;
						}
				#mobile-menu #menu-main-menu-1 a{
					color: #fff;
					padding: 10px;
					display: block;
				}
					#mobile-menu #menu-main-menu-1 a:hover{
						background: #da9a39;
						transition: background .2s ease-in-out;
					}

		#header .nav{
			position: relative;
		}
		#header #menu-main-menu{
			list-style: none;
			margin: 0;
			padding: 0;
			float: right;
		}
			#header #menu-main-menu li{
			float: left;
			margin: 0;
			padding: 0;
			position: relative;
			}
				#header #menu-main-menu li a{
					padding: 10px 10px 11px 10px;
					display: block;
					color: #fff;
				}
				#header #menu-main-menu li a:hover,
				#header #menu-main-menu li:hover,
				#header #menu-main-menu li:last-child a:hover{
					background: #db5407;
				}
				#header #menu-main-menu li:first-child a{
					background: #db5407;
				}
				#header #menu-main-menu li:last-child a{
					background: #da9a39;
				}
				#header #menu-main-menu .sub-menu li:first-child a,
				#header #menu-main-menu .sub-menu li:last-child a{
					background: #db5407;
				}
		#header #menu-main-menu .sub-menu{
			left: -3000px;
			position: absolute;
			z-index: 100;
			background: #db5407;
			margin: 0;
			padding: 10px;
			list-style: none;
			min-width: 275px;
		}
			#header #menu-main-menu .menu-item-has-children .sub-menu li{
				margin: 0;
				float: none;
			}
			#header #menu-main-menu .menu-item-has-children:hover .sub-menu{
				left: 0;
			}
				#header #menu-main-menu .sub-menu li a:hover{
					background: #da9a39;
					transition: background .2s ease-in-out;
				}
				
				
#header-wrapper-interior{
	background: url(images/bg-interior-hero.jpg) no-repeat top center;
	background-size: cover;
}				
				
#hero{
	padding: 100px 0;
}
	#hero .main-message{
		background-color: rgba(255,255,255,0.7);
		padding: 20px;
		border-radius: 8px;
		max-width: 750px;
		margin: 0 auto;
		text-align: center;
	}
		#hero .main-message h1{
			color: #00a0c6;
			font-size: 2.25em;
			font-weight: normal;
			margin: 0;
			padding: 0;
		}
		#hero .main-message p{
			font-size: 1.25em;
			color: #222;
			margin: 0;
			padding: 0;
		}
#arrow{
	background: url(images/section-arrow.png) no-repeat bottom center;
	height: 42px;
}
	#arrow img{
		vertical-align: bottom;
	}
#good-ideas-for-the-family{
	background: #da9a39;
	padding: 30px 0 40px 0;
	text-align: center;
}
	#good-ideas-for-the-family .headline-icon{
		margin: 0 auto;
		padding: 0;
	}
	#good-ideas-for-the-family h3{
		color: #fff;
		font-size: 1.5em;
		font-weight: normal;
		margin: 0;
		padding: 0;
	}
	#good-ideas-for-the-family p{
		color: #fff;
		max-width: 650px;
		margin: 20px auto;
	}
	#good-ideas-for-the-family .btn{
		margin-bottom: 0;
	}
		#good-ideas-for-the-family .btn a{
			text-transform: uppercase;
		}	
#services{
	background: #db5407;
	padding: 40px 0;
	color: #fff;
}
	#services .container{
		max-width: 800px;
		margin: 0 auto;
	}
	#services h3{
		font-size: 1.5em;
		margin: 0;
		padding: 0;
	}
	#services p{
		color: #fff;
	}
	#services ul{
		list-style: none;
		margin: 20px 0 0 0;
		padding: 0;
	}
		#services li{
			background: url(images/services-arrow.png) no-repeat top left;
			padding: 0 0 20px 60px;
			color: #222;
			margin: 10px 0;
		}
		#services li.last{
			background: url(images/services-arrow-last.png) no-repeat top left;
			padding: 0 0 0 60px;
		}
			#services li strong{
				font-family: 'Roboto Slab', serif;
				color: #fff;
			}
				#services li strong a{ 
					color: #fff;
					text-decoration: none;
				}
					#services li strong a:hover{ 
						color: #222;
					}
			#services a{
				color: #222;
				text-decoration: underline;
			}
				#services a:hover{
					text-decoration: none;
				}
#service-areas{
	background: #00a0c6;
	padding: 30px 0 40px 0;
	text-align: center;
}
	#service-areas h3{
		font-size: 1.5em;
		color: #fff;
		margin: 0;
		padding: 0;
		font-weight: normal;
	}
	#service-areas .underline{
		margin: 0 auto;
		padding: 0;
	}
		#service-areas .underline img{
			margin: 0;
			padding: 0;
			vertical-align: middle;
		}
		#service-areas .btn{
			margin-bottom: 0;
		}
		#service-areas .btn a{
			background: #da9a39;
			text-transform: uppercase;
		}
			#service-areas .btn a:hover{
				background: #db5407;
			}
	#service-areas p{
		color: #fff;
		max-width: 500px;
		margin: 20px auto;
	}
#about-us-and-careers{
	background: url(images/two-tone-gray-bg.png) repeat-y center center;
	padding: 40px 0;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;   
}
	#about-us-and-careers .inner-left{
		max-width: 500px;
		padding-right: 40px;
	}
	#about-us-and-careers .inner-right{
		max-width: 500px;
		padding-left: 40px;
	}
		#about-us-and-careers h3{
			color: #00a0c6;
			font-size: 1.5em;
			font-weight: normal;
			margin: 0;
			padding: 0;
		}
		#about-us-and-careers .underline{
			margin: 0;
			padding: 0;
		}
		#about-us-and-careers .btn a{
			background: none;
			color: #da9a39;
			border: solid 2px #da9a39;
			margin-left: 0;
			margin-right: 0;
			max-width: 150px;
		}
			#about-us-and-careers .btn a:hover{
				background: #da9a39;
				border: solid 2px #da9a39;
				color: #fff;
			}
/* START Main Content Area - Interior Pages*/

	#main-content .interior-content {
		padding: 0 60px 60px 0;
	}
		#main-content .interior-content h1{
			font-weight: normal;
			color: #00a0c6;
			font-size: 2.25em;
			margin-top: 0;
		}
		#main-content .interior-content h3 {
			font-size: 1.5em;
			color: #222;
		}
		#main-content .interior-content h4 {
			font-size: 1.3em;
			color: #222;
		}
		#main-content .interior-content .indent-list {
			margin: 10px 0 0 15px;
    		padding: 0;
		}
		#main-content .interior-content .ul-headline {
			list-style: none;
			font-weight: 700;
		}
			#main-content .interior-content .indent-list li {
				margin: 3px 0;
			}
	#main-content .sidebar {
		text-align: center;
		margin-top: 39px;
		font-family: 'Roboto Slab', serif;
		padding-bottom: 60px;
	}
		#main-content .sidebar img {
			border: 2px solid #db5407;
		}
/* END Main Content Area - Interior Pages*/
#footer{
	background: #00a0c6;
	padding: 40px 0;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	color: #fff;
}
	#footer .footer-col-left ul{
		list-style: none;
		margin: 0;
		padding: 0;
	}
		#footer .footer-col-left li{
			margin: 0;
			padding: 0 0 15px 0;
		}
			#footer .footer-col-left .sub-menu li{
				margin: 0;
				padding: 0;
			}
			#footer .footer-col-left a{
				color: #fff;
				font-family: 'Roboto Slab', serif;
			}
			#footer .footer-col-left .sub-menu a{
				font-family: 'Roboto', serif;
				/*
				color: #1c3c44;
				*/
				color: #fff;
			}
				#footer .footer-col-left a:hover{
					color: #db5407;
				}
	#footer .footer-col-right{
		text-align: right;
	}
		#footer .footer-col-right .col-headline{
			font-family: 'Roboto Slab', serif;
			margin-top: 0;
			padding-top: 0;
		}
		#footer .footer-col-right p{
			line-height: 1.25em;
		}
			#footer .footer-col-right p strong{
				font-family: 'Roboto Slab', serif;
			}
			#footer .footer-col-right p a, #footer .footer-col-right p .link-color{
				color: #1c3c44;
			}
				#footer .footer-col-right p a:hover{
					color: #db5407;
				}
				#footer .footer-col-right .social{
					line-height: 1.5em;
				}
				#footer .footer-col-right .social a:hover{
					line-height: 1.5em;
					opacity: 0.7;
				}
#copyright{
	background: #1c3c44;
	color: #fff;
	text-align: center;
	padding: 20px 0;
}
	#copyright a{
		color: #fff;
	}
		#copyright a:hover{
			color: #db5407;
		}
/*--------------------------------------------------------------
## Media Queries
--------------------------------------------------------------*/

@media only screen and (max-width:1320px) {
.container {width: 90% !important;}
}
@media only screen and (max-width:1281px) {
}
@media only screen and (max-width:1100px) {
}
@media only screen and (min-width:982px) {
#mobile-menu{display: none !important; opacity: 0 !important;}
}
@media only screen and (max-width:981px) {
#header #navigation{display: none;}
#header #mobile-menu-button{display: block;}
#notification .notification-text p span{margin-right: 20px;}
}
@media only screen and (max-width:767px) {
.span1, .span10, .span11, .span12, .span2, .span3, .span4, .span5, .span6, .span7, .span8, .span9 {width: 100%}
#header .span8 {width: 33.333333333333333333333333333333%}
#header .span4 {width: 66.666666666666666666666666666665%}
#about-us-and-careers{background: #dadada;}
#about-us-and-careers .inner-right{padding-left: 0;}
#main-content .interior-content {padding: 0;}
#main-content .interior-content h3, #main-content .interior-content h4 {font-size: 1em;}
#main-content .sidebar {text-align: left;}

#notification .notification-text p{text-align: center;}
#notification .notification-text p span{width: 100%; margin-right: 0;}
}
@media only screen and (max-width:581px) {
}
@media only screen and (max-width:480px) {
#header #mobile-menu-button a{padding: 11px;}
#header #phone a {font-size: 1em;}
#hero .main-message h1{font-size: 1.5em;}
#hero .main-message p{font-size: 1em;}
#footer .footer-col-right .col-headline{margin-top: 20px;}
#main-content .interior-content h1{font-size: 1.5em;}
}
@media only screen and (max-width:460px) {
}
@media only screen and (max-width:350px) {
}