/*
Theme Name: Your Web Layout
Theme URI: http: //yourweblayout.com/
Author: Design Services
Author URI: http: //yourweblayout.com/
Description: This site was built by Design Services. If you have any questions, please contact <a href="mailto: updates@yourweblayout.com">updates@yourweblayout.com</a>
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http: //www.gnu.org/licenses/gpl-2.0.html
Tags: responsive-layout

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.

Your Web Layout is based on Underscores http: //underscores.me/, (C) 2012-2014 Automattic, Inc.
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS: 
----------------------------------------------------------------
1.0 Bootstrap
	1.1 Adjustments

2.0	Underscores
	2.1 Elements
	2.2 Accessibility
	2.3 Alignments
	2.4 Clearings

3.0 Your Web Layout
	3.1 Typography
	3.2 Background
	
	3.3 Header
	3.4 Navigation
	3.5 Contentog
	3.6 Sidebar
	3.7 Footer
	3.8 Custom
	3.9 WooCommerce
	3.9.5 Blog

4.0 Media Queries
	4.1 xs
	4.2 sm
	4.3 md
	4.4 lg
--------------------------------------------------------------*/


/*--------------------------------------------------------------
1.0 Bootstrap
--------------------------------------------------------------*/


/*--------------------------------------------------------------
1.1 Adjustments
--------------------------------------------------------------*/


/* If they insist, disable responsiveness thusly
 * @link http: //getbootstrap.com/getting-started/#disable-responsive
 *
 * 1. Replace all col classes (col-lg, col-md, col-sm) with col-xs
 * 2. Remove all navbar collapsing and expanding behavior
 * 3. Uncomment css below to override container width
 */


/*
.container {
	width: 970 !important;
}
@media (min-width: 768px) {
	.container {
		width: 970px;
	}
}
@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}
@media (min-width: 1200px) {
	.container {
		width: 970px;
	}
}
*/


/*--------------------------------------------------------------
2.0	Underscores
--------------------------------------------------------------*/


/*--------------------------------------------------------------
2.1 Elements
--------------------------------------------------------------*/

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


/* Make sure elements fit their containers */

embed,
iframe,
object,
.wp-caption,
.widget select {
    max-width: 100%;
}


/* Required by WordPress theme check */

.sticky,
.bypostauthor,
.gallery-caption,
.wp-caption-text {}


/*--------------------------------------------------------------
2.2 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: 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 */
}


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


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


/*--------------------------------------------------------------
3.0 Your Web Layout
--------------------------------------------------------------*/


/* this removes the anchor tags around images and text when printing a webpage */

@media print {
    a[href]:after {
        content: "";
    }
}


/*--------------------------------------------------------------
3.1 Typography
--------------------------------------------------------------*/
body {
    color: #1b1b1b;
    font-family: "Open Sans", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-rendering: optimizeLegibility;
}
.home body {
	font-size: 24px;
	line-height: 30px;
}

h1,
h2,
h3,
h4 {
    color: #1b1b1b;
}

h1,
h2,
h3 {
    font-family: "Open Sans", sans-serif;
}

h1,
.h1 {
    font-size: 33px;
    font-weight: bold;
    line-height: 40px;
    margin: 40px 0;
    text-align: center;
}

h2 {
    font-size: 26px;
    line-height: 34px;
}

h3 {
    font-size: 22px;
    line-height: 30px;
}

h4 {
    font-size: 20px;
    line-height: 26px;
}

p {
    margin-bottom: 20px;
}

a {
	color: #ff0000;
    font-weight: bold;
}

a:hover,
a:focus {
    color: #ff0000;
}


/*this hides the dotted border that appears on menu items when active */

a:focus {
    outline: none;
}


/* this makes a double border with rounded corners on a button
a.button {
	background: #ebc86a;
	border: 2px solid #193450;
	border-radius: 10px;
	color: #193450;
	font-weight: 600;
	padding: 3px 10px;
	position: relative;
	z-index: 1;
}
a.button:before {
	content: " ";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #fff;
	border-radius: 8px;
} */

