﻿@charset "UTF-8";

/*-------------------------------------------------------*
    Dodge Boilerplate
    Url: http://www.dodgecommunications.com/

/*-------------------------------------------------------*/


/*-------------------------------------------------------*    Variables
/*-------------------------------------------------------*/


/*-------------------------------------------------------*    Functions
/*-------------------------------------------------------*/


/*-------------------------------------------------------*    Mixins
/*-------------------------------------------------------*/


/*-------------------------------------------------------*    Helper classes
/*-------------------------------------------------------*/


/*-------------------------------------------------------*    Sticky Footer
/*-------------------------------------------------------*/


/*
$footer-height: 264px;
$footer-height-tablet: 345px;
$footer-height-mobile: 280px;

html, body {
  height: 100%;
}
.wrapper {
  min-height: 100%;
  margin-bottom: -$footer-height; 
}
.wrapper:after {
  content: "";
  display: block;
}
.footer-container, .wrapper:after {
  height: $footer-height; 
}

@media (max-width: 991px) {
  .wrapper {
    margin-bottom: -$footer-height-tablet; 
  }
  .footer-container, .wrapper:after {
    height: $footer-height-tablet; 
  }
}

@media (max-width: 767px) {
  .wrapper {
    margin-bottom: -$footer-height-mobile; 
  }
  .footer-container, .wrapper:after {
    height: $footer-height-mobile; 
  }
}
*/


/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}


/*
 * Arrow
 */

.hamburger--arrow.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}


/*
 * Arrow Right
 */

.hamburger--arrow-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}


/*
 * Arrow Alt
 */

.hamburger--arrowalt .hamburger-inner::before {
    transition: top 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
    transition: bottom 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
    transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
    transition: top 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
    transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}


/*
 * Arrow Alt Right
 */

.hamburger--arrowalt-r .hamburger-inner::before {
    transition: top 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
    transition: bottom 0.1s 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
    transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
    transition: top 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
    transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
    transition: bottom 0.1s ease, -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}


/*
 * Boring
 */

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
    transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}


/*
 * Collapse
 */

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.15s;
    transition-delay: 0.15s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.32s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Collapse Reverse
 */

.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.15s;
    transition-delay: 0.15s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, -10px, 0) rotate(45deg);
    transform: translate3d(0, -10px, 0) rotate(45deg);
    transition-delay: 0.32s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Elastic
 */

.hamburger--elastic .hamburger-inner {
    top: 0;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.15s 0.4s ease;
}

.hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.1s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.1s;
}


/*
 * Elastic Reverse
 */

.hamburger--elastic-r .hamburger-inner {
    top: 0;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.15s 0.4s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
    transform: translate3d(0, 10px, 0) rotate(-135deg);
    transition-delay: 0.1s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.1s;
}


/*
 * Emphatic
 */

.hamburger--emphatic {
    overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
    left: 0;
    transition: top 0.05s 0.2s linear, left 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic .hamburger-inner::after {
    top: 10px;
    right: 0;
    transition: top 0.05s 0.2s linear, right 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
    left: -80px;
    top: -80px;
    -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
    transform: translate3d(80px, 80px, 0) rotate(45deg);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
    right: -80px;
    top: -80px;
    -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
    transform: translate3d(-80px, 80px, 0) rotate(-45deg);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}


/*
 * Emphatic Reverse
 */

.hamburger--emphatic-r {
    overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
    left: 0;
    transition: top 0.05s 0.2s linear, left 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r .hamburger-inner::after {
    top: 10px;
    right: 0;
    transition: top 0.05s 0.2s linear, right 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
    transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in, -webkit-transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
    left: -80px;
    top: 80px;
    -webkit-transform: translate3d(80px, -80px, 0) rotate(-45deg);
    transform: translate3d(80px, -80px, 0) rotate(-45deg);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
    right: -80px;
    top: 80px;
    -webkit-transform: translate3d(-80px, -80px, 0) rotate(45deg);
    transform: translate3d(-80px, -80px, 0) rotate(45deg);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear, -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}


/*
 * Slider
 */

.hamburger--slider .hamburger-inner {
    top: 0;
}

.hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    transition-timing-function: ease;
    transition-duration: 0.2s;
}

.hamburger--slider .hamburger-inner::after {
    top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
    -webkit-transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
    transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
    opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
    transform: translate3d(0, -20px, 0) rotate(-90deg);
}


/*
 * Slider Reverse
 */

.hamburger--slider-r .hamburger-inner {
    top: 0;
}

.hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    transition-timing-function: ease;
    transition-duration: 0.2s;
}

.hamburger--slider-r .hamburger-inner::after {
    top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
    -webkit-transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
    transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
    opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(90deg);
    transform: translate3d(0, -20px, 0) rotate(90deg);
}


/*
 * Spin
 */

.hamburger--spin .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Spin Reverse
 */

.hamburger--spin-r .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Squeeze
 */

.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}


/*
 * Vortex
 */

.hamburger--vortex .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
    transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex.is-active .hamburger-inner {
    -webkit-transform: rotate(765deg);
    transform: rotate(765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}


/*
 * Vortex Reverse
 */

.hamburger--vortex-r .hamburger-inner {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
    transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
    -webkit-transform: rotate(-765deg);
    transform: rotate(-765deg);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}


/*-------------------------------------------------------*    Normalise
/*-------------------------------------------------------*/


/*! normalize.css v3.0.2 | MIT License | git.io/normalize */


/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}


/**
 * Remove default margin.
 */

body {
    margin: 0;
}


/* HTML5 display definitions
   ========================================================================== */


/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}


/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}


/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}


/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
    display: none;
}


/* Links
   ========================================================================== */


/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background-color: transparent;
}


/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}


/* Text-level semantics
   ========================================================================== */


/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}


/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
    font-weight: bold;
}


/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
    font-style: italic;
}


/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}


/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}


/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}


/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* Embedded content
   ========================================================================== */


/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
    border: 0;
}


/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
    overflow: hidden;
}


/* Grouping content
   ========================================================================== */


/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
    margin: 1em 40px;
}


/**
 * Address differences between Firefox and other browsers.
 */

hr {
    box-sizing: content-box;
    height: 0;
}


/**
 * Contain overflow in all browsers.
 */

pre {
    overflow: auto;
}


/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}


/* Forms
   ========================================================================== */


/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */


/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}


/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
    overflow: visible;
}


/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
    text-transform: none;
}


/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}


/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
    opacity: 0.3;
}

button[disabled]:hover,
html input[disabled]:hover {
    background-color: transparent;
    color: inherit;
}


/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}


/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
    line-height: normal;
}


/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}


/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}


/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    /* 2 */
    box-sizing: content-box;
}


/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}


/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}


/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}


/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
    overflow: auto;
}


/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
    font-weight: bold;
}


/* Tables
   ========================================================================== */


/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}


/*-------------------------------------------------------*    Base
/*-------------------------------------------------------*/

.index {
    text-align: center;
}

.index a {
    display: inline-block;
    font-size: 16px;
    font-family: 'Helvetica Neue', Helvetica, "Arial", Verdana, Tahoma;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    margin-bottom: 15px;
}

.index a:hover {
    color: #a4d65e;
    border-bottom-color: #a4d65e;
}

.index a[href="#"] {
    color: lightgray;
    cursor: default;
}

.index a[href="#"]:after {
    content: " (coming soon)";
}

.index a[href="#"]:hover {
    border-bottom-color: transparent;
}

body {
    background-color: #f0f9fb;
}

hr {
    border-top: 1px solid #ccc;
}

.divider {
    border-right: 1px solid transparent;
    margin: 0 20px 0 14px;
}

hr {
    margin-top: 30px;
    margin-bottom: 30px;
}

.full-width {
    margin-left: -30px;
    margin-right: -30px;
}

.img-responsive {
    margin: 0 auto;
    padding: 10px 0;
}

.doctor-image .img-responsive {
    padding: 0;
    border-radius: 6px;
}

.doctor-card {
    line-height: 1.5;
}

#main-content.freeze {
    height: 100vh;
    overflow: hidden;
}

.phoebe-icon {
    position: relative;
    top: -1px;
    display: inline-block;
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 12px;
    line-height: 30px;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 5em;
    background-color: #fff;
    margin-bottom: 10px;
    margin-right:5px;
}

.phoebe-icon:before {
    position: relative;
    top: -1px;
}

.phoebe-icon.emergency {
    /* color: #c1272c; */
    /* border-color: #c1272c; */
}

.phoebe-icon.emergency:before {
    /* content: "E"; */
}

.phoebe-icon.hospitals {
    /* color: #a3d65d; */
    /* border-color: #a3d65d; */
}

.phoebe-icon.hospitals:before {
    /* content: "H"; */
}

.phoebe-icon.urgent {
    /* color: #28724f; */
    /* border-color: #28724f; */
}

.phoebe-icon.urgent:before {
    /* content: "U"; */
}

.phoebe-icon.primary-care {
    /* color: #005970; */
    /* border-color: #005970; */
}

.phoebe-icon.primary-care:before {
    /* content: "PC"; */
}

.phoebe-icon.phoebe-practices {
    color: #39afc8;
    border-color: #39afc8;
}

.phoebe-icon.phoebe-practices:before {
    content: "P";
}

.phoebe-icon.outpatient {
    /* color: #545659; */
    /* border-color: #545659; */
}

.phoebe-icon.outpatient:before {
    /* content: "O"; */
}

.carousel-control {
    top: 75px;
    color: #55565a;
    font-size: 60px;
    width: 0%;
    text-shadow: none;
    opacity: 1;
}

.carousel-control:hover,
.carousel-control:focus {
    color: #55565a;
}

.carousel-control.left {
    background-image: none;
    left: -45px;
}

.carousel-control.right {
    background-image: none;
    right: 15px;
}

.google-maps {
    position: relative;
    padding-bottom: 75%; // This is the aspect ratio
    height: 0;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.full-banner > a {
    height: 100%;
    width: 100%;
    display: inline-block;
}

.featured-container > a {
    height: 100%;
    width: 100%;
    display: inline-block;
}

@media (max-width: 767px) {
    .carousel-inner .active.left {
        left: -100%;
    }
    .carousel-inner .next {
        left: 100%;
    }
    .carousel-inner .prev {
        left: -100%;
    }
    .active > div {
        display: none;
    }
    .active > div:first-child {
        display: block;
    }
	img {
		max-width: 100%;
		height: auto !important;
	}
}

@media (min-width: 767px) and (max-width: 992px) {
    .carousel-inner .active.left {
        left: -50%;
    }
    .carousel-inner .next {
        left: 50%;
    }
    .carousel-inner .prev {
        left: -50%;
    }
    .active > div {
        display: none;
    }
    .active > div:first-child {
        display: block;
    }
    .active > div:first-child + div {
        display: block;
    }
}

@media (min-width: 992px) {
    .carousel-inner .active.left {
        left: -25%;
    }
    .carousel-inner .next {
        left: 25%;
    }
    .carousel-inner .prev {
        left: -25%;
    }
}


/*-------------------------------------------------------*    Grid
/*-------------------------------------------------------*/


/*-------------------------------------------------------*    Typography
/*-------------------------------------------------------*/

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #55565a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Circular-Std-Black", Helvetica, Arial, sans-serif;
    font-weight: 700;
}

h1,
h2,
h3,
h4 {
    color: #005a70;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 27px;
}

h3 {
    margin-bottom: 20px;
}

h5 {
    color: #00586f;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    font-size: 16px;
    margin-top: 14px;
    margin-bottom: 6px;
}

.headingColor h1, .headingColor h2{
    color: #85ba4c;
}

