/* ============================================================================ *
        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: #ffffff;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

a {
    color: #000000;
}

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

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

    #billboard .billboard-content {
        max-width: 90% !important;
    }

    #int-billboard .int-billboard-content-container {
        max-width: 90% !important;
    }

    #home-contact .tmf-module-area-home-contact {
        max-width: 100% !important;
        width: 90%;
    }
}

/* ======================================== *
        Header 1
 * ======================================== */
h1,
h1#page-title,
.editor-content h1 {
    color: #000000;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* ======================================== *
        Header 2
 * ======================================== */
h2,
.tmf-post > h2,
.editor-content h2 {
    color: #000000;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 15px;
}

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

/* ======================================== *
        Header 3
 * ======================================== */
h3,
.tmf-post > h3,
h3.tmf-module-title {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 15px;
}

h3 a,
.tmf-post > h3 a,
h3.tmf-module-title a {
    color: #000000;
}

h3 a:hover,
.tmf-post > h3 a:hover,
h3.tmf-module-title a:hover {
    color:#b48e36;
}

/* ======================================== *
        Header 4
 * ======================================== */
h4,
.tmf-post > h4 {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 15px;
}

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

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

/* ======================================== *
        Secondary Navigation Section
 * ======================================== */
#secondary-nav .menu {}
#secondary-nav .menu > .menu-item {}
#secondary-nav .menu > .menu-item.first {}
#secondary-nav .menu > .menu-item.last {}
#secondary-nav .menu > .menu-item > a {}
#secondary-nav .menu > .menu-item:hover {}
#secondary-nav .menu > .menu-item:hover a {}
#secondary-nav .menu:hover > .menu-item.current-menu-item > a {}

/* ======================================== *
        Header Sticky CSS
 * ======================================== */
.top-area{
    -webkit-transition: all 0.3s ease-in 0s;
    -moz-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    -ms-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}

body .top-area.sticky {
    -webkit-transition: all 0.3s ease-in 0s;
    -moz-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    -ms-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
    top: 0px;
    left: 0;
    position: fixed !important;
    -moz-background-clip: border;
    -webkit-background-clip: border;
    background-clip: border-box;
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
    -moz-background-clip: content;
    -webkit-background-clip: content;
    background-clip: content-box;
    background: transparent;
    border-bottom: 1px solid #cdd1d4;
    box-shadow: 0px 3px 5px rgb(0,0,0, 0.3);
    min-height: auto;
    width: 100%;
    z-index: 999999;
}

body .top-area.sticky #header-top {
    top: -35px;
}

body .top-area.sticky #header .logo {
    max-width: 200px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* ======================================== *
        Header Top Section
 * ======================================== */
#header-top{
    color: #424241;
    font-size: 16px;
    font-weight: 500;
    text-align: right;
    line-height: 28px;    
    position: absolute;
    top: -55px;
    right: 35px;
}

#header-top a{
    color: #424241;
    text-decoration: none;
}

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

#header-top .phone-1,
#header-top .email{
    margin-right: 25px;
    font-size: 18px;
}

#header-top .phone-1::before {
    background: url(../images/icon_sprite_3x.png) no-repeat 0px 0px;
    background-size: 365px;
    content: "";
    display: inline-block;
    width: 20px;
    height: 14px;
    vertical-align: middle;
    margin-right: 0;
}

#header-top .email::before {
    background: url(../images/icon_sprite_3x.png) no-repeat -20px 0px;
    background-size: 365px;
    content: "";
    display: inline-block;
    width: 20px;
    height: 10px;
    vertical-align: middle;
    margin-right: 0;
}

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

@media screen and (max-width: 850px) {
    #header-top {
        text-align: center;
    }
}

@media screen and (max-width: 450px) {
    #header-top .home{
        display: none;
    }

    #header-top .phone-1 {
        display: block;
        margin-right: 0;
    }
}

/* ======================================== *
        Header Section
 * ======================================== */
