html {
    font-size: 62.5%;
}

body {
    color: #666;
    font-size: 1.8rem;
    line-height: 1.625em;
    font-weight: 400;
    font-family: 'source-sans-pro', sans-serif;
    background-color: #E3EFF7;
    overflow-x: hidden;
}

/* --- Base Element Styles --- */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: muli, sans-serif;
    font-weight: 300;
    font-style: normal;
}

h1, .h1 {
    font-size: 3.6rem;
}

h2, .h2 {
    font-size: 3.0rem;
}

h3, .h3 {
    font-size: 2.4rem;
}

h4, .h4 {
    font-size: 1.8rem;
}

h5, .h5 {
    font-size: 1.4rem;
}

h6, .h6 {
    font-size: 1.2rem;
}

#phone, #location {
    font-family: 'source-sans-pro', sans-serif;
}

a {
}

a:hover {
}

#home #content-main a, #home #content-main a:hover {
    color: #fff;
}

p {
    text-align: justify;
    margin-bottom: 1.5em;
}

ul {
    margin-bottom: 1.5em;
}

ol {
}

ul.unstyled, ol.unstyled {
    padding-left: 0;
    margin-bottom: 1.5em;
}

ul.inline {
    text-align: center;
}

ul.inline li {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

li {
    line-height: 1.625em;
}

hr {
    border: none;
    border-top-style: solid;
    border-top-width: 1px;
}

#home hr {
    border-top-color: #fff;
}

label {
    font-size: 1.6rem;
    font-weight: normal;
}

blockquote {
    clear: both;
    font-size: 1.25em;
    font-style: italic;
    font-weight: bold;
    padding: 1em;
}

blockquote p {
    color: #757575;
    margin-bottom: 0;
    font-weight: bold;
}

blockquote.pull-left, blockquote.pull-right {
    width: 50%;
}

blockquote.pull-left {
    float: left;
    margin: 0 1.5em 1.5em 0;
}

blockquote.pull-right {
    float: right;
    margin: 0 0 1.5em 1.5em;
}

blockquote.pull-left p {
    text-align: left;
}

blockquote.pull-right p {
    text-align: right;
}


/* --- Theme Colors --- */

/* Color 1: #0f75bc, rgb(15,117,188) */
/* Color 1 Variant Darker: #064168, rgb(0,111,186) */
/* Color 1 Variant Lighter: #cde1f0, rgb(205,225,240) */

/* Color 2: #043166, rgb(4,49,102) */
/* Color 2 Variant Darker: #032054, rgb(3,32,84) */

/* --- Background Colors --- */
.bg-white {
    background-color: #fff;
    color: #4b4b4b;
}

.bg-light, .image, .module, .highlight, .well {
    background-color: #cde1f0;
    color: #4b4b4b;
}

.bg-dark {
    background-color: #0f75bc;
    color: #FFF;
}

.bg-dark-40 {
    background-color: rgba(0, 111, 186, 0.4);
    color: #FFF;
}

.bg-darker {
    background-color: #043166;
    color: #FFF;
}

