.menuLink { 
    display: none; 
    position: absolute; 
    margin: -3px 0px 0px 0px; 
    left: 5px; 
    top: 0px; 
    padding-left: 10px; 
    width: 50px; 
    height: 36px; 
    cursor: pointer; 
    z-index: 9999;
}
.menuLink:before,
.menuLink:after,
.menuLink > span.icon:before {
	content:" ";
	position: absolute;
	width: 23px; 
	height: 3px;
	background: #fff;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	z-index: 1001;
    margin-left: 0px;
}
.menuLink:before { 
    top: 9px; 
} 
.menuLink:after { 
    top: 15px; .menuLink .activeBG
} 
.menuLink > span.icon:before { 
    top: 21px; 
} 
.menuLink:hover, .menuLink:focus, 
.menuLink.open {  
}

.menuLink.activeMenu {
    left: 0px;
    width: 50px;
}

.menuLink.activeMenu:before,
.menuLink.activeMenu:after,
.menuLink.activeMenu > span.icon:before {
	content:" ";
	position: absolute;
	width: 23px; 
	height: 3px;
    margin-left: 5px;
	background: #fff;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	z-index: 1001;
}

.menuLink-all { 
    float: right;
    position: absolute; 
    z-index: 99999;
    margin-top: -45px;
    margin-right: 55px;
    right: 0px;
}

.menuLink .activeBG { 
    position: absolute; 
    padding-left: 15px; 
    padding-right: 10px; 
    width: 55px; 
    height: 48px; 
    left: 0px; 
    top: -7px; 
    background: #211c16; 
    -webkit-border-top-left-radius: 3px;    
    -moz-border-top-left-radius: 3px;
    border-top-left-radius: 3px;  
    -webkit-border-bottom-left-radius: 3px;    
    -moz-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;      
    display: none;
}

/*================================================================
                 CLICK MENU STYLES
================================================================*/

/*
    THESE STYLES will probably not be needed and are adjusted in your main styles
    - * for example is most efficient when not a child of a class
       -- hopefully you already are using the box sizing globally
    - you may not need text-decoration etc. depending on your global anchors
*/