ul {
    padding-left: 20px;
}


/*This is used for sticky header along with .navbar-fixed-top in header file adjust height as needed
.site-content {
	padding-top: 238px;
}*/


/* sm */

@media (min-width: 768px) {
    /*This is used for sticky header along with .navbar-fixed-top in header file adjust height as needed
	.site-content {
		padding-top: 145px;
	}*/
}


/* md */

@media (min-width: 992px) {
    /*This is used for sticky header along with .navbar-fixed-top in header file adjust height as needed
	.site-content {
		padding-top: 149px;
	}*/
}


/* lg */

@media (min-width: 1200px) {
    /*This is used for sticky header along with .navbar-fixed-top in header file adjust height as needed
	.site-content	{
		padding-top: 148px;
	}*/
}


/*--------------------------------------------------------------
3.2 Background
--------------------------------------------------------------*/

body {
    background: #fff;
}

.site-header {
    background: transparent;
    position: relative;
    z-index: 2;
}

#site-navigation {
    background: #fff;
	border-bottom: 1px solid #1b1b1b;
    border-top: 1px solid #1b1b1b;
}

.header-section {
    background: url('images/HeaderAngleBG.jpg');
}

.site-content>.container {
    background: #fff;
}

.site-footer {
    background: url('images/FooterAngleBG.jpg');
	border-top: 1px solid #1b1b1b;
}


/* sm */

@media (min-width: 768px) {}


/* md */

@media (min-width: 992px) {}


/* lg */

@media (min-width: 1200px) {}


/*--------------------------------------------------------------
3.3 Header
--------------------------------------------------------------*/

#logo,
#contact-info,
.social {
    text-align: center;
}

#logo {
    font-size: 48px;
    font-weight: bold;
    line-height: 48px;
    margin-bottom: 40px;
    margin-top: 40px;
}

#logo a {
    color: #1b1b1b;
}

#logo a:hover {
    text-decoration: none;
}

#contact-info {
	font-size: 24px;
	font-weight: 600;
    margin-top: 30px;
	text-align: center;
}

#contact-info a,
#contact-info p {
    color: #ff0000;
}

#contact-info .fa-phone,
#contact-info .fa-envelope {
    color: #1b1b1b;
    margin-right: 5px;
}

blockquote {
	border-left: 5px solid #ff0000;
}


/* Header-Bar */

.header-bar {
    background: #ff0000;
    color: #fff;
    font-size: 24px;
    font-weight: semibold;
    height: 82px;
    padding: 5px 0;
}

.header-bar img {
    padding-bottom: 5px;
}

.header-bar span {
    padding-top: 5px;
}

.header-bar a {
    color: #fff;
}

.header-bar a:hover {
    text-decoration: none;
}

.header-bar span,
.header-bar {
    text-align: center;
}


/* sm */

@media (min-width: 768px) {
    #logo {
        text-align: left;
    }
    #contact-info,
    .social {
        text-align: right;
    }
    .header-bar span {
        float: right;
    }
    .header-bar {
		height: 45px;
        text-align: left;
    }
}


/* md */

@media (min-width: 992px) {}


/* lg */

@media (min-width: 1200px) {}


/*--------------------------------------------------------------
3.4 Navigation
--------------------------------------------------------------*/


/* Primary nav */

.navbar {
    border: none;
    border-radius: 0;
    min-height: 30px;
}

.navbar-default {
    margin-bottom: 0;
}

.navbar-default .navbar-nav {
    margin-left: -15px;
}

.navbar-default .navbar-nav>li>a {
    color: #1b1b1b;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 15px;
    text-transform: uppercase;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    background-color: transparent;
    color: #ff0000;
    text-decoration: none;
}

.navbar-nav .sub-arrow,
.navbar-nav .collapsible .sub-arrow {
    margin-left: 1px;
}