.color1-grad {
    color: #fff;
    background: #0f75bc;
    background: -moz-linear-gradient(top, #0f75bc 0%, #064168 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0f75bc), color-stop(100%, #064168));
    background: -webkit-linear-gradient(top, #0f75bc 0%, #064168 100%);
    background: -o-linear-gradient(top, #0f75bc 0%, #064168 100%);
    background: -ms-linear-gradient(top, #0f75bc 0%, #064168 100%);
    background: linear-gradient(to bottom, #0f75bc 0%, #064168 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0f75bc', endColorstr='#064168', GradientType=0);
}

.color2-grad {
    color: #fff;
    background: #032054;
    background: -moz-linear-gradient(top, #032054 0%, #043166 50%, #032054 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #032054), color-stop(50%, #043166), color-stop(100%, #032054));
    background: -webkit-linear-gradient(top, #032054 0%, #043166 50%, #032054 100%);
    background: -o-linear-gradient(top, #032054 0%, #043166 50%, #032054 100%);
    background: -ms-linear-gradient(top, #032054 0%, #043166 50%, #032054 100%);
    background: linear-gradient(to bottom, #032054 0%, #043166 50%, #032054 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#032054', endColorstr='#032054', GradientType=0);
}

.color2-grad a:hover {
    color: #FFF;
}

/* --- Background Colors LG Styles --- */
@media (min-width: 1200px) {
    .bg-white-lg {
        background-color: #fff;
        color: #4b4b4b;
    }

    .bg-light-lg {
        background-color: #cde1f0;
        color: #4b4b4b;
    }

    .bg-dark-lg {
        background-color: #0f75bc;
        color: #FFF;
    }

    .bg-dark-40-lg {
        background-color: rgba(0, 111, 186, 0.4);
        color: #FFF;
    }

    .bg-darker-lg {
        background-color: #043166;
        color: #FFF;
    }
}

/* --- Background Colors MD Styles --- */
@media (max-width: 1199px) {
    .bg-white-md {
        background-color: #fff;
        color: #4b4b4b;
    }

    .bg-light-md {
        background-color: #cde1f0;
        color: #4b4b4b;
    }

    .bg-dark-md {
        background-color: #0f75bc;
        color: #FFF;
    }

    .bg-dark-40-md {
        background-color: rgba(0, 111, 186, 0.4);
        color: #FFF;
    }

    .bg-darker-md {
        background-color: #043166;
        color: #FFF;
    }
}

/* --- Background Colors SM Styles --- */
@media (max-width: 991px) {
    .bg-white-sm {
        background-color: #fff;
        color: #4b4b4b;
    }

    .bg-light-sm {
        background-color: #cde1f0;
        color: #4b4b4b;
    }

    .bg-dark-sm {
        background-color: #0f75bc;
        color: #FFF;
    }

    .bg-dark-40-sm {
        background-color: rgba(0, 111, 186, 0.4);
        color: #FFF;
    }

    .bg-darker-sm {
        background-color: #043166;
        color: #FFF;
    }
}

/* --- Background Colors XS Styles --- */
@media (max-width: 767px) {
    .bg-white-xs {
        background-color: #fff;
        color: #4b4b4b;
    }

    .bg-light-xs {
        background-color: #cde1f0;
        color: #4b4b4b;
    }

    .bg-dark-xs {
        background-color: #0f75bc;
        color: #FFF;
    }

    .bg-dark-40-xs {
        background-color: rgba(0, 111, 186, 0.4);
        color: #FFF;
    }

    .bg-darker-xs {
        background-color: #043166;
        color: #FFF;
    }
}

/* --- Text Colors --- */
.text-white {
    color: #FFF;
}

.text-default {
    color: #4b4b4b;
}

.text-dark, a, a:hover, .social .social-icon:hover, #home
.side-nav li a:hover, #home .side-nav .current_page_item > a, .module a,
#home #content-main .module a, #header .social-icon, .highlight a, #home #content-main .module a,
.related-thumb a, .related-thumb a:hover, .btn.btn-outline, .btn-primary, .bt-primary:hover {
    color: #0f75bc;
}

#header .social .social-icon {
    border-color: #0f75bc;
}

.bucket-wrap ul.nav-tabs a svg {
    fill: #0f75bc;
}

.bucket-wrap ul.nav-tabs .active a svg {
    fill: #555;
}

.text-darker {
    color: #043166;
}

/* --- Text Colors LG Styles --- */
@media (min-width: 1200px) {
    .text-white-lg {
        color: #FFF;
    }

    .text-dark-lg {
        color: #0f75bc;
    }

    .text-darker-lg {
        color: #043166;
    }
}

/* --- Text Colors MD Styles --- */
@media (max-width: 1199px) {
    .text-white-md {
        color: #FFF;
    }

    .text-dark-md {
        color: #0f75bc;
    }

    .text-darker-md {
        color: #043166;
    }
}

/* --- Text Colors SM Styles --- */
@media (max-width: 991px) {
    .text-white-sm {
        color: #FFF;
    }

    .text-dark-sm {
        color: #0f75bc;
    }

    .text-darker-sm {
        color: #043166;
    }
}

/* --- Text Colors XS Styles --- */
@media (max-width: 767px) {
    .text-white-xs {
        color: #FFF;
    }

    .text-dark-xs {
        color: #0f75bc;
    }

    .text-darker-xs {
        color: #043166;
    }
}

hr, .social .social-icon, .related-thumb a:hover, .previous-next-buttons a:hover {
    border-color: #cde1f0;
}

.bucket-wrap ul.nav-tabs li a, #interior .social .social-icon:after, .btn {
    background-color: #cde1f0;
}

.side-nav li a:hover, .side-nav .current_page_item > a, .popover .btn, .btn-primary:hover,
.btn-outline.btn-default:hover, .btn-outline.btn-default:hover, .btn-outline.btn-default:hover, .btn-outline.btn-default:hover,
.blog .wp-post-image, .archive .wp-post-image, .single .wp-post-image, .attachment-portfolio_thumb, .btn:hover, .btn:active, .btn:focus {
    background-color: #0f75bc;
}

.image, .ht-image img, blockquote, blockquote.pull-left, blockquote.pull-right, .btn-default, .sb-gallery-item img, .btn-primary,
.btn-outline.btn-default:hover, .btn-outline.btn-default:hover, .btn-outline.btn-default:hover, .btn-outline.btn-default:hover,
.blog .wp-post-image, .archive .wp-post-image, .single .wp-post-image, .attachment-portfolio_thumb, .related-thumb a,
.previous-next-buttons a {
    border-color: #0f75bc;
}


/* --- Text Shadows --- */
.text-shadow {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.relative {
    position: relative;
}

.pbhs-slider-content {
    display: none;
}


.pbhs-slider-content:first-child {
    display: block;
}

.slider {
    width: 100%;
    z-index: 0;
}

.slider > .pbhs-slider-content {
    visibility: hidden;
}

.slider .pbhs-slider-a-block {
    text-align: center;
}

.slider .pbhs-slider-a-block {
    left: 20%;
    right: 20%;
}

.slider .testimonial .pbhs-slider-a-block {
    top: 20%;
}

.slider .pbhs-slider-content blockquote {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 50%;
}

.slider .pbhs-slider-content blockquote p {
    line-height: 1.5em;
}

@media (max-width: 1199px) {
    .slider .pbhs-slider-content blockquote {
        right: 0;
    }
}

@media (max-width: 767px) {
    .pbhs-slider-a-block {
        font-size: 18px;
    }

    .slider .testimonial .pbhs-slider-a-block {
        top: 0;
    }
}

/* --- Page Gallery --- */
.pbhs-slider-gallery.pbhs-slider-default .pbhs-slider-overflow,
.pbhs-slider-gallery.pbhs-slider-default .pbhs-slider-slide,
.pbhs-slider-gallery.pbhs-slider-default .pbhs-slider-thumbs,
.pbhs-slider-gallery.pbhs-slider-default .pbhs-slider-video-frame-holder {
    background: #dae1e5;
}


/* --- Gravity Form Addons --- */
.ginput_placeholder_on {
    color: #888;
}

.form-control::-webkit-input-placeholder, textarea.form-control::-webkit-input-placeholder {
    color: #888;
}

.form-control::-moz-placeholder, textarea.form-control::-moz-placeholder {
    color: #888;
    opacity: 1;
}

.form-control:-moz-placeholder, textarea.form-control:-moz-placeholder { /* Older versions of Firefox */
    color: #888;
}

.form-control:-ms-input-placeholder, textarea.form-control:-ms-input-placeholder {
    color: #888;
}

input, button, select, textarea, .form-control, .gform_wrapper input[type="text"], .gform_wrapper input[type="url"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"], .gform_wrapper input[type="number"], .gform_wrapper input[type="password"], .gform_wrapper textarea, .gform_wrapper select {
    color: #777;
    font-size: 1.6rem;
    background: #fff;
    border: 1px solid #D4D4D4;
    box-shadow: none;
    padding: 4px 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    letter-spacing: 1px
}

.gform_wrapper {
    max-width: 100%;
}

.gform_wrapper li.gfield_error,
.gform_wrapper .validation_error {
    background-color: #f2dede !important;
}

.full-width-errors .gform_wrapper li.gfield.gfield_error,
.full-width-errors .gform_wrapper .validation_error,
.gform_wrapper .full-width-errors li.gfield.gfield_error,
.gform_wrapper .full-width-errors .validation_error {
    margin-left: -15px !important;
    margin-right: -15px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.gform_title {
    width: auto !important;
}

input.form-control,
textarea.form-control {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.gform-multi-column .gform_body {
    margin-left: -15px;
    margin-right: -15px;
}

.ginput_container:after {
    display: table;
    content: "";
    clear: both;
}

.gform_footer {
    text-align: right;
}

#contact-form-footer .form-control {
    width: 100% !important;
}


/* --- Header Styles --- */
.boxed-width {
    margin: 0 auto;
    max-width: 1170px;
}

.boxed-width > div > .container {
    padding-left: 30px;
    padding-right: 30px;
}

.header-wrap {
}

#client-logo {
    margin-right: 5px;
    max-width: 100%;
}

#client-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
}

#practice {
}

.h4.doctor {
    margin: 0;
    line-height: 135%;
}

#banner {
    position: relative;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media (max-width: 1199px) {
    .boxed-width {
        max-width: 970px;
    }
}

@media (max-width: 991px) {
    .boxed-width {
        max-width: 750px;
    }
}

@media (max-width: 767px) {
    .interior.minimal-mobile-header .header-content {
        display: none;
    }

    .boxed-width {
        max-width: 100%;
    }

    .boxed-width > div > .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* --- Featured Circles --- */
#banner-featured {
    padding: 20px 0;
}

.circles {
    font-size: .85em;
    position: absolute;
    top: -100px;
    right: 0;
    z-index: 20;
}

.boxed-width .circles {
    right: 15px;
}

.circle {
    color: #fff;
    text-transform: uppercase;
    line-height: 1em;
    display: table-cell;
    vertical-align: middle;
    width: 160px;
    height: 160px;
    border-radius: 200px;
    text-align: center;
    margin: 1em;
    padding: 20px;
    box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
}

.circle:hover {
    color: #fff;
    text-decoration: none;
}

.circle .featured-page {
    opacity: 1;
    transition: ease-in-out opacity .3s;
    -moz-transition: ease-in-out opacity .3s;
    -webkit-transition: ease-in-out opacity .3s;
}

.circle:hover .featured-page {
    opacity: 0.80;
}

.circle i {
    display: block;
    text-align: center;
    font-size: 4.0rem;
    margin-top: -15px;
    margin-bottom: 10px;
}

.circle svg {
    display: block;
    width: 4.0rem;
    height: 4.0rem;
    margin: -15px auto 10px;
    fill: currentColor;
}

@media (max-width: 767px) {
    .circles {
        position: static;
    }

    .circle {
        width: auto;
        height: auto;
        display: block;
        border-radius: 5px;
    }
}


/* --- Bucket Styles --- */
.bucket-wrap, .testimonial-wrap {
    background-color: #fafafa;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

.bucket-wrap ul.nav-tabs {
    position: absolute;
    top: -75px;
    border-bottom: none;
    z-index: 5;
}

.bucket-wrap ul.nav-tabs li {
    margin: 0 5px;
}

.bucket-wrap ul.nav-tabs li a {
    font-size: .9em;
    line-height: 125%;
    background: #f5f9fd;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    border: 5px solid #fff;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    outline: none;
}

.bucket-wrap ul.nav-tabs li.active a {
    background: #fff;
    border: 5px solid #fff;
}

.bucket-wrap ul.nav-tabs a i,
.bucket-wrap ul.nav-tabs a svg {
    display: block;
    font-size: 2.4rem;
    line-height: 34px;
    margin-top: -20px;
    text-align: center;
}

.bucket-wrap ul.nav-tabs a svg {
    width: 1.1em;
    height: 1.1em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7px;
}

.bucket {
}

.bucket .bucket-content {
    padding-top: 100px;
    min-height: 310px;
}

.bucket-title {
    margin-top: 0;
}

.bucket p {
    margin-bottom: 0;
}

.bucket img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0;
}

.bucket .bucket-link {
    margin: 10px 0;
}

@media (max-width: 1199px) {
    .bucket .bucket-content {
        position: relative;
        z-index: 4;
        background: rgba(250, 250, 250, 0.6);
    }

    .text-white.tab-content .bucket .bucket-content {
        background: rgba(5, 5, 5, 0.4);
    }

    .text-white.tab-content .btn-default {
        color: #FFF;
        border-color: #FFF;
    }

    .bucket-img-wrap {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: auto;
        padding: 0;
        text-align: right;
    }

    .bucket-img-wrap img {
        height: 100%;
        width: auto;
        max-width: none;
        float: right;
    }

    .bucket-title, .bucket-text {
        max-width: 50%;
    }
}

@media (max-width: 991px) {
    .bucket-title, .bucket-text {
        max-width: none;
    }
}

@media (max-width: 767px) {
    /*.bucket-wrap ul.nav-tabs { position: relative; top: 0; padding-top: 20px; }*/
    /*.bucket .bucket-content { padding-top: 20px; padding-bottom: 20px; }*/
    .bucket-wrap ul.nav-tabs {
        top: -60px;
    }

    .bucket-wrap ul.nav-tabs li a {
        width: 75px;
        height: 75px;
    }

    .bucket-wrap ul.nav-tabs a i {
        margin-top: -6px;
    }

    .bucket-wrap ul.nav-tabs a span {
        display: none;
    }

    .bucket .bucket-content {
        min-height: 0;
        padding-top: 45px;
        padding-bottom: 15px;
        line-height: 1.25em;
    }

    .bucket-img-wrap {
        text-align: left;
    }

    .bucket-content .btn.btn-outline {
        background: rgba(255, 255, 255, 0.7);
    }
}


/* --- Services Styles --- */
.services-wrap {
    padding-top: 30px;
    padding-bottom: 30px;
}

.boxed-width .services-wrap {
    padding: 0 30px;
}

.services-wrap .h2 {
    padding-bottom: 10px;
}

.services-wrap ul {
    margin-bottom: 0;
}

.services-wrap li {
    float: left;
    width: 25%;
    line-height: 150%;
    margin-bottom: .5em;
}

@media (max-width: 767px) {
    .services-wrap li {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .services-wrap li {
        float: none;
        width: auto;
    }
}


/* --- Testimonials Styles --- */
.testimonial-wrap {
    padding: 50px 0;
}

.testimonial-wrap h3 {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 10px;
}

.testimonial {
    position: relative;
    padding: 42px 30px;
    margin-bottom: 0;
}

.testimonial:before {
    content: "";
    background: url(../_media/backgrounds/quote-left.png) no-repeat center center;
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0;
}

.testimonial:after {
    content: "";
    background: url(../_media/backgrounds/quote-right.png) no-repeat center center;
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.testimonial-text {
    margin-bottom: 0;
    color: #064c9b;
    font-size: 2.2rem;
    font-family: 'source-sans-pro';
    font-style: italic;
    font-weight: normal;
    text-align: justify;
    line-height: 120%;
    text-indent: 32px;
}

.testimonial-text span {
    display: block;
    margin-top: 15px;
    padding-right: 24px;
    font-size: .9em;
    font-style: normal;
    text-indent: 0;
}

.testimonial-video .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: ease-in-out all .3s;
    -moz-transition: ease-in-out all .3s;
    -webkit-transition: ease-in-out all .3s;
}

.testimonial-video .overlay:before {
    content: "\f144";
    font-family: 'fontAwesome';
    color: #fff;
    display: block;
    position: absolute;
    font-size: 4.0rem;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    margin-top: -20px;
    margin-left: -20px;
    opacity: .4;
    z-index: 0;
    transition: ease-in-out all .3s;
    -moz-transition: ease-in-out all .3s;
    -webkit-transition: ease-in-out all .3s;
}

.testimonial-video:hover .overlay:before {
    opacity: .8;
}


/* --- Breadcrumb Styles --- */
.breadcrumb-wrap {
}


/* --- Content Section Styles --- */
.home .content-wrap > .container {
    position: relative;
    padding-bottom: 100px !important;
}

@media (max-width: 767px) {
    .home .content-wrap > .container {
        padding-bottom: 75px !important;
    }
}


/* --- Page Content Styles (Specific to the main content area of the page editable by users) --- */
.page-content-wrap {
    min-height: 500px;
}

.page-content-wrap li {
    text-align: justify;
}

.page-content-wrap .container {
    width: auto;
}

@media (max-width: 767px) {
    .page-content-wrap {
        min-height: 0;
    }
}


/* --- Sidebar Styles --- */
.side-wrap {
    padding-top: 20px;
}


/* --- Sidebar Navigation Styles --- */
#content-side .searchform {
    border-bottom: 4px solid #dae1e5;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

#content-side .searchform label {
    display: none;
}

#content-side .searchform input#s {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #dae1e5;
    color: #4b4b4b;
    font-size: 1.4rem;
    line-height: 150%;
    border-radius: 4px;
    font-weight: lighter;
    letter-spacing: .05em;
    text-shadow: none;
}

#content-side .searchform input#searchsubmit {
    display: none;
    /*float: right;
    position: absolute;
    left: 10px;
    top: 0;
    text-indent: -99999px;
    width: 36px;
    background: none;
    border: none;*/
}

.side-nav-title {
    margin-top: 0;
}

.side-nav-title,
.side-nav h2 {
    font-size: 1.25em;
    color: #4b4b4b;
}

#home .side-nav-title,
#home .side-nav h2 {
    color: #fff;
}

.side-nav h2 a,
.side-nav h2 a:hover,
.side-nav-title a,
.side-nav-title a:hover {
    text-decoration: none;
    color: inherit;
}

.side-nav,
.side-nav ul {
    padding: 0;
    list-style: none;
}

.side-nav {
    padding-bottom: 20px;
    border-bottom: 4px solid #dae1e5;
}

.side-nav li {
}

.side-nav li a {
    font-size: 1.6rem;
    line-height: 140%;
    display: block;
    padding: 6px 20px;
    transition: ease-in-out background .2s, ease-in-out color .2s;
    -moz-transition: ease-in-out background .2s, ease-in-out color .2s;
    -webkit-transition: ease-in-out background .2s, ease-in-out color .2s;
}

#home .side-nav li a {
    color: #fff;
}

.side-nav li a:hover,
.side-nav .current_page_item > a {
    color: #fff;
    text-decoration: none;
}

#home .side-nav li a:hover,
#home .side-nav .current_page_item > a {
    background: #fff;
}

.side-nav li:first-child a {
}

.side-nav li li {
    list-style: none;
    list-style-position: inside;
}

.side-nav li li a {
    padding-left: 35px;
}

.side-nav .current_page_item.page_item_has_children > a,
.side-nav .current_page_ancestor > a {
    border-bottom: none;
}

.side-nav .children {
    display: none;
}

/* Hide Child Pages by Default */
.side-nav .current_page_ancestor > .children,
.side-nav .current_page_item > .children {
    display: block;
}

/* --- Footer Styles --- */
.footer-wrap {
}

.nav-column-wrap ul {
}

.footer-option1 .h4 {
    font-weight: bold;
}

.footer-option1 ul.unstyled li {
    font-size: .85em;
    line-height: 140%;
}

.footer-option3 h3 {
    margin-top: 0;
}

.footer-wrap a:hover {
    color: #fff;
}

.footer-option2 address div,
.footer-option3 address div {
    clear: both;
}

.footer-option2, .footer-option2 .hours-wrap {
    font-weight: normal;
}

.footer-option2 .map-wrapper {
    padding-right: 0;
}

.footer-option3 address {
    margin-bottom: 0;
}

.footer-option3 address h4 {
    font-size: 1.4rem;
    font-weight: bold;
}

.office-address {
    font-size: 1.6rem;
    line-height: 135%;
}

.office-address strong {
    font-weight: bold;
    display: block;
}

.office-address .office-btn {
    font-size: .85em;
    text-decoration: underline;
}

.office-address .office-btn:hover {
    text-decoration: none;
}

.footer-bottom {
    font-size: .85em;
}

.office-image {
    width: 60px;
    height: 60px;
    margin: 0 10px 5px 0;
}

@media (max-width: 991px) {
    .footer-option2 {
        font-size: .9em;
    }
}

@media (max-width: 767px) {
    .footer-option2 {
        padding-right: 30px;
        padding-left: 30px;
    }

    .footer-option3 .highlight {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }
}

/* --- SEO Footer --- */

.pbhs-grid-wrapper .btn i.fa, .pbhs-grid-wrapper .modal-form-text {
    color: #043166;
}


/* --- Button Styles --- */
.btn:hover, .btn:active, .btn:focus, .btn-outline.btn-default:hover,
.btn-outline.btn-default:hover, .btn-outline.btn-default:hover, .btn-outline.btn-default:hover {
    color: #FFF;
}

.btn:hover a {
    color: #FFF;
    text-decoration: none;
}

.btn.btn-outline {
    background: none;
}

/* --- Popovers --- */
.popover .popover-title {
    color: #4b4b4b;
}


/* --- Social Icons --- */
.content-wrap .social-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
}

.boxed-width .content-wrap .social-wrap {
    right: 15px;
}

.social .social-icon {
    color: #fff;
    font-size: 3.8rem;
    text-align: center;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-width: 4px;
    border-style: solid;
    border-radius: 50%;
    margin: 10px 5px;
    position: relative;
    outline: none;
}

.social .social-icon i {
    position: relative;
    z-index: 1;
}

.social .social-icon:hover {
    text-decoration: none;
}

#header .social-icon:hover {
    color: #FFF;
}