.cm-menu a, .cm-menu a:visited { color:#fff; text-decoration:none; }
.cm-menu *, .cm-menu *:after, .cm-menu *:before {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.cm-menu:focus { outline:3px solid blue;  }
.cm-menu, .cm-menu ul { margin:0; padding:0; list-style:none; }


.toggle-menu + .cm-menu, .cm-menu ul {
    max-height:0;
    opacity:0;
    overflow: visible;
    -wekbit-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;     
}



.cm-menu {  /*position: relative;*/ }
.cm-menu li a { display:block; padding:10px; position:relative; /*background:#999;*/ }


.cm-menu li { border-top:1px solid #333; }
.cm-menu li:first-child { border-top:0; }
.cm-menu li { position:relative; }

.cm-menu > .opened > a,
.cm-menu > li > a:hover,
.cm-menu > li > a:focus,
.cm-menu > li > div > a:hover,
.cm-menu > li > div > a:focus { /*color:#333; background:#d4d4d4;*/ }

.cm-menu .expander-wrap .has-sub:hover > span,
.cm-menu .expander-wrap .has-sub:focus > span { color:#333; background:#d4d4d4; }

.cm-menu ul .opened > a,
.cm-menu ul a:hover, .cm-menu ul li a:focus { /*background:#444;*/ }

.cm-menu ul .opened > .has-sub:after,
.cm-menu ul .opened > .expander-wrap .has-sub > span:after{
    border-top-color:#fff;
}

.cm-js-active .cm-menu { max-height:80em; opacity:1; }
.cm-menu .opened > ul { max-height:80em; opacity:1; }

/* ================= SEPARATE EXPANDERS OPTION IS ENABLED ================= */

.cm-menu .expander-wrap { display:table; width:100%; }
.cm-menu .expander-wrap a { display:table-cell; }
.cm-menu .expander-wrap .has-sub { position:relative; width:30px; }
.cm-menu .expander-wrap .has-sub:after { display:none; }
.cm-menu .expander-wrap .has-sub > span {
    display:block;
    position:absolute; top:0; right:0;
    width:100%; height:100%;
    background:#aaa;
}
.cm-menu .expander-wrap .has-sub > span:after {
    content:" ";
    display:inline-block;
    position:absolute; top:50%; right:50%;
    margin:2px 0 0 5px;
    vertical-align:middle;
    border:5px solid transparent;
    /* Extra is for anti-aliasing issues in firefox and others */
    border:5px solid rgba(0,0,0,0);
    border-top-color:#fff;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0.98) translate(50%, -50%);
        -ms-transform: scale(0.98) translate(50%, -50%);
            transform: scale(0.98) translate(50%, -50%);
}
.cm-menu .opened > .expander-wrap .has-sub > span:after {
    border-top-color:#333;
    -webkit-transform: scale(0.98) translate(50%, -75%) rotate(-180deg);
        -ms-transform: scale(0.98) translate(50%, -75%) rotate(-180deg);
            transform: scale(0.98) translate(50%, -75%) rotate(-180deg);
}

/* ================= HOVER FALLBACK IF JAVASCRIPT IS DISABLED ================= */

.no-js .toggle-menu + .cm-menu { opacity:1; max-height:80em; }
.no-js .cm-menu > li:hover > a { background:#fff; }
.no-js .cm-menu ul ul li:hover > a { background:#444; }

.no-js .cm-menu li:hover > ul { display:block; max-height:80em; opacity:1; width:100%; }
.no-js .cm-menu ul { display:none; overflow:visible; }


/* ================= MENU OPEN FUNCTIONALITY ADDED ON SETUP ================= */

@media (min-width:48em){
    .toggle-menu + .cm-menu { max-height:80em; opacity:1; overflow:visible; }
    .cm-menu ul { top:100%; overflow:hidden; }
    .cm-menu .opened > ul { max-height:80em; opacity:1; }

    .cm-menu .animated > ul { overflow:visible; z-index:10; }
    .cm-menu .animating > ul { z-index:-1; }
}


/*================================================================
                 CLICK MENU MENU TYPES
================================================================*/

/*  NAV BAR STYLE TYPE
    ================================================================*/

@media (min-width:48em){
    .nav-bar li { border-top:0; }

    .nav-bar > ul { display: table; /*width:100%;*/ /*table-layout:fixed;*/ float: right; height: 66px;}
    .nav-bar > ul > li { display:table-cell; vertical-align:middle;}
    .nav-bar > ul > li > a { display:table; width:100%; padding: 0px 23px;}
    .nav-bar > ul > li > a > span { display:table-cell; padding: 0 0px; height:40px; vertical-align:middle; text-align:center; font-size: 1.13em; font-weight: 700; text-transform: uppercase;}
    .nav-bar > ul > li > ul { position:absolute; }
    
    .nav-bar .has-sub span:after { position:static; margin-top:10px; }
    .nav-bar ul ul .has-sub:after { right:5px; }
    
    .nav-bar ul li li { margin: 5px 0px 5px 0px; }
    .nav-bar ul li li li { margin-left:0; margin-right:0; }
    .nav-bar ul ul a { padding: 3px 0px; background: transparent; color: #333334 !important; font-size: 0.88em; font-weight: 400;}
    
    .nav-bar ul ul li:first-child a { text-decoration: none !important;}
    .nav-bar ul ul li:first-child a:hover { text-decoration: underline !important;}
    
    .nav-bar ul .custom-sub-in ul a { padding: 3px 0px; background: transparent; color: #333334 !important; font-size: 0.88em; font-weight: 400; /* pointer-events: none; cursor: default; */ text-decoration: none !important;}
    .nav-bar ul .custom-sub-in ul ul a {pointer-events: visible; cursor: pointer;}    

    .cm-menu .opened .opened .custom-sub {
        padding: 0px 0px 0px 0px !important;
    }
    
    .nav-bar ul ul a:hover, .nav-bar ul ul a:focus,
    .nav-bar ul ul .opened > a { text-decoration: underline;}
    .nav-bar ul ul ul a:hover, .nav-bar ul ul ul a:focus,
    .nav-bar ul ul ul .opened > a { text-decoration: underline !important;}

    /* ================= HOVER FALLBACK IF JAVASCRIPT IS DISABLED ================= */

    .no-js .nav-bar ul ul li:hover > a { color:#000; background:#ddd; }
    
}

@media (min-width:768px) and (max-width:1073px) { 

    ul.header-links { font-size: 0.81em !important;}
    
    .nav-bar > ul > li > a { padding: 0px 10px !important;}
    
}


/*  ACCORDION NAVIGATION
    ================================================================*/

/* ------------- CURRENTLY KEEPS SMALL SCREEN STYLES -------------- */


/*  DROP DOWN NAVIGATION
    ================================================================*/

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  

   li[data-type="dropdown"] ul { 
       top: 66px;
   }    
    
   li[data-type="dropdown"]:nth-last-child(-n+2) ul { 
       top: 66px;
   }
}    

@media (min-width:48em){
    [data-type="dropdown"] ul {
        display:block;
        position:absolute;
        z-index:-1;
        top:100%; 
        left:0;
        width:100%; min-width:180px;
        padding: 10px 15px;        
        background:#fff;
        background:#fff;
        border-left: 2px solid #f2f0e9;
        border-right: 2px solid #f2f0e9;
        border-bottom: 2px solid #f2f0e9;  
    }
    [data-type="dropdown"] ul ul { top:-5px; }
    [data-type="dropdown"] .opened > ul { 
        left: 0px; 
        max-height: 80em; 
        opacity:1; 
        padding: 10px 15px;        
        background:#fff;
        background:#fff;
        border-left: 2px solid #f2f0e9;
        border-right: 2px solid #f2f0e9;
        border-bottom: 2px solid #f2f0e9;      
    }

    
    li[data-type="dropdown"]:nth-last-child(-n+2) ul { 
        left :auto; 
        right: -33px;
        padding: 10px 15px;        
        background:#fff;
        background:#fff;
        border-left: 2px solid #f2f0e9;
        border-right: 2px solid #f2f0e9;
        border-bottom: 2px solid #f2f0e9;    
    }
    li[data-type="dropdown"]:nth-last-child(-n+2) ul ul { 
        left: auto; 
        right: 0; 
        padding: 10px 15px;        
        background:#fff;
        background:#fff;
        border-left: 2px solid #f2f0e9;
        border-right: 2px solid #f2f0e9;
        border-bottom: 2px solid #f2f0e9;   
    }    
    
    li[data-type="dropdown"]:nth-last-child(-n+2) .opened > ul { left:auto; right: 0px; top: 28px;}

    .nav-bar ul li[data-type="dropdown"] li li { margin-left:5px; margin-right:5px; }

    [data-type="dropdown"] a + .has-sub { width:0; min-height:0; height:100%; }
    [data-type="dropdown"] a + .has-sub > span { min-height:0; height:100%; }

    /* ================= HOVER FALLBACK IF JAVASCRIPT IS DISABLED ================= */

    .no-js .cm-menu [data-type="dropdown"] li:hover > ul { left:100%; }
    .no-js .cm-menu [data-type="dropdown"]:nth-last-child(-n+2) ul { left:auto; right:0; }
    .no-js .cm-menu [data-type="dropdown"]:nth-last-child(-n+2) li:hover > ul { left:auto; right:100%; }

}

/*  SLIDING MENU NAVIGATION ADJUSTMENTS
    ================================================================*/


[data-type="sliding"].opened .sub-menu,
[data-type="sliding"].opened .sub-menu ul { max-width:100%; }

.cm-menu [data-type="sliding"].opened .sub-menu > ul { max-height:80em; opacity:1; }
.cm-menu [data-type="sliding"].animated .sub-menu > ul { overflow:visible; z-index:10; }
.cm-menu [data-type="sliding"].animating .sub-menu { z-index:-1; }

@media (min-width:48em){

    [data-type="sliding"] .sub-menu {
        position:absolute;
        -wekbit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
    }
    [data-type="sliding"] .sub-menu > ul {
        display:block;
        position:absolute;
        z-index:-1;
        top:100%; left:0;
        width:180px;
        background:#fff;
        -wekbit-transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, left 0.4s ease-in-out, right 0.4s ease-in-out;
                transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, left 0.4s ease-in-out, right 0.4s ease-in-out;
    }

    [data-type="sliding"] .sub-menu > ul li { position:static; }
    [data-type="sliding"] .sub-menu > ul > li > ul { position:absolute; top:0; }

    [data-type="sliding"] .sub-menu > ul ul { position:absolute; top:0; }

    [data-type="sliding"] .sub-menu ul ul ul { position:static; margin:0; padding:0; max-height:80em; width:100%; overflow:hidden; background:transparent; opacity:1; }

    [data-type="sliding"] .sub-menu ul ul .has-sub { color:#fff; cursor:default; }
    [data-type="sliding"] .sub-menu ul ul .has-sub { background: none; border-bottom:1px solid #fff; }
    [data-type="sliding"] .sub-menu ul ul .has-sub:after,
    [data-type="sliding"] .sub-menu ul ul .expander-wrap .has-sub  { display:none; }

    [data-type="sliding"] .sub-menu > ul > li > ul > li { float:left; width:50%; padding:0 5px; }
    [data-type="sliding"] .sub-menu > ul > li > ul > li:nth-child(2n+1) { clear:left; }
    [data-type="sliding"] .sub-menu > ul > li > ul > .link-landing { margin-left:0; margin-right:0; width:100%; }
    [data-type="sliding"] .sub-menu > ul > li > ul > .link-landing ~ li:nth-child(2n+1) { clear:none; }
    [data-type="sliding"] .sub-menu > ul > li > ul > .link-landing ~ li:nth-child(2n+2) { clear:left; }

    /* ================= ESSENTIAL SLIDING FUNCTIONALITY ================= */

    [data-type="sliding"] .sub-menu.cm-js-inactive { position:relative; left:0 !important; width:100% !important; }
    [data-type="sliding"] .sub-menu.cm-js-inactive > ul { min-width:100%; }
    [data-type="sliding"] .sub-menu.cm-js-inactive > ul > li > ul { padding:0; max-width:0; }

    [data-type="sliding"] .sub-menu > ul ul { width:100%; margin-left:-5px; padding-left:180px; padding-right:5px; z-index:-1; opacity:0; }
    [data-type="sliding"] .sub-menu .animated ul { opacity:1; }

    [data-type="sliding"].opened .sub-menu, [data-type="sliding"].opened .sub-menu ul { max-width:none; }

    /* ================= HOVER FALLBACK IF JAVASCRIPT IS DISABLED ================= */

    .no-js .cm-menu [data-type="sliding"] li:hover > ul { left:100%; }
    .no-js .cm-menu [data-type="sliding"]:nth-last-child(-n+2) ul { left:auto; right:0; }
    .no-js .cm-menu [data-type="sliding"]:nth-last-child(-n+2) li:hover > ul { left:auto; right:100%; }

}

/*  MEGA MENU NAVIGATION ADJUSTMENTS
    ================================================================*/

@media (min-width:48em){

    .cm-menu [data-type="mega"] { position:static; }
    /*[data-type="mega"] > ul {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        max-height: 0;
        background: #fff;
        overflow: hidden;
        -wekbit-transition: all 0.5s ease-in-out;
                transition: all 0.5s ease-in-out;
        -webkit-box-shadow: 0 0 1px 1px rgba(231, 225, 213, 0.5);
        -moz-box-shadow: 0 0 1px 1px rgba(231, 225, 213, 0.5);
        box-shadow: 0 0 1px 1px rgba(231, 225, 213, 0.5);          
    }*/

    [data-type="mega"] > ul ul { position:static; max-height:80em; width:100%; overflow:hidden; background:transparent; opacity:1; }
    [data-type="mega"] > ul .opened ul { margin-left:0; display: table;}
    [data-type="mega"] > ul > li { float: none; display: table-cell; vertical-align: top; }
    [data-type="mega"] > ul > li:nth-child(4n+1) { clear:left; }

    [data-type="mega"] > ul > .link-landing { margin:0; width:100%; }
    [data-type="mega"] > ul > .link-landing ~ li:nth-child(4n+1) { clear:none; }
    [data-type="mega"] > ul > .link-landing ~ li:nth-child(4n+2) { clear:left; }

    /* ================= OPENED FUNCTIONALITY ADDED ON SETUP ================= */

    [data-type="mega"] a + .has-sub { width:0; min-height:0; height:100%; }
    [data-type="mega"] a + .has-sub > span { min-height:0; height:100%; }
    [data-type="mega"] ul .has-sub:after { display:none; }
    [data-type="mega"].opened > ul { padding:20px; }

    /* ================= SEPARATE EXPANDERS OPTION IS ENABLED ================= */

    [data-type="mega"] ul a + .has-sub { display:none; }

    /* ================= HOVER FALLBACK IF JAVASCRIPT IS DISABLED ================= */

    .no-js .cm-menu [data-type="mega"] ul ul { display:block; }

    .custom-sub-in { display: table; width: 100%; table-layout: fixed;}
    .custom-sub.edit ul {display: table-row;}
    .custom-sub.edit ul li { margin: 5px 0px 5px 0px; display: table-cell; vertical-align: top;}
    .custom-sub.edit ul li li { margin-left:0; margin-right:0; display: block;}    
    
    .custom-sub.edit > ul > li { float:left; width:25%; }
    .custom-sub.edit > ul > li:nth-child(4n+1) { clear:left; }
    
    .nav-dep { margin: 0px 0px 5px 0px; color:#333334; font-size: 1em; font-weight: 700 !important; text-transform: uppercase;}  
    
    li li li .nav-dep { 
        margin: 0px 0px 0px 0px; 
        text-transform: none !important;
        padding: 3px 0px !important;
        background: transparent none repeat scroll 0% 0%;
        color: #333334 !important;
        font-size: 0.88em !important;
        font-weight: 400 !important;
    }  
    
    a.view-all { margin: 0px 0px 5px 0px; color:#333334; font-size: 1em; font-weight: 700 !important; text-transform: none;}
    
    [data-type="mega"] .banner-wrap { width:100%; min-height: 62px; margin-top: 15px; padding-top: 10px; border-top: 3px solid #e6e2da;}
    [data-type="mega"] .custom-sub .banner-wrap a { text-align:center; background:none; padding: 0px;}

    [data-type="mega"] .banner-nav {
        display: table;
        max-width: 767px;
        margin: 0px auto;
        color: #333333;    
    }
    [data-type="mega"] .banner-wrap .banner-nav-text { 
        display: table-cell;
        font-size: 24px;
    }
    [data-type="mega"] .banner-wrap .banner-nav-text span.red { 
        text-transform: uppercase;
        font-weight: 700;
        color: #ed1b32;
        margin: 0px 10px 0px 10px;
    }
    [data-type="mega"] .banner-wrap .banner-nav-img { 
        display: table-cell;
    }
    [data-type="mega"] .banner-wrap .banner-nav-more { 
        display: table-cell;
    }
    [data-type="mega"] .banner-wrap .banner-nav-more span.learn-more { 
        text-transform: uppercase;
        font-weight: 700;    
        font-size: 14px;
        color: #ed1b32;    
        margin: 0px 10px 0px 15px;
        padding: 10px 15px;
        border: 2px solid #ed1b32;
    }

    
}


/*================================================================
                 NAVIGATION TOGGLE STYLES
================================================================*/

.toggle-menu { display:block; position:relative; width:50px; height:46px; background:#fff; }
.toggle-menu:before, .toggle-menu:after, .toggle-menu > span:before {
    content:" ";
    position:absolute;
    left:15%;
    border-radius:2px;
    width:70%; height:3px;
    background:#fff;
}

.toggle-menu:before { top:11px; }
.toggle-menu:after { top:21px; }
.toggle-menu > span:before { top:31px; }

.toggle-menu:hover, .toggle-menu:focus, .js-menu-active .toggle-menu { background:#111; }

@media (min-width:48em){
    .toggle-menu { display:none; }
    
    
}


/*================================================================
                 EXTRA OVERWRITE STYLES
================================================================*/


[data-type="sliding"] .sub-menu .item-banner { width:100%; }
[data-type="sliding"] .sub-menu .item-banner a { text-align:center; background:none; }

[data-type="mega"] .custom-sub {
    max-height:0; opacity:0;
    overflow:hidden;
    -wekbit-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
}

[data-type="mega"] .custom-sub .custom-sub {
    max-height: inherit; 
    opacity: inherit;
    overflow: inherit;
    -wekbit-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
}

[data-type="mega"] .custom-sub ul { position:static; opacity:1; max-height:80em; }
[data-type="mega"] .custom-sub p { margin: 0px 0px 5px 0px; color:#333334; font-size: 1em; font-weight: 700; text-transform: uppercase; }
[data-type="mega"] .custom-sub p a { color: #333334 !important; padding: 0px 0px 0px;}
[data-type="mega"] .custom-sub p a:hover { text-decoration: underline;}
[data-type="mega"] .custom-sub p a.view-all { text-transform: none;}

[data-type="mega"] .custom-sub .banner-wrap { width:100%; margin-top: 15px; padding-top: 10px; border-top: 3px solid #e6e2da;}
[data-type="mega"] .custom-sub .banner-wrap a { text-align:center; background:none; padding: 0px;}

[data-type="mega"] .banner-nav {
    display: table;
    max-width: 767px;
    margin: 0px auto;
    color: #333333;    
}
[data-type="mega"] .custom-sub .banner-wrap .banner-nav-text { 
    display: table-cell;
    font-size: 24px;
}
[data-type="mega"] .custom-sub .banner-wrap .banner-nav-text span.red { 
    text-transform: uppercase;
    font-weight: 700;
    color: #ed1b32;
    margin: 0px 10px 0px 10px;
}
[data-type="mega"] .custom-sub .banner-wrap .banner-nav-img { 
    display: table-cell;
}
[data-type="mega"] .custom-sub .banner-wrap .banner-nav-more { 
    display: table-cell;
}
[data-type="mega"] .custom-sub .banner-wrap .banner-nav-more span.learn-more { 
    text-transform: uppercase;
    font-weight: 700;    
    font-size: 14px;
    color: #ed1b32;    
    margin: 0px 10px 0px 15px;
    padding: 10px 15px;
    border: 2px solid #ed1b32;
}


@media (min-width:48em) {

    .cm-menu .opened > .custom-sub { max-height:80em; opacity:1; padding: 20px 20px 0px 20px; }
    .cm-menu .animated > .custom-sub { overflow:visible; z-index:10; }
    .cm-menu .animating > .custom-sub { z-index:-1; }    
    
    .cm-menu .custom-sub {
        position: absolute;
        /*top: 100%;*/
        top: 135px;
        left: 0;
        width: 100%;
        background: #fff;
        -webkit-box-shadow: 0 0 1px 1px rgba(231, 225, 213, 0.5);
        -moz-box-shadow: 0 0 1px 1px rgba(231, 225, 213, 0.5);
        box-shadow: 0 0 1px 1px rgba(231, 225, 213, 0.5);        
    }
    
    .cm-menu .custom-sub .custom-sub {
        position: relative;
        /*top: 100%;*/
        top: inherit;
        left: inherit;
        width: auto;
        background: #fff;
        -webkit-box-shadow: 0px 0px 0px 0px rgba(231, 225, 213, 0.5);
        -moz-box-shadow: 0px 0px 0px 0px rgba(231, 225, 213, 0.5);
        box-shadow: 0px 0px 0px 0px rgba(231, 225, 213, 0.5);        
    }
}

@media (min-width:48em) {
    .table-row { display: table; width: 100%; table-layout: fixed; }
    .table-row-row { display: table-row;}
    .table-col { display: table-cell; vertical-align: top; }
}

.section-nav .opened > ul { border-bottom:1px solid #d4d4d4; max-height:80em; opacity:1; }
.section-nav .opened > a,
.section-nav .opened > .expander-wrap a { border-bottom:1px solid #aaa; color:#333; background:#d4d4d4; }
.section-nav .opened .opened > .expander-wrap > a { background:#c4c4c4; }



.active-overlay-bg .active-overlay-bg-on {
    top: 0px; 
    left: -100%;
    overflow: hidden;
    position: absolute; 
    background: #000; 
    opacity: 0.7; 
    z-index: 9999;
    filter: alpha(opacity=70); 
    width: 100%; 
    height: 100%; 
    -webkit-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
    -moz-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
    -o-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
    transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
}

.footer-bg.active-overlay-bg .active-overlay-bg-on,
.slide-content.active-overlay-bg .active-overlay-bg-on {
    top: 0px; 
    left: 0px;
    overflow: hidden;
    position: absolute; 
    background: #000; 
    opacity: 0.7; 
    z-index: 99999999;
    filter: alpha(opacity=70); 
    width: 100%; 
    height: 100%; 
    -webkit-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
    -moz-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); 
    -o-transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
    transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750);
}

/* Mobile Navigation */
@media only screen and (min-width: 48em) {
    
    .main-nav { 
        /*position: relative;*/
        position: static;
        font-family: 'Lato', sans-serif;
        margin-top: 15px;
    }    

	.outer-container {
        min-height: 100px !important;
    }
    
    .main-nav-split {
        min-height: 66px !important;
    }

    .cm-menu .has-sub:after,
    .cm-menu .expander-wrap .has-sub > span:after {
        content:" ";
        display:inline-block;
        position:absolute; 
        z-index: 999;
        top: 100%; 
        right: 45%;
        margin: 11px 0px 0px 0px;
        vertical-align:middle;
        border:9px solid transparent;
        /* Extra is for anti-aliasing issues in firefox and others */
        border:9px solid transparent;
        border-top-color:transparent;
        -wekbit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
        -webkit-transform: scale(0.98) translateY(-50%);
            -ms-transform: scale(0.98) translateY(-50%);
                transform: scale(0.98) translateY(-50%);
    }

    .cm-menu .opened > .has-sub:after,
    .cm-menu .opened > .expander-wrap .has-sub > span:after{
        border-top-color:#fff;
        -webkit-transform: scale(0.98) translateY(-75%) rotate(-180deg);
            -ms-transform: scale(0.98) translateY(-75%) rotate(-180deg);
                transform: scale(0.98) translateY(-75%) rotate(-180deg);
    }   
    
    /*.cm-menu .menu-toggle-dropdown span:after {
        content:" ";
        display:inline-block;
        position:absolute; 
        z-index: 999;
        top: 100%; 
        right: 45%;
        margin: 11px 0px 0px 0px;
        vertical-align:middle;
        border:9px solid transparent;
        border:9px solid transparent;
        border-top-color:transparent;
        -wekbit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
        -webkit-transform: scale(0.98) translateY(-50%);
            -ms-transform: scale(0.98) translateY(-50%);
                transform: scale(0.98) translateY(-50%);
    }
    */

    .cm-menu .menu-toggle-dropdown.on span:after{
        border-top-color:#fff;
        -webkit-transform: scale(0.98) translateY(-75%) rotate(-180deg);
            -ms-transform: scale(0.98) translateY(-75%) rotate(-180deg);
                transform: scale(0.98) translateY(-75%) rotate(-180deg);
    }       
    
}

@media only screen and (max-width: 47.94em) {

    .main-nav { 
        /*position: relative;*/
        position: static;
        font-family: 'Lato', sans-serif;
        margin-top: 7px;
    }    
    
	.outer-container {
        position: relative;
    }

	.main-nav-split { 
        position: relative; 
        height: auto; 
        position: absolute; 
        right: -80%; 
        top: 0px; 
        width: 80%; 
        z-index: 100; 
        background: #211c16; 
        border-right: 0px solid #211c16;
    }

	.menuLink {
		display:inline-block !important;
	}

	.activeMenu .activeBG {
        display: block;
    }
    
    .menu-nav-drop { 
        pointer-events: none; 
        cursor: default;
    }

    .cm-menu li a { display:block; padding: 10px 15px; position:relative; font-weight: 700;}
    
    .cm-menu li li a { font-size: 13px; padding: 10px 25px;}
    
    .cm-menu li li li a { font-size: 11px; padding: 10px 35px;}
    
    .cm-menu .opened > .custom-sub { max-height:80em; opacity:1; padding: 0px 0px 0px 0px; }
    .cm-menu .animated > .custom-sub { overflow:visible; z-index:10; }
    .cm-menu .animating > .custom-sub { z-index:-1; }    
    
    .cm-menu .has-sub:after,
    .cm-menu .expander-wrap .has-sub > span:after {
        content:" ";
        display:inline-block;
        position:absolute; top:50%; right:10px;
        margin:2px 0 0 5px;
        vertical-align:middle;
        border:5px solid transparent;
        /* Extra is for anti-aliasing issues in firefox and others */
        border:5px solid rgba(0,0,0,0);
        border-top-color:#fff;
        -wekbit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
        -webkit-transform: scale(0.98) translateY(-50%);
            -ms-transform: scale(0.98) translateY(-50%);
                transform: scale(0.98) translateY(-50%);
    }

    .custom-sub-in li ul {
        display: none !important;
    }
    
    .custom-sub-in li.opened ul {
        display: block !important;
        
    }    
    
    .cm-menu .opened > .has-sub:after,
    .cm-menu .opened > .expander-wrap .has-sub > span:after{
        border-top-color:#fff;
        -webkit-transform: scale(0.98) translateY(-75%) rotate(-180deg);
            -ms-transform: scale(0.98) translateY(-75%) rotate(-180deg);
                transform: scale(0.98) translateY(-75%) rotate(-180deg);
    }
    
    .banner-wrap {
        display: none !important;
    }
    
    
}