#header-wrapper {
    background: url(../images/top_header_bg_3x.jpg) no-repeat center center / cover;
    border-bottom: 1px solid #cdd1d4;
    box-shadow: 0px 3px 5px rgb(0,0,0, 0.3);
    z-index: 9;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

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

#header {
    padding: 30px 0;
}

#header .logo {
    max-width: 281px;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

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

#header .mobile-view{
    display: none;
}

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

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

    #header .desktop-view{
        display: none;
    }

    .header-top-row {
        display: table;
        width: 100%;
    }

    #header .main-logo,
    #header .mobile-view{
        display: table-cell;
        width: 50%;
        vertical-align: middle;
    }

    #header .main-logo{
        width: 35%;
    }
}

@media screen and (max-width: 850px) {
    #header .main-logo,
    #header .mobile-view{
        display: block;
        width: 100%;
        text-align: center;
    }

    #header .main-logo .mobile-view{
        padding-top: 0;
    }

    #header .mobile-view{
        padding-top: 15px;
    }
}

/* ======================================== *
        Primary Navigation Section
 * ======================================== */
#primary-nav-wrapper {
    font-family: 'Montserrat', sans-serif;
}

#primary-nav-container {
    max-width: 850px;
    margin: 0 0 0 auto;
}

#primary-nav {}

#primary-nav .menu {}
#primary-nav .menu > .menu-item {}
#primary-nav .menu > .menu-item.first {}
#primary-nav .menu > .menu-item.last {}

#primary-nav .menu > .menu-item > a {
    color: #424241;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 5px;
    text-decoration: none;
    text-transform: uppercase;
}

#primary-nav .menu > .menu-item.current-menu-item > a,
#primary-nav .menu > .menu-item:hover > a {
    background: rgb(250,212,18);
    background: linear-gradient(90deg, rgba(250,212,18,1) 0%, rgba(249,167,28,1) 100%);
    font-weight: 500;
}

#primary-nav .menu .sub-menu {
    min-width: 265px;
}

#primary-nav .menu > li.left-edge > div > ul {
    left: inherit;
    right: 0;
}

#primary-nav .menu .sub-menu .menu-item{
    background: #fac814;
}

#primary-nav .menu .sub-menu .menu-item {}
#primary-nav .menu .sub-menu .menu-item.first {}
#primary-nav .menu .sub-menu .menu-item.last {}
#primary-nav .menu .sub-menu .menu-item > a {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
}

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

@media screen and (max-width: 1200px) {
    #primary-nav-container {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* ======================================== *
    Mobile Menu
 * ======================================== */
#mobile-nav-wrapper {
    font-family: 'Montserrat', sans-serif;
    text-align: left;
}

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

.menu-bar-container .menu-label {
    font-weight: 700;
}

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

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

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

#mobile-nav .menu .menu-item.display a, 
#mobile-nav .menu .menu-item.display > .mob-expand-submenu:before {
    color: #424241;
}

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

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

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

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

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

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

#billboard img {
    display: block;
    width: 100%;
    border-bottom: 7px solid #c3c4c6;
}

#billboard .billboard-content {
    box-sizing: border-box;
    position: absolute;
    max-width: 1250px;
    margin: 0 auto;
    top: 15vh;
    left: 0;
    right: 0;
    /*z-index: 9;*/
    text-align: center;
}

#billboard .tmf-module {
    padding: 0 25px;
}

#billboard h1{
    color: #666666;
    font-size: 46px;
    margin-bottom: 0;
}

#billboard h1 strong{
    color: #f9a81a;
    text-transform: uppercase;
}

#billboard .tmf-button {
    box-sizing: border-box;
    display: inline-block;
    max-width: 190px;
    width: 100%;
    padding: 15px 15px;
    margin-top: 15px;
}

@media screen and (max-width: 1200px) {
    #billboard .billboard-content {
        top: 50px;
    }

    #billboard .tmf-module {
        padding: 0 25px;
        text-align: center;
    }
}