.social .social-icon:before {
    content: normal;
}

.social .social-icon.fa-facebook:hover {
    color: #3B5998;
}

#header .social .social-icon.fa-facebook:hover:after {
    background-color: #3B5998;
}

.social .social-icon.fa-twitter:hover {
    color: #55ACEE;
}

#header .social .social-icon.fa-twitter:hover:after {
    background-color: #55ACEE;
}

.social .social-icon.fa-google-plus:hover {
    color: #DD4B39;
}

#header .social .social-icon.fa-google-plus:hover:after {
    background-color: #DD4B39;
}

.social .social-icon.fa-linkedin:hover {
    color: #006699;
}

#header .social .social-icon.fa-linkedin:hover:after {
    background-color: #006699;
}

.social .social-icon.fa-pinterest:hover {
    color: #CC1F26;
}

#header .social .social-icon.fa-pinterest:hover:after {
    background-color: #CC1F26;
}

.social .social-icon.fa-youtube:hover {
    color: #CC181E;
}

#header .social .social-icon.fa-youtube:hover:after {
    background-color: #CC181E;
}

.social .social-icon.fa-vimeo-square:hover {
    color: #20B9EB;
}

#header .social .social-icon.fa-vimeo-square:hover:after {
    background-color: #20B9EB;
}

