/* ============================================================================ *
        Structural Styles
    ---------------------------------------------------------------------------
        These are the styles which build the main site layout
        (headers, footers, body, etc.).

        If you are attempting to add styling for any elements placed inside of a 
        Wordpress Editor, use 'editor-content.css' stylesheet.
*/

body {
    background: #fff;
    color: #000000;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

a {
    color: #283977;
}

/* ======================================== *
        Large Screen Container Width CSS
 * ======================================== */
@media screen and (min-width: 1600px) {
    body .section-container:not(#billboard-container):not(#footer-container) {
        max-width: 90%;
        
    }

    #billboard .modern-slider .slides img {
        object-fit: inherit;
        height: auto !important;
    }
}


/* ======================================== *
        Headers
 * ======================================== */
h1,
h1#page-title,
.editor-content h1 {
    color: #283977;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1em;
    margin-bottom: 15px;
}

h2,
.tmf-post > h2,
.editor-content h2 {
    color: #1280b2;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 15px;
}

h2 a,
.tmf-post > h2 a,
.editor-content h2 a {
    color: #1280b2;
}

h3,
.tmf-post > h3, 
.editor-content h3 {
    color: #bf1e2e;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1em;
    margin-bottom: 15px;
}

h3 a,
.tmf-post > h3 a, 
.editor-content h3 a {
    color: #bf1e2e;
}

h3 a:hover,
.tmf-post > h3 a:hover, 
.editor-content h3 a:hover {
    text-decoration: underline;
}

h4,
.tmf-post > h4, 
.editor-content h4 {
    color: #283977;
    font-size: 32px; 
    font-weight: 500;
    line-height: 1.1em;
    margin-bottom: 15px;
}

h4 a,
.tmf-post > h4 a, 
.editor-content h4 a {
    color: #283977;
    text-decoration: none;
}

h4 a:hover,
.tmf-post > h4 a:hover, 
.editor-content h4 a:hover {
    text-decoration: underline;
}

/* ======================================== *
        Section Title 
 * ======================================== */
#section-title {
    background: #bf1e2e;
    text-align: center;
    padding: 16px 25px;
    position: relative;
}

#section-title h1 {
    color: #ffffff;
    font-size: 44px;
    margin-bottom: 0;
}


/* ======================================== *
        Header Top Section
 * ======================================== */
#header-top-wrapper{
    position: absolute;
    width: 100%;
    z-index: 9;
}

#header-top-container{
    max-width: 1350px;
}

#header-top {
    color: #283977;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 400;
    padding-top: 15px;
    text-align: right;
    padding-right: 17px;
}

#header-top a {
    /*color: #ffffff; */
    text-decoration: none;
}

#header-top a:hover {
    text-decoration: underline;
}

#header-top .phone-1 {
    display: inline-block;
    padding-left: 10px;
    vertical-align: top;
}

#header-top #google_language_translator {
    display: inline-block;
    vertical-align: top;
}

#header-top .phone-1 a{
    color: #283977;
}

@media screen and (max-width: 1200px) {
    #header-top-wrapper{
        position: relative;
    }

    #header-top {
        text-align: center;
    }
}

/* ======================================== *
        Header Section
 * ======================================== */
#header-wrapper {}

#header-container {
    max-width: 1350px;
}

#header {
    padding: 15px 0;
}

#header .logo {
    max-width: 370px;
    width: 100%;
}

#header-cell-1,
#header-cell-2{
    vertical-align: middle;
}

#header-cell-2 .inner{
    padding-left: 0;
}

@media screen and (max-width: 1200px) {
    #header{
        padding: 15px 0 0;
    }

    #header-cell-2 {
        width: 100%;
    }

    #header-cell-2 .inner{
        padding: 0;
    }

    #header .main-logo{
        text-align: center;
    }
}

/* ======================================== *
        Primary Navigation Section
 * ======================================== */
#primary-nav-wrapper {
    font-family: 'Roboto Condensed', sans-serif;
    padding-top: 40px;
}