/* Secondary nav */

#secondary-nav .nav>li>a,
#secondary-nav .nav>li>a:hover,
#secondary-nav .nav>li>a:focus,
#secondary-nav .nav>li.active>a,
#secondary-nav .nav>li.active>a:hover,
#secondary-nav .nav>li.active>a:focus {
    background: transparent;
}

#secondary-nav .nav>li>a {
    color: #1b1b1b;
}

#secondary-nav .nav>li>a:hover,
#secondary-nav .nav>li>a:focus,
#secondary-nav .nav>li.active>a,
#secondary-nav .nav>li.active>a:hover,
#secondary-nav .nav>li.active>a:focus {
    color: #ff0000;
}

.nav-pills>li {
    float: none;
}


/* sm */

@media (min-width: 768px) {
    .navbar-default .navbar-nav>li>a {
        padding: 10px 15px;
    }
    .nav-pills>li {
        /*float: left;*/
    }
    /* next 2 rules center main navigation */
	.navbar .navbar-nav {
		display: inline-block;
		float: right;
	}	
	.navbar .navbar-collapse {
		padding-right: 0;
		text-align: right;
	}
	#site-navigation .container {
		padding-right: 0;
	}
}


/* md */

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        padding: 10px 20px;
    }
    /*makes header menu float right
	.navbar-default .navbar-nav {
		float: right;
	}
	.navbar-default .navbar-nav > li:last-child a {
		padding-right: 0;
	}*/
    /*makes footer menu float right
	#secondary-nav .nav-pills {
		float: right;
	}*/
}


/* use below to change the navbar collapse breakpoint for sites with a lot of items in the navigation
@media (max-width: 992px) {
	.navbar-header {
		float: none;
	}
	.navbar-left,
	.navbar-right {
		float: none !important;
	}
	.navbar-toggle {
		display: block;
	}
	.navbar-collapse {
		border-top: 1px solid transparent;
		box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
	}
	.navbar-fixed-top {
		border-width: 0 0 1px;
		top: 0;
	}
	.navbar-collapse.collapse {
		display: none!important;
	}
	.navbar-nav {
		float: none!important;
		margin-top: 7.5px;
	}
	.navbar-nav > li {
		float: none;
	}
	.navbar-nav > li > a {
		padding-bottom: 10px;
		padding-top: 10px;
	}
	.collapse.in{
		display: block !important;
		overflow-y: auto !important;
	}
	.dropdown-menu {
		box-shadow: none;
		border: none;
		float: none;
		position: relative;
	}
}*/


/* lg */

@media (min-width: 1200px) {
    .navbar-default .navbar-nav>li>a {
        padding: 10px 30px;
    }
}


/*-------------------------------------------------------------
		Hamburger Menu 
--------------------------------------------------------------*/


/*edit to length you need to remove vertical scroll on mobile view*/

.navbar-collapse {
    max-height: 600px;
}


/*styles for "Main Menu" text*/

.navbar-default .navbar-brand,
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #000;
}

.navbar-default .navbar-brand:hover {
    text-decoration: underline;
}

.navbar-default .navbar-brand:focus {
    text-decoration: none;
}


/*styles for hamburger toggle */

.navbar-toggle {
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    float: right;
    margin-bottom: 8px;
    margin-right: 15px;
    margin-top: 8px;
    padding: 9px 10px;
    position: relative;
}

.navbar-default .navbar-toggle {
    background-color: #fff;
    border-color: #ff0000;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #ff0000;
    border-color: #fff;
}

.navbar-toggle .icon-bar {
    border-radius: 1px;
    display: block;
    height: 2px;
    width: 22px;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #ff0000;
}

.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
    background-color: #fff;
}


/* Drop down menu */