.social .social-icon.fa-flicker:hover {
    color: #FF1981;
}

#header .social .social-icon.fa-flicker:hover:after {
    background-color: #FF1981;
}

.social .social-icon.fa-instagram:hover {
    color: #47749A;
}

#header .social .social-icon.fa-instagram:hover:after {
    background-color: #47749A;
}

.social .social-icon.fa-foursquare:hover {
    color: #1DAFEC;
}

#header .social .social-icon.fa-foursquare:hover:after {
    background-color: #1DAFEC;
}

.social .social-icon.fa-dropbox:hover {
    color: #007EE5;
}

#header .social .social-icon.fa-dropbox:hover:after {
    background-color: #007EE5;
}

.social .social-icon.fa-calendar:hover {
    color: #D02A2A;
}

#header .social .social-icon.fa-calendar:hover:after {
    background-color: #D02A2A;
}

.social .social-icon.fa-envelope-o:hover {
    color: #234DB3;
}

#header .social .social-icon.fa-envelope-o:hover:after {
    background-color: #234DB3;
}

.social .social-icon.fa-rss:hover {
    color: #F99638;
}

#header .social .social-icon.fa-rss:hover:after {
    background-color: #F99638;
}

.social .social-icon.fa-yelp:hover {
    color: #ce2200;
}