#primary-nav-container {
    max-width: 930px !important;
    margin: 0 0 0 auto;
}

#primary-nav {}
#primary-nav .menu > .menu-item.last {}
#primary-nav .menu > .menu-item {
    padding: 0 4px;
}

#primary-nav .menu > .menu-item > a {
    border-bottom: 6px solid rgba(255,255,255,0);
    color: #283977;
    font-size: 21px;
    font-weight: 400;
    padding: 10px 2px;
    text-decoration: none;
}

#primary-nav .menu > .menu-item.last {}
#primary-nav .menu > .menu-item:hover {}

#primary-nav .menu > .menu-item.current-menu-item > a,
#primary-nav .menu > .menu-item:hover > a {
    text-decoration: none;
    background: #A51B28;
    color: white;
}

#primary-nav .menu .sub-menu {}

#primary-nav .menu .sub-menu li {
    background-color: #A51B28;
    top: 0px;
}

#primary-nav .menu .sub-menu .menu-item > a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 15px;
    text-decoration: none;
}

#primary-nav .menu .sub-menu .menu-item:hover > a {
    background-color: #283977;
}


@media screen and (max-width: 1200px) {
    #primary-nav-wrapper {
        padding-top: 0px;
    }

    #primary-nav-container {
        max-width: 1200px !important;
        margin: 0 auto;
    }
}


/* ======================================== *
    Mobile Menu
 * ======================================== */
#mobile-nav-wrapper {
    font-family: 'Roboto Condensed', sans-serif;
}

.hamburger-container {
    max-width: none;
}

#mobile-nav a {
    color: #fff;
    font-size: 16px;
}

#mobile-nav .menu > .menu-item > a {
    color: #fff;
    font-size: 20px;
}

#mobile-nav .menu .menu-item.display {
    background: #061b47;
}

#mobile-nav .top-part .mob-cancel-button {
    color: #fff;
}

#mobile-nav .menu .sub-menu .menu-item {
    padding: 5px 30px;
}

#mobile-nav .mobile-menu .current-menu-item {
    background: transparent;
}

#mobile-nav .menu > .current-menu-item,
#mobile-nav .menu > .menu-item:hover {
    background: #061b47;
}


/* ======================================== *
    Billboard
 * ======================================== */
#billboard-wrapper {
    overflow: hidden;
}

#billboard-container{
    max-width: 100%;
}

#billboard .modern-slider {
    border: none;
    margin: 0;
}

#billboard .modern-slider .slides img {
    object-fit: cover;
    height: 640px;
}

#billboard .billboard-tagline {
    padding: 0 25px;
    position: absolute;
    top: 42.5%;
    max-width: 1120px;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    transform: translateY(-50%); 
}

#billboard .billboard-content {
    padding: 0 25px;
    position: absolute;
    bottom: 75px;
    max-width: 1120px;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
}

#billboard h3 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 0 auto;
    max-width: 600px;
    text-align: left;
}

#billboard strong {
    font-weight: 900;
}

#billboard .tmf-post.page.home {
    max-width: 600px;
    margin: 0 0 0 auto;
    text-align: left;
}

#billboard p {
    color: #ffffff;
    font-size: 22px;
    line-height: 34px;
}

#billboard .sub-text {
    color: #fff;
    text-align: right;
    font-size: 22px;
    padding-top: 50px;
}

@media screen and (max-width: 1200px) {
    #billboard .modern-slider .slides img {
        object-fit: inherit;
        height: auto;
    }

    #billboard .billboard-tagline {
        background: #bf1e2e;
        padding: 0 25px;
        position: relative;
        top: inherit;
        max-width: 1200px;
        transform: inherit; 
    }

    #billboard .billboard-content {
        padding: 25px 25px;
        position: relative;
        bottom: inherit;
        left: inherit;
        right: inherit;
    }

    #billboard .tmf-post.page.home {
        max-width: 1200px;
        margin: 0 auto 0;
    }

    #billboard h3 {
        margin: 0 auto;
        max-width: 1200px;
        text-align: center;
        padding: 15px 0;
    }

    #billboard p {
        color: #000000;
    }

    #billboard .sub-text {
        color: #000000;
        padding-top: 15px;
    }
}