.page-title {
    padding-left: 30px;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.section-title {
    padding-left: 30px;
}

p {
    margin: 0 0 17px;
}

.nav,
.navbar {
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
}

@font-face {
    font-family: 'Circular-Std-Black';
    src: url("../fonts/Circular-Std-Black.eot");
    src: local("?"), url("../fonts/Circular-Std-Black.woff") format("woff"), url("../fonts/Circular-Std-Black.ttf") format("truetype"), url("../fonts/Circular-Std-Black.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

.sidebar-sub-title,
.page-sub-title {
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

.page-sub-title.FADsub-Title{
    font-size: 20px;
    font-weight: 700;
}

.angle {
    border-style: solid solid solid dashed;
    border-top-width: 40px;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 2880px;
}

.angle.top {
    border-color: white transparent transparent transparent;
}

.angle.bottom {
    border-color: transparent transparent transparent white;
}

.angle.rev {
    border-right-width: 2880px;
    border-left-width: 0;
}


/*-------------------------------------------------------*    Style tile
/*-------------------------------------------------------*/

.color-1 {
    background-color: #FFFFFF;
    width: 40%;
}

.color-2 {
    background-color: #F0F0F0;
    width: 30%;
}

.color-3 {
    background-color: #545454;
    width: 20%;
}

.color-4 {
    background-color: #696969;
    width: 10%;
}

.color-5 {
    background-color: #666666;
}

.color-6 {
    background-color: #d3d3d3;
}

.color-7 {
    background-color: #a8a8a8;
}

.color-8 {
    background-color: #ededed;
}

.color-swatches {
    display: table;
    border: 1px solid #adadad;
    font-size: 0;
}

.color-swatches div {
    display: table-cell;
}

.color-swatches.primary {
    width: 100%;
}

.color-swatches.primary div {
    height: 100px;
}

.color-swatches.secondary {
    width: 25%;
}

.color-swatches.secondary div {
    height: 75px;
}

.design-elements img {
    padding: 15px 0;
}

.icon-styles {
    font-size: 40px;
}

.section-spacer {
    padding-bottom: 40px;
}


/* Remove for production */


/*-------------------------------------------------------*    Navs
/*-------------------------------------------------------*/

.navbar-container {
    -webkit-backface-visibility: hidden;
}

.utility-nav {
    margin-bottom: 0;
    min-height: 0;
    background-color: transparent;
    border-radius: 0;
}

.utility-nav .row {
    margin-left: 0;
    margin-right: 0;
}

.utility-nav .nav {
    padding: 20px 0px;
}

.utility-nav .nav li a {
    color: #0091b3;
    padding: 0;
    margin: 12px 8px 8px;
    font-size: 13px;
    line-height: 1;
    height: auto;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
}

.utility-nav .nav li a:hover {
    background-color: transparent;
    border-bottom-color: #c7e2ea;
}

.utility-nav .nav li a:focus {
    background-color: transparent;
}

.utility-nav .nav li .dropdown-menu a {
    text-transform: none;
}

.utility-nav .nav li .dropdown-menu a:hover {
    color: #d3d3d3;
}

.utility-nav .active {
    background-color: #696969;
    color: #FFFFFF;
}

.utility-nav .navbar-form {
    margin: 0;
}

.utility-nav .form-control {
    margin-bottom: 0;
}

.utility-nav button,
.utility-nav input[type="submit"] {
    position: absolute;
    top: 18px;
    right: 15px;
    background-color: transparent;
    border: none;
    color: #5a5c5f;
    font-size: 26px;
}

.navbar-brand {
    border-bottom: none;
}

.main-nav {
    margin-bottom: 0;
    background-color: transparent;
}

.main-nav .navbar-brand {
    padding: 10px 15px 10px 0;
    height: auto;
}

.main-nav .navbar-brand img {
    height: 30px;
}

.main-nav .navbar-toggle {
    color: #545454;
    border-color: #545454;
    padding: 5px 10px;
    margin-right: 0;
}

.main-nav .navbar-toggle:hover {
    color: #fff;
    background-color: #545454;
}

.main-nav .navbar-collapse {
    border-width: 0 0 3px 0;
    border-style: solid;
    border-image: linear-gradient(to right, #3ab0c8, #a4d65e) 100% 1;
    padding: 10px 0;
}

.main-nav .navbar-collapse .nav {
    width: 100%;
}

.main-nav .navbar-collapse .nav li {
    width: 16.6666%;
    width: calc(100%/6);
    border-right: 1px solid #cccccc;
}

.main-nav .navbar-collapse .nav li:last-of-type {
    border-right: none;
}

.main-nav .navbar-collapse .nav li:last-of-type a {
    padding: 4px 50px;
    /*text-transform:capitalize;*/
}

.main-nav .navbar-collapse .nav > li > a {
    color: #55565a;
    padding: 4px 32px;
    text-align: center;
    font-weight: 300;
    font-size: 18px;
    font-style: normal;
    text-decoration: none;
    border-bottom: none;
    line-height:27px;
}

.main-nav .navbar-collapse .nav > li > a:hover {
    color: #0091b3;
    background-color: transparent;
}

.main-nav .navbar-collapse .nav > li > a:focus {
    background-color: transparent;
}

.main-nav .navbar-collapse .nav .dropdown.open > a {
    color: #55565a;
}

.breadcrumb-nav {
    min-height: 0;
    padding: 20px 0 0;
}

.breadcrumb-nav .navbar-nav > li > a {
    color: #55565a;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    border-bottom: none;
    border-right: 1px solid #ccc;
    padding: 0 10px;
}

.breadcrumb-nav .navbar-nav > li > a:hover {
    color: #0091b3;
    background-color: transparent;
}

.breadcrumb-nav .navbar-nav li:first-child a {
    padding-left: 30px;
}

.breadcrumb-nav .navbar-nav li:last-child a {
    border-right: none;
}

.nav-tabs {
    margin: 10px 0;
    border-bottom: none;
}

.nav-tabs > li {
    border-right: 1px solid #ccc;
}

.nav-tabs > li:last-of-type {
    border-right: none;
}

.nav-tabs > li > a {
    font-weight: 700;
    text-align: center;
    border: none;
    margin-right: 0;
    padding: 15px 11px;
}

.nav-tabs > li > a br {
    display: none;
}

.nav > li > a:hover,
.nav > li > a:focus {
    background-color: #f7f7f7;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #0091b3;
    background-color: #f7f7f7;
    border: none;
}

.tab-content {
    background-color: #f7f7f7;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 40px 30px 25px;
}

.tab-content input {
    height: 40px;
}

.tab-content .btn {
    padding: 8px 24px;
}

.tab-content .btn-default {
    border-radius: 4px;
}

.sidebar-nav {
    margin-bottom: 30px;
}

.sidebar-nav .nav > li {
    border-bottom: 1px solid #ccc;
}

.sidebar-nav .nav > li > a {
    font-size: 16px;
    line-height: 1.5;
    padding: 12px 0 12px 18px;
    border-bottom: none;
    border-left: 2px solid transparent;
}

.sidebar-nav .nav > li > a:hover {
    background-color: transparent;
    border-color: #0091b3;
}

.sidebar-nav .nav > li:first-of-type {
    border-top: 1px solid #ccc;
}

.sidebar-nav .nav > li.active a {
    font-weight: 700;
    border-left: 2px solid #0091b3;
}

.sidebar-nav .subnav {
    padding: 10px 0 10px 30px;
    list-style: none;
    border-bottom: 1px solid #ccc;
}

.sidebar-nav .subnav > li > a {
    font-size: 14px;
    line-height: 1;
}

.sidebar-nav .fa {
    color: #55565a;
    font-size: 22px;
    position: relative;
    top: 1px;
    right: 10px;
    margin-left: 10px;
}

.additional-links .nav li {
    display: inline-block;
    /* width: 31.2%; */
    /* width: calc((100% / 3) - 23px); */
    margin: 0 10px;
    border-bottom: 1px solid #ccc;
}

.additional-links .nav li:nth-last-child(-n+3) {
    border-bottom: 0;
}

.additional-links .nav li a {
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    padding: 15px 0 0;
    margin-bottom: 15px;
}

.additional-links .nav li a:hover {
    background-color: transparent;
}


.service-list{
    padding:0;
    margin:0;
    width: 100%;
    display:inline-block;
}
    .service-list li{
        /* display:inline-block; */
    }

    .service-list li {
    /* display: inline-block; */
    /* width: 31.2%; */
    /* width: calc((100% / 3) - 23px); */
    margin: 0 10px;
    border-bottom: 1px solid #ccc;
    }

    .service-list li:nth-last-child(-n+3) {
        /* border-bottom: 0; */
    }

    .service-list li a {
        display: inline-block;
        font-weight: 700;
        line-height: 1;
        padding: 15px 0 0;
        margin-bottom: 15px;
    }

    .service-list li a:hover {
        background-color: transparent;
    }

.tab-select {
    background-color: #f7f7f7;
    padding: 30px 30px 0;
    margin-top: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.tab-select .form-group {
    margin-bottom: 0;
}

.tab-select .form-control {
    color: #0091b3;
    font-weight: 700;
    margin-bottom: 0;
}

.locations .tab-select {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.address-info hr {
    display: none;
}

.address-info hr:last-child {
    display: block;
}

.pagination-nav {
    text-align: center;
}

.pagination-nav .pager-control {
    color: #0091b3;
}

.pagination-nav .pagination {
    margin: 0;
}

.pagination-nav .pagination > li > a,
.pagination-nav .pagination > li > span {
    color: #55565a;
    border: none;
    border-bottom: 1px solid transparent;
    padding: 0 10px;
}

.pagination-nav .pagination > li > a:hover,
.pagination-nav .pagination > li > a:focus,
.pagination-nav .pagination > li > span:hover,
.pagination-nav .pagination > li > span:focus {
    color: #0091b3;
    background-color: transparent;
    border-bottom-color: #0091b3;
}

.pagination-nav .pagination > .active > a,
.pagination-nav .pagination > .active > a:hover,
.pagination-nav .pagination > .active > a:focus,
.pagination-nav .pagination > .active > span,
.pagination-nav .pagination > .active > span:hover,
.pagination-nav .pagination > .active > span:focus {
    color: #0091b3;
    font-weight: 700;
    background-color: transparent;
}


/*
.dropdown-menu {
  padding: 12px 15px;
  border-top: 4px solid $accent-color-2;
  border-right: none;
  border-bottom: none;
  border-left: none;
  @include border-radius(0);
  li {
    a {
      color: $brand-color-3;
      text-transform: none;
      text-decoration: none;
      border-bottom: 1px solid $accent-color;
      padding: 8px 0;
      &:hover {
        color: $brand-color-2;
        background-color: transparent;
      }
    }
    &:last-child {
      a {
        border-bottom: none;
      }
    }
  }
}
*/

.footer.navbar {
    padding: 15px 0 15px;
    margin-bottom: 0;
    color: #55565a;
    background-color: transparent;
    border: none;
}

.footer.navbar .container .navbar {
    border-width: 3px 0 0 0;
    border-style: solid;
    border-image: linear-gradient(to right, #a4d65e, #3ab0c8) 100% 1;
}

.footer.navbar .social-label {
    padding: 0 10px 0 15px;
}

.footer .navbar {
    min-height: 0;
}

.footer .copyright {
    display: inline-block;
    width: 49%;
    width: calc(50% - 4px);
    text-align: left;
    font-size: 12px;
    padding-left: 10px;
    vertical-align: bottom;
}

#social-links {
    display: inline-block;
    width: 50%;
    position: relative;
    top: 1px;
    text-align: right;
    padding-right: 10px;
}

#social-links a {
    color: #999;
    font-size: 18px;
    line-height: 34px;
    border: none;
    padding: 0;
    transition: all 0.3s ease-in-out;
    height:34px;
    display:block;
}

#social-links a:last-of-type .social-link {
    margin-right: 0;
}

#social-links .social-link {
    display: inline-block;
    height: 34px;
    width: 34px;
    text-align: center;
    border: 1px solid #999;
    border-radius: 5em;
    margin: 0 2px;
    transition: none;
    background-image: url('../_img/social-media-icons-sprites.png');
    background-repeat: no-repeat;
    background-position: -4.5px -3.5px;
    cursor: pointer;
}

#social-links .social-link:nth-of-type(2) {
    background-position: -51.5px -3.5px;
}

#social-links .social-link:nth-of-type(3) {
    background-position: -102.5px -5.5px;
}

#social-links .social-link:nth-of-type(4) {
    background-position: -153.5px -5.5px;
}

#social-links .social-link:nth-of-type(5) {
    background-position: -203.5px -5.5px;
}

#social-links .social-link:hover {
    color: #0091b3;
    border-color: #0091b3;
    background-position: -4.5px -44.5px;
}

#social-links .social-link:nth-of-type(2):hover {
    color: #0091b3;
    border-color: #0091b3;
    background-position: -51.5px -44.5px;
}

#social-links .social-link:nth-of-type(3):hover {
    color: #0091b3;
    border-color: #0091b3;
    background-position: -102.5px -46.5px;
}

#social-links .social-link:nth-of-type(4):hover {
    color: #0091b3;
    border-color: #0091b3;
    background-position: -153.5px -46.5px;
}

#social-links .social-link:nth-of-type(5):hover {
    color: #0091b3;
    border-color: #0091b3;
    background-position: -203.5px -46.5px;
}

.footer-nav {
    text-align: center;
    text-transform: uppercase;
    padding: 20px 10px;
}

.footer-nav a {
    color: #55565a;
    font-size: 13px;
    font-style: normal;
    text-decoration: none;
    padding: 0 20px 0 18px;
    border-bottom: none;
    border-right: 1px solid #ccc;
}

.footer-nav a:hover {
    color: #0091b3;
    text-decoration: none;
}

.footer-nav a:first-child {
    padding-left: 0;
}

.footer-nav a:last-child {
    border-right: none;
    padding-right: 0;
}

.hamburger {
    padding-left: 0;
    padding-bottom: 10px;
}

.hamburger-box {
    width: 28px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 28px;
    height: 2px;
    background-color: #55565a;
}


/*-------------------------------------------------------*    Heroes
/*-------------------------------------------------------*/


/*
.hero {
  &-banner {
    padding: 200px 0 0;
    margin-bottom: 20px;
      @include bgimagecover($white, '../img/bgimage.jpg', center);
  }
  &-content {
    padding: 0 0 100px;
    color: $white;
    h1 {
      color: $white;
      margin: 0;
    }
  }
}
*/

.hero-slides {
    margin: 60px auto 45px;
}

.hero-slides .bx-wrapper {
    margin-bottom: 0;
}

.hero-slides .bx-wrapper ul {
    padding-left: 0;
}

.hero-slides .bx-wrapper .bx-viewport {
    left: 0;
    border: none;
    border-left: 1px solid #ccc;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius:96px;
    box-shadow: none;
}

.homepage-right-ad img{
    width:100%;
    height:auto;
}

.hero-slides .bx-pager {
    top: 520px;
    bottom: auto;
    padding-top: 0;
}

.hero-slides .bx-pager.bx-default-pager a {
    background: #e7e7e7;
}

.hero-slides .bx-pager.bx-default-pager a:hover,
.hero-slides .bx-pager.bx-default-pager a.active {
    background: #72c4d6;
}

/*Mobile*/
.mobile-hero-slides {
    margin: 60px auto 45px;
}

.mobile-hero-slides .bx-wrapper {
    margin-bottom: 0;
}

.mobile-hero-slides .bx-wrapper ul {
    padding-left: 0;
}

.mobile-hero-slides .bx-wrapper .bx-viewport {
    left: 0;
    border: none;
    border-left: 1px solid #ccc;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius:96px;
    box-shadow: none;
}


.mobile-hero-slides .bx-pager {
    top: 520px;
    bottom: auto;
    padding-top: 0;
}