@media screen and (max-width: 900px) {
    #billboard h1 {
        font-size: 35px;
    }
}

@media screen and (max-width: 700px) {
    #billboard .billboard-content {
        top: 30px;
    }

    #billboard h1 {
        font-size: 25px;
    }
}

@media screen and (max-width: 500px) {
    #billboard .billboard-content {
        top: 20px;
    }

    #billboard h1 {
        font-size: 18px;
    }
}

@media screen and (max-width: 400px) {
    #billboard h1 {
        font-size: 14px;
    }
}

/* ======================================== *
        Billboard Bottom Section
 * ======================================== */
#billboard-bottom-wrapper {
    background: #f9a81a;
}

#billboard-bottom-container{}

#billboard-bottom {
    text-align: center;
    padding: 45px 0;
}

#billboard-bottom h3 {
    font-size: 30px;
}

#billboard-bottom h4 {
    color: #000000;
    font-size: 24px;
}

#billboard-bottom .tmf-button {
    display: inline-block;
    max-width: 250px;
    width: 100%;
    box-sizing: border-box;
}

#billboard-bottom .tmf-button:hover{
    background: rgba(65,65,65,1);
    background: linear-gradient(90deg, rgba(65,65,65,1) 0%, rgba(102,102,102,1) 100%);
    color: #ffffff;
}

#billboard-bottom .tmf-button:hover:after{
    border: 2px solid #f9be17;
}

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

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

#int-billboard .int-billboard-img {
    display: block;
    width: 100%;
    height: auto;
}

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

#int-billboard-cell-1 {
    /*background: url(../images/int_billboard_left_3x.png) no-repeat center center / cover;*/
    background: #fdbf1e;
    width: 42.05%;
}

#int-billboard-cell-2 {
    width: 57.95%;
}

#int-billboard-cell-1 .inner,
#int-billboard-cell-2 .inner {
    padding: 0;
}

#int-billboard .int-billboard-content-container{
    max-width: 1200px;
    margin: 0 auto;
}

#int-billboard .int-billboard-content-container .int-billboard-title {
    text-align: left;
    padding: 35px 0;
}

#int-billboard .int-billboard-title {
    box-sizing: border-box;
    position: relative;
    /* left: 7vw; */
    text-align: center;
}

/*#int-billboard h1#page-title {
    background: rgb(250,212,18);
    background: linear-gradient(90deg, rgba(250,212,18,1) 0%, rgba(249,167,28,1) 100%);
    color: #000000;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 0;
    padding: 35px 25px;
}*/

#int-billboard h1#page-title {
    color: #434345;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 0;
    padding: 0 25px;
}

#int-billboard-2-cell-1{
    background: #fdbf1e;
    border-bottom: 1px solid #cdd1d4;
}

#int-billboard #int-billboard-2-cell-1 h1#page-title{
    color: #434345;
    background: transparent;
    padding: 0;
}

#int-billboard .mobile-view{
    display: none;
}

@media screen and (max-width: 1200px) {
    #int-billboard .int-billboard-title {
        left: 0;
    }
}

@media screen and (max-width: 1000px) {
    #int-billboard .int-billboard-title {
        padding: 0;
        text-align: center;
    }

    #int-billboard-cell-1,
    #int-billboard-cell-2 {
        background: transparent;
        width: 100%;
    }

    #int-billboard-cell-2 {
        display: none;
    }

    #int-billboard .mobile-view{
        display: block;
    }
}

/* ======================================== *
        Home Body Section
 * ======================================== */
#home-body-wrapper {
    background: url('https://employees-lawyer2021.mocha.themodernfirm.com/wp-content/uploads/sites/479/2021/05/home_bg_content_3x-1-scaled.jpg') no-repeat top center / cover;
}

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

#home-body {
    padding: 45px 0 100px;
}

#home-body-cell-1 h1 {
    margin-bottom: 15px;
}

/*#home-body-cell-1 .editor-content h1:last-child {
    margin-bottom: 25px;
}*/

#home-body-cell-1 h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
}