#header .social .social-icon.fa-yelp:hover:after {
    background-color: #ce2200;
}

.social .social-icon:after {
    background: #fff;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    border-radius: 50%;
    content: "";
    height: 100%;
    pointer-events: none;
    position: absolute;
    width: 100%;
    left: -22px;
    opacity: 0;
    padding: 22px;
    top: -22px;
    z-index: 0;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    transition: ease-in-out all .3s;
    -moz-transition: ease-in-out all .3s;
    -webkit-transition: ease-in-out all .3s;
    -webkit-backface-visibility: hidden;
}

.social .social-icon:hover:after {
    opacity: 1;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
}

.home.no-content-featured-links-visible .social-wrap {
    padding-top: 30px;
}

#header .social-wrap {
    padding-top: 0;
}

#header .social-icon {
    font-size: 1.6rem;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-width: 1px;
}

#header .social-icon:last-child {
    margin-right: 0;
}

@media (max-width: 991px) {
    .content-wrap .social-wrap {
        text-align: center;
        position: static;
    }

    .content-wrap .social-wrap > .social {
        float: none !important;
    }
}

@media (max-width: 767px) {
    .social .social-icon {
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
        line-height: 35px;
        border-width: 2px;
        border-radius: 35px;
    }

    .social .social-icon:after {
        left: -11px;
        padding: 11px;
        top: -11px;
    }
}