.mobile-hero-slides .bx-pager.bx-default-pager a {
    background: #e7e7e7;
}

.mobile-hero-slides .bx-pager.bx-default-pager a:hover,
.mobile-hero-slides .bx-pager.bx-default-pager a.active {
    background: #72c4d6;
}

.homepage-right-ad img{
    width:100%;
    height:auto;
}

.slide-container {
    height: 550px;
    border: 0px solid transparent;
    border-bottom-left-radius: 96px;
    text-align: right;
    padding: 160px 0;
    background: #ffffff url("../img/bgimage.jpg") no-repeat scroll center;
    background-size: cover;
    background-position:-38px 0;
}

.slide-container img {
    display: inline-block;
}

.slide-container .btn {
    margin-top: 50px;
}

.slide-content {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.slide-content p {
    line-height: 2em;
}

.slide-content p:last-of-type {
    margin-bottom: 0;
}

.hero-container {
    min-height: 384px;
    padding: 100px 20%;
    color: #fff;
    text-align: center;
    background-color: #76c4d5;
    background-image: linear-gradient(45deg, #3ab0c8, #a4d65e);
    border-radius: 12px;
    margin: -31px -31px 20px -31px;
}

.hero-container h1 {
    color: #fff;
    font-size: 52px;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    font-weight: 300;
    margin-top: 0;
}

.hero-container p {
    font-weight: 400;
}

.hero-container p:last-of-type {
    margin-bottom: 0;
}

.hero-container .lead {
    font-size: 25px;
}

.hero-container.inline {
    min-height: 0;
    padding: 80px 50px;
    margin: 20px 0;
}

.hero-container.inline h1 {
    margin-bottom: 0;
}


/*-------------------------------------------------------*    CTAs
/*-------------------------------------------------------*/

.cta {
    padding: 15px 0;
}

.cta h3 a:hover {
    border-color: transparent;
    text-decoration: underline;
}

.cta h3 a:hover [class^="pe-7s-"],
.cta h3 a:hover [class*="pe-7s-"] {
    text-decoration: none;
}

.cta h3 a:hover [class^="pe-7s-"]:before,
.cta h3 a:hover [class*="pe-7s-"]:before {
    background: linear-gradient(45deg, #3ab0c8, #3ab0c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.cta .content-well {
    text-align: center;
}

.cta .content-well h3 {
    margin: 0;
}

.cta .content-well div[class*="col-"] {
    padding-top: 4px;
    padding-bottom: 14px;
}

.cta [class^="pe-7s-"]:before,
.cta [class*="pe-7s-"]:before {
    font-size: 80px;
    background: linear-gradient(45deg, #a4d65e, #3ab0c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: initial;
    transition: all 0.3s ease-in-out;
}

.cta-inline, .information-blurb {
    color: #005a70;
    font-size: 18px;
    background-color: #f7f7f7;
    border-left: 1px solid #a4d65e;
    padding: 15px 50px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    /*
  &.location {
    color: $text-color;
    font-size: 15px;
    line-height: 1.5;
    h4 {
      color: #0091b3;
    }
    img {
      margin-right: 10px;
    }
    a {
      color: #0091b3;
    }
    .directions {
      a {
        font-weight: $bold;
        text-transform: uppercase;
        border-bottom-color: rgba(#0091b3, 0.3);
        &:hover {
          border-bottom-color: #0091b3;
        }
      }
    }
  }
  */
}

.cta-inline span {
    display: inline-block;
    min-width: 30%;
    font-size: 24px;
    font-family: "Circular-Std-Black", Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.cta-inline input {
    height: 43px;
    margin-bottom: 0;
}

.cta-inline .btn-default {
    border-radius: 6px;
}

.cta-inline.email {
    border-left: none;
    padding: 20px 30px;
    border-radius: 6px;
}

.cta-inline.form {
    border-radius: 6px;
}

.location {
    color: #55565a;
    font-size: 15px;
    line-height: 1.5;
}

.location h4 {
    color: #0091b3;
}

.location img {
    margin-right: 10px;
}

.location a {
    color: #0091b3;
}

.location .address-info h4 > a {
     position:absolute;
      left:0;
      top:5px;
      margin-left:40px;
      transition:none;
      -webkit-transition:none;
}

.location .address-info > p{
    margin-bottom:8px;
}

.location .directions a {
    font-weight: 700;
    text-transform: uppercase;
    border-bottom-color: rgba(0, 145, 179, 0.3);
}

.location .directions a:hover {
    border-bottom-color: #0091b3;
}

.location .section {
    font-size: 13px;
}

.location .section hr {
    margin: 15px 0;
}

.location .section h4 {
    font-size: 16px;
    position: relative;
}

#pnlPhysicians .pnl-image,
#pnlPhysicians .pnl-info {
    display: inline-block;
    vertical-align: top;
}

#pnlPhysicians .pnl-image {
    margin-right: 5%;
}

#pnlPhysicians .physician {
    padding-bottom: 15px;
    margin-bottom: 15px;
    margin-top: 30px;
    border-bottom: 1px solid #ccc;
}

#pnlPhysicians .pnl-image {
    border-radius: 12px;
    background-color: #f7f7f7;
    padding: 11px 10px;
    min-height: 225px;
    max-height: 225px;
}

#pnlPhysicians .pnl-image img {
    padding: 0;
    border-radius: 6px;
    border-width: 0px;
}

.sidebar .cta-inline {
    color: #55565a;
    font-size: 14px;
    line-height: 1.5;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 6px;
    padding: 15px 20px;
    margin-top: 50px;
}

.sidebar .cta-inline span {
    display: block;
    color: #0091b3;
    line-height: 2;
}

.sidebar .cta-inline.form {
    border-left: none;
    padding: 30px 20px 5px;
    display: inline-block;
}

.sidebar .cta-inline.form .form-group:last-of-type {
    margin-top: 20px;
}

.sidebar .cta-inline.form span {
    line-height: 1.5;
    width: 100%;
}


/*-------------------------------------------------------*    Content Blocks
/*-------------------------------------------------------*/

.content-block {
    color: #55565a;
    padding: 15px 0;
}

.content-block.main {
    font-size: 16px;
    line-height: 2;
}

.content-block.main h2 {
    display: inline-block;
    max-width: 85%;
    /* width: 85%; */
}

.content-block.main .content-wrapper {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    border-top-right-radius: 75px;
    padding: 30px;
}

.content-block.main.feature .content-wrapper {
    border-top-right-radius: 72px;
}

.content-block.main .social-share {
    display: inline-block;
    width: 95px;
    font-weight: 700;
    font-size: 18px;
    padding-left:5px; 
}

.content-block.main .social-share img {
    margin-right: 10px;
}

.content-block.main .social-share a {
    border-bottom-color: rgba(0, 145, 179, 0.3);
}

.content-block.main .social-share a:hover {
    border-bottom-color: #0091b3;
}

.content-block.main.campaign {
    padding-top: 60px;
}

.content-block.main.campaign .content-block {
    text-align: center;
}

.content-block.main.campaign .content-block h2 {
    margin-bottom: 30px;
}

.content-block .card.support .card-image {
    height: 210px;
    border-top-left-radius: 12px;
    border-top-right-radius: 36px;
    /*background: #ffffff url("../img/support-img.jpg") no-repeat scroll center;*/
    background-size: cover;
}

.content-block .card.support .card-content {
    background-color: #fff;
    padding: 15px 30px;
    border: 1px solid #ccc;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top: 0;
}

.content-block .card.related .card-image {
    border-radius: 6px;
    background: #ffffff url("../img/related-img.jpg") no-repeat scroll center;
    background-size: cover;
	width: 100%;
}

.content-block .card .card-content p:last-of-type {
    margin-bottom: 0;
}