@media screen and (max-width: 450px) {
    #billboard .billboard-content {
        padding: 25px 12px;
    }
}

/* ======================================== *
        Body Section
 * ======================================== */
/*
 #body-wrapper {
    overflow: hidden;
}
*/
#body-container {
    max-width: 1250px;
}

#body-wrapper:before {
    background: #283977;
    display: block;
    content: "";
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
}

#body > .row > div {
    padding: 45px 0 !important;
}

#body-wrapper,
#body-cell-1 {
    background: #ffffff;
}

#body-cell-2 .inner {
    position: initial;
}

body.postid-112 .sticky-sidebar
body.postid-114 .sticky-sidebar,
body.postid-116 .sticky-sidebar,
body.postid-118 .sticky-sidebar,
body.postid-138 .sticky-sidebar,
body.postid-124 .sticky-sidebar,
body.postid-134 .sticky-sidebar,
body.postid-136 .sticky-sidebar,
body.postid-186 .sticky-sidebar,
body.page-id-20 .sticky-sidebar,
body.page-id-687 .sticky-sidebar {
    position: relative !important;
}

@media screen and (max-width: 850px) {
    #body-wrapper:before {
        width: 100%;
    }

    #body > .row > div {
        padding: 25px 0 32px !important;
    }

    #body-wrapper {
        overflow: hidden;
    }
}

/* ======================================== *
        Slogan Section
 * ======================================== */
#slogan-wrapper{
    background: url('../images/int_billboard.jpg') no-repeat center center / cover;
}

#slogan {
    padding: 25px 0;
}

#slogan h3 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-align: center;
}

#slogan strong {
    font-weight: 900;
}

/* ======================================== *
        Home Practice Areas Section
 * ======================================== */
#home-practice-areas-container {
    max-width: 100% !important;
}

#home-practice-areas {}

#home-practice-areas .inner{
    padding: 0;
}


/* ======================================== *
        Home Attorney Section
 * ======================================== */
#home-attorneys-wrapper{
    background: url('../images/bg_team_home_1x.jpg') no-repeat center center / cover;
}

#home-attorneys-container{
    max-width: 1250px;
    padding: 50px 0;
}

#home-attorneys-cell-1,
#home-attorneys-cell-2{
    vertical-align: middle;
}

#home-attorneys img{
    width: 100%;
    display: block;
}

#home-attorneys h2{
    color: #ffffff;
    font-size: 40px;
    text-align: center;
    line-height: 66px;
    margin-bottom: 0;
    padding-bottom: 25px;
}

#home-attorneys .large-text{
    display: block;
    font-size: 60px;
}

/* ======================================== *
        Home Testimonial Section
 * ======================================== */
#home-testimonials-wrapper{
    background: #ffffff url('../images/logo_screen_testimonials_1x.png') no-repeat center center;
}

#home-testimonials-container {
    max-width: 1250px;
}

#home-testimonials{
    padding: 60px 0 70px;
}

#home-testimonials .client-professional {
    max-width: 90%;
    margin: 0 0 0 auto;
}

#home-testimonials .tmf-button {
    display: inline-block;
    padding: 19px 15px;
    max-width: 215px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 35px;
}

/*Bx Slider CSS*/
#home-testimonials .bx-wrapper {
    margin: 0 auto;
    cursor: pointer;
}

#home-testimonials .bx-wrapper .bx-viewport {
    left: 0;
    max-width: 100%;
}

#home-testimonials .bx-wrapper .bx-pager {
    position: relative;
    padding-top: 15px;
}

#home-testimonials .bx-wrapper .bx-pager.bx-default-pager a {
    background: transparent;
    border: 2px solid #a5a5a5;
    width: 15px;
    height: 15px;
    margin: 0 8px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    line-height: normal;
}

#home-testimonials .bx-wrapper .bx-pager.bx-default-pager a.active {
    border: 2px solid #283977;
    background: #283977;
}