.dropdown-menu {
    background-color: #fff;
    /*background-color: rgba(0, 0, 0, 0.75); adds transparent bg to drop-down navigation*/
    background-clip: padding-box;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    display: none;
    font-size: 16px;
    left: 0;
    list-style: none;
    margin: 2px 0 0;
    min-width: 160px;
    padding: 5px 0;
    position: absolute;
    top: 100%;
    z-index: 1000;
}

.dropdown-menu>li {}

.dropdown-menu>li>a {
    clear: both;
    color: #fff;
    display: block;
    font-weight: normal;
    line-height: 1.25em;
    padding: 3px 20px;
    white-space: nowrap;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    background-color: #ff0000;
    color: #fff;
    text-decoration: underline;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    background-color: #ff0000;
    color: #fff;
    outline: 0;
    text-decoration: none;
}

.navbar-default .navbar-nav .open .dropdown-menu>li>a,
.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus
/*,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, 
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, 
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus*/

{
    background-color: transparent;
    color: #fff;
}


/*This allows you to set the background color for the active sub-menu item when you mouse off it to click on it's sub-menu item*/

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
    background-color: #ff0000;
    border-color: #ff0000;
}

.site-header .caret {
    display: none;
}


/* sm */

@media (min-width: 768px) {}


/* md */

@media (min-width: 992px) {}


/* lg */

@media (min-width: 1200px) {}


/*--------------------------------------------------------------
3.5 Content
--------------------------------------------------------------*/

.entry-header {}

.home .entry-title {
    display: inherit;
}

.entry-title {
	display: none;
}

.entry-content {
	margin-top: 40px;
    padding-bottom: 25px;
}

.entry-content li {
    margin-bottom: 5px;
}

.entry-footer {}


/* sm */

@media (min-width: 768px) {}


/* md */

@media (min-width: 992px) {}


/* lg */

@media (min-width: 1200px) {}


/*--------------------------------------------------------------
3.6 Sidebar
--------------------------------------------------------------*/

.widget-area {}

.widget-title {}


/*--------------------------------------------------------------
3.7 Footer
--------------------------------------------------------------*/
.social-footer,
.footer-menu {
    margin-top: 30px;
    text-align: center;
}
.footer-logo {
	margin-bottom: 20px;
	margin-top: 20px;
}

.attribution {
    background-color: #ff0000;
    padding: 10px;
}
.attribution p,
.attribution a {
    font-size: 13px;
}

.attribution a {
    color: #1b1b1b;
}

.attribution p {
    color: #fff;
    margin-bottom: 0;
}

#footer-navigation {
    /*display: none;*/
}
.footer-menu {
    font-size: 16px;
    text-transform: uppercase;
}
.footer-menu a,
.social-footer a {
	color: #000;
}
.footer-menu a:hover,
.social-footer a:hover {
	color: #ff0000;
	text-decoration: none;
}
.footer-menu ul {
    list-style-type: none;
}

.social-footer {
	font-size: 13px;
	font-weight: 600;
}

.footer-logo {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}
.footer-logo h2 {
    font-size: 33px;
    line-height: 38px;
    font-weight: 600;
	margin-top: 5px;
    text-align: center;
}
.footer-logo a:hover {
    text-decoration: none;
}
.footer-area {
	margin: 20px 0;
}
/* sm */

@media (min-width: 768px) {
    .footer-logo,
    .footer-menu,
    .footer-logo h2 {
        text-align: left;
    }
    .social-footer {
        text-align: right;
    }
	.footer-logo h2 {
    font-size: 30px;
    line-height: 20px;
	}
	.footer-logo,
	.footer-menu {
		font-size: 14px;
	}
}


/* md */

@media (min-width: 992px) {
    /* Sticky footer - @link http: //mystrd.at/modern-clean-css-sticky-footer/ */
    html {
        min-height: 100%;
        position: relative;
    }
    body {
        margin: 0 0 200px;
        /* = .site-footer height */
    }
    .site-footer {
        bottom: 0;
        height: 200px;
        /* = body margin-bottom */
        left: 0;
        position: absolute;
        /* replace with position: fixed; to keep footer fixed to bottom of browser - see footer file too! */
        width: 100%;
    }
	.social-footer {
		font-size: 13px;
	}
	.footer-logo h2 {
		font-size: 33px;
		line-height: 38px;
	}
	.footer-logo,
	.footer-menu {
		font-size: 16px;
	}
}