.content-block .content-wrapper .card.support .card-image img {
    border-top-left-radius: 6px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.content-block .content-wrapper .card.support .card-image {
    overflow: hidden;
}

.content-block .content-wrapper .card.support .card-content {
    border: none;
    padding: 15px 0;
}

.content-block .content-wrapper .page-sub-title {
    margin-top: 50px;
}

.content-block .content-wrapper .page-sub-title:first-of-type {
    margin-top: 0;
}

.content-well {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 30px 0;
}

.content-well.row {
    margin-left: 0;
    margin-right: 0;
}

.content-well div[class*="col-"] {
    border-right: 1px solid #ccc;
    padding-left: 30px;
    padding-right: 30px;
}

.content-well div[class*="col-"]:last-of-type {
    border-right: none;
}


/*
.content-block {
  &.resources {
    .content-well {
      div[class*="col-"] {
        &:first-of-type {
          &:before {
            content: "\e686";
            position: absolute;
              left: -50px;
              top: 34%;
              font-size: 70px;

              font-family: 'Pe-icon-7-stroke';
              speak: none;
              font-style: normal;
              font-weight: normal;
              font-variant: normal;
              text-transform: none;
              line-height: 1;
          }
        }
        &:last-of-type {
          &:after {
            content: "\e684";
            position: absolute;
              right: -50px;
              top: 34%;
              font-size: 70px;

              font-family: 'Pe-icon-7-stroke';
              speak: none;
              font-style: normal;
              font-weight: normal;
              font-variant: normal;
              text-transform: none;
              line-height: 1;
          }
        }
      }
    }
  }
}
*/

.featured-container {
    height: 480px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top-right-radius: 72px;
    border-bottom-left-radius: 36px;
    margin-top: -31px;
    margin-right: -31px;
    background: #ffffff url("") no-repeat scroll center;
    background-size: 100% auto !important;
}

.location-directions {
    position: absolute;
    right: 30px;
    top: 258px;
    width: 120px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.location-map {
    width: 120px;
    height: 120px;
    border: 3px solid #fff;
    border-radius: 5em;
    margin-bottom: 6px;
    background: #ffffff url("../_img/location-map.jpg") no-repeat scroll center;
    background-size: cover;
}

.location-info {
    position: relative;
    top: 427px;
    width: 100%;
    color: #fff;
    font-weight: 700;
    font-size: 21px;
    border-bottom-left-radius: 36px;
    padding: 15px 30px;
    background: #005a70;
    filter: alpha(opacity=90);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    background: rgba(0, 90, 112, 0.9);
}

.location-info span {
    color: #3ab0c8;
    font-size: 24px;
}

.location-info .divider {
    border-color: #fff;
    font-size: 21px;
}

.location-link {
    display: inline-block;
    position: absolute;
    right: 30px;
    font-size: 16px;
    line-height: 2.6;
    border-left: 1px solid #fff;
    padding-left: 30px;
}

.location-link a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    text-align: right;
}

.map-container {
    height: 600px;
    background: #ffffff url("../img/location-map-large.jpg") no-repeat scroll center;
    background-size: cover;
}

.location-legend {
    font-size: 12px;
    text-align: center;
    /* text-transform: uppercase; */
    background-color: #f7f7f7;
    padding: 5px;
    /* margin-bottom: 40px; */
}

.location-legend ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.location-legend li {
    display: inline-block;
    width: 96%;
    text-align: left;
    font-size: 12px;
    vertical-align: top;
    margin: 15px 20px 15px 20px;
}

.location-legend li:first-of-type {
    /*margin-left: 0; */
}

.location-legend .phoebe-icon {
    top: 0;
}

.location.result {
    margin-bottom: 40px;
    padding: 0 10px;
}

.sidebar .btn-default {
    border-radius: 6px;
}

.sidebar form {
    margin-bottom: 0;
}

.index-item {
    border-bottom: 1px solid #ccc !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.index-item:first-of-type {
    padding-top: 0;
}

.index-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.index-item h2 {
    margin-top: 0;
}

.index-item h2 a {
    border-bottom: 2px solid transparent;
}

.index-item h2 a:hover {
    border-bottom-color: #0091b3;
}

.index-item img {
    border-radius: 6px;
}

.index-item img.img-responsive {
    padding: 0;
}

.index-image {
    display: table;
    width: 100%;
    max-width: 200px;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0 auto;
}

.index-image [class^="pe-7s-"],
.index-image [class*="pe-7s-"] {
    display: table-cell;
    vertical-align: middle;
    font-size: 70px;
}

.search-results img {
    float: left;
    margin-right: 20px;
}

.event-sidebar h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.event-sidebar img {
    border-radius: 6px;
    padding: 0;
}

.event-sidebar img.icon {
    border-radius: 0;
}

.event-table {
    font-weight: 700;
    margin-bottom: 50px;
}

.event-table .event-details {
    color: #005a70;
    font-size: 14px;
}

.event-table .event-details div[class*="col-"] {
    border-top: 1px solid #ccc;
    line-height: 1;
    padding: 20px;
}

.event-table .event-details div[class*="col-"]:nth-of-type(odd) {
    border-right: 1px solid #ccc;
}

.event-table .event-details:nth-child(-n+2) {
    border-bottom: 1px solid #ccc;
}

.event-table > div[class*="col-"] {
    padding-left: 20px;
    padding-right: 20px;
}

.event-table > div[class*="col-"] > .row {
    margin-left: -20px;
    margin-right: -20px;
}

.event-details {
    color: #005a70;
    font-weight: 400;
    /*
  .row {
    margin-left: 0;
    margin-right: 0;
    border-bottom: 1px solid #ccc;
    &:last-of-type {
      border-bottom: none;
    }
  }
  div[class*="col-"] {
    &:nth-of-type(odd) {
      border-right: 1px solid #ccc;
    }
  }
  
  ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
  }
  li {
    border-bottom: 1px solid #ccc;
    line-height: 1;
    padding: 15px;
    &:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
    }
  }
  */
}

.event-details img {
    border-radius: 0;
}

.event-details .table {
    margin-top: 20px;
    margin-bottom: 0;
}

.event-details .table > tbody > tr > th,
.event-details .table > tbody > tr > td {
    padding: 12px;
    border-top: none;
}

.event-details tr {
    border-bottom: 1px solid #ccc;
}

.event-details tr:last-of-type {
    border-bottom: none;
}

.event-details th {
    border-right: 1px solid #ccc;
}

.panel-title .fa {
    float: right;
    font-size: 28px;
    position: relative;
    top: -8px;
    transition: all 0.3s ease-in-out;
}

.panel-group {
    margin: 40px 0 50px;
}

.panel-group .collapsed .panel-title .fa {
    top: -4px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}

.panel-group a {
    color: #55565a;
}

.panel-group a:focus {
    text-decoration: none;
}

.panel-group a .panel-title {
    font-weight: 400;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
}

.panel-group .section-title {
    color: #8E8E8E;
    font-size: 14px;
}

.panel-group .panel:nth-of-type(even) {
    background-color: #f1f1f1;
}

.panel-group .panel:nth-of-type(odd) {
    background-color: #e7e7e7;
}

.panel-group .panel:nth-of-type(2) {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.panel-group .panel:last-of-type {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.panel-group .panel + .panel {
    margin-top: 1px;
}

.panel {
    border: none;
    box-shadow: none;
}

.panel-heading {
    padding: 20px;
}

.panel-body {
    background-color: #fff;
}

.index-section .page-sub-title {
    text-align: center;
}

.index-results {
    font-size: 14px;
    margin-left: -20px;
    margin-right: -20px;
}

.index-results div[class*="col-"] {
    border-right: 1px solid #ccc;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 40px;
}

.index-results div[class*="col-"]:nth-of-type(3n+3) {
    border-right: none;
}

.index-filter .row {
    margin-left: 0;
    margin-right: 0;
}

.index-filter em {
    font-size: 0.9em;
}

.index-filter .form-group {
    margin-bottom: 0;
}

.index-filter .form-control {
    margin-bottom: 0;
}

.results-selector {
    text-align: right;
    margin-bottom: 0;
    padding: 24px 0 0;
}

.results-selector label {
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
    margin-right: 10px;
}

.results-selector .form-control {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
}

.category-feature {
    text-align: center;
    padding: 20px 0;
}

.doctor-image {
    background-color: #f7f7f7;
    padding: 11px 10px;
    border-radius: 12px;
}

.divFindADoctorResults .content-wrapper > .row, .divFindADoctorResults .content-wrapper > div > .row {
    padding: 0 25px;
}

.doctor-details ul {
    list-style-type: none;
    padding-left: 0;
}

.doctor-details li {
    padding: 0 5px 0 0;
    display: inline-block;
}

.doctor-details li:last-of-type {
    border-bottom: none;
}

.doctor-details .btn:not(.btn-primary) {
    /*font-size: 16px;
    line-height: 1;
    text-transform: none;
    border-radius: 0;
    border-bottom: 1px solid transparent;
    padding: 0;
    margin: 0 20px;*/
}

.doctor-details .btn:not(.btn-primary):hover {
    /*color: #0091b3;
    border-bottom: 1px solid #0091b3; */
}

.tabbed-content {
    margin-bottom: 40px;
}

.tabbed-content .nav-tabs > li {
    border-bottom: 1px solid #ccc;
    border-right: 0;
}

.tabbed-content .nav-tabs > li.active {
    border: 1px solid #ccc;
    border-bottom: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.tabbed-content .nav-tabs > li.active > a,
.tabbed-content .nav-tabs > li.active > a:hover,
.tabbed-content .nav-tabs > li.active > a:focus {
    background-color: transparent;
}

.tabbed-content .tab-content {
    background-color: transparent;
    border: 1px solid #ccc;
    border-top: none;
    padding: 30px;
}

.tabbed-content .tab-content h4 {
    margin-top: 30px;
}


/*-------------------------------------------------------*    Feeds
/*-------------------------------------------------------*/

.feed-block {
    padding: 20px 0px 40px;
}


/*-------------------------------------------------------*    Buttons
/*-------------------------------------------------------*/

.btn {
    text-decoration: none;
    white-space: normal;
    text-transform: uppercase;
    color: #0091b3;
    font-weight: 700;
    background-color: transparent;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
}

.btn-default {
    color: #fff;
    background-color: #a4d65e;
    border: 2px solid transparent;
}

.btn-default:hover {
    color: #fff;
    background-color: #ccc;
    border-color: #ccc;
}

.btn-primary {
    color: #0091b3;
    background-color: #fefdfd;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.btn-group .btn-primary {
    border: none;
    padding: 5px;
}

.btn-group .btn {
    text-transform: none;
    padding: 12px 15px 10px 12px;
}

.btn-group .btn:hover {
    color: #0091b3;
    background-color: transparent;
    border-color: #ccc;
}

.btn-group img {
    position: relative;
    top: -2px;
    height: 20px;
    width: auto;
    margin-right: 10px;
}


/*-------------------------------------------------------*    Forms
/*-------------------------------------------------------*/

input,
textarea,
select {
    margin-bottom: 1.5rem;
}

figure,
form {
    margin-bottom: 2.5rem;
}

input[type="email"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    padding: 9px 10px;
    background-color: #fff;
    border: 1px solid #c8c8c8;
    border-radius: 6px;
    box-shadow: none;
    box-sizing: border-box;
}

input[type="email"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: 0;
}

label,
legend {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600;
}

fieldset {
    padding: 0;
    border-width: 0;
    margin-bottom: 1.5rem;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
    margin-right: .1em;
}

label > .label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal;
}

.form-control {
    box-shadow: none;
}

.form-control:focus {
    border-color: #a4d65e;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(164, 214, 94, 0.6);
}

select.form-control {
    height: 40px;
}

.form-group-wrapper {
    background-color: #f7f7f7;
    border-radius: 4px;
    padding: 10px;
    margin: 20px 0 24px;
}

.form-group-wrapper input {
    height: 40px;
}

.form-spacer {
    margin-top: 26px;
}

.after-form {
    font-size: 0.9em;
    text-align: center;
    margin-top: -10px;
}


/*-------------------------------------------------------*    Links
/*-------------------------------------------------------*/

a,
a:hover,
button,
button:hover {
    transition: all 0.3s ease-in-out;
}

a {
    color: #0091b3;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #0091b3;
    text-decoration: none;
    border-bottom-color: #c7e2ea;
}

.index-link {
    font-weight: 700;
    margin-top: 27px;
    margin-right: 30px;
}

.content-block.main p a {
    font-weight: 700;
    border-bottom-color: rgba(0, 145, 179, 0.3);
}

.content-block.main p a:hover {
    border-bottom-color: #0091b3;
    cursor:pointer;
}

.title-link {
    text-align: right;
    font-weight: 700;
    padding: 42px 30px 0 0;
}


/*-------------------------------------------------------*    Lists
/*-------------------------------------------------------*/

ul {
    padding-left: 18px;
}


/*-------------------------------------------------------*    Quotes
/*-------------------------------------------------------*/

blockquote {
    width: 80%;
    color: #545454;
    font-size: 21px;
    font-weight: 300;
    font-style: italic;
    border-left: 2px solid #0091b3;
    line-height: 1.6;
    margin: 0 auto 20px;
}

blockquote footer {
    color: #55565a;
    text-align: right;
}


/*-------------------------------------------------------*    Tables
/*-------------------------------------------------------*/


/* ==========================================================================
  State rules
  ========================================================================== */

@media (max-width: 1199px) {
    .card-image img {
        width: 100%;
        height: auto;
    }
    .main-nav .navbar-collapse .nav > li > a {
        padding: 4px 14px;
    }
    .nav-tabs > li > a {
        font-size: 13px;
        padding: 15px 9px;
    }
    .location-legend {
        text-align: left;
        padding: 10px;
    }
    .location-legend li {
        margin: 10px;
    }
    .location-legend li:first-of-type {
        margin-left: 10px;
    }
    .sidebar .cta-inline span {
        font-size: 18px;
    }
    .additional-links .nav li {
        width: 47.5%;
        width: calc((100% / 2) - 23px);
    }

    .service-list li {
        width: 47.5%;
        width: calc((100% / 2) - 23px);
    }

    .footer-nav {
        font-size: 12px;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }
    .footer-nav a {
        display: inline-block;
        width: 24.7%;
        text-align: left;
        border-right: none;
        padding: 6px 0;
    }
    .footer .copyright {
        padding-left: 0;
    }
    .footer .social-container {
        padding-right: 0;
    }

    .slide-container{
        height:460px;
    }
}

@media (max-width: 991px) {
    h2,
    .h2 {
        font-size: 24px;
    }
    h3,
    .h3 {
        font-size: 20px;
    }
    .navbar-brand > img {
        width: 160px;
        height: auto;
    }
    .utility-nav .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    .utility-nav .nav li a {
        font-size: 12px;
    }
    .utility-nav .navbar-form .form-control {
        width: 150px;
    }
    .main-nav .navbar-collapse .nav > li > a {
        font-size: 16px;
        padding: 4px 0px;
    }
    .main-nav .navbar-collapse .nav li:last-of-type a {
        padding: 4px 20px;
    }
    .section-title {
        padding-left: 0;
    }
    .index-link {
        padding-right: 0;
    }
    .slide-container {
        text-align: center;
        background-position: 0;
    }
    .content-block.main.feature .content-wrapper {
        border-top-right-radius: 12px;
    }
    .content-block.main .social-share {
        top: -5px;
    }
    .sidebar .cta-inline {
        border-left: none;
        border-top: 1px solid #a4d65e;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        padding: 20px 35px;
        margin: 20px 0;
    }
    .sidebar {
        margin-bottom: 20px;
    }
    .hero-container {
        min-height: 0;
        padding: 80px;
    }
    .index-results div[class*="col-"]:nth-of-type(3n+3) {
        border-right: 1px solid #ccc;
    }
    .index-results div[class*="col-"]:nth-of-type(even) {
        border-right: none;
    }
    .featured-container {
        height: 350px;
        border: none;
        margin: 20px 0;
    }
    .location-directions {
        top: 140px;
        right: 50px;
    }
    .location-info {
        top: 278px;
        font-size: 18px;
        padding: 19px 30px 17px;
    }
    .event-table > div[class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
    .content-block.resources .content-well div[class*="col-"]:nth-of-type(2) {
        border-right: none;
    }
    .content-block.resources .content-well div[class*="col-"]:first-of-type:before {
        display: none;
    }
    /*
  .content-block {
    &.resources {
      .content-well {
        div[class*="col-"] {
          &:nth-of-type(2) {
            &:after {
              content: "\e684";
              position: absolute;
                right: -50px;
                top: 34%;
                font-size: 70px;

                font-family: 'Pe-icon-7-stroke';
                speak: none;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                line-height: 1;
            }
          }
        }
      }
    }
  }
  */
    .tab-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer-nav {
        text-align: left;
    }
    .footer-nav a {
        display: inline-block;
        width: 33%;
        text-align: left;
        border-right: none;
        padding: 6px 0;
    }
    .card-image img {
        width: auto;
    }

     .slide-container{
        height:360px;
    }
}

@media (max-width: 767px) {

    .map-right-side, .map-left-side{
        width:100% !important;
        margin: 20px 0 !important;
    }


    .location-map-control .content-wrapper{
        width:100%;
    }
    .location-map-control{
        width:100% !important;
    }

    h3 {
        margin-bottom: 10px;
    }
    #main-content {
        padding-top: 60px;
    }
    #main-content.homepage {
        padding-top: 0;
    }
    .navbar-container {
        position: absolute;
        width: 100%;
        z-index:2;
    }
    .utility-nav {
        height: 60px;
        background-color: #ffffff;
        border-bottom: 1px solid #ccc;
        border-right: 1px solid #ccc;
        border-bottom-right-radius: 28px;
    }
    .utility-nav button.search,
    .utility-nav input[type="submit"].search,
    a#btnSearch {
        top: 6px;
        right: 60px;
    }
    .utility-nav .navbar-toggle {
        top: 0;
        right: 0;
        z-index: 1003;
        padding: 0;
        margin: 0 4px;
    }

.mobilebtnSearch {
    display: block;
}
    .main-nav {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1000;
        border: none;
    }
    .main-nav > .container {
        background-color: #f0f9fb;
    }
    .main-nav .navbar-collapse {
        border-width: 0;
        padding: 0;
    }
    .main-nav .navbar-collapse.in {
        overflow: visible;
    }
    .main-nav .navbar-collapse .nav li {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ccc;
    }
    .main-nav .navbar-collapse .nav li:last-of-type {
        border-bottom: none;
        border-width: 0 0 2px 0;
        border-image: linear-gradient(to right, #a4d65e, #3ab0c8) 100% 1;
    }
    .main-nav .navbar-collapse .nav li a {
        font-size: 18px;
        text-align: left;
        padding: 10px 15px;
    }
    .main-nav .navbar-nav {
        margin: 0;
        border-width: 2px 0 0 0;
        border-style: solid;
        border-image: linear-gradient(to right, #3ab0c8, #a4d65e) 100% 1;
    }
    .navbar-brand {
        padding: 10px 0;
    }
    .breadcrumb-nav {
        padding-top: 10px;
    }
    .breadcrumb-nav .navbar-nav {
        margin: 0;
    }
    .breadcrumb-nav .navbar-nav li:first-child a {
        padding-left: 0;
    }
    .breadcrumb-nav .navbar-nav li a {
        font-size: 11px;
        padding: 0 10px 0 8px;
    }
    .breadcrumb-nav .nav li {
        display: inline-block;
    }
    .page-title {
        font-size: 30px;
        padding-left: 0;
    }
    .hero-slider {
        min-height: 292px;
       /* height: 50vh;*/
        background: #ffffff url("../img/mobile-hero.jpg") no-repeat scroll center;
        background-size: cover;
    }

    .hero-slider > .container > .row > .col-md-12{
        padding:0 !important;
    }

    .hero-slider .bx-controls{
        display:none;
    }

    .splitView{
        width:70%;
        display:inline-block;
    }

    .homepageAds{
       
    }

    .slide-container{
        height:345px;
        border-radius:0;
    }

    .hero-slides .bx-wrapper .bx-viewport{
        border-radius:0;
    }

    .hero-slides{
        margin:60px auto 0px;
    }

    .slide-content {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #ccc;
        padding: 30px 15px;
    }
    .homepage .content-block {
        background-color: #fff;
    }
    .homepage .content-block.mobile-hero {
        padding-top: 30px;
        padding-bottom: 0;
        line-height: 2;
    }
    .homepage .content-block.mobile-hero hr {
        margin-bottom: 0;
    }
    .content-well div[class*="col-"] {
        border-right: none;
    }
    #home-cta {
        padding-top: 30px;
    }
    #home-cta .section-title {
        display: none;
    }
    #home-cta div[class*="col-"] {
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 20px 0;
        margin-bottom: 15px;
    }
    #home-cta .content-well {
        background-color: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
    }
    .sidebar .page-sub-title {
        display: none;
    }
    .sidebar-nav {
        margin-bottom: 20px;
    }
    .sidebar-nav .nav > li {
        display: block;
        width: 100%;
        /*width: calc(50% - 3px);*/
        margin-bottom: -1px;
        /*&:nth-of-type(even) {
          margin-left: 10px;
        }
        &:nth-of-type(odd) {
          margin-right: 10px;
        }*/
    }
    .sidebar-nav .nav > li a {
        font-size: 14px;
        padding-left: 10px;
    }
    .sidebar-nav .subnav li {
        /*display: inline-block;
        width: 49%;
        width: calc((100% / 2) - 3px);*/
		display: block;
		width: 100%;
    }
    .cta-inline {
        border-left: none;
        border-top: 1px solid #a4d65e;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

.divFindADoctor .cta-inline.location {
    border: none;
}
    .cta-inline .btn {
        margin-top: 15px;
    }
    .index-results div[class*="col-"] {
        border-right: none;
    }
    .btn-group .btn {
        font-size: 12px;
        padding: 12px 8px 10px 8px;
    }
    .btn-group img {
        height: 15px;
    }
    .content-block.main h2 {
        width: 100%;
    }
    .content-block .card.support .card-image {
        border-top-left-radius: 6px;
        border-top-right-radius: 18px;
    }
    .content-block .card.support .card-content {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }
    .content-well {
        border-radius: 6px;
    }
    .featured-container {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 27px;
        margin: 20px 0;
        background-size: 100% auto !important;
    }
    .location-directions {
        width: 80px;
        position: static;
        display: inline-block;
    }
    .location-map {
        width: 80px;
        height: 80px;
        border-width: 1px;
        border-color: #0091b3;
    }
    .location-info {
        width: 223px;
        width: calc(100% - 80px);
        position: static;
        vertical-align: top;
        display: inline-block;
        background-color: transparent;
        border-radius: 0;
        color: #005a70;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        padding: 0 15px;
    }
    .location-info span {
        display: block;
        color: #55565a;
        font-size: 12px;
        line-height: 1.5;
        text-transform: uppercase;
    }
    .location-link {
        position: static;
        padding-left: 0;
        line-height: 1.5;
    }
    .location-link a {
        color: #0091b3;
        text-transform: none;
        text-align: left;
        font-weight: 700;
        line-height: 1.5;
    }
    .location-legend li {
        margin: 10px;
        width: 100%;
    }
    .map-container {
        display: none;
    }
    .content-block.resources {
        padding-bottom: 45px;
    }
    .content-block.resources .content-well {
        padding: 0;
        margin-left: 30px;
        margin-right: 30px;
        border: none;
    }
    .content-block.resources .content-well div[class*="col-"] {
        padding: 0;
    }
    .content-block .card.related .card-image {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
		max-width: 386px;
		margin: 0 auto;
		display: block;
    }
    .content-block .card.related .card-content {
        padding: 10px 20px 20px;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        border: 1px solid #ccc;
        border-top: none;
		text-align: center;
    }
    /*
  .content-block {
    &.resources {
      .content-well {
        margin: 0 24px;
        div[class*="col-"] {
          &:nth-of-type(1) {
            &:after {
              content: "\e684";
              position: absolute;
                right: -50px;
                top: 34%;
                font-size: 70px;

                font-family: 'Pe-icon-7-stroke';
                speak: none;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                line-height: 1;
            }
          }
        }
      }
    }
  }
  */
    .content-block.main.campaign {
        padding-top: 20px;
    }
    .hero-container {
        padding: 50px;
    }
    .hero-container h1 {
        font-size: 42px;
    }
    .hero-container .lead {
        font-size: 16px;
    }
    .additional-links .nav li {
        width: 100%;
        margin: 0;
    }
    .service-list li {
        width: 100%;
        margin: 0;
    }
    .tab-content .btn {
        margin-top: 15px;
    }
    .index-results div[class*="col-"]:nth-of-type(3n+3) {
        border-right: none;
    }
    .footer.navbar {
        background-color: #fff;
        padding: 0 0 15px;
    }
    .footer.navbar hr {
        margin-top: 0;
    }
    .footer .copyright {
        width: 100%;
        text-align: center;
    }
    .footer-nav {
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        padding: 10px 15px;
    }
    .footer-nav a {
        display: inline-block;
        width: 100%;
        text-align: left;
        border-right: none;
        padding: 6px 0;
    }
    #social-links {
        width: 100%;
        text-align: left;
        padding: 15px;
    }
    #pnlPhysicians .pnl-info {
        width: 100%;
    }
    .mobile-search {
        width: 100% !important;
    }
}