/* --- Search Page/Pagination Styles --- */
.next-posts:empty,
.prev-posts:empty {
    display: none;
}

.results-list {
    margin-bottom: 30px;
}

.search-results .searchform {
    margin-bottom: 30px;
}

.hentry {
    position: relative;
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
    margin-bottom: 15px;
    padding-right: 200px;
}

.hentry:nth-child(odd) {
    background: #FAFAFA;
}

.hentry-in {
    padding: 15px;
    border-left: 10px solid #E9E9E9;
}

.hentry-in h2 {
    margin-top: 0;
}

.hentry-in p {
    margin-bottom: 0;
}

.hentry-more {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 200px;
}

.hentry-more:hover {
    color: #FFF;
}

.hentry-more span {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    display: block;
    margin-top: -15px;
    text-align: center;
    line-height: 30px;
}

@media (max-width: 991px) {
    .hentry {
        padding-right: 0;
    }

    .hentry-more,
    .hentry-more span {
        position: static;
        margin-top: 0;
        width: auto;
    }

    .hentry-more {
        margin: 15px -15px -15px;
        padding: 8px;
    }
}


/* --- Wp Alignment Classes --- */
.alignleft, .alignright, .aligncenter, .alignnone {
    margin-bottom: 30px;
}

.alignleft, .alignright {
    width: 50%;
}