#home-body-cell-1 .editor-content p {
    font-weight: 400;
    line-height: 30px;
}

#home-body-cell-1 .tmf-button {
    box-sizing: border-box;
    display: inline-block;
    max-width: 195px;
    width: 100%;
    margin-top: 15px;
}

#home-body-cell-2 .tmf-post-list.home {
    text-align: center;
    margin-top: 17.5%;
}

#home-body-cell-2 .tmf-button {
    box-sizing: border-box;
    display: inline-flex;
    max-width: 270px;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 70px;
    vertical-align: top;
    font-size: 20px;
    padding: 10px;
    margin: 0 8px 25px;
    border-radius:4px;
}

@media screen and (max-width: 950px) {
    #home-body {
        padding: 45px 0 20px;
        text-align: center;
    }

    #home-body-cell-1 .tmf-button {
        display: none;
    }
}

@media screen and (max-width: 650px) {
    #home-body-cell-2 .tmf-button {
        max-width: 100%;
        margin: 0 0 25px;
    }
}

/* ======================================== *
        Body Section
 * ======================================== */
#body-wrapper {}

#body-container {
    max-width: 1250px;
}

#body {
    padding: 45px 0;
}

#body .custom-inner{
    padding: 0 25px;
}

@media screen and (max-width: 950px) {}

/* ======================================== *
        Home Case Results Section
 * ======================================== */
#home-case-results-wrapper{
    background: url('../images/home_bg_case_results_3x.jpg') no-repeat center center / cover;
}

#home-case-results-container{
    max-width: 1150px;
}

#home-case-results {
    text-align: center;
    padding: 65px 0;
}

#home-case-results .inner{
    padding: 0;
}

#home-case-results h3.tmf-module-title {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

#home-case-results .tmf-button {
    box-sizing: border-box;
    display: inline-block;
    max-width: 220px;
    width: 100%;
    margin-top: 25px;
}

@media screen and (max-width: 1250px) {}

/* ======================================== *
        Home Blog Posts Section
 * ======================================== */
#home-blog-wrapper{}

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

#home-blog {
    padding: 50px 0;
}

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

#home-blog h3.tmf-module-title{
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    padding: 0 25px;
}

#home-blog h4{
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 45px;
    padding: 0 25px;
}

#home-blog .tmf-button {
    box-sizing: border-box;
    display: inline-block;
    max-width: 250px;
    width: 100%;
    padding: 15px 15px;
    margin: 35px 25px 0;
}

@media screen and (max-width: 1200px) {}

/* ======================================== *
        Attorney Single Accordion
 * ======================================== */
.attorney-accordion .editor-content ul {
    padding-left: 0;
    line-height: 1.9em;
}

.attorney-accordion .editor-content p{
  margin: 15px 0;
}

/* ======================================== *
        Footer Section
 * ======================================== */
#footer-wrapper {
    background: #f2f2f2;
}

#footer-wrapper:before {
    background: url('../images/home_bg_contact_us_3x.jpg') no-repeat center center / cover;
    display: block;
    content: "";
    height: 100%;
    width: 61%;
    position: absolute;
    top: 0;
    right: 0;
}

#footer-container {
    max-width: 1250px;
}

#footer {}

#footer > .row > div {
    padding: 65px 0 !important;
}

#footer-wrapper,
#footer-cell-1 {
    background: #f2f2f2;
}

@media screen and (max-width: 1100px) {
    #footer-wrapper:before {
        display: none;
    }

    #footer-cell-1 {
        text-align: center;
    }

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


/* ======================================== *
        Footer Contact Section
 * ======================================== */
#footer-cell-2 h3.tmf-module-title {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 15px;
    margin-bottom: 30px;
}

#footer .gform_wrapper.tmf-form_wrapper {}
#footer .left_half,
#footer .right_half {
    display: block;
    float: left;
    vertical-align: top;
    width: 50%;
}

#footer .editor-content ul {
    padding-left: 0;
}