/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */


/* FONT PATH
 * -------------------------- */

@font-face {
    font-family: 'FontAwesome';
    /src: url("../fonts/fontawesome-webfont.eot?v=4.3.0");
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}


/* makes the font 33% larger relative to the icon container */

.fa-lg {
    font-size: 1.3333333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.2857142857em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.1428571429em;
    list-style-type: none;
}

.fa-ul > li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2.1428571429em;
    width: 2.1428571429em;
    top: 0.1428571429em;
    text-align: center;
}

.fa-li.fa-lg {
    left: -1.8571428571em;
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em #eee;
    border-radius: .1em;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0);
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}


/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-glass:before {
    content: "?";
}

.fa-music:before {
    content: "?";
}

.fa-search:before {
    content: "?";
}

.fa-envelope-o:before {
    content: "?";
}

.fa-heart:before {
    content: "?";
}

.fa-star:before {
    content: "?";
}

.fa-star-o:before {
    content: "?";
}

.fa-user:before {
    content: "?";
}

.fa-film:before {
    content: "?";
}

.fa-th-large:before {
    content: "?";
}

.fa-th:before {
    content: "?";
}

.fa-th-list:before {
    content: "?";
}

.fa-check:before {
    content: "?";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "?";
}

.fa-search-plus:before {
    content: "?";
}

.fa-search-minus:before {
    content: "?";
}

.fa-power-off:before {
    content: "?";
}

.fa-signal:before {
    content: "?";
}

.fa-gear:before,
.fa-cog:before {
    content: "?";
}

.fa-trash-o:before {
    content: "?";
}

.fa-home:before {
    content: "?";
}

.fa-file-o:before {
    content: "?";
}

.fa-clock-o:before {
    content: "?";
}

.fa-road:before {
    content: "?";
}

.fa-download:before {
    content: "?";
}

.fa-arrow-circle-o-down:before {
    content: "?";
}

.fa-arrow-circle-o-up:before {
    content: "?";
}

.fa-inbox:before {
    content: "?";
}

.fa-play-circle-o:before {
    content: "?";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "?";
}

.fa-refresh:before {
    content: "?";
}

.fa-list-alt:before {
    content: "?";
}

.fa-lock:before {
    content: "?";
}

.fa-flag:before {
    content: "?";
}

.fa-headphones:before {
    content: "?";
}

.fa-volume-off:before {
    content: "?";
}

.fa-volume-down:before {
    content: "?";
}

.fa-volume-up:before {
    content: "?";
}

.fa-qrcode:before {
    content: "?";
}

.fa-barcode:before {
    content: "?";
}

.fa-tag:before {
    content: "?";
}

.fa-tags:before {
    content: "?";
}

.fa-book:before {
    content: "?";
}

.fa-bookmark:before {
    content: "?";
}

.fa-print:before {
    content: "?";
}

.fa-camera:before {
    content: "?";
}

.fa-font:before {
    content: "?";
}

.fa-bold:before {
    content: "?";
}

.fa-italic:before {
    content: "?";
}

.fa-text-height:before {
    content: "?";
}

.fa-text-width:before {
    content: "?";
}

.fa-align-left:before {
    content: "?";
}

.fa-align-center:before {
    content: "?";
}

.fa-align-right:before {
    content: "?";
}

.fa-align-justify:before {
    content: "?";
}

.fa-list:before {
    content: "?";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "?";
}

.fa-indent:before {
    content: "?";
}

.fa-video-camera:before {
    content: "?";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "?";
}

.fa-pencil:before {
    content: "?";
}

.fa-map-marker:before {
    content: "?";
}

.fa-adjust:before {
    content: "?";
}

.fa-tint:before {
    content: "?";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "?";
}

.fa-share-square-o:before {
    content: "?";
}

.fa-check-square-o:before {
    content: "?";
}

.fa-arrows:before {
    content: "?";
}

.fa-step-backward:before {
    content: "?";
}

.fa-fast-backward:before {
    content: "?";
}

.fa-backward:before {
    content: "?";
}

.fa-play:before {
    content: "?";
}

.fa-pause:before {
    content: "?";
}

.fa-stop:before {
    content: "?";
}

.fa-forward:before {
    content: "?";
}

.fa-fast-forward:before {
    content: "?";
}

.fa-step-forward:before {
    content: "?";
}

.fa-eject:before {
    content: "?";
}

.fa-chevron-left:before {
    content: "?";
}

.fa-chevron-right:before {
    content: "?";
}

.fa-plus-circle:before {
    content: "?";
}

.fa-minus-circle:before {
    content: "?";
}

.fa-times-circle:before {
    content: "?";
}

.fa-check-circle:before {
    content: "?";
}

.fa-question-circle:before {
    content: "?";
}

.fa-info-circle:before {
    content: "?";
}

.fa-crosshairs:before {
    content: "?";
}

.fa-times-circle-o:before {
    content: "?";
}

.fa-check-circle-o:before {
    content: "?";
}

.fa-ban:before {
    content: "?";
}

.fa-arrow-left:before {
    content: "?";
}

.fa-arrow-right:before {
    content: "?";
}

.fa-arrow-up:before {
    content: "?";
}

.fa-arrow-down:before {
    content: "?";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "?";
}

.fa-expand:before {
    content: "?";
}

.fa-compress:before {
    content: "?";
}

.fa-plus:before {
    content: "?";
}

.fa-minus:before {
    content: "?";
}

.fa-asterisk:before {
    content: "?";
}

.fa-exclamation-circle:before {
    content: "?";
}

.fa-gift:before {
    content: "?";
}

.fa-leaf:before {
    content: "?";
}

.fa-fire:before {
    content: "?";
}

.fa-eye:before {
    content: "?";
}

.fa-eye-slash:before {
    content: "?";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "?";
}

.fa-plane:before {
    content: "?";
}

.fa-calendar:before {
    content: "?";
}

.fa-random:before {
    content: "?";
}

.fa-comment:before {
    content: "?";
}

.fa-magnet:before {
    content: "?";
}

.fa-chevron-up:before {
    content: "?";
}

.fa-chevron-down:before {
    content: "?";
}

.fa-retweet:before {
    content: "?";
}

.fa-shopping-cart:before {
    content: "?";
}

.fa-folder:before {
    content: "?";
}

.fa-folder-open:before {
    content: "?";
}

.fa-arrows-v:before {
    content: "?";
}

.fa-arrows-h:before {
    content: "?";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "?";
}

.fa-twitter-square:before {
    content: "?";
}

.fa-facebook-square:before {
    content: "?";
}

.fa-camera-retro:before {
    content: "?";
}

.fa-key:before {
    content: "?";
}

.fa-gears:before,
.fa-cogs:before {
    content: "?";
}

.fa-comments:before {
    content: "?";
}

.fa-thumbs-o-up:before {
    content: "?";
}

.fa-thumbs-o-down:before {
    content: "?";
}

.fa-star-half:before {
    content: "?";
}

.fa-heart-o:before {
    content: "?";
}

.fa-sign-out:before {
    content: "?";
}

.fa-linkedin-square:before {
    content: "?";
}

.fa-thumb-tack:before {
    content: "?";
}

.fa-external-link:before {
    content: "?";
}

.fa-sign-in:before {
    content: "?";
}

.fa-trophy:before {
    content: "?";
}

.fa-github-square:before {
    content: "?";
}

.fa-upload:before {
    content: "?";
}

.fa-lemon-o:before {
    content: "?";
}

.fa-phone:before {
    content: "?";
}

.fa-square-o:before {
    content: "?";
}

.fa-bookmark-o:before {
    content: "?";
}

.fa-phone-square:before {
    content: "?";
}

.fa-twitter:before {
    content: "?";
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "?";
}

.fa-github:before {
    content: "?";
}

.fa-unlock:before {
    content: "?";
}

.fa-credit-card:before {
    content: "?";
}

.fa-rss:before {
    content: "?";
}

.fa-hdd-o:before {
    content: "?";
}

.fa-bullhorn:before {
    content: "?";
}