/* ======================================== *
        Home Community Top
 * ======================================== */
#home-community-top-wrapper{}

#home-community-top-container{
    max-width: 100% !important;
}

#home-community-top .inner{
    padding: 0;
}

#home-community-top img {
    display: inline-block;
    width: 33.33333%;
    vertical-align: top;
    box-sizing: border-box;
    border-left: 1px solid #fff;
}

#home-community-top img:nth-child(1) {
    border-left: 1px solid #000;
}

/*#home-community-top img:nth-child(2) {
    border-left: 1px solid #fff;
}

#home-community-top img:nth-child(3) {
    border-left: 1px solid #fff;
}*/

@media screen and (max-width: 850px) {
    #home-community-top img {
        display: block;
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #ffffff;
    }

    #home-community-top img:nth-child(1) {
        border-left: none;
    }
}


/* ======================================== *
        Home Community Bottom
 * ======================================== */
#home-community-bottom-wrapper{
    background: #283977;
    padding: 25px 0;
}

#home-community-bottom-container{
    max-width: 1350px;
    color: #fff;
}

#home-community-bottom-cell-1,
#home-community-bottom-cell-2{
    vertical-align: middle;
}

#home-community-bottom img {
    width: 100%;
}

#home-community-bottom p{
    line-height: 34px;
}

#home-community-bottom .tmf-button {
    background: #1280b2;
    padding: 19px 15px;
    margin-top: 25px;
    display: inline-block;
}

#home-community-bottom .tmf-button:hover {
    background: #18719B;
}


/* ======================================== *
        Home Resources
 * ======================================== */
#home-resources-wrapper{
    padding: 50px 0;
}

#home-resources-container{}

#home-resources{}

#home-resources .inner{
    padding: 0;
}

.home-resources-box-1 {
    display: table-cell;
    width: 50%;
    vertical-align: top;
    box-sizing: border-box;
}

.home-resources-box-inner {
    padding: 0 25px;
}

.home-resources-box-item {
    background: #1280b2;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
}

#home-resources h3 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 25px;
}

#home-resources img {
    margin-bottom: 15px;
}

#home-resources p {
    color: #fff;
    line-height: 34px;
}

#home-resources .tmf-button {
    display: inline-block;
    margin-top: 25px;
    padding: 19px 25px;
    max-width: 300px;
    width: 100%;
    box-sizing: border-box;
}

@media screen and (max-width: 850px) {
    .home-resources-box-1 {
        display: block;
        width: 100%;
    }
}

@media screen and (max-width: 450px) {
    #home-resources .inner{
        padding: 0 12px;
    }

    .home-resources-box-inner {
        padding: 0;
    }
}

/* ======================================== *
    Single Attorney Page
 * ======================================== */
.single-attorney #body{
    padding: 0;
    min-height: 560px;
}

.single-attorney #body-cell-1{
    padding: 45px 0 !important;
}

.attorney-bio-info{
    background: #bf1e2e;
    background: #304695 url("../images/logo_screen_white_3x.png");
    background-repeat: no-repeat;
    background-position: center right 100px;
    background-size: 333px;
}

.attorney-bio-info-container{}

.attorney-bio-info-inner{}

.attorney-bio-info .attorney-bio-box-1, 
.attorney-bio-info .attorney-bio-box-2 {
    box-sizing: border-box;
    display: table-cell;
    vertical-align: middle;
}

.attorney-bio-info .attorney-bio-box-1 {
    width: 324px;
}

.attorney-bio-info .attorney-bio-box-2 {
    vertical-align: middle;
}

.attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner {
    padding: 25px;
}

.attorney-bio-info img.primary{
    max-width: 324px;
    width: 100%;
    display: block;
}

.attorney-bio-info h1#page-title{
    color: #ffffff;
    font-size: 36px;
    text-transform: none;
}

.attorney-bio-info .attorney-titles a{
    color: #ffffff;
}

.attorney-bio-info .contact-information,
.attorney-bio-info .icon-container{
    color: #ffffff;
    font-size: 24px;
}