#footer .editor-content ul li{
    padding-left: 0;
}

#footer .gform_wrapper.tmf-form_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
#footer .gform_wrapper.tmf-form_wrapper input[type=text],
#footer .gform_wrapper.tmf-form_wrapper textarea {
    margin: 0;
}

#home-contact .gform_wrapper ul li.gfield {
    margin-top: 5px;
    padding-top: 0;
}

#footer .gform_wrapper.tmf-form_wrapper ul.gform_fields {
    padding: 0 15px;
    margin: 0;
}

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

#footer .gform_wrapper.tmf-form_wrapper .top_label .gfield_label {
    color: #45484d;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

#footer .gform_wrapper.tmf-form_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first, 
#footer .gform_wrapper.tmf-form_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_last, 
#footer .gform_wrapper.tmf-form_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_middle {
    padding-top: 0;
}

#footer input[type="text"], 
#footer input[type="email"], 
#footer input[type="tel"], 
#footer textarea {}

#footer .gform_wrapper.tmf-form_wrapper ul.gform_fields textarea {
    height: 165px !important;
}

/*Inline Radio Fields*/
#footer .gform_wrapper.tmf-form_wrapper ul li.gfield.gf_list_inline {
    padding: 0 15px;
}

#footer .gform_wrapper.tmf-form_wrapper ul li.gfield.gf_list_inline label.gfield_label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}
 
body #footer .gform_wrapper.tmf-form_wrapper ul li.field_description_below.gf_list_inline div.ginput_container_radio {
    margin-top: 0; 
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
}

#footer .gform_wrapper.tmf-form_wrapper .gfield_radio li input[type=radio] {
    margin-top: 0px;
}

#footer .gform_wrapper.tmf-form_wrapper ul.gfield_radio {
    margin: 5px 0 0;
    padding: 0;
}

#footer .gform_wrapper.tmf-form_wrapper li.gf_list_inline ul.gfield_radio li {
    margin: 0 8px 0 0;
    display: -moz-inline-stack;
    display: inline-block;
}

#footer .gform_wrapper.tmf-form_wrapper .gfield_radio li label {
    color: #000000;
    font-size: 14px;
    margin: 0px 0 0 4px;
}

#footer .gform_wrapper.tmf-form_wrapper .gform_footer {
    background: rgb(102,102,102);
    background: linear-gradient(90deg, rgba(102,102,102,1) 0%, rgba(65,65,65,1) 100%);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 5px;
    text-align: left;
    margin: 25px 15px 0;
    max-width: 140px;
    width: 100%;
}

#footer .gform_wrapper.tmf-form_wrapper .gform_footer:hover {
    background: rgba(65,65,65,1);
    background: linear-gradient(90deg, rgba(65,65,65,1) 0%, rgba(102,102,102,1) 100%);
}

#footer .gform_wrapper.tmf-form_wrapper .gform_footer input.button, 
#footer .gform_wrapper.tmf-form_wrapper input[type=submit] {
    background: transparent;
    border: 2px solid #f9be17;
    box-sizing: border-box;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-right: 0;
    padding: 5px 9px;
    max-width: 140px;
    width: 100%;
    margin: 0;
}

@media screen and (max-width: 1100px) {
    #footer-cell-2 .inner{
        padding: 0 10px;
    }

    #footer-cell-2 h3.tmf-module-title {
        text-align: center;
    }

    #footer .gform_wrapper.tmf-form_wrapper ul li.gfield.gf_list_inline {
        text-align: center;
    }

    #footer .gform_wrapper.tmf-form_wrapper .gform_footer {
        margin: 25px auto 0;
    }
}

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

    #footer-cell-2 h3.tmf-module-title {
        padding: 0;
    }

    #footer .left_half,
    #footer .right_half {
        display: block;
        float: none;
        width: 100%;
        margin: auto;
        padding: 0;
    }

    #footer .gform_wrapper.tmf-form_wrapper ul.gform_fields {
        padding: 0;
    }

    #footer .gform_wrapper.tmf-form_wrapper ul li.gfield.gf_list_inline {
        padding: 0;
    }
}