.fa-bell:before {
    content: "?";
}

.fa-certificate:before {
    content: "?";
}

.fa-hand-o-right:before {
    content: "?";
}

.fa-hand-o-left:before {
    content: "?";
}

.fa-hand-o-up:before {
    content: "?";
}

.fa-hand-o-down:before {
    content: "?";
}

.fa-arrow-circle-left:before {
    content: "?";
}

.fa-arrow-circle-right:before {
    content: "?";
}

.fa-arrow-circle-up:before {
    content: "?";
}

.fa-arrow-circle-down:before {
    content: "?";
}

.fa-globe:before {
    content: "?";
}

.fa-wrench:before {
    content: "?";
}

.fa-tasks:before {
    content: "?";
}

.fa-filter:before {
    content: "?";
}

.fa-briefcase:before {
    content: "?";
}

.fa-arrows-alt:before {
    content: "?";
}

.fa-group:before,
.fa-users:before {
    content: "?";
}

.fa-chain:before,
.fa-link:before {
    content: "?";
}

.fa-cloud:before {
    content: "?";
}

.fa-flask:before {
    content: "?";
}

.fa-cut:before,
.fa-scissors:before {
    content: "?";
}

.fa-copy:before,
.fa-files-o:before {
    content: "?";
}

.fa-paperclip:before {
    content: "?";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "?";
}

.fa-square:before {
    content: "?";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "?";
}

.fa-list-ul:before {
    content: "?";
}

.fa-list-ol:before {
    content: "?";
}

.fa-strikethrough:before {
    content: "?";
}

.fa-underline:before {
    content: "?";
}

.fa-table:before {
    content: "?";
}

.fa-magic:before {
    content: "?";
}

.fa-truck:before {
    content: "?";
}

.fa-pinterest:before {
    content: "?";
}

.fa-pinterest-square:before {
    content: "?";
}

.fa-google-plus-square:before {
    content: "?";
}

.fa-google-plus:before {
    content: "?";
}

.fa-money:before {
    content: "?";
}

.fa-caret-down:before {
    content: "?";
}

.fa-caret-up:before {
    content: "?";
}

.fa-caret-left:before {
    content: "?";
}

.fa-caret-right:before {
    content: "?";
}

.fa-columns:before {
    content: "?";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "?";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "?";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "?";
}

.fa-envelope:before {
    content: "?";
}

.fa-linkedin:before {
    content: "?";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "?";
}

.fa-legal:before,
.fa-gavel:before {
    content: "?";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "?";
}

.fa-comment-o:before {
    content: "?";
}

.fa-comments-o:before {
    content: "?";
}

.fa-flash:before,
.fa-bolt:before {
    content: "?";
}

.fa-sitemap:before {
    content: "?";
}

.fa-umbrella:before {
    content: "?";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "?";
}

.fa-lightbulb-o:before {
    content: "?";
}

.fa-exchange:before {
    content: "?";
}

.fa-cloud-download:before {
    content: "?";
}

.fa-cloud-upload:before {
    content: "?";
}

.fa-user-md:before {
    content: "?";
}

.fa-stethoscope:before {
    content: "?";
}

.fa-suitcase:before {
    content: "?";
}

.fa-bell-o:before {
    content: "?";
}

.fa-coffee:before {
    content: "?";
}

.fa-cutlery:before {
    content: "?";
}

.fa-file-text-o:before {
    content: "?";
}

.fa-building-o:before {
    content: "?";
}

.fa-hospital-o:before {
    content: "?";
}

.fa-ambulance:before {
    content: "?";
}

.fa-medkit:before {
    content: "?";
}

.fa-fighter-jet:before {
    content: "?";
}

.fa-beer:before {
    content: "?";
}

.fa-h-square:before {
    content: "?";
}

.fa-plus-square:before {
    content: "?";
}

.fa-angle-double-left:before {
    content: "?";
}

.fa-angle-double-right:before {
    content: "?";
}

.fa-angle-double-up:before {
    content: "?";
}

.fa-angle-double-down:before {
    content: "?";
}

.fa-angle-left:before {
    content: "?";
}

.fa-angle-right:before {
    content: "?";
}

.fa-angle-up:before {
    content: "?";
}

.fa-angle-down:before {
    content: "?";
}

.fa-desktop:before {
    content: "?";
}

.fa-laptop:before {
    content: "?";
}

.fa-tablet:before {
    content: "?";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "?";
}

.fa-circle-o:before {
    content: "?";
}

.fa-quote-left:before {
    content: "?";
}

.fa-quote-right:before {
    content: "?";
}

.fa-spinner:before {
    content: "?";
}

.fa-circle:before {
    content: "?";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "?";
}

.fa-github-alt:before {
    content: "?";
}

.fa-folder-o:before {
    content: "?";
}

.fa-folder-open-o:before {
    content: "?";
}

.fa-smile-o:before {
    content: "?";
}

.fa-frown-o:before {
    content: "?";
}

.fa-meh-o:before {
    content: "?";
}

.fa-gamepad:before {
    content: "?";
}

.fa-keyboard-o:before {
    content: "?";
}

.fa-flag-o:before {
    content: "?";
}

.fa-flag-checkered:before {
    content: "?";
}

.fa-terminal:before {
    content: "?";
}

.fa-code:before {
    content: "?";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "?";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "?";
}

.fa-location-arrow:before {
    content: "?";
}

.fa-crop:before {
    content: "?";
}

.fa-code-fork:before {
    content: "?";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "?";
}

.fa-question:before {
    content: "?";
}

.fa-info:before {
    content: "?";
}

.fa-exclamation:before {
    content: "?";
}

.fa-superscript:before {
    content: "?";
}

.fa-subscript:before {
    content: "?";
}

.fa-eraser:before {
    content: "?";
}

.fa-puzzle-piece:before {
    content: "?";
}

.fa-microphone:before {
    content: "?";
}

.fa-microphone-slash:before {
    content: "?";
}

.fa-shield:before {
    content: "?";
}

.fa-calendar-o:before {
    content: "?";
}

.fa-fire-extinguisher:before {
    content: "?";
}

.fa-rocket:before {
    content: "?";
}

.fa-maxcdn:before {
    content: "?";
}

.fa-chevron-circle-left:before {
    content: "?";
}

.fa-chevron-circle-right:before {
    content: "?";
}

.fa-chevron-circle-up:before {
    content: "?";
}

.fa-chevron-circle-down:before {
    content: "?";
}

.fa-html5:before {
    content: "?";
}

.fa-css3:before {
    content: "?";
}

.fa-anchor:before {
    content: "?";
}

.fa-unlock-alt:before {
    content: "?";
}

.fa-bullseye:before {
    content: "?";
}

.fa-ellipsis-h:before {
    content: "?";
}

.fa-ellipsis-v:before {
    content: "?";
}

.fa-rss-square:before {
    content: "?";
}

.fa-play-circle:before {
    content: "?";
}

.fa-ticket:before {
    content: "?";
}

.fa-minus-square:before {
    content: "?";
}

.fa-minus-square-o:before {
    content: "?";
}

.fa-level-up:before {
    content: "?";
}

.fa-level-down:before {
    content: "?";
}

.fa-check-square:before {
    content: "?";
}

.fa-pencil-square:before {
    content: "?";
}

.fa-external-link-square:before {
    content: "?";
}

.fa-share-square:before {
    content: "?";
}

.fa-compass:before {
    content: "?";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "?";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "?";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "?";
}

.fa-euro:before,
.fa-eur:before {
    content: "?";
}

.fa-gbp:before {
    content: "?";
}

.fa-dollar:before,
.fa-usd:before {
    content: "?";
}

.fa-rupee:before,
.fa-inr:before {
    content: "?";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "?";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "?";
}

.fa-won:before,
.fa-krw:before {
    content: "?";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "?";
}

.fa-file:before {
    content: "?";
}

.fa-file-text:before {
    content: "?";
}

.fa-sort-alpha-asc:before {
    content: "?";
}

.fa-sort-alpha-desc:before {
    content: "?";
}

.fa-sort-amount-asc:before {
    content: "?";
}

.fa-sort-amount-desc:before {
    content: "?";
}

.fa-sort-numeric-asc:before {
    content: "?";
}

.fa-sort-numeric-desc:before {
    content: "?";
}

.fa-thumbs-up:before {
    content: "?";
}

.fa-thumbs-down:before {
    content: "?";
}

.fa-youtube-square:before {
    content: "?";
}

.fa-youtube:before {
    content: "?";
}

.fa-xing:before {
    content: "?";
}

.fa-xing-square:before {
    content: "?";
}

.fa-youtube-play:before {
    content: "?";
}

.fa-dropbox:before {
    content: "?";
}

.fa-stack-overflow:before {
    content: "?";
}

.fa-instagram:before {
    content: "?";
}

.fa-flickr:before {
    content: "?";
}

.fa-adn:before {
    content: "?";
}

.fa-bitbucket:before {
    content: "?";
}

.fa-bitbucket-square:before {
    content: "?";
}

.fa-tumblr:before {
    content: "?";
}

.fa-tumblr-square:before {
    content: "?";
}

.fa-long-arrow-down:before {
    content: "?";
}

.fa-long-arrow-up:before {
    content: "?";
}

.fa-long-arrow-left:before {
    content: "?";
}

.fa-long-arrow-right:before {
    content: "?";
}

.fa-apple:before {
    content: "?";
}

.fa-windows:before {
    content: "?";
}

.fa-android:before {
    content: "?";
}

.fa-linux:before {
    content: "?";
}

.fa-dribbble:before {
    content: "?";
}

.fa-skype:before {
    content: "?";
}

.fa-foursquare:before {
    content: "?";
}

.fa-trello:before {
    content: "?";
}

.fa-female:before {
    content: "?";
}

.fa-male:before {
    content: "?";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "?";
}

.fa-sun-o:before {
    content: "?";
}

.fa-moon-o:before {
    content: "?";
}

.fa-archive:before {
    content: "?";
}

.fa-bug:before {
    content: "?";
}

.fa-vk:before {
    content: "?";
}

.fa-weibo:before {
    content: "?";
}

.fa-renren:before {
    content: "?";
}

.fa-pagelines:before {
    content: "?";
}

.fa-stack-exchange:before {
    content: "?";
}

.fa-arrow-circle-o-right:before {
    content: "?";
}

.fa-arrow-circle-o-left:before {
    content: "?";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "?";
}

.fa-dot-circle-o:before {
    content: "?";
}

.fa-wheelchair:before {
    content: "?";
}

.fa-vimeo-square:before {
    content: "?";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "?";
}

.fa-plus-square-o:before {
    content: "?";
}

.fa-space-shuttle:before {
    content: "?";
}

.fa-slack:before {
    content: "?";
}

.fa-envelope-square:before {
    content: "?";
}

.fa-wordpress:before {
    content: "?";
}

.fa-openid:before {
    content: "?";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "?";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "?";
}

.fa-yahoo:before {
    content: "?";
}

.fa-google:before {
    content: "?";
}

.fa-reddit:before {
    content: "?";
}

.fa-reddit-square:before {
    content: "?";
}

.fa-stumbleupon-circle:before {
    content: "?";
}

.fa-stumbleupon:before {
    content: "?";
}

.fa-delicious:before {
    content: "?";
}

.fa-digg:before {
    content: "?";
}

.fa-pied-piper:before {
    content: "?";
}

.fa-pied-piper-alt:before {
    content: "?";
}

.fa-drupal:before {
    content: "?";
}

.fa-joomla:before {
    content: "?";
}

.fa-language:before {
    content: "?";
}

.fa-fax:before {
    content: "?";
}

.fa-building:before {
    content: "?";
}

.fa-child:before {
    content: "?";
}

.fa-paw:before {
    content: "?";
}

.fa-spoon:before {
    content: "?";
}

.fa-cube:before {
    content: "?";
}

.fa-cubes:before {
    content: "?";
}

.fa-behance:before {
    content: "?";
}

.fa-behance-square:before {
    content: "?";
}

.fa-steam:before {
    content: "?";
}

.fa-steam-square:before {
    content: "?";
}

.fa-recycle:before {
    content: "?";
}

.fa-automobile:before,
.fa-car:before {
    content: "?";
}

.fa-cab:before,
.fa-taxi:before {
    content: "?";
}

.fa-tree:before {
    content: "?";
}

.fa-spotify:before {
    content: "?";
}

.fa-deviantart:before {
    content: "?";
}

.fa-soundcloud:before {
    content: "?";
}

.fa-database:before {
    content: "?";
}

.fa-file-pdf-o:before {
    content: "?";
}

.fa-file-word-o:before {
    content: "?";
}

.fa-file-excel-o:before {
    content: "?";
}

.fa-file-powerpoint-o:before {
    content: "?";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "?";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "?";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "?";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "?";
}

.fa-file-code-o:before {
    content: "?";
}

.fa-vine:before {
    content: "?";
}

.fa-codepen:before {
    content: "?";
}

.fa-jsfiddle:before {
    content: "?";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "?";
}

.fa-circle-o-notch:before {
    content: "?";
}

.fa-ra:before,
.fa-rebel:before {
    content: "?";
}

.fa-ge:before,
.fa-empire:before {
    content: "?";
}

.fa-git-square:before {
    content: "?";
}

.fa-git:before {
    content: "?";
}

.fa-hacker-news:before {
    content: "?";
}

.fa-tencent-weibo:before {
    content: "?";
}

.fa-qq:before {
    content: "?";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "?";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "?";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "?";
}

.fa-history:before {
    content: "?";
}

.fa-genderless:before,
.fa-circle-thin:before {
    content: "?";
}

.fa-header:before {
    content: "?";
}

.fa-paragraph:before {
    content: "?";
}

.fa-sliders:before {
    content: "?";
}

