/*
Theme Name: codex
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: codex
Text Domain: codex
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.

codex is based on Underscores http://underscores.me/, (C) 2012-2015 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
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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-appearance: textfield;
	box-sizing: content-box;
}

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-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	line-height: 1.3;
}

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%;
}


/*--------------------------------------------------------------
# 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 {
}

/* 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. */
}

/*--------------------------------------------------------------
# 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;
}

.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%;
}

/* Search widget. */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
# 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: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	/*margin-bottom: 1.5em;*/
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
	
	margin: 0;
	overflow: hidden;
	border: 10px solid transparent;
}


.gallery-item img {
	height: 180px;
	width: auto;
	max-width: inherit;
	min-width: 100%;
}

@media (min-width: 768px)
{
	.gallery-item img {
		height: 280px;
	}

	.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-3 .gallery-item:nth-child(1) {
		max-width: 66.666666%;
	}

	.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;
}





/*--------------------------------------------------------------
--------------------------------------------------------------
## Codex
--------------------------------------------------------------
--------------------------------------------------------------*/

body
{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 1.6em;
	background-color: #ffffff;

}


footer.site-footer
{
	background-color: #222222;
	color: #c8c8c8;
	text-align: left;
	font-size: 16px;
	line-height: 1.9em;

	padding: 20px 0 80px 0;


}
footer.site-footer i.fa
{
	margin-right: 1em;
}
@media (min-width: 992px)
{
	footer.site-footer
	{
		font-size: 10px;
	}

	footer.site-footer i.fa {
		margin-right: 0.4em;
	}
}

@media (min-width: 1200px)
{
	footer.site-footer
	{
		font-size: 12px;
	}
	footer.site-footer i.fa
	{
		margin-right: 1em;
	}
}


footer.site-footer h5
{
	font-size: 1em;
	margin-top: 2em;
	margin-bottom: 1.5em;
	text-transform: uppercase;
	color: #999;
}
footer.site-footer h3
{
	font-size: 1em;
	color: #c8c8c8;
}


footer.site-footer hr
{
	background-color: #444;
}

footer.site-footer p
{
	margin: 0.5em 0;
}
footer.site-footer a
{
	color: #2378B5;
	text-decoration: none;

}
footer.site-footer a:hover,
footer.site-footer a:active,
footer.site-footer a:focus {
	color: #ffffff;
}

@media (max-width: 991px)
{
	footer.site-footer h5.column-spacer
	{
		margin: 0.1em;
		font-size: 0.7em;
	}
}

.footerLogos img
{
	max-height: 70px;
	max-width: 100%;
	margin: 15px 0;
}
@media (min-width: 445px)
{
	.footerLogos img
	{
		height: 70px;
		margin: 15px 30px 15px 0;
	}
}


.widget
{
	margin: 0;
}

h1 {
	font-size: 36px;
	margin-top: 110px;
	margin-bottom: 40px;
	/*text-transform: uppercase;*/
	font-weight: normal;
	color: #2378B5;

}

@media (min-width: 1200px)
{
	h1
	{
		margin-top: 40px;
	}
}

h1 a,
h1 a:visited,
h1 a:hover
{
	color: #2378B5;
}

.search-results h1.entry-title
{
	border-top: 2px solid rgba(255,255,255,1);
	font-size: 1.8em;
	margin: 0;
	padding-top: 0.5em;
}

.search-results .entry-summary
{
	margin-top: 0.5em;
}

h3
{
	color: #2378B5;
}


.entry-content
{
	font-family: Arial, sans-serif;
}

.gallery {

}

.featured
{
	margin: 5px;
}
.featured a
{
	display: block;
}

.codexGallery,
.codexGallery li
{
	margin: 0;
	padding: 0;
	list-style: none;
}
.codexGallery li a
{

	margin: 5px;
	display: block;
	height: 150px;
	overflow: hidden;
}



.page-template-contact-us #main a
{
	color: inherit;
}


.page-template-contact-us #main i.fa
{
	margin-right: 1em;
}

.page-spacer
{
	height: 40px;
}

.content-area
{
	background-color: #ffffff;
	padding-bottom: 40px;
}