/* lg */

@media (min-width: 1200px) {
	.social-footer {
		font-size: 16px;
	}
}


/*--------------------------------------------------------------
3.8 Custom
--------------------------------------------------------------*/

.leaderboard-image img {
    margin-bottom: 20px;
    width: 100%;
}

.edit-link {
    display: none;
}

iframe {
    border: 0;
}

.metaslider {
    /*box-shadow: 0 1px 10px #111;*/
    margin-bottom: 10px;
    /*margin-bottom: -125px;
	top: -125px;*/
}

.leaderboard-image {
    margin-bottom: 10px;
    /*margin-bottom: -125px;
	top: -125px;*/
}

.page-id-14 .ngg-albumoverview {
	display: inline-block !important;
	margin: 40px 20px;
	width: inherit;
}
.ngg-album-gallery-image-counter {
	display: none;
}
.ngg-album-compact h4 .ngg-album-desc {
	text-align: center;
}

/* Experience Section */
.experience {
    border-top: 1px solid #1b1b1b;
    margin-bottom: 40px;
}
.experience ul {
    list-style-image: url(images/house-roof.png);
    margin-left: 50px;
    padding: 15px 0;
}
.experience li {
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
}
.experience img {
    padding: 10px;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background: url(images/Rectangle-5.png);
    background-size: cover;
    border-top: 1px solid #1b1b1b;
}
.testimonials-slider {
    background: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 24px;
    margin: 30px 0;
    padding: 30px 20px;
    text-align: center;
}
.author {
    font-weight: bold;
    margin-top: -40px;
}
.testimonials-slider .h1 {
    margin-bottom: 20px;
}
.testimonials blockquote {
    border: none;
}


/* Hides Nivo Slider caption on cell phones */
.metaslider .theme-default .nivoSlider>.nivo-caption {
    background: transparent;
    bottom: 50px;
    display: none !important;
    left: 0;
    opacity: 1.0;
    padding: 5px 10px;
    position: absolute;
    text-align: center;
    width: 100%;
}


/* How to overwrite Nivo Slider if inside container and not full width
.container .metaslider .theme-default .nivoSlider {
	box-shadow: 0px 0px 5px #666;
	margin-bottom: 30px;
	margin-top: 20px;
}*/



.topbutton {
height:50px;
width:50px;
position:fixed;
right:5px;
bottom:25px;
z-index:1;
background-repeat:no-repeat;
display:none;
}

/* sm */
@media (min-width: 768px) {
    /*.metaslider .caption-wrap {
		background: rgba(116, 20, 48, 0.75);
		bottom: 0;
		color: white;
		display: block;
		font-size: 24px;
			left: 0;
		line-height: 1.4em;
		margin: 0;
		opacity: 0.7;
		position: absolute;
		text-align: center;
		text-transform: uppercase;
		width: 100%;
	}
	.site-content .metaslider .caption {
		background: rgba(116, 20, 48, 0.75);
		display:block;
		padding: 15px 10px;
	}*/
    /* Display Nivo Slider caption on sm/md/lg devices */
    .metaslider .theme-default .nivoSlider>.nivo-caption {
        display: block !important;
    }
    .experience ul {
        margin-left: 50px;
    }
    .experience li {
        font-size: 21px;
        line-height: 36px;
    }
}


/* md */

@media (min-width: 992px) {
    /*.metaslider .caption-wrap {
		font-size: 24px;
		line-height: 1.4em;
	}*/
}


/* lg */

@media (min-width: 1200px) {}


/*--------------------------------------------------------------
 Borders
--------------------------------------------------------------*/