.alignleft {
    margin-right: 30px;
    float: left;
}

.alignright {
    margin-left: 30px;
    float: right;
}

.aligncenter {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    float: none;
    clear: both;
}

.alignnone {
    width: auto;
    float: none;
}

img.alignleft, img.alignright, img.aligncenter
.alignleft.flash-replaced, .alignright.flash-replaced, img.aligncenter {
    display: block;
    width: auto;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .alignleft, .alignright, .aligncenter {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        float: none;
    }
}

/* --- Module, Image, Highlight and Well Styles --- */
.image, .module, .highlight, .well {
}

.highlight.aligncenter, .highlight.alignnone,
.well.aligncenter, .well.alignnone,
.module.aligncenter, .module.alignnone,
.image.aligncenter, .image.alignnone {
    margin-top: 30px;
}

.image h2, .image .h2, .module h2, .module .h2, .highlight h2, .highlight .h2, .well h2, .well .h2,
.image h3, .image .h3, .module h3, .module .h3, .highlight h3, .highlight .h3, .well h3, .well .h3,
.image p, .module p, .highlight p, .well p,
.image label, .module label, .highlight label, .well label,
.image .btn, .module .btn, .highlight .btn, .well .btn,
.image a, .module a, .highlight a, .well a {
    color: inherit;
}

.image, .module, .highlight,
.image h2, .image .h2, .module h2, .module .h2, .highlight h2, .highlight .h2,
.image h3, .image .h3, .module h3, .module .h3, .highlight h3, .highlight .h3,
.image p, .module p, .highlight p,
.image label, .module label, .highlight label,
.image .btn, .module .btn, .highlight .btn,
.image a, .module a, .highlight a {
    text-align: left;
}

.image p, .module p, .highlight p {
    font-size: .85em;
    line-height: 150%;
}

.image label, .module label, .highlight label, .well label {
    display: block;
}

.image a, .module a, .highlight a, .well a {
    text-decoration: underline;
    font-weight: bold;
}

.image a:hover, .module a:hover, .highlight a:hover, .well a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.image .btn, .module .btn, .highlight .btn, .well .btn {
    text-decoration: none;
}

.image .btn:hover, .module .btn:hover, .highlight .btn:hover, .well .btn:hover {
    opacity: 1;
}