.fa-share-alt:before {
    content: "?";
}

.fa-share-alt-square:before {
    content: "?";
}

.fa-bomb:before {
    content: "?";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "?";
}

.fa-tty:before {
    content: "?";
}

.fa-binoculars:before {
    content: "?";
}

.fa-plug:before {
    content: "?";
}

.fa-slideshare:before {
    content: "?";
}

.fa-twitch:before {
    content: "?";
}

.fa-yelp:before {
    content: "?";
}

.fa-newspaper-o:before {
    content: "?";
}

.fa-wifi:before {
    content: "?";
}

.fa-calculator:before {
    content: "?";
}

.fa-paypal:before {
    content: "?";
}

.fa-google-wallet:before {
    content: "?";
}

.fa-cc-visa:before {
    content: "?";
}

.fa-cc-mastercard:before {
    content: "?";
}

.fa-cc-discover:before {
    content: "?";
}

.fa-cc-amex:before {
    content: "?";
}

.fa-cc-paypal:before {
    content: "?";
}

.fa-cc-stripe:before {
    content: "?";
}

.fa-bell-slash:before {
    content: "?";
}

.fa-bell-slash-o:before {
    content: "?";
}

.fa-trash:before {
    content: "?";
}

.fa-copyright:before {
    content: "?";
}

.fa-at:before {
    content: "?";
}

.fa-eyedropper:before {
    content: "?";
}

.fa-paint-brush:before {
    content: "?";
}

.fa-birthday-cake:before {
    content: "?";
}

.fa-area-chart:before {
    content: "?";
}

.fa-pie-chart:before {
    content: "?";
}

.fa-line-chart:before {
    content: "?";
}

.fa-lastfm:before {
    content: "?";
}

.fa-lastfm-square:before {
    content: "?";
}

.fa-toggle-off:before {
    content: "?";
}

.fa-toggle-on:before {
    content: "?";
}

.fa-bicycle:before {
    content: "?";
}

.fa-bus:before {
    content: "?";
}

.fa-ioxhost:before {
    content: "?";
}

.fa-angellist:before {
    content: "?";
}

.fa-cc:before {
    content: "?";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "?";
}

.fa-meanpath:before {
    content: "?";
}

.fa-buysellads:before {
    content: "?";
}

.fa-connectdevelop:before {
    content: "?";
}

.fa-dashcube:before {
    content: "?";
}

.fa-forumbee:before {
    content: "?";
}

.fa-leanpub:before {
    content: "?";
}

.fa-sellsy:before {
    content: "?";
}

.fa-shirtsinbulk:before {
    content: "?";
}

.fa-simplybuilt:before {
    content: "?";
}

.fa-skyatlas:before {
    content: "?";
}

.fa-cart-plus:before {
    content: "?";
}

.fa-cart-arrow-down:before {
    content: "?";
}

.fa-diamond:before {
    content: "?";
}

.fa-ship:before {
    content: "?";
}

.fa-user-secret:before {
    content: "?";
}

.fa-motorcycle:before {
    content: "?";
}

.fa-street-view:before {
    content: "?";
}

.fa-heartbeat:before {
    content: "?";
}

.fa-venus:before {
    content: "?";
}

.fa-mars:before {
    content: "?";
}

.fa-mercury:before {
    content: "?";
}

.fa-transgender:before {
    content: "?";
}

.fa-transgender-alt:before {
    content: "?";
}

.fa-venus-double:before {
    content: "?";
}

.fa-mars-double:before {
    content: "?";
}

.fa-venus-mars:before {
    content: "?";
}

.fa-mars-stroke:before {
    content: "?";
}

.fa-mars-stroke-v:before {
    content: "?";
}

.fa-mars-stroke-h:before {
    content: "?";
}

.fa-neuter:before {
    content: "?";
}

.fa-facebook-official:before {
    content: "?";
}

.fa-pinterest-p:before {
    content: "?";
}

.fa-whatsapp:before {
    content: "?";
}

.fa-server:before {
    content: "?";
}

.fa-user-plus:before {
    content: "?";
}

.fa-user-times:before {
    content: "?";
}

.fa-hotel:before,
.fa-bed:before {
    content: "?";
}

.fa-viacoin:before {
    content: "?";
}

.fa-train:before {
    content: "?";
}

.fa-subway:before {
    content: "?";
}

.fa-medium:before {
    content: "?";
}


/*-------------------------------------------------------*    Animations
/*-------------------------------------------------------*/

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY();
    }
}

@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY();
        transform: translateY();
    }
}

.animated.slideDown {
    -webkit-animation-name: slideDown;
    animation-name: slideDown;
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY();
    }
    100% {
        -webkit-transform: translateY(-100%);
    }
}

@keyframes slideUp {
    0% {
        -webkit-transform: translateY();
        transform: translateY();
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.animated.slideUp {
    -webkit-animation-name: slideUp;
    animation-name: slideUp;
}

@-webkit-keyframes swingInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes swingInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
        transform: perspective(400px) rotateX(-90deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
    }
}

.animated.swingInX {
    -webkit-transform-origin: top;
    -ie-transform-origin: top;
    transform-origin: top;
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: swingInX;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: swingInX;
    -o-backface-visibility: visible !important;
    -o-animation-name: swingInX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: swingInX;
    animation-name: swingInX;
}

@-webkit-keyframes swingOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
    }
}

@keyframes swingOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
        transform: perspective(400px) rotateX(-90deg);
    }
}

.animated.swingOutX {
    -webkit-transform-origin: top;
    -webkit-animation-name: swingOutX;
    -webkit-backface-visibility: visible !important;
    -moz-animation-name: swingOutX;
    -moz-backface-visibility: visible !important;
    -o-animation-name: swingOutX;
    -o-backface-visibility: visible !important;
    -webkit-animation-name: swingOutX;
    animation-name: swingOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.animated.flipInX {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipInX;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipInX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.animated.flipOutX {
    -webkit-animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -moz-animation-name: flipOutX;
    -moz-backface-visibility: visible !important;
    -o-animation-name: flipOutX;
    -o-backface-visibility: visible !important;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY();
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY();
        transform: translateY();
    }
}

.animated.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY();
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY();
        transform: translateY();
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
    }
}

.animated.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY();
    }
}

@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY();
        transform: translateY();
    }
}

.animated.slideDown {
    -webkit-animation-name: slideDown;
    animation-name: slideDown;
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY();
    }
    100% {
        -webkit-transform: translateY(-100%);
    }
}

@keyframes slideUp {
    0% {
        -webkit-transform: translateY();
        transform: translateY();
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.animated.slideUp {
    -webkit-animation-name: slideUp;
    animation-name: slideUp;
}

@media (min-width: 768px) {
    .animated {
        -webkit-animation-duration: .5s;
        animation-duration: .5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }
    @-webkit-keyframes slideDown {
        0% {
            -webkit-transform: translateY(-30px);
        }
        100% {
            -webkit-transform: translateY();
        }
    }
    @keyframes slideDown {
        0% {
            -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
        }
        100% {
            -webkit-transform: translateY();
            transform: translateY();
        }
    }
    .animated.slideDown {
        -webkit-animation-name: slideDown;
        animation-name: slideDown;
    }
    @-webkit-keyframes slideUp {
        0% {
            -webkit-transform: translateY();
        }
        100% {
            -webkit-transform: translateY(-30px);
        }
    }
    @keyframes slideUp {
        0% {
            -webkit-transform: translateY();
            transform: translateY();
        }
        100% {
            -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
        }
    }
    .animated.slideUp {
        -webkit-animation-name: slideUp;
        animation-name: slideUp;
    }
}


/*---------*    Site
/*---------*/


/*# sourceMappingURL=style.css.map */

.not-used-controls {
    display: none;
}

.pagination-nav table {
    text-align: center;
    display: inline-block;
}

.pagination-nav {
    text-align: center;
}

.pagination-nav tr td {
    display: inline-block;
    padding: 0px 10px;
}

.pagination-nav span {
    color: #0091b3;
}

.pagination-nav a {
    Color: #55565a;
}

div#avid-loc-map {
    margin: 0;
    height: 600px;
}

div#avid-loc-col-center {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

.pnl-location.ga-click.col-sm-6.col-md-4 {
    max-height: 320px;
    min-height: 220px;
    height: 0;
}

.col-md-3 span.form-cell.form-label {
    width: 100%;
}

span.quicklinks-homepage {
    height: 100px;
    width: 100px;
    display: block !important;
    margin: 0 auto 30px auto;
    transition:.25s ease-out;
    -webkit-transition:.25s ease-out;
}

#nav-details li[data-type="link"] a:first-child {
    display: none;
}

li#listitem + ul#linkSubNav {
    display: none;
}

li#listitem.active + ul#linkSubNav {
    display: block;
}

a.selected {}

li#listitem + ul#linkSubNav.active {
    display: block;
}


/*Find A Doctor pagination*/

.pagination {
    list-style: none;
}

.pagination li {
    display: inline-block;
    padding: 0 5px;
}

.col-md-3 span.form-cell.form-label {
    width: 100%;
    /* display: none; */
}
.col-md-3 .cta-inline.form span.form-cell.form-label {
    display: none;
}
span.quicklinks-homepage {
    height: 100px;
    width: 100px;
    display: inline-block;
}

@media (max-width:670px) {
    .featured-container {
        margin-bottom: -30px;
    }
}

@media (max-width: 585px) {
    .featured-container {
        margin-bottom: -70px;
    }
}


@media (max-width:500px) {
    .card-image img {
        width: 100%;
    }
        .featured-container {
        margin-bottom: -110px;
    }
}

@media (max-width:380px) {
    .featured-container {
        margin-bottom: -180px;
    }
}

#advanced input[type="checkbox"],
.form-group-wrapper input[type="checkbox"] {
    visibility: hidden;
    position: relative;
    display: inline-block;
    margin-left: 15px;
    width: 20px;
    height: 20px;
    vertical-align: top;
    margin:0;
}

#advanced input[type="checkbox"]:before,
.form-group-wrapper input[type="checkbox"]:before {
    content: "";
    visibility: visible;
    position: absolute;
    border: 1px solid #c2c2c2;
    border-radius: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

span.before{
    content: "";
    visibility: visible;
    position: absolute;
    border: 1px solid #c2c2c2;
    border-radius: 50%;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    width:20px;
    height:20px;
}

span.before.active{
    background-color:#005a70;
    border:2px solid #c2c2c2;
}

.relative{
    position:relative;
    display:block;
}

#advanced input[type="checkbox"] + label,
.form-group-wrapper input[type="checkbox"] + label {
    display: inline-block;
    margin-left: 10px;
}

#advanced span + label,
.form-group-wrapper span + label {
    display: inline-block;
    margin-left: 10px;
}


#advanced input[type="checkbox"]:checked:before,
.form-group-wrapper input[type="checkbox"]:checked:before {
    background-color: #005a70;
    background-position: 50% 50%;
    border: 2px solid #c2c2c2;
}

.doctor-details.phoebe-group h2 + img {
    display: inline-block;
    width: 14%;
}

div.form-group-wrapper input[type="checkbox"] {
    margin:0;
}

div.form-group-wrapper span > label {
    margin-left: 5px;
    line-height: 20px;
    width: 75%;
}

div.form-group-wrapper input[type="checkbox"] + label {
    margin-left: 5px;
    line-height: 20px;
    width: 75%;
}

li.legend-desc-list {
    display: none;
}

li.legend-desc-list.active {
    display: block;
}

.video-wrapper {
    display: none;
}

.index-results .col-sm-6.col-md-4 {
    height: 250px;
}

#btnRCSearch span.pe-7s-search {
    font-size: 26px;
    position: relative;
    top: 7px;
}

.media-center .index-filter .form-group {
    display: inline-block;
}

a#btnRCSearch {
    display: inline-block;
    position: relative;
    left: -32px;
}

.page-sub-title.dates {
    display: none;
}

.dates-filter-panel {
    display: none;
}

.dates-filter-panel.active {
    display: block;
}

.phoebe-icon img {
    width: 30px;
    height: 30px;
}

.page-size-change {
    position: relative;
    top: -85px;
    height: 0;
}


.doctor-profile .not-in-profile {
    display: none;
    width: 55px;
    padding-right: 55px !important;
    margin: 55px;
}

.doctor-profile .not-in-profile {
    display: none;
}

.doctor-profile .search-placeholder.content-wrapper.sidebar.search-sidebar {
    display: inline-block;
    background: none;
    border: none;
}

.search-placeholder.content-wrapper.sidebar.search-sidebar{
    display: none;
}

.letters li {
    display: inline-block;
    list-style: none;
    width: 3%;
}

.letters ul {
    text-align: center;
}

.cta-inline, .information-blurb {
  color: #55565a;
  font-size: 14px;
  line-height: 1.5;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 6px;
  padding: 15px 20px;
  margin-top: 50px; 
 }

.cta-inline span {
    display: block;
    color: #0091b3;
    line-height: 2; 
}

.sidebar .cta-inline span.form-row.intro-para span {
    color: #55565a;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
}

.sidebar .text-center .form-cell span {
    color: #55565a;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
}

.sidebar .text-center .form-cell span#formDeptNumber {
    color: #0091b3;
    font-size: 24px;
    font-family: "Circular-Std-Black", Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.cta-inline.form .form-cell.form-input input[type="text"]{
    
width: 100%;
    
font-size: 14px;
    
font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    
color: rgba(85, 85, 85, 0.59);
    
font-weight: normal;
}

div#ctl00_cphLeftModules_ctl00_divButton {
    /* color: #fff; */
    /* background-color: #a4d65e; */
    /* border: 2px solid rgba(0, 0, 0, 0); */
}