/* centers paw image vertically and horizontally in front of the yellow border - next 2 rules 
.entry-title::after {
	background: rgba(0, 0, 0, 0) url(images/paw-divider-detail.jpg) no-repeat scroll center 0;
	bottom: -21px;
	content: " ";
	display: inline-block;
	height: 41px;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 44px;
}
.entry-title {
	border-bottom: 5px solid #e8bd4b;
	line-height: 40px;
	padding-bottom: 25px;
	position: relative;
	text-align: center;
}*/


/* code to center heading and wrap with double or triple stacked lines 
h1 {
	color:	#051125;
	font-family:	Helvetica, Arial, sans-serif;
	font-weight:	400;
}
.line {
	overflow: hidden;
	text-align: center;
}
.line:before {
	margin-left: -50%;
	right: 0.5em;
}
.line:after {
	margin-right: -50%;
	left: 0.5em;
}
.single-line:before,
.single-line:after {
	background-color: #19b9db;
	content: "";
	display: inline-block;
	height: 4px;
	position: relative;
	vertical-align: middle;
	width: 50%;
}
.double-line:before,
.double-line:after {
	border-top: 4px solid #19b9db;
	border-bottom: 4px solid #117f96;
	content: "";
	display: inline-block;
	position: relative;
	vertical-align: middle;
	width: 50%;
}
.triple-line:before,
.triple-line:after {
	background-color:	#094551;
	border-top: 4px solid #19b9db;
	border-bottom: 4px solid #117f96;
	content: "";
	display: inline-block;
	height: 4px;
	position: relative;
	vertical-align: middle;
	width: 50%;
}*/


/*--------------------------------------------------------------
3.9.5 Blog
--------------------------------------------------------------*/

.entry-meta {
    margin-bottom: 20px;
}

.updated {
    display: none;
}

.attachment-post-thumbnail {
    border: 0 solid #000;
    float: left;
    margin-bottom: 15px;
    margin-right: 20px;
    max-width: 265px;
}

.archive article,
.search article {
    clear: both;
    content: "";
    display: table;
}

a.moretag {
    display: block;
    margin-top: 20px;
    text-decoration: underline;
}

.entry-footer {
    font-size: 13px;
    font-style: italic;
}

.nav-links {
    display: block;
}

.nav-next,
.nav-previous {
    background: #ff0000;
    border-radius: 3px;
    margin: 10px 0 20px;
    padding: 5px 10px;
}

.nav-next {
    float: right;
}

.nav-previous {
    float: left;
}

.nav-next a,
.nav-previous a {
    color: #fff;
}

.search-form {
    margin-bottom: 20px;
    margin-top: 20px;
}


/* Alternate search bar for blog(need both rules below) */

.search-form input.search-submit {
    background-color: transparent;
    border: 0 solid #ff0000;
    border-radius: 0;
    color: #ff0000;
    font-family: FontAwesome;
    font-size: 16px;
    line-height: 25px;
    padding: 2px 10px 4px 10px;
}

input[type="search"] {
    border: 1px solid #ff0000;
    font-size: 16px;
    line-height: 29px;
    padding: 1px 0 1px 5px;
}


/* This places the "Leave a Reply" & "Comments" headings go below next/prev post instead of next to it */

#reply-title,
#comments {
    clear: both;
}


/* This places the label for the reply field of the comment box above the box instead of next to it */

.comment-form-comment label {
    display: block;
}

/* sm */

@media (min-width: 768px) {}


/* md */

@media (min-width: 992px) {}


/* lg */

@media (min-width: 1200px) {}

/*-------------------------------------------------------
Ninja Form 3.0.5
--------------------------------------------------------*/

.nf-form-title {
    display: none;
}

.nf-form-fields-required {
    /*display:none;*/
    margin-bottom: 15px;
}

.field-wrap .nf-field-label label {
    font-weight: 300;
}