.attorney-bio-info .phone,
.attorney-bio-info .fax,
.attorney-bio-info .email {
    margin: 10px 0;
}

.attorney-bio-info .phone-1 .label {
    background: rgba(0, 0, 0, 0) url(../images/icon_sprite_3x.png) no-repeat scroll 0px 0px;
    background-size: 624px;
    display: inline-block;
    font-size: 0;
    height: 22px;
    vertical-align: middle;
    width: 17px;
    margin-right: 13px;
}

.attorney-bio-info .phone-2 .label {
    background: rgba(0,0,0,0) url(/wp-content/themes/mod-express-116/immigrantsfirst/assets/images/mobile_icon.png) no-repeat scroll 3px 0px;
    display: inline-block;
    font-size: 0;
    height: 31px;
    vertical-align: middle;
    width: 25px;
    margin-right: 5px;
}

.attorney-bio-info .fax .label {
    background: rgba(0, 0, 0, 0) url(../images/icon_sprite_3x.png) repeat scroll -19px 0px;
    background-size: 624px;
    content: '';
    font-size: 0;
    display: inline-block;
    height: 24px;
    vertical-align: middle;
    width: 30px;
}

.attorney-bio-info .email .label {
    background: rgba(0, 0, 0, 0) url(../images/icon_sprite_3x.png) repeat scroll -59px 0px;
    background-size: 624px;
    content: '';
    font-size: 0;
    display: inline-block;
    height: 18px;
    vertical-align: middle;
    width: 30px;
}

.attorney-bio-info .vcard .label {
    margin-top: 0;
    font-size: 24px;
    vertical-align: middle;
}

.attorney-bio-info .resume {
    display: block;
}

.attorney-bio-info .resume .label {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
    font-size: 18px;
}

.attorney-bio-info .contact-information a,
.attorney-bio-info .icon-container a{
    color: #ffffff;
}

@media screen and (max-width: 850px) {
    .single-attorney #body-cell-1 {
        padding: 25px 0 0 !important;
    }

    .attorney-bio-info{
        background: transparent;
        padding-bottom: 25px;
    }

    .attorney-bio-info .attorney-bio-box-1,
    .attorney-bio-info .attorney-bio-box-2 {
        display: block;
        width: 100%;
    }

    .attorney-bio-info .attorney-bio-box-2 {
        background: #bf1e2e;
        background: #304695;
        padding: 25px 0;
    }

    .attorney-bio-info img.primary {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 450px) {
    .attorney-bio-info .attorney-bio-box-2 .attorney-bio-info-inner{
        padding: 25px 12px;
    }
}


.page-id-96 #body-cell-1 .editor-content a{
    text-decoration: none;
}

.page-id-96 #body-cell-1 .editor-content a:hover{
    text-decoration: underline;
}


/* ======================================== *
        Footer Section
 * ======================================== */
#footer-wrapper {}

#footer-container {
    max-width: 100%;
}

#footer {
    color: #000000;
    font-size: 21px;
}

#footer-cell-1 .inner{
    padding: 0;
}

#footer-cell-2{
    background: url('../images/footer_contact_right_1x.jpg') no-repeat center center / cover;
    vertical-align: middle;
}

@media screen and (max-width: 850px) {
    #footer-cell-2{
        padding: 50px 0;
    }
}


/* ======================================== *
        Copyright Section
 * ======================================== */
#copyright-wrapper {
    background: #283977;
}

#copyright-container {}

#copyright {
    color: #ffffff;
    font-size: 16px;
    padding: 25px 0 50px;
    text-align: center;
}

#copyright a {
    color: #ffffff;
}


/* ======================================== *
        Modules
 * ======================================== */

.sticky-sidebar {
    position: absolute;
    height: 100%;
}

.tmf-module-area-page-sidebar {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 30px;
    margin-bottom: 30px;
}

.tmf-multi-module-area .tmf-module {
    margin-bottom: 40px;
}

.tmf-multi-module-area .tmf-module:last-child {
    margin-bottom: 0;
}