.heroImage
{
	height: 630px;
	background-size: cover;
	background-position: center center;

}

.navbar-brand>img
{
	height: 90%;
	margin: 2% auto;
}



/*
-------------------------------------------------------
Child Pages
-------------------------------------------------------
*/

.childNav li,
.childNav a span,
.feature,
.hoverEffect
{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.childNav ul,
.childNav li
{
	list-style: none;
	margin: 0;
	padding: 0;
}
.childNav ul
{
	/*text-align: center;*/
}
.childNav li
{
	display: inline-block;
	width: 100%;
	vertical-align: top;
}

@media (min-width: 769px)
{
	.childNav li
	{
		width: 33.333333%;
		/*width: 25%;*/
	}
	.childNav.columns2 li
	{
		width: 50%;
	}
}/*
@media (min-width: 1921px)
{
	.childNav li
	{
		width: 25%;
	}
}

@media (min-width: 905px)
{
	.childNav li
	{
		width: 33.333333%;
	}
}
@media (min-width: 1355px)
{
	.childNav li
	{
		width: 25%;
	}
}
@media (min-width: 1800px)
{
	.childNav li
	{
		width: 20%;
	}
}
@media (min-width: 2240px)
{
	.childNav li
	{
		width: 16.666666%;
	}
}
*/
.childNav:after
{
	content: "";
	width:0;
	height: 0;
	clear: both;
}
.childNav a
{
	margin: 0 0 10px 0;
	display: block;
	text-decoration: none;
	color: #222;
	font-size: 16px;
	line-height: 0;

	position: relative;

}
@media (min-width: 769px)
{
	.childNav a
	{
		margin: 0 5px 10px 5px;
	}
}
.childNav a span
{
	display: block;
	line-height: 1.4em;
	padding: 10px 20px 20px 20px;
	/*background-color: rgba(255,255,255,1);*/
	position: relative;
	z-index: 2;
	text-align: center;

	font-size: 1.4em;
	font-weight: 300;

}
.childNav a:hover span
{


}

.hoverEffect
{
	text-align: center;
	color: white;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: rgba(255, 255, 255, 0.2);
	width: 100%;
	height: 100%;
	font-size: 60px;
	border-radius: 4px;

	display: flex;
	justify-content: center; /* align horizontal */
	align-items: center; /* align vertical */
}


.childNav a:hover .hoverEffect
{
	opacity: 1;
	padding-bottom: 50px;
}

.feature
{
	height:300px;
	background-position: center center;
	background-repeat:  no-repeat;
	background-size: cover;
	background-color: #dddddd;
}
/*
@media (min-width: 1024px)
{
	.feature
	{
		height: 140px;

	}
}
@media (min-width: 1400px)
{
	.feature
	{
		height: 140px;

	}
}*/


/*
-------------------------------------------------------
Nav bar
-------------------------------------------------------
*/
nav.navbar
{
	z-index: 10;
	margin: 0;
	font-weight: 400;
	font-family: 'Aclonica', sans-serif;
	text-transform: uppercase;
}

.navbar-brand
{
	
	/*height: 140px;
	width: 180px;*/
	height: 90px;

	margin-left: 30px;
	background-size: 100% auto;

	margin:0;
	max-width: 100%;
	width: 100%;
	/**/
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	
	color: rgba(255,255,255,0.8) !important;
	padding: 0 16px;
	line-height: 62px;
	font-size: 14px;
	
	
}
.site-header.sticky .navbar-brand
{
	
	color: rgba(255,255,255,1) !important;
}

@media (min-width:330px)
{
	.navbar-brand
	{
		font-size: 17px;
	}
}
@media (min-width:380px)
{
	.navbar-brand
	{
		font-size: 21px;
	}
}
@media (min-width:440px)
{
	.navbar-brand
	{
		font-size: 27px;
	}
}
@media (min-width:460px)
{
	.navbar-brand
	{
		font-size: 28px;
	}
}
@media (min-width:768px)
{
	.navbar-brand
	{
		
		position: absolute;
		width: 200px;
		
		height: 60px;
		line-height: 67px;
		font-size: 20px;
	}
}

@media (min-width:992px)
{
	.navbar-brand
	{
		font-size: 28px;
	}
}







/*
.navbar-default .navbar-toggle,
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover
{
	border-color: #ffffff;
	width: 44px;
	height: 44px;

	display: inline-block;
	vertical-align: top;
	margin: 8px 5px;
	background-color:#222;


}*/

.navbar-default .navbar-toggle,
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover
{
	border-color: transparent;
    width: 48%;
    height: 44px;
    display: inline-block;
    vertical-align: top;
    margin: 20px 0.5%;
    background-color: #2378B5;
    text-align: center;
	

}

@media (min-width: 768px)
{
	.navbar-default .navbar-toggle,
	.navbar-default .navbar-toggle:focus,
	.navbar-default .navbar-toggle:hover
	{
		display: none;
	}
}

.navbar-default .navbar-toggle
{
	float: none;
	
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover
{
	
}

@media (min-width: 768px)
{
	.navbar-default .navbar-toggle
	{
		display: none;
	}
}

@media (min-width: 600px)
{
	.navbar-default .navbar-toggle
	{
		float: right;
	}
}


.navbar-default .navbar-toggle .icon-bar
{
	background-color: #fff;
}

.navbar-toggle.phone {
	background: url(img/phone-icon-nav.png) center center no-repeat;
	background-color:#222;
	height: 44px;
	width: 44px;
	background-size: 27px;

}

.site-header
{
	background-color: rgb(35, 31, 32); 
	width:100%;
	z-index: 900;
	position: fixed;
	top:0;
	left:0;

	
}
@media (min-width: 768px)
{
	.site-header
	{
		background-color: #2378B5; 
		-webkit-transition: 0.3s 0.1s;
		-moz-transition: 0.3s 0.1s;
		-ms-transition: 0.3s 0.1s;
		transition: 0.3s 0.1s;
		
	}
	.site-header.sticky
	{
		background-color: #2378B5; 
	}
}

@media (min-width: 992px)
{

	.site-header
	{
	
	}
	.site-header.sticky
	{
		box-shadow: 0 0 10px rgba(0,0,0,0.2);
	}

}



.navbar-default
{
	background-color: transparent;
	border: none;
}

@media (min-width: 768px)
{

	.navbar-default
	{


	}

}

.navbar-header
{
	text-align: right;
	float: none;
}
@media (min-width: 992px)
{
	.navbar-header
	{
		text-align: left;
		float: left;
	}
}

.phoneText
{
	position: relative;
	text-align: right;
	height: 60px;
	line-height: 24px;
	display: none;
	z-index: 11;
}

@media (min-width: 768px)
{
	.phoneText
	{
		display: block;
	}
}

.phoneText a
{
	/*
	margin: 18px 0;
	padding: 0 0.5em;
	display: inline-block;
	color: #fff;
	font-size: 16px;
	background-color: rgba(0,0,0,0.7);
	border-radius: 3px;*/

	margin: 5px 0;
	padding: 0 1.5em;
	display: inline-block;
	color: #fff;
	font-size: 16px;
	background-color: rgba(0,0,0,0.7);
	border-radius: 3px;
	height: 50px;
	line-height: 50px;

}

.phoneLink,
.phoneLink:active,
.phoneLink:visited,
.phoneLink:hover
{
	color: #fff !important;
	font-size: 26px;
}



@media (min-width: 768px)
{

	.navbar-nav
	{
		float: right;
		
		-webkit-transition: 0.6s 0.1s;
		-moz-transition: 0.6s 0.1s;
		-ms-transition: 0.6s 0.1s;
		transition: 0.6s 0.1s;
		
	}

	.sticky .navbar-nav
	{
		margin-top: 0;
	}
}

@media (min-width: 992px)
{
	body.home .navbar-nav
	{
		margin-right: 0px;
	}
	
	
	.navbar-nav,
	body.home .sticky .navbar-nav
	{
		margin-right: 160px;
	}
}

.navbar-default .navbar-nav>li>a
{
	font-size: 30px;
	color: #ddd;
	padding: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

@media (min-width: 768px)
{
	.navbar-default .navbar-nav>li>a
	{
		font-size: 15px;
		border-bottom: none;
	}
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover
{

	color: #2378B5;
	background-color:transparent;
	/*
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	transition: 0.6s;*/
}

.sticky .navbar-default .navbar-nav>.active>a
{
	
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover
{
	color: #fff;

}

@media (min-width: 768px)
{
	
	.navbar-default .navbar-nav>.active>a,
	.navbar-default .navbar-nav>.active>a:focus,
	.navbar-default .navbar-nav>.active>a:hover
	{

		color: #fff;
	}

	
	.navbar-nav>li>a {
		padding-top: 24px;
		padding-bottom: 23px;
	}


}


@media (max-width:767px)
{
	#navbar
	{
		border-color: transparent;
		/*padding-left: 50px;*/
		
	}
	.navbar-nav
	{
		padding-top: 30px;
		padding-bottom: 50px;

	}
}



.dropdown-menu>li>a
{
	font-weight: 300;
}


/*
-------------------------------------------------------
Home Gallery
-------------------------------------------------------
*/
.homepageGalleryContainer
{
	background-color: #ffffff;
	padding: 50px 0;
}
.homepageGallery,
.homepageGallery li
{
	margin: 0;
	padding: 0;
	list-style: none;
	
}

.homepageGallery li
{
	height: 280px;
	width: 33.333333%;
	float: left;
	background-repeat: no-repeat;
	background-position: center center;
	outline: none;
	border: 10px solid white;
}
.homepageGallery li:nth-child(1)
{
	width: 66.666666%;
}

/*
.homepageGallery li a
{
	display: block;
	height: 100%;
	width: 100%;
	background-color: #e99d3a;
	opacity: 0;
	
	-webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    transition: 0.6s;
}
.homepageGallery li a:hover
{
	
	opacity: 0.2;
}*/

.slick-prev:before, .slick-next:before
{
	color: #aaa;
	font-family: FontAwesome;
}
.slick-next:before
{
	content: "\f054";
}
.slick-prev:before
{
	content: "\f053";
}


/*
////////////////////////////////////////////////////
Media Links
////////////////////////////////////////////////////
*/
/*
a[href$=".pdf"]
{
	display: inline-block;
	padding: 0.5em 0.7em;
	background-color: #F8971D;
	color: #fff;
	border-radius: 3px;
	font-size: 18px;
	font-weight: 300;

}

a[href$=".pdf"]:before
{
	content: "\f019";
	font-family: FontAwesome;
	margin-right: 0.5em;
}*/


/*
////////////////////////////////////////////////////
Homepage
////////////////////////////////////////////////////
*/

.entry-title
{
	color: #666;
	font-family: 'Aclonica', sans-serif;
	font-weight: 900;
	font-size: 2em;
	line-height: 1em;
	text-transform: uppercase;
	text-align:  center;
	/*background-color: #222;*/
	margin: 0;
	padding: 130px 0 50px 0;
	
}
.entry-title:after
{
	content: "";
	display: block;
	width: 200px;
	height: 5px;
	background-color: #2378B5;
	margin: 50px auto 0;
}


@media (min-width:992px)
{
	.entry-title
	{
		font-size: 4em;
	}
}

.homeContent
{
	margin: 0;
	position: absolute;
	top:0;
	left: 5%;
	width: 90%;
	height: 100px;
	text-align: center;
	
	color: white;
	
	
	line-height: 1em;
	text-transform: uppercase;
	overflow: hidden;
}

.homeContent h1
{
	font-family: 'Aclonica', sans-serif;
	font-weight: 900;
	font-size: 2em;
	color: white;
	margin: 0 0 1em 0;
}

@media (min-width:992px)
{
	.homeContent
	{
		padding-top: 190px;
	}
	.homeContent h1
	{
		font-size: 4em;
	}
	.homeContent p
	{
		padding: 0 160px;
	}
}

.homeBoxes
{
	clear: both;
	padding: 30px 0;
	
}
.homeBoxes:after
{
	content: '';
	clear: both;
	display: block;
	height: 0;
	width: 0;
}
.homeBoxes a
{
	display: block;

	margin: 20px auto;
	
}

@media (min-width: 400px)
{
	.homeBoxes a
	{
		width: 370px;

	}
}


@media (min-width: 768px)
{

	.homeBoxes a
	{
		float: left;
		padding: 0 10px;
		width: 33.333333%;
	}
}

.homeBoxes a .feature
{
	background-position: center center;
	background-repeat: no-repeat;
    background-size: cover;
}



/*
////////////////////////////////////////////////////
Homepage Scrolling Logos
////////////////////////////////////////////////////
*/

.homeCarousel ul,
.homeCarousel li
{
	margin: 0;
	padding: 0;
	list-style: none;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.homeCarousel li
{
	width: 20%;
	position: absolute;

	background-repeat: no-repeat;
	background-position: center center;
	background-size: 80%;



}

/*
////////////////////////////////////////////////////
Google Map on Contact Page
////////////////////////////////////////////////////
*/

.googleMap
{
	width:100%;
	height: 600px;
	z-index: 5;
	margin-bottom: 30px;
}
.googleMapSpacer
{
	height: 490px;
}

/*
////////////////////////////////////////////////////
Content Tables
////////////////////////////////////////////////////
*/

.site-main table.review td
{
	width: 60%;
	position: relative;
	vertical-align: middle;
}
.site-main table.review td:last-of-type
{
	width: 40%;
	text-align: center;
}

.site-main table.review td .rating,
.site-main table.review td .background
{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: -1;

}
.site-main table.review td .rating
{
	border-right: 1px solid #ddd;
	border-left: 3px solid #fff;
}
.site-main table.review td .background
{
	background-color: #f4f4f4;
	z-index: -2;
}

/*
////////////////////////////////////////////////////
Video
////////////////////////////////////////////////////
*/

.videoContainer
{
	background-color: #333;
	position: relative;
	line-height: 0;
	height: 630px;
	overflow: hidden;
	display: none;
}

@media (min-width: 768px)
{

	.videoContainer
	{
		display: block;

	}
}
.videoContainer video
{
	width: 100%;
}
.videoContainer .downArrow
{
	position: absolute;
	bottom: 0;
	color: rgba(255,255,255,0.5);
	background-color: rgba(0,0,0,0);
	text-align: center;
	padding: 30px;
	font-size: 30px;
	width: 100%;

	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	transition: 0.6s;
}

.videoContainer .downArrow:hover
{
	font-size: 40px;
	color: rgba(255,255,255,1);
	background-color: rgba(0,0,0,0.5);
	cursor: pointer;
}

#homeVideo
{
	display: block;
	width: auto;
	height: auto;
	min-width: 101%;
	position: absolute;
}
/*--------------------------------------------------------------
## Lollypops - home Services Nav
--------------------------------------------------------------*/

.homepageText
{
	font-size: 2em;
	line-height: 1.3em;
	font-weight: 300;
	margin: 40px 0;
	text-align: center;
}
.homepageText p
{
margin-bottom: inherit;
}


.homeServicesNav
{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 20px 0;
	margin-bottom: 30px;
}

@media (min-width: 768px)
{
	.homeServicesNav
	{
		padding: 0;
	}
}

.homeServicesNav ul,
.homeServicesNav li
{
	margin: 0;
	padding: 0;
	list-style: none;
}

.homeServicesNav ul
{
	width: 100%;
}

.homeServicesNav li
{
	display: block;
	height: 180px;

}
@media (min-width: 768px)
{
	.homeServicesNav li
	{
		float: left;
		height: 180px;
		width: 23%;
		margin: 1%;

	}
}
.homeServicesNav li:hover
{
	z-index: 10;
}



.homeServicesNav li a
{
	height: 100%;
	width: 100%;
	display: block;
	text-align: center;
	color: #222;
	padding: 20px;
	z-index: 1;
	background-color: #fff;
	border-radius: 20px;

	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	transition: 0.6s;

}
.homeServicesNav li a:hover
{
	text-decoration: none;
	z-index: 10;
	background-color: rgba(255,255,255,1);
}

.homeServicesNav li .title
{
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 10px;
}
.homeServicesNav li .brief
{
	font-size: 14px;
	font-weight: 300;
}


@media (min-width: 768px)
{

}



.homeServicesNav .icon
{
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	transition: 0.6s;

	font-size: 40px;
	height: 55px;

	color: #F5B140;
}
.homeServicesNav li a:hover .icon
{
	color: #2378B5;
}
.homeServicesNav .icon.loading
{
	opacity: 0;
}


.featuredPost
{
	position: relative;
	margin: 0 0 30px 0;
	display: block;
	
}


.featuredPost .postContent
{
	background-color: rgba(0,0,0,0.1);
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	padding: 15px;
}

.featuredPost .frame
{
	
	-webkit-transition: 0.6s;
	-moz-transition: 0.6s;
	-ms-transition: 0.6s;
	transition: 0.6s;

}
@media (min-width: 768px)
{
	.featuredPost:hover .frame
	{
		

		/*box-shadow: 0px 10px 10px rgba(0,0,0,0.4);*/
	}
	
	.featuredPost .frame .postContent
	{

		-webkit-transition: 0.6s 0.1s;
		-moz-transition: 0.6s 0.1s;
		-ms-transition: 0.6s 0.1s;
		transition: 0.6s 0.1s;
	}
	
	.featuredPost:hover .frame .postContent
	{
		
	}
}





.featuredPost .postContent h3
{
	font-family: 'Roboto', sans-serif;
	margin: 0;
	font-size: 1.1em;
	font-weight: 700;
	text-transform: uppercase;
	color: #222;
	padding: 0.5em;
}

.featuredPost,
.featuredPost:hover,
.featuredPost:visited
{
	text-decoration: none;
	color: inherit;
	font-size: 12px;
    text-align: center;
}


.clear
{
	float: none !important;
	height: 0 !important;
	width: 0 !important;
	clear: both !important;
}


.section-title
{
	text-align: center;
	border: 0;
	overflow: hidden;
	margin: 60px auto 30px;
	max-width: 1130px;
	text-transform: uppercase;
	font-weight: bold;
}

.section-title span
{
	display: inline-block;
	position: relative;
	margin-bottom: -3px;
	padding: 0 15px;
	border: 0;
}
.section-title :before,
.section-title :after
{
	content: ' ';
	display: block;
	height: 0;
	border-bottom: 3px solid #ccc;
	width: 1000px;
	position: absolute;
	top: 50%;
}

.section-title :before
{
	right: -1010px;
}
.section-title :after
{
	left: -1010px;
}


.getaQuote
{
	text-align: center;
	font-size: 28px;
	font-weight: 300;
	padding: 60px 0 54px;
	background-color: #eee;

}
.getaQuote span
{
	line-height: 1.5em;
	display: block;
}
.getaQuote a
{
	margin-top: 30px;
	vertical-align: middle;
}

@media (min-width: 700px )
{
	.getaQuote span
	{
		display: inline;
	}
	.getaQuote a
	{
		margin-top: 0;
		margin-left: 30px;
		margin-bottom: 3px;
	}
}



/*
-------------------------------------------------------
Contact Form
-------------------------------------------------------
*/


.gfield_label
{
	font-weight: 300;
}
.gfield_required
{
	color: transparent !important;
	font-size: 1em;
}
.gfield_required:after
{
	content: "(Required)";
	color: #404040;

}

.gform_heading
{
	margin-top: 30px;
}
.gform_footer
{

	margin-bottom: 30px;
}

.gform_title
{
	font-size: 30px;
	font-weight: 300;
}
/*
.gform_title:after
{
	content: "";
	background-color: #F5B140;
	height: 3px;
	width: 70px;
	display: block;
	margin: 15px auto;
}*/
.gform_description
{
	font-size: 21px;
}


.contactOnPage .contactForm
{

	background-color: #fcfcfc;
}


.contactForm
{
	padding: 20px;
}
.contactForm h3
{
	margin: 0 0 0.5em 0;
}

.ginput_container input, .ginput_container select, .ginput_container textarea
{
	border-radius: 0;

}
.ginput_container textarea
{
	height: 100px;
}
/*

#gform_fields_1 li:nth-child(-n+4)
{
	width: 48%;
	float: left;
}
#gform_fields_1 li:nth-child(1),
#gform_fields_1 li:nth-child(3)
{
	margin-right: 2%;
}
#gform_fields_1 li:nth-child(2),
#gform_fields_1 li:nth-child(4)
{
	margin-left: 2%;
}
*/
#gform_submit_button_1,
#gform_submit_button_2
{
	padding: 0.8em 1.8em;
	text-transform: uppercase;
	background-color: #222;
	border-color: transparent;
	border-radius: 0;
	
}

.gform_wrapper li
{
	margin-top: 15px;
}

.page-template-contact-us .getaQuote
{
	display: none;
}


/* ------------------------------  */

.headerSpacer
{
	height: 570px;
}

.homeSlider,
.footerSlider
{
	overflow: hidden;
	
}
.homeSlider
{
	margin-top: 174px;
}
@media (min-width:768px)
{
	.homeSlider
	{
		margin-top: 0px;
	}
}


.metaslider .flexslider
{
	margin: 0 !important;
}
.flex-control-nav
{
	bottom: 30px !important;
	z-index: 100;
}

.flex-control-paging li a
{
	background: rgba(255,255,255,0.8) !important;
	box-shadow: inset 0 0 3px rgba(255,255,255,0.3) !important;
}
.flex-control-paging li a.flex-active
{
	background: rgba(255,255,255,1) !important;
}

/*
----------------------------------------------------
*/

.formframecontainer
{
	position: fixed;
	top:0;
	width: 100%;
	height: 100%;
	background-color: #2378B5;
	z-index: 1200;
	padding: 40px 40px 20px 40px;
	color: #fff;
	visibility: hidden;
	box-shadow: 0 0 20px rgba(0,0,0,0.4);
	
	-webkit-transition: 0.6s 0s;
	-moz-transition: 0.6s 0s;
	-ms-transition: 0.6s 0s;
	transition: 0.6s 0s;
	
}

.formframecontainer .gfield_required:after
{
	color: #fff;
}

.formframecontainer.closed
{
	top:100%;
}
.formframecontainer.open
{
	visibility: visible;
	overflow-y: scroll;
}
@media (min-width:768px)
{
	.formframecontainer
	{
		top: 5%;
		right: 0;
		left: 0;
		width: 95%;
		height: auto;
		max-width: 615px;
		max-height: 95%;
		margin: 0 auto;
	}
	.formframecontainer.open
	{
		overflow-y: auto;
	}
}

.formframe
{
	border: none;
}

@media (max-width:767px)
{
	.formframe
	{
		border: none;
		height: 100%;
		width: 205px;
		margin: 0 auto;
		display: block;
	}

}

.formframecontainer h4
{
	color: white;
	margin: 20px 0 10px 0;
	text-align: center;
	font-size: 1.8em;
	font-family: 'Aclonica', sans-serif;
	text-transform: uppercase;
}
@media (min-width:768px)
{
	.formframecontainer h4
	{
		font-size: 3em;
	}
}
.formframecontainer h4 i
{
	margin-left: 0.4em;
}

.openRegister
{
	font-size: 1.5em;
	color: white;
	background-color: #2378B5;
	position: fixed;
	bottom:0;
	right:0;
	height: 45px;
	line-height: 45px;
	width: 100%;
	text-align: center;

	padding: 0;
	font-weight: bolder;
	cursor: pointer;
	
	z-index: 500;
}
.openRegisterHome
{
	display: none;
}

@media (min-width:992px)
{
	
	
	.openRegister
	{
		bottom:auto;
		top:10px;
		
		position: absolute;
		width: auto;
		padding: 0 10px;
		font-size: 1em;
		border-radius: 5px;
		border: 1px solid;
		border-color: rgba(255,255,255,.4) rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(255,255,255,.3);
		
		-webkit-transition:  0.3s;
		-moz-transition:  0.3s;
		-ms-transition:  0.3s;
		transition:  0.3s;
		
	}
	
	.sticky .openRegister
	{
		color: #2378B5;
		background-color: white;
		

		-webkit-transition:  0.3s 0.6s;
		-moz-transition:  0.3s 0.6s;
		-ms-transition:  0.3s 0.6s;
		transition:  0.3s 0.6s;

	}
	
	body.home .openRegister
	{
		top:-45px;
		
	}
	
	body.home .sticky .openRegister
	{
		top:10px;
	}
	
	.openRegisterHome
	{
		cursor: pointer;
		font-size: 1em;
		position: static;
		display: inline-block;
		font-family: 'Aclonica', sans-serif;
		background-color: #2378B5;
		
		height: 35px;
		line-height: 35px;
		width: auto;
		padding: 0 13px;
		
		border-radius: 5px;
		border: 1px solid;
		border-color: rgba(255,255,255,.4) rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(255,255,255,.3);
		
	}

	
}

.formframecontainer .gform_wrapper .gfield_error .gfield_label
{
	color: yellow;
}




.openRegister i
{
	margin-right: 0.4em;
}

.closeRegister
{
	position: absolute;
	top: 0;
	right: 0;
	color: white;
	cursor: pointer;
	font-size: 3em;
	padding: 0;
	height: 1.5em;
	width: 1.5em;
	
	line-height: 1.4em;
	text-align: center;
	border-radius: 1em;
	border: 0.1em solid transparent;
}
@media (min-width:768px)
{
	.closeRegister
	{
		top: 0.2em;
		right: 0.2em;

		font-size: 2em;
		border-color: #2378B5;
		
	}
}

.closeRegister:hover
{
	background: black;
}

.column2
{
	/*margin-top: 40px;*/
}


.metaslider
{
	max-width: 100% !important;
}

.codexFeatureBox
{
	
	
	
	text-align: center;
}

.codexFeatureBox h3
{
	font-size: 1.1em;
	text-transform: uppercase;
}
.codexFeatureBox p
{
	font-size: 0.9em;

}
.codexFeatureBox.hasLink:hover
{
	
}
.codexFeatureBox a,
.codexFeatureBox .nolink
{
	display: block;
	color: inherit;
	padding: 10px 40px;
	margin: 50px 10px 10px 10px;
	background-color: #eeeeee;
}
.codexFeatureBox a:hover,
.codexFeatureBox a:visited
{
	text-decoration: none;
	color: inherit;
}
@media (min-width:768px)
{
	.codexFeatureBox a,
	.codexFeatureBox .nolink
	{

		height: 350px;
	}
}
@media (min-width:992px)
{
	.codexFeatureBox a,
	.codexFeatureBox .nolink
	{

		height: 300px;
	}
}

@media (min-width:1200px)
{
	.codexFeatureBox a,
	.codexFeatureBox .nolink
	{

		height: 260px;
	}
}


.codexFeatureBox .icon
{
	font-size: 4em;
	color: #ffffff;
	margin: -0.8em auto 30px;
	background-color: #2378B5;
	border-radius: 50%;
	height: 1.4em;
	width: 1.4em;
	line-height: 1.45em;
	
}

.codexFeatureBox .readMore
{
	color: #2378B5;
	cursor: pointer;
	font-size: 1em;
	position: static;
	display: inline-block;
	font-family: 'Aclonica', sans-serif;
	background-color: #ffffff;

	height: 35px;
	line-height: 35px;
	width: auto;
	padding: 0 13px;

	border-radius: 5px;
	border: 1px solid;
	border-color: rgba(255,255,255,.4) rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(255,255,255,.3);
	
	-webkit-transition:  0.3s;
	-moz-transition:  0.3s;
	-ms-transition:  0.3s;
	transition:  0.3s;
	
}
.codexFeatureBox:hover .readMore
{
	background-color: #2378B5;
	color: #ffffff;
}

@media (min-width:768px)
{
	.codexFeatureBox
	{
		display: inline-block;
		vertical-align: top;
		width:33.333333%;
		
		position: relative;
	}
	
	
	.codexFeatureBox .readMore
	{
		position: absolute;
		bottom: 30px;
		display: block;
		margin: 0 auto;
		left: 0;
		right: 0;
		width: 170px;
	}
}


.codexJasonBar
{
	text-align: center;
	font-size: 1.9em;
	padding: 30px 0;
	background-color: #1c6498;
	color:#fff;
	margin-bottom: 20px;
		text-transform: uppercase;
	
}