@media screen and (max-width: 650px) {
    /*Radio Fields*/
    #footer .gform_wrapper.tmf-form_wrapper ul li.gfield.gf_list_inline label.gfield_label {
        display: block;
        margin-right: 0px;
    }

    body #footer .gform_wrapper.tmf-form_wrapper ul li.field_description_below.gf_list_inline div.ginput_container_radio {
        display: block;
    }

    #footer .gform_wrapper.tmf-form_wrapper ul.gfield_radio li label {
        width: auto;
        cursor: pointer;
        text-align: left;
    }
}

/* ======================================== *
        Copyright Section
 * ======================================== */
#copyright-wrapper{}

.post-type-archive-location #copyright-wrapper{
    border-top: 10px solid #f9be17;
}

#copyright-container{}

#copyright {
    color: #000000;
    font-size: 15px;
    padding: 25px 0 50px;
}

#copyright a{
    color: #000000;
}

/* ======================================== *
        Modules
 * ======================================== */
.tmf-multi-module-area .tmf-module {
    margin-bottom: 50px;
}

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

.tmf-multi-module-area .tmf-module h3.tmf-module-title {
    color: #000000;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tmf-multi-module-area .tmf-module-22 h3.tmf-module-title {
    text-align: center;
}

.tmf-multi-module-area .tmf-module-22 {
    background: rgb(250,212,18);
    background: linear-gradient(180deg, rgba(250,212,18,1) 0%, rgba(249,167,28,1) 100%);
    padding: 35px 25px;
}

/* ======================================== *
        Inputs & Buttons
 * ======================================== */
input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #828282;
}

input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #828282;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #828282;
}

input[type="text"], 
input[type="tel"], 
input[type="email"], 
textarea,
select {
    background: #ffffff;
    border: 1px solid #aaaaaa;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #828282;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    max-width: 100%;
    padding: 10px 10px !important;
    line-height: normal !important;
}

textarea {
    height: 120px !important;
}

select {
    -webkit-appearance: none; /* remove the strong OSX influence from Webkit */
}

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

select.gfield_select {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.6em;
  background-repeat: no-repeat;
}

.tmf-button,
.page-numbers,
input[type=submit]{
    font-size: 16px;
    padding: 15px 15px;
    background: rgb(102,102,102);
    background: linear-gradient(90deg, rgba(102,102,102,1) 0%, rgba(65,65,65,1) 100%);
    cursor: pointer;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none !important;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: normal;
    position: relative;
}

.tmf-button:after,
input[type=submit]:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 2px solid #f9be17;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin: 5px;
}

.tmf-button:hover,
.page-numbers:hover,
input[type=submit]:hover{
    background: rgb(250,212,18);
    background: linear-gradient(90deg, rgba(250,212,18,1) 0%, rgba(249,167,28,1) 100%);
    text-decoration: none;
    color: #000000;
}

.tmf-button:hover:after,
input[type=submit]:hover:after{
    border: 2px solid #414141;
}

.tmf-button:active,
.page-numbers:active,
input[type=submit]:active {
    background: rgb(102,102,102);
    background: linear-gradient(90deg, rgba(102,102,102,1) 0%, rgba(65,65,65,1) 100%);
    text-decoration: none;
    color: #ffffff;
}

.tmf-button:active:after,
input[type=submit]:active:after {
    border: 2px solid #f9be17;
}

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

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

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

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

.page-numbers.current {
    background: none;
    border: 1px solid #ddd;
    color: #666666;
}

.vcard .value {
    background: rgba(0, 0, 0, 0) url(../images/icon_sprite_3x.png) no-repeat scroll -160px 0px;
    background-size: 365px;
    height: 18px;
    width: 23px;
    vertical-align: middle;
    margin-right: 2px;
}

/* ======================================== *
        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: 51px;
    height: 51px;
}

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

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

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

/* Payment Icons CSS */
.payment-icons span {
    width: 50px;
    height: 31px;
}