.field-wrap input[type="submit"],
.field-wrap input[type="button"],
.field-wrap button {
    background: #ff0000;
    border: 0;
    border-radius: 3px;
    color: #fff;
    padding: 3px 15px;
}

.field-wrap:hover input[type="submit"],
.field-wrap:hover input[type="button"],
.field-wrap:hover button {
    background: #ff0000;
    color: #000;
}

.textarea-wrap textarea {
    max-height: 130px;
}


/* makes the forma have two columns
nf-field {
	display: inline;
	float: left;
	margin-left: 2%;
	width: 48%;
}*/


/*--------------------------------------------------------------
TablePress
---------------------------------------------------------------
.entry-content .tablepress {
	border: 1px solid #ddd;
	margin-bottom: 50px;
}
.entry-content .tablepress thead th {
	color: #fff;
	font-weight: 300;
}
.entry-content .tablepress thead th:nth-child(1) {
	background-color: #341534;
}
.entry-content .tablepress thead th:nth-child(2) {
	background-color: #512851;
}
.entry-content .tablepress thead th:nth-child(3) {
	background-color: #683d68;
}
.entry-content .tablepress thead th:nth-child(4) {
	background-color: #835683;
}
.entry-content .tablepress thead th:nth-child(5) {
	background-color: #9c6f9c;
}
.entry-content .tablepress thead th:nth-child(6) {
	background-color: #b38ab3;
}
.entry-content .tablepress tbody td, 
.entry-content .tablepress tfoot th {
	border-top: 0px solid #ddd;
	font-size: 14px;
}
.entry-content .tablepress tbody td + td {
	border-left: 1px solid #ddd;
}
.entry-content .tablepress caption {
	display: none;
}*/


/*--------------------------------------------------------------
MailChimp
---------------------------------------------------------------*/


/* MailChimp 

#mc_embed_signup {
	border-radius: 10px;
	margin-top: 40px;
	padding: 10px;
	text-align: center;
}
#mc_embed_signup h2 {
	color: #fff;
	margin-bottom: 20px;
	margin-top: 0;
	text-shadow: 1px 1px 4px #000;
}
#mc_embed_signup input#mce-EMAIL {
	border: 0;
	color: #999;
	font-size: 15px;
	padding-left: 10px;
}
#mc_embed_signup input#mc-embedded-subscribe {
	background: #263e4f;
	border: 0;
	color: #fff;
	font-size: 15px;
	padding: 1px 9px 2px;
}*/


/* sm */

@media (min-width: 768px) {}


/* md */

@media (min-width: 992px) {}


/* lg */

@media (min-width: 1200px) {}


/*--------------------------------------------------------------
thickbox NextCellent gallery
---------------------------------------------------------------
#TB_caption {
	float: none !important;
}
#TB_next {
	float: right;
}
.tb-close-icon {
	background-color: #FFF;
	border-radius: 50px;
	border: 1px solid #CCC;
}
#TB_closeWindowButton {
	top: 0;
}
*/


/*--------------------------------------------------------------
4.0 Media Queries
--------------------------------------------------------------*/


/*--------------------------------------------------------------
4.1 xs
--------------------------------------------------------------*/


/* Extra Small - phones */


/*--------------------------------------------------------------
4.2 sm
--------------------------------------------------------------*/

@media (min-width: 768px) {}


/*--------------------------------------------------------------
4.3 md
--------------------------------------------------------------*/

@media (min-width: 992px) {}


/*--------------------------------------------------------------
4.4 lg
--------------------------------------------------------------*/

@media (min-width: 1200px) {
    /* this makes the header fixed on desktop only add to 992 or 1200 media query
.site-header {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1030;
}
body {
	padding-top: 184px;
}
*/
    /* this makes the home sections link to services page without going underneath the fixed header on desktop only 
h2: before {	
	content: "";
	display: block;	
	height: 184px; 
	margin-top: -184px;
	visibility: hidden; 
}*/
}