.tmf-multi-module-area .tmf-module h3.tmf-module-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.tmf-multi-module-area .tmf-module.inspirations {
    position: relative;
    padding: 0 25px;
}

.tmf-multi-module-area .inspirations h3.tmf-module-title {
    z-index: 9;
    position: relative;
    padding-top: 24px;
}

.tmf-multi-module-area .inspirations .editor-content {
    position: relative;
}

.tmf-multi-module-area .tmf-module.inspirations:before {
    content: '';
    background: #1280b2;
    width: 1000%;
    height: 100%;
    position: absolute;
    /*left: -25px;*/
    left: 0;
    padding-bottom: 35px;
}

.tmf-multi-module-area .tmf-module .tmf-button {
    display: inline-block;
    padding: 19px 15px;
    width: 100%;
    box-sizing: border-box;
    margin: 25px 0 0;
}

.tmf-multi-module-area .inspirations .editor-content .tmf-button {
    margin-top: 40px;
}

#body-cell-1 .sidebar-image {
    max-width: 370px;
    width: 100%;
    float: left;
    margin-bottom: 0;
    margin-right: 15px;
}

body:not(.post-type-archive-location) #body #body-cell-2 {
    padding-top: 0 !important;
}

body:not(.post-type-archive-location) #body #body-cell-2 .inner {
    padding: 0;
}

body.post-type-archive-location #body-cell-2 .sidebar-image {
    margin-bottom: 40px;
    border: 1px solid #ffffff;
    display: block;
    max-width: 370px;
    width: auto;
    margin: 0 auto 40px;

}

#body-cell-2 .sidebar-image {
    /*margin-bottom: 40px;*/
    /*border: 1px solid #ffffff;*/
    display: block;
    /*max-width: 370px;*/
    width: 100%;
    margin: 0 auto 0;

}

@media screen and (max-width: 1250px) {
    .tmf-module-area-page-sidebar {
        overflow: hidden;
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 600px) {
    #body-cell-1 .sidebar-image  {
        float: none;
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media screen and (max-width: 450px) {
    .tmf-multi-module-area .tmf-module.inspirations {
        padding: 0 12px;
    }
}


/* ======================================== *
        Sticky Sidebar
 * ======================================== */
@media screen and (max-width: 850px){
    #body-cell-2 .sticky-sidebar {
        position: relative !important;
        max-width: 100% !important;
        height: 100% !important;
        width: 100% !important;
    }
}


/* ======================================== *
        Inputs & Buttons
 * ======================================== */
input[type="text"], 
textarea {
    font-family: 'Roboto', sans-serif !important;
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #a9a9a9;;
    border-radius: 0;
    color: #848484;
    font-size: 16px !important;
    margin-bottom: 15px !important;
    max-width: 100%;
    padding: 10px 10px !important;
}

textarea {
    height: 100px !important;
}

input[type=text]:focus,
textarea:focus {
    border: 1px solid #a9a9a9;
}

.tmf-button,
.page-numbers,
.gform_wrapper.tmf-form_wrapper input[type=submit] {
    padding: 15px;
    background-color: #283977;
    border: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
    color: #fff !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
}

.tmf-button:hover,
.page-numbers:hover,
.gform_wrapper.tmf-form_wrapper input[type=submit]:hover {
    background-color: #2d4085;
    text-decoration: none;
}

.tmf-button:active,
.page-numbers:active,
.gform_wrapper.tmf-form_wrapper input[type=submit]:active {
    background-color: #283977;
    text-decoration: none;
}

.tmf-button.large {
    font-size: 1.1em;
    padding: 7px 25px;
}

.tmf-button.medium {
    font-size: .95em;
    padding: 5px 25px;
}

.tmf-button.small {
    font-size: .85em;
    padding: 3px 15px;
}

.tmf-button.tiny {
    font-size: .75em;
    padding: 2px 7px;
}

.page-navigation .tmf-button,
.page-numbers{
    outline: none;
    outline-offset: 0;
}

.page-numbers.current {
    background: none;
    border: 1px solid #9a9b9c;
    color: #333 !important;
}

.vcard .value {
    background: rgba(0, 0, 0, 0) url(../images/icon_sprite_3x.png) repeat scroll -99px 4px;
    background-size: 624px;
    height: 23px;
    width: 27px;
    vertical-align: middle;
}

/* ======================================== *
        Responsive Layout
 * ======================================== */
@media screen and (max-width: 700px) {
    #breadcrumbs {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    #secondary-nav-wrapper {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .row > div > .inner {
        padding-left: 12px;
        padding-right: 12px;
    }
}