.cta-inline.form input[type="submit"] {
    color: #fff;
    background-color: #a4d65e;
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

span#formPracName {
    display: inline-block;
    width: auto;
}

.location-learn-more {
    font-weight: bold;
    display: inline-block;
    border-bottom-color: rgba(0, 145, 179, 0.3);
}

.location-learn-more:hover {
    border-bottom-color: #0091b3;
}

.section.address-info .directions {
    margin-bottom: 8px;
}

.physician-videos li {
    list-style: none;
    margin-bottom: 50px;
    display: inline-block;
    margin-right: 70px;
}

.physician-videos.FADProfileVideo{
    margin-bottom:-40px;
}

.FADSpecialty {
    font-weight: 700;
    font-size: 20px;
}
    

.physician-advanced-search{
    font-weight: 700;
    text-align: center;
    border: none;
    margin-right: 0;
    padding: 15px 11px;
}



.nav.navbar-nav .sub-nav {
    display: none;
    position: absolute;
    z-index: 99;
    border: gray 1px solid;
    background: #FFF;
}

.nav.navbar-nav .super-nav-wrapper > a {
    color: #55565a;
    padding: 4px 32px;
    text-align: center;
    font-weight: 300;
    font-size: 18px;
    font-style: normal;
    text-decoration: none;
    border-bottom: none;
    display: block;
}

.nav.navbar-nav .super-nav-wrapper {
    position: relative;
}

.nav.navbar-nav .super-nav-wrapper > a + .sub-nav {
    position: absolute;
    background: #fff;
    z-index: 100;
    margin-top:13px;
    /*top: 130px;*/
    padding: 20px 25px;
    border-radius: 0px;
    border: 1px solid #ccc;
}

.sub-nav {
    width: 288px;
}

.styled-select {
    width: auto;
    height: 34px;
    overflow: hidden;
    background: url(../_img/arrow-down.png) no-repeat 94% 50% rgba(0, 0, 0, 0);
    border: 1px solid #ccc;
}

.styled-select select {
    width: 110%;
    z-index: 3;
    background: rgba(0, 0, 0, 0);
    padding: 5px;
    font-size: 16px;
    line-height: 1;
    border: 0;
    border-radius: 0;
    height: 34px;
    -webkit-appearance: none;
}

.super-nav-wrapper input[type="text"] {
    display: block;
    margin: 15px auto;
    padding: 7px;
    width: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0);
}

.sub-nav.sub-nav2 {
    width: 809px;
}

.sub-nav.sub-nav3 {
    width: 280px;
}

li.category {
    list-style: none;
}

/*Mega Dropdown Styles*/
.sub-nav .styled-select{
    border-radius:10px;
    height:40px;
    max-width:250px;
}
    .sub-nav .styled-select select{
        height:39px;
        font-size:14px;
        color:#9b9b9b;
        padding:5px 8px;
    }

.sub-nav input[type="text"]{
    border-radius:10px;
    height:40px;
    max-width:250px;
    margin:15px 0;
}

.btn-find-doctor{
    width:100%;
}

.advSearchLink{
   width:125px;
   display:block;
   margin:0 auto;
   padding:15px 0 0 0;
   text-align:center;
}

.sub-nav2 ul{
    padding:0;
    margin:20px 0 0 0;
}

.sub-nav2 ul li{
    width:100% !important;
    list-style-type:none;
    margin:0 0 10px 0;
}
    .sub-nav2 ul li a{
        color:#55565a;
        font-size:16px;
        font-weight:300;
        padding:0 !important;
    }

.sub_nav2_right ul li{
    width:32.6666% !important;
    display:inline-block;
    vertical-align:top;
    border-left:1px solid #0091b3;
    line-height:15px;
    padding:0 10px 0 10px;
    border-right:0px !important;
}

.sub_nav2_service_list{
    margin-top: 40px;
}
    .sub_nav2_service_list ul{
        margin-top:0;
    }

    .sub-nav3 .category{
         width:100% !important;
        display:inline-block;
        vertical-align:top;
        border-left:1px solid #0091b3;
        line-height:15px;
        padding:0 10px 0 10px;
        border-right:0px !important;
    }

    .sub-nav3 ul{
        padding-left:0;
    }

    .sub-nav3 ul li a{
         color:#55565a;
        font-size:16px;
        font-weight:300;
        padding:0 !important;
    }

    .sub-nav3 ul li{
    width:100% !important;
    list-style-type:none;
    margin:0 0 15px 0;
}

    .sub-nav3 .category:last-of-type{
        margin-bottom:0;
    }

    .sub-nav4{
        width:761px;
        margin-left:-191px;
    }

    .sub_nav4_left ul{
        padding:0;
    }
        .sub_nav4_left ul li{
            width:100% !important;
            list-style-type:none;
            font-size:15px;
            margin:0 0 10px 0;
            border-right:0px !important;
        }

        .sub_nav4_left ul li a{
            padding:0 10px 0 0 !important;
            color:#55565a;
        }

        .locationInfoColumn{
            width:35%;
            display:inline-block;
            vertical-align:top;
        }

        .imageFrame{
            display:inline-block;
            width:64%;
            height:164px;
            border-top-right-radius:25px;
            border-bottom-left-radius:8px;
            overflow:hidden;
        }
            .imageFrame img{
                width:105%;
                margin-left:-2.5%;
                height:auto;
            }

        .unav-loc-category ul li{
            float:left;
            width:auto !important;
            list-style-type:none;
            padding:0 17px;
        }
            .unav-loc-category ul li a{
                padding:0 !important;
                font-weight:700;
            }

            .unav-loc-category ul li:first-of-type{
                padding:0 15px 0 0 !important;
            }

             .unav-loc-category ul li:last-of-type{
                padding:0 0 0 15px !important;
            }

        .unav-location.active a{
            color:#0091b3;
        }

        .left-column-location .cta-inline.location{
            border-left:0;
            margin-top:15px;
            border-bottom:1px solid #ccc;
            padding:0 0 15px 0;
            background:#fff;
        }

        .left-column-location .cta-inline.location:last-of-type{
            border-bottom:0;
        }

        .left-column-location .directions{
            margin:10px 0 0 0;
        }

        .left-column-locations .cta-standard h4{
            margin:0 0 10px 0;
        }
        .divFindADoctor .title-link{text-align:left;}
        .title-link a{text-align:left; padding:0px 30px 5px 30px;}

        .phoebe-physician-stamp{
            max-width:100%;
            margin:0;
        }

        .phoebe-physician-stamp.option{
            margin:25px auto 10px;
            display:block;
            width:70px;
        }

        .profile-page > button:first-of-type{
            display:none;
        }

        .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle){
            border-radius:0px;
            border-top-right-radius:0;
            border-bottom-right-radius:0;
        }

        .share{
            border-radius:6px !important;
            border-top-right-radius:0 !important;
            border-bottom-right-radius:0 !important;
        }
/*=====================Piedmont Styles=========================*/
.sub_nav4_left.nav-left {
    border-right: 1px solid #c3c3b9;
}


.sub_nav4_left.nav-left {
    width: 35%;
    display: inline-block;
    vertical-align:top;
}

.sub_nav4_right {
    display: inline-block;
    vertical-align:top;
    margin-left: 30px;
    width:60%;
}

.unav-loc-marker {
    position:absolute;
    left:-21px;
    top:-7px;
    font-size:25px !important;
}

.maps img {
    padding-bottom: 10px;
}

.unav-loc-header {
    font-size: 22px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    color: #736e69;
    width: 90%;
    float: left;
}

.sub_nav4_right .loc-links a.link {
    font-size:16px;
    text-transform:uppercase;
    display:inline-block;
    margin:0 0 15px 0;
    width:auto !important;
}

.loc-links{
    position:relative;
}



.location ul li a span, .pnl-location a span, .sub_nav4_right .loc-links span {
    font-size: 10px;
    color: #ec7d60;
    padding: 0 9px 0 0;
    margin: 0;
}

.unav-loc-category, .unav-services-all {
    overflow: hidden;
    margin-top: 10px;
    padding-top: 10px;
    width: 100%;
}

.nav ul li .sub_nav .unav-loc-category .lbl {
    font-size: 14px;
    color: #736e69;
}

.nav ul li .sub_nav .unav-loc-category ul {
    margin-top: 10px;
}
.unav-loc-category ul {
    float: none;
    display: block;
    padding:0;
}

.nav ul li .sub_nav .unav-loc-category ul li {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ed5929;
    color: #736e69;
    text-align: center;
    border-color: #c3c3b9;
    float: left;
    display: inline-block;
    padding: 0;
    border-radius: 10px;
    margin: 5px 5px 5px 0;
    font-size: 11px !important;
}

.nav ul li .sub_nav .unav-loc-category ul li a {
    font-size: 12px;
    padding: 15px 5px;
}

.sub_nav2_left {
    width: 38%;
    display: inline-block;
    float: left;
    border-right: 1px solid #ed5929;
}

.nav ul li .sub_nav3 .sub_nav3_right, .sub_nav2_right {
    /* display: none; */
    overflow: hidden;
    padding-left: 20px;
    padding: 0px 20px;
}
.sub_nav2_right {
    display: inline-block;
    padding-right: 0 !important;
    width: 62%;
    padding:0 40px;
    min-height:243px;
}

.nav ul li .sub_nav3 .sub_nav3_right ul, .sub_nav2_right ul {
    width: 100%;
}

.nav ul li .sub_nav3 .sub_nav3_right ul li a, .nav ul li .sub_nav2 .sub_nav2_right ul li a {
    padding: 0;
    margin: 5px 0;
}

.left-links ul li a span, .nav ul li .sub_nav3 .sub_nav3_right ul li span, .sub_nav2_right ul li a span {
    font-size: 10px;
    padding: 0 8px 0 0;
    color: #ec7d60;
    display: inline-block;
}
/*==================End Piedmont Styles=========================*/

.sub-nav.sub-nav2 > div:first-child {
    width: 38%;
    display: inline-block;
    float: left;
    border-right: 1px solid #0091b3;
}

.sub-nav.sub-nav2 .sub_nav2_right li {
    width: 100%;
}

.main-nav .navbar-collapse .nav .sub_nav2_service_list ul > li {
    width: auto !important;
    display: inline-block;
    border-right:0;
    margin-right:5px;
}

.map-right-side {
    display: inline-block;
    width: 30%;
    vertical-align:top;
}

.map-left-side{
    display:inline-block;
    width:67%;
    vertical-align:top;
    margin:0 1%;
}

.location-map-control {
    display: inline-block;
    position: relative;
    width: 120%;
}

#avid-loc-col-right {
    overflow-y: scroll;
    background: #fff;
    max-height:725px !important;
    height:725px !important;
}


.location-map-control .container.content {
    /* width: 100%; */
    margin: 0;
}

.location-map-control .content-wrapper {
    width: 95%;
    padding-right:15px !important;
    padding-bottom:0px !important;
}

.information-blurb + div[id*="divSubmitSection"] {
    display: none;
}

.no-number .cta-inline {
    display: none;
}


div#divHomepageAds {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    margin-top: 60px;
}

#divHomepageAds .homepage-right-ad{
    border-bottom-left-radius:35px;
    border-top-right-radius:35px;
    border-top-left-radius:10px;
    overflow:hidden;
    margin-bottom:29px !important;
}

.row.splitView{
    margin-right:2.9% !important;
}


.divFindADoctor .no-videos {
    display: none;
}

.divFindADoctor .no-interest {
    display: none;
}

.nav > li > a.physician-advanced-search {
    display: none;
}

.divFindADoctorSearch .page-sub-title {
    margin-bottom: 10px;
}

#pnl-category-buttons li{
    width:20%;
    display:table-cell;
}

.cesearchwrapper.search-results .search-return {
    display: none;
}


.no-certification {
    display: none;
}

.mobile-search {
    z-index: 999;
    background: aliceblue;
    width: 110%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -106px;
}


.mobile-search-input {
    /* display: none; */
    /* height: 0; */
    /* padding: 0; */
    /* width: 85%; */
}

a#mobilebtnSearch {
    /* display: none; */
    position: relative;
    display: inline-block;
}

.mobile-search-input {
    width: 75%;
    display: inline-block;
    margin-left: 20px;
}

a.close-mobile-search {
    margin-left: 25px;
}

#recaptcha_area input[type="text"] {
   height: auto;
}

.search-mobile-button {
   top: 6px;
   right: 60px;
   position: absolute;
   border: none;
   color: #5a5c5f ;
   font-size: 26px;
}

.service-list td {
    width: 33%;
}

.additional-links td {
    width: 33%;
}


/*LB MODIFIED : 8/12 sub navigation header */
.sub_nav2_right > ul{
    width:100%;
}
.sub_nav2_right ul{
    vertical-align:top;
}
.sub_nav2_right ul ul {
    display:inline-block;
    width:32.6%;
}
.sub_nav2_right ul li {
    width:100% !important;
}

.service-column {
    display: inline-block;
    vertical-align: top;
    width: 32%;
}
.service-column li {
    list-style: none;
}
.sub-nav4 {
    margin-left:-288px;
}
.doc-phone {
    display: inline-block;
}

@media(max-width:1200px) {
.sub-nav.sub-nav2 {
    width: 784px;
}
}
@media(max-width:974px){
    .sub-nav{
        display:none !important;
    }
}

@media(max-width: 500px) {
    .btn-book {
        margin-bottom: 5px;
    }
}

.tr-totals-summary{
    overflow: hidden;
    line-height: 50px;
}

.tr-totals-summary .tr-totals-block {
    max-height: 40px;
    height: 40px;
}

.tr-totals-summary .tr-totals-block svg {
    float: left;
    display: inline-block;
}

.tr-totals-summary .tr-totals-block .tr-totals-score {
    display: inline-block;
    float: left;
}
/*end*/
