/*
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.3.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 Content
	3.6 Sidebar
	3.7 Footer
	3.8 Custom

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: 970px !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
--------------------------------------------------------------*/

/*--------------------------------------------------------------
3.1 Typography
--------------------------------------------------------------*/
body {
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}
h1, 
.h1, 
h2, 
.h2, 
h3, 
.h3, 
h4, 
.h4, 
h5, 
.h5 {
	font-family: "Raleway", sans-serif;
	color: #000;
}
.entry-content li,
p {
	color: #333;
	font-size: 18px;
}
a {
	color: #ec2024;
}
a:hover,
a:focus {
	color: #000;
	transition: .5s;
}
hr {
	border-color: #ec2024;
	border-width: 2px 0 0;
}

/*--------------------------------------------------------------
3.2 Background
--------------------------------------------------------------*/
body {
	background: #fff;
}
.site-header,
.site-content > .container {
	background: transparent;
}
#site-navigation {
	background: #000;
}
.site-footer {
	background: url("images/FooterBG.jpg") no-repeat scroll 0 0 / cover;
	border-top: 3px solid #fff;
}

/*--------------------------------------------------------------
3.3 Header
--------------------------------------------------------------*/
.logo {
	margin: 10px 0;
}
.header-tagline h3 {
	margin-top: 0;
}
.logo img:hover {
	opacity: .7;
	transition: .5s;
}

/* sm */
@media (min-width: 768px) {

}

/* md */
@media (min-width: 992px) {
	.header-tagline {
		margin-top: 30px;
		text-align: right;
	}
}

/* lg */
@media (min-width: 1200px) {
	.header-tagline {
		margin-top: 60px;
	}
}

/*--------------------------------------------------------------
3.4 Navigation
--------------------------------------------------------------*/
/* Primary nav */
.navbar {
	border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}
.navbar-default {
	margin-bottom: 0;
}
.navbar-default .navbar-nav {
	margin-left: -15px;
}
.navbar-default .navbar-nav > li > a {
    color: #fff;
	font-size: 18px;
    padding: 15px;
}
.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 {
	background: transparent;
	color: #ec2024;
	text-decoration: underline;
	transition: .5s;
}
.site-header .caret {
	display: none;
}


/* Sticky Menu */
.nav-wrap {
	position: relative;
	z-index: 1000;
}
.nav-wrap.affix #site-navigation {
	/* display: flex; */
	justify-content: flex-end;
	width: 100%;
}
.nav-wrap.affix {
	background: #000;
	display: flex;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
}

/* md */
@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 {
        top: 0;
        border-width: 0 0 1px;
    }
    .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-top: 10px;
        padding-bottom: 10px;
    }
    .collapse.in{
          display:block !important;
          overflow-y:auto !important;
    }
    .dropdown-menu {
        position:relative;
        box-shadow:none;
        border:none;
        float:none;
    }
}

/* lg */
@media (min-width: 1200px) {
	.navbar-default .navbar-nav > li > a {
		font-size: 14px;
	}
	.nav-wrap.affix #site-navigation {
		justify-content: center;
	}
	
/* Center nav on small screens and larger */
    .navbar .navbar-nav {
        display: inline-block;
        float: none;
        margin-bottom: -6px;
    }     
    .navbar .navbar-collapse {
        text-align: center;
    }
	.navbar-fixed-top {
		top: 0;
		border-width: 0 0 1px;
	}
}

/* xl */
@media (min-width: 1400px) {
	.navbar-default .navbar-nav > li > a {
		font-size: 18px;
	}
}

/* xxl */
@media (min-width: 1600px) {
	.navbar-default .navbar-nav > li > a {
		padding: 15px 24px;
	}
}

/*Hamburger Menu*/
.navbar-default .navbar-toggle {
	border-color: #fff;
	border-radius: 0;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #fff;
}
.navbar-default .navbar-toggle:hover, 
.navbar-default .navbar-toggle:focus {
  background-color: #ec2024;
}
.navbar-default .navbar-collapse, 
.navbar-default .navbar-form {
	border-color: #ec2024;
}

/*--------------------------------------------------------------
3.5 Content
--------------------------------------------------------------*/
.entry-header {

}
.entry-content {
	padding-bottom: 20px;
}
.entry-content img {
	border-radius: 6px;
}
.home .entry-content img {
	border-radius: 0;
}
.entry-footer {

}
.home .entry-title {
	display: none;
}
.entry-title {
	border-bottom: 2px solid #000;
	margin: 30px 0;
	padding-bottom: 10px;
}

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

/*--------------------------------------------------------------
3.7 Footer
--------------------------------------------------------------*/
.attribution {
	background: #000;
	padding: 10px 0;
}
.attribution a,
.attribution p {
	color: #fff;
	font-size: 12px;
	margin-bottom: 0;
}
.footer-text {
	padding: 10px 0;
}
.footer-text img,
.footer-text p {
	margin-bottom: 20px;
}
.footer-text a:hover {
	color: #ec2024;
	transition: .5s;
}
.footer-text img:hover {
	opacity: .7;
	transition: .5s;
}
.fa-map-marker-alt,
.fa-phone,
.fa-envelope,
.fa-linkedin-in,
.footer-text a,
.footer-text p {
	color: #fff;
}
.fa-map-marker-alt,
.fa-phone,
.fa-envelope,
.fa-linkedin-in {
	margin-right: 10px;
}
.fa-map-marker-alt:hover,
.fa-phone:hover,
.fa-envelope:hover,
.fa-linkedin-in:hover {
	color: #ec2024;
	transition: .5s;
}