.payment-icons .visa {
    background: rgba(0, 0, 0, 0) url(../images/icon_sprite_3x.png) repeat scroll -640px 0;
    background-size: 862px;
}

.payment-icons .mastercard {
    background: rgba(0, 0, 0, 0) url(../images/icon_sprite_3x.png) repeat scroll -700px 0;
    background-size: 862px;
}

.payment-icons .discover {
    background: rgba(0, 0, 0, 0) url("../images/icon_sprite_3x.png") repeat scroll -700px 0;
    background-size: 862px;
}

.payment-icons .american-express {
    background: rgba(0, 0, 0, 0) url("../images/icon_sprite_3x.png") repeat scroll -700px 0;
    background-size: 862px;
}

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

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

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

blockquote {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    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;
}

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

#breadcrumbs {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin: 0 0 25px;
    color: #000000;
    line-height: normal;
    display:none;
}

#breadcrumbs a {
    color: #000000;
    text-decoration: none;
}

#breadcrumbs .current {
    font-weight: 600;
}

.mobile {
    display: none;
}

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

    .mobile {
        display: inherit;
    }
}

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

.gform_wrapper.tmf-form_wrapper ul.gform_fields li{
    padding: 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;
}

.gform_wrapper.tmf-form_wrapper .top_label .gfield_label {
    margin-bottom: 0;
}

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

body .gform_wrapper.tmf-form_wrapper ul li.field_description_below div.ginput_container_checkbox {
    margin-top: 0;
    margin-bottom: 0;
}

.gform_wrapper.tmf-form_wrapper .gform_footer {
    background: rgb(102,102,102);
    background: linear-gradient(90deg, rgba(102,102,102,1) 0%, rgba(65,65,65,1) 100%);
    box-sizing: border-box;
    padding: 5px;
    text-align: left;
    margin: 25px 0 0;
    max-width: 140px;
    width: 100%;
}

.gform_wrapper.tmf-form_wrapper .gform_footer:hover {
    background: rgba(65,65,65,1);
    background: linear-gradient(90deg, rgba(65,65,65,1) 0%, rgba(102,102,102,1) 100%);
}

.gform_wrapper.tmf-form_wrapper .gform_footer input.button, 
.gform_wrapper.tmf-form_wrapper input[type=submit] {
    background: transparent;
    border: 2px solid #f9be17;
    box-sizing: border-box;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal !important;
    margin-right: 0;
    padding: 5px 9px;
    max-width: 140px;
    width: 100%;
    margin: 0;
}

/*Sidebar CSS*/
/*Inline Radio Fields*/
#body-cell-2 .gform_wrapper.tmf-form_wrapper ul li.gfield.gf_list_inline {
    text-align: center;
    padding-top: 0;
}

#body-cell-2 .gform_wrapper.tmf-form_wrapper ul li.gfield.gf_list_inline label.gfield_label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}
 
body #body-cell-2 .gform_wrapper.tmf-form_wrapper ul li.field_description_below.gf_list_inline div.ginput_container_radio {
    margin-top: 0; 
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
}

#body-cell-2 .gform_wrapper.tmf-form_wrapper .gfield_radio li input[type=radio] {
    margin-top: 0px;
}

#body-cell-2 .gform_wrapper.tmf-form_wrapper ul.gfield_radio {
    margin: 5px 0 0;
    padding: 0;
}

#body-cell-2 .gform_wrapper.tmf-form_wrapper li.gf_list_inline ul.gfield_radio li {
    margin: 0 8px 0 0;
    display: -moz-inline-stack;
    display: inline-block;
}

#body-cell-2 .gform_wrapper.tmf-form_wrapper .gfield_radio li label {
    color: #000000;
    font-size: 14px;
    margin: 0px 0 0 4px;
    width: auto;
}

#body-cell-2 .gform_wrapper.tmf-form_wrapper .gform_footer {
    margin: 25px auto 0;
}