/* ======================================== *
        Miscellaneous
 * ======================================== */
.social-icons {
    vertical-align: middle;
}

.social-icons .icon {
    width: 47px;
    height: 48px;
}

.social-icons .facebook {
    background: rgba(0, 0, 0, 0) url(../images/icon_sprite_3x.png) repeat scroll -304px 0;
    background-size: 625px;
}

.social-icons .linked-in {
    background: rgba(0, 0, 0, 0) url("../images/icon_sprite_3x.png") repeat scroll -357px 0;
    background-size: 625px;
}

.social-icons .twitter {
    background: rgba(0, 0, 0, 0) url("../images/icon_sprite_3x.png") repeat scroll -410px 0;
    background-size: 625px;
}

aside {
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; 
}

aside.left {
    border-top: 6px solid #1280b2; 
    border-bottom: 6px solid #1280b2; 
}

aside.right {
    border-top: 6px solid #1280b2; 
    border-bottom: 6px solid #1280b2; 
}

.editor-content blockquote p{
    line-height: 48px;
}

blockquote {
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    font-style: italic;
    font-weight: 400;
    line-height: 48px;
    position: relative;
    margin: 0;
    padding: 0 0 0 40px;
    z-index: 9;
}

blockquote:after {
    content: "“";
    display: inline-block;
    font-family: Georgia;
    font-size: 400px;
    position: absolute;
    left: -15px;
    color: #f2f2f2;
    top: 140px;
    z-index: -9;
    font-style: normal;
}

#breadcrumbs {
  font-size: 15px;
  margin: 0 0 15px;
  color: #484848;
}

#breadcrumbs a {
  color: #484848;
  text-decoration: underline;
}

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

.editor-content img {
    height: auto;
    max-width: 100%;
}

.mobile {
    display: none;
}

div#google_translate_element {
    display: inline-block;
}

@media screen and (max-width: 500px) {
    .not-mobile {
        display: none;
    }

    .mobile {
        display: inherit;
    }
}


/* ======================================== *
        Gravity Form
 * ======================================== */
.gform_wrapper.tmf-form_wrapper {
    margin: 0 !important;
}

.gform_wrapper.tmf-form_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
.gform_wrapper.tmf-form_wrapper input[type=text],
.gform_wrapper.tmf-form_wrapper textarea {
    margin: 0;
    margin-bottom: 10px !important;
}

.gform_wrapper.tmf-form_wrapper .top_label .gfield_label {
    margin-bottom: 0;
    margin-top: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.gform_wrapper.tmf-form_wrapper .gfield_required {
    color: #fff;
}

.gform_wrapper.tmf-form_wrapper ul li.gfield {
    margin-top: 0;
    padding-top: 0;
}

.gform_wrapper.tmf-form_wrapper ul.gform_fields li.gfield {
    padding-right: 0 !important;
}

.gform_wrapper.tmf-form_wrapper textarea {
    height: 100px !important;
}

.gform_wrapper.tmf-form_wrapper .gform_footer {
    padding: 0;
    margin: 10px 0 0;
    text-align: center;
}

.gform_wrapper.tmf-form_wrapper .gform_footer input.button, 
.gform_wrapper.tmf-form_wrapper input[type=submit] {
    background: #bf1e2e;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    margin-right: 0;
    padding: 20px 15px;
    width: 100%;
}

.gform_wrapper.tmf-form_wrapper .gform_footer input.button:hover, 
.gform_wrapper.tmf-form_wrapper input[type=submit]:hover {
    background: #ce2032;
}