/* sm */
@media (min-width: 768px) {
	.footer-text {
		padding: 50px 0;
	}
}

/* md */
@media (min-width: 992px) {

}


/* lg */
@media (min-width: 1200px) {

}

/*--------------------------------------------------------------
3.8 Custom
--------------------------------------------------------------*/
.search-submit {
	font-family: FontAwesome;
}
.leaderboard-image img {
	width: 100%;
}
.spacer {
	margin-top: 30px;
}

/* Practice Areas Page */
.collapseomatic {
	background-image: url('images/arrow-down.png');
	background-position: left center !important;
	background-repeat: no-repeat;
	padding: 0 0 0 25px !important;
	color: #ec2024 !important;
	cursor: pointer;
	font-size: 20px !important;
}

/* Home Page Styles */
.featured-one,
.featured-two {
	padding: 30px 0;
}
.featured-one p {
	font-size: 21px;
	margin-bottom: 20px;
}
.featured-two {
	background: url("images/darkPattern.jpg") repeat fixed;
}
.featured-two h1,
.featured-two p {
	color: #fff;
}
.featured-one h1,
.featured-two h1 {
	margin-bottom: 30px;
	margin-top: 0;
}
.featured-two .btn {
	margin-bottom: 20px;
	margin-top: 30px;
}
.featured-two .btn-success {
	background-color: #fff;
	border-color: #fff;
	border-width: 3px;
	color: #000;
}
.btn {
	white-space: inherit;
}

/* sm */
@media (min-width: 768px) {
	.btn {
		white-space: nowrap;
	}
	.featured-one,
	.featured-two {
		padding: 50px 0;
	}
	.featured-one h1,
	.featured-two h1 {
		margin-bottom: 40px;
	}
}

/* md */
@media (min-width: 992px) {

}

/* lg */
@media (min-width: 1200px) {

}

/*Form Button Style*/
#form-preview-stage.wpuf-style ul.wpuf-form .wpuf-submit input[type="submit"], 
.wpuf-form-add.wpuf-style ul.wpuf-form .wpuf-submit input[type="submit"] {
	background: #000 !important;
	border: 3px solid #000 !important;
	border-color: #000 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #fff !important;
	font-size: 18px !important;
	padding: 10px 25px !important;
	text-shadow: none !important;
}
.wpuf-form-add.wpuf-style ul.wpuf-form .wpuf-submit input[type="submit"]:hover {
	background: #ec2024 !important;
	border: 3px solid #000 !important;
	transition: .5s;
}
#nf-field-4 {
	background: #000;
	border: 3px solid #000;
	color: #fff;
	padding: 10px 25px;
}
#nf-field-4:hover,
#nf-field-4:active {
	background: #ec2024;
	border: 3px solid #000;
}

.collapseomatic_content ul {margin-top: 10px !important; }

/* Button Styles */
.btn-success {
	background-color: #000;
	border-color: #000;
	border-width: 3px;
	color: #fff;
}
.btn-success:hover, 
.btn-success:focus, 
.btn-success:active, 
.btn-success.active, 
.open .dropdown-toggle.btn-success {
	background-color: #ec2024;
	border-color: #000;
	border-width: 3px;
	color: #fff;
}
.btn-lg, 
.btn-group-lg > .btn {
	border-radius: 0;
	font-size: 18px;
	line-height: 1.33;
	padding: 10px 25px;
}

/* Collapse Styles */
h4.panel-title {
	color: #ec2024;
	font-size: 20px;
}
.panel-default > .panel-heading {
	background-color: transparent;
	border-color: #333;
	color: #333;
}
.panel-default > .panel-heading + .panel-collapse .panel-body {
	border-top-color: transparent;
}
.panel {
	background-color: transparent;
	border: 1px solid #333;
	border-radius: 0;
	box-shadow: 0;
	margin-bottom: 20px;
}

#recognitions, #presentations-publications, #practice-areas, #bio, #bio-rick, #presentations-publications-rick {
	background: #f0f0f0;
    padding: 32px;
    border-top: 3px solid #ec2024;
    margin-top: 40px;
}

.post-194 .entry-title {display: none;}

.page-id-194 .btn-success, #practice-areas, # {
	background-color: #ec2024 !important;
	border-color: #ec2024;
	color: #fff;
}


.page-id-194 .btn-success:hover {
	background-color: #ff0005 !important;	
}

#bio, #recognitions, #presentations-publications {margin-top:60px;}
#post-196 {margin-top: 100px;}

.navbar-default .navbar-nav>.active>a {
	text-decoration: none;
}
.dropdown-menu {
	text-align: left;
	font-size: 16px !important;
	background-color: #000;
	color: #fff;
}
.dropdown-menu>li>a {color: #F0F0F0;}
.dropdown-menu>.active>a:hover {
	background-color: #363636 !important;
}

.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus {
    background-color: #000;
}

hr.cd {
	border-width: 4px 0 0;
    width: 5%;
    margin: 0;
    margin-top: 15px;
}

/* sm */
@media (min-width: 768px) {

}

/* md */
@media (min-width: 992px) {

}

/* lg */
@media (min-width: 1200px) {

}

/* Sticky footer * @link http://mystrd.at/modern-clean-css-sticky-footer/ */

/* md */
@media (min-width: 992px) {
	html {
    	position: relative;
    	min-height: 100%;
	}
	body {
    	margin: 0 0 300px; /* = .site-footer height */
	}
	.site-footer {
    	position: absolute;
    	left: 0;
    	bottom: 0;
    	width: 100%;
    	height: 300px; /* = body margin-bottom */
	}
}