.image > :first-child, .module > :first-child, .highlight > :first-child, .well > :first-child {
    margin-top: 0;
}

.image {
    width: auto;
}

.image, .ht-image img {
    border-style: solid;
    border-width: 5px;
}

.module {
    padding: 20px;
    border: none;
    margin-bottom: 1.5em;
}

.well {
    border: none;
    border-radius: 0;
    padding: 30px;
    font-size: 1.25em;
    line-height: 150%;
}

.ht-image {
    padding-top: 15px;
    padding-bottom: 15px;
}


@media (max-width: 767px) {
    .module, .highlight {
        margin-left: -15px;
        margin-right: -15px;
    }
}

/* --- Map Shortcode Styles --- */
.map {
    height: 400px;
}

.mobile-phone .map {
    margin-bottom: 65px;
}

.modal-map .map {
    height: 255px;
}

.modal-map .highlight {
    margin-bottom: 12px;
    width: 95%;
}

.modal-map .modal-body {
    max-height: 415px;
}


/* --- Blog Styles --- */
.sb-gallery-item img {
    border-width: 4px;
    border-style: solid;
}

.sb-gallery-item img:hover {
    border-color: #fff;
}

.blog .wp-post-image, .archive .wp-post-image, .single .wp-post-image, .attachment-portfolio_thumb {
    float: left;
    padding: 4px;
    border-style: solid;
    border-width: 1px;
    margin: 0 1em 1em 0;
    max-width: 100%;
    height: auto;
}

.single-portfolio .attachment-portfolio_thumb {
    float: none;
}

.archive .post {
    margin-bottom: 2em;
}

.previous-next-buttons a {
    display: block;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 10px;
    border-style: solid;
    border-width: 1px;
}

.previous-next-buttons a:hover {
    text-decoration: none;
}

.related-posts {
    float: left;
    width: 100%;
    margin: 1em 0 2em 0;
    font-size: 1.4rem;
}

.related-posts h3 {
    font-size: 2.0rem;
    margin: 0 0 .5em 0;
}

.related-thumb {
}

.related-thumb a {
    display: block;
    border-style: solid;
    border-width: 1px;
    padding: 0 0 10px;
    text-align: center;
    font-size: 1em;
    line-height: 125%;
    transition: ease-in-out background .2s, ease-in-out color .2s;
    -moz-transition: ease-in-out background .2s, ease-in-out color .2s;
    -webkit-transition: ease-in-out background .2s, ease-in-out color .2s;
}

.related-thumb .related-title {
    padding: 0 8px;
    height: 50px;
    font-size: .85em;
    line-height: 130%;
}

.related-thumb .img-wrap {
    position: relative;
    overflow: hidden;
}

.single .related-thumb img {
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
    height: auto;
    border: none;
    transition: ease-in-out background .2s, ease-in-out color .2s;
    -moz-transition: ease-in-out background .2s, ease-in-out color .2s;
    -webkit-transition: ease-in-out background .2s, ease-in-out color .2s;
}

.related-thumb a, .related-thumb a:hover {
    text-decoration: none;
}

.related-thumb a:hover img {
    opacity: .9;
}

.commentlist {
    font-size: .85em;
}

#commentform #submit {
    margin-top: 10px;
}


/* --- PBHS Reviews Styles --- */
.pbhs_reviews_rating, #pbhs_reviews_commentform .pbhs_reviews_rating {
    float: none;
    display: inline-block;
    margin-left: 10px;
}

.sp_rating {
    line-height: 1em;
}

#pbhs_reviews_respond_1 p {
    margin-bottom: 1em;
    font-size: 1.6rem;
}

.testimonial-option3 .overall-review {
    margin-left: 15px;
    margin-right: 15px;
}

.testimonial-option3 .review-item {
    float: left;
    width: 33.33333%;
    clear: none;
}

.testimonial-option3 .review-item .review-inner {
    margin: 0 15px;
    background: #fff;
    padding: 30px;
}

.testimonial-option3 h2, .testimonial-option3 .review-rating span {
    display: none;
}

.testimonial-option3 hr {
    border: none;
}

.testimonial-option3 .review-item h3 {
    display: none;
    margin: 0 0 10px;
    padding: 0;
    font-size: 1.15em;
}

.testimonial-option3 .review-item .review-body {
    font-style: italic;
    line-height: 150%;
}

.testimonial-option3 .review-rating {
    font-size: .7em;
}

.review-item .review-rating .stars-wrapper {
    font-size: 1.4rem;
    line-height: 2em;
}

@media (max-width: 991px) {
    .testimonial-option3 .review-item {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .testimonial-option3 .review-item {
        float: none;
        width: auto;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .columns-made .gform_wrapper.gravity-theme .gform_body {
        width: 100%;
        display: grid;
        grid-column-gap: 2%;
        grid-row-gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }
}