
/*
|-----------------------------------------------------------------------------------------------------------
| Main Nav Widget 
|-----------------------------------------------------------------------------------------------------------
*/

.nav-primary ul,
.nav-industry ul {
    list-style: none;
}

.nav-primary,
.nav-industry,
.microsite-cont { 
    display: flex;
    align-items: center;
}

/* .nav-primary .item-inner, */
.nav-primary,
.nav-industry {
    position: relative;
}

.nav-primary .primary-item > .item-inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 15px 0;
}

/* .nav-primary .primary-item > .item-inner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #b9bb2d;
    display: none;
} */
.nav-primary .primary-item {
    border-bottom: 3px solid #43273b;
}
.nav-industry .ind-item {
    border-bottom: 3px solid #fff;
}
.nav-primary .primary-item:hover,
.nav-industry .ind-item:hover {
    border-bottom: 3px solid #b9bb2d;
}

.nav-primary .primary-item:hover > .item-inner::after {
    display: block;
}

.nav-primary .primary-item {
    height: 100%;
    margin-right: 50px;
}

.nav-primary .primary-item:last-child {
    margin-right: 0;
}

.nav-industry,
.nav-primary {
    margin-right: 45px;
}

.nav-primary {
    height: 100%;
}

.nav-primary a:hover,
.nav-industry a:hover {
    text-decoration: none;
}

.nav-primary .primary-item a {
    font-family: 'Obvia', sans-serif;
    color: white;
    font-size: calc(22px + (24 - 22) * ((100vw - 1024px) / (1100 - 1024)));
    text-transform: uppercase;
}

@media (min-width: 1100px) {
    .nav-primary .primary-item a {
        font-size: 24px;
    }
}
/* .dropdown-support { 
    background-color: rgba(15, 200, 178, .7);
} */
/* horizontal dropdown support */
.nav-dropdown li:hover > .item-inner > .dropdown-support {
    position: absolute;
    /* top: -150%; */
    right: 0;
    width: 100%;
    height: calc(100% + 100px);;
    transition: transform 2s;
    z-index: 2;
    transform: scaleX(0);
    transform-origin: right center;

    /*background-color: black;*/
}
.nav-dropdown > .item-inner:hover > a:hover + .dropdown-support {
    transition: none;
    transform: scaleX(1);
}
/* end horizontal dropdown support */

/* vertical dropdown support */
.primary-item.has-dropdown:hover > .item-inner > .dropdown-support,
.ind-item.has-dropdown:hover > .item-inner > .dropdown-support {
    position: absolute;
    top: 60%;
    left: -100%;
    width: 350%;
    height: 50px;
    transition: transform 2s;
    z-index: 2;
    transform: scaleY(0);
    transform-origin: center bottom;
}

.primary-item.has-dropdown:hover > .item-inner > .dropdown-support.top {
    position: absolute;
    bottom: -21px;
    right: 0;
    width: 960px;
    height: 50px;
    transition: transform 2s;
    z-index: 2;
    transform: scaleY(0);
    transform-origin: center bottom;
    top: unset;
    left: unset;
}
.ind-item.has-dropdown:hover > .item-inner > .dropdown-support.top {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 630px;
    height: 50%;
    transition: transform 2s;
    z-index: 2;
    transform: scaleY(0);
    transform-origin: center bottom;
    top: unset;
    left: unset;
}
.primary-item.has-dropdown > .item-inner:hover > a:hover + .dropdown-support {
    transition: none;
    transform: scaleY(1);
}

/* end vertical dropdown support */

.nav-primary .nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% - -21px);
    right: 0;
    width: calc(100% - 20px);
    min-width: 1020px;
    z-index: 1010;
    background-color: #603554;
}
.nav-primary .nav-dropdown.no-widget {
    width: calc(100% - 320px);
    min-width: 960px;
}
.nav-primary .primary-item.has-dropdown:hover > .nav-dropdown {
    display: flex;
}

.nav-primary .primary-item.has-dropdown .nav-dropdown .img-cont-inner{
    background-color: #43273b;
    width: 25%;
}
.nav-primary .primary-item.has-dropdown .nav-dropdown.no-widget .img-cont-inner{
    width: 0;
}

.nav-primary .nav-dropdown ul {
    margin: 0;
    list-style: none;
    padding-top: 15px;
    padding-bottom: 15px;
}

.nav-primary ul.nav-list {
    position: relative;
    padding-left: 8px;
    padding-bottom: 15px;
    width: 33.3333%;
    background-color: #43273b;
}

.nav-primary .nav-dropdown ul.nav-list.primary {
    width: 25%;
}
.nav-primary .nav-dropdown.no-widget ul.nav-list.primary {
    width: 33%;
}
.nav-primary .nav-list ul {
    display: none;
}

.nav-primary .nav-list a {
    width: 95%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: white;
    font-size: calc(13px + (16 - 13) * ((100vw - 1025px) / (1700 - 1025)));
    text-transform: none;
    line-height: 24px;
    /*z-index: 10;*/
}

.nav-primary .nav-list .item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 12px;
}

.nav-primary .nav-list .item-inner .nav-arrow {
    transform: rotate(-90deg);
}

.nav-primary .nav-list > li:hover > .item-inner {
    background-color: #522f48;
}

.nav-primary .nav-list ul > li:hover > .item-inner {
    background-color: #603554;
}

.nav-primary .nav-list li:hover > .item-inner a {
    font-weight: 700;
}

.nav-primary .nav-list ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
}

.nav-primary .nav-list > li.has-submenu:hover > ul {
    display: block;
}

.nav-primary .nav-list ul > li.has-submenu:hover > ul {
    display: block;
} 

.nav-primary .nav-list ul {
    background-color: #522f48;
}

.nav-primary .nav-list ul ul {
    background-color: #603554;
}
.nav-industry {
    position: relative;
}
.nav-industry .ind-item {
    /* position: relative; */
    margin-right: 50px;
    padding: 22px 0 19px;
}
.nav-industry .ind-item:last-child {
    margin-right: 0;
}

.nav-industry .ind-item a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #494949;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-industry .nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: -15px;
    width: calc(100% + 30px);
    min-width: 600px;
    z-index: 1010;
    background-color: #603554;
}
.nav-industry .ind-item.has-dropdown:hover > .nav-dropdown {
    display: flex;
}
/* .nav-industry .ind-item > .item-inner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;
    width: 100%;
    height: 3px;
    background-color: #b9bb2d;
    display: none;
} */
.nav-industry .ind-item:hover > .item-inner::after {
    display: block
}
.nav-industry .nav-dropdown ul {
    margin: 0;
    list-style: none;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    text-rendering: optimizeLegibility;
}
.nav-industry .nav-list {
    width: 50%;
    position: relative;
    padding-left: 8px;
    padding-bottom: 15px;
    background-color: #43273b;
}
.nav-industry .nav-list .item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 12px;
    position: relative;
}
.nav-industry .nav-list .item-inner .nav-arrow {
    transform: rotate(-90deg);
}
.nav-industry .nav-list a {
    width: 95%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: white;
    font-size: calc(13px + (16 - 13) * ((100vw - 1025px) / (1700 - 1025)));
    text-transform: none;
    line-height: 24px;
}
.nav-industry .nav-list ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    display: none;
}
.nav-industry .nav-list > li.has-submenu:hover ul {
    display: block;
}
.nav-industry .nav-list  li:hover > .item-inner {
    background-color: #603554;
}
.nav-industry .nav-list  li:hover > .item-inner a {
    font-weight: 700;
}
/*
|-----------------------------------------------------------------------------------------------------------
| Interior Nav Widget 
|-----------------------------------------------------------------------------------------------------------
*/

.interior-nav {
    display: none;
    margin: 0;
    list-style: none;
}

.interior-nav .item a {
    font-size: 15px;
    color: #7a8440;
    padding-bottom: 5px;
    border-bottom: 2px solid #7a8440;
}

.interior-nav a:hover { text-decoration: none; }

.interior-nav li:last-child a {
    border: 0;
    color: #484848;
}

.interior-nav li:last-child a:hover { text-decoration: underline; }

.interior-nav li {
    display: inline-block;
    position: relative;
}

.interior-nav li::after {
    content: "/";
    margin: 0 10px;
    font-size: 15px;
    color: #cbcbcb;
}

.interior-nav li:last-child::after {
    display: none;
}

@media (min-width: 40.063em) {
    .interior-nav {
        display: block;
    }
}

/*
|-----------------------------------------------------------------------------------------------------------
| Footer Nav Widget 
|-----------------------------------------------------------------------------------------------------------
*/

.footer-section .footer-nav-list a {
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    font-size: 15px;
}

/*
|-----------------------------------------------------------------------------------------------------------
| Mobile Nav 
|-----------------------------------------------------------------------------------------------------------
*/

.mobilenav { 
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mobilenav ul {
    list-style: none;
    margin: 0;
}

.mobilenav ul ul {
    display: none;
}

.mobilenav ul li.has-submenu.active > ul {
    display: block;
}

.mobilenav .menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: all;
    background-color: #43273b;
    height: 50px;
    width: 100%;
}

.mobilenav .menu-toggle span,
.mobilenav .mobile-dd .menu-icons {
    font-family: 'Obvia', sans-serif;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}

.mobilenav .menu-toggle .menu-icons {
    padding: 5px 15px 5px 0;
    display: flex;
    align-items: center;
    margin-left: 9px;
    border-left: 1px solid white;
}

.mobilenav .menu-toggle i {
    color: white;
    font-size: 18px;
}

.mobilenav .menu-toggle .open {
    margin: 0 7px;
}

.mobilenav .mobile-dd .menu-icons .close { margin-left: 7px; }

.mobilenav .mobile-dd {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    pointer-events: all;
    background-color: #43273b;
    z-index: 1020;
    padding-bottom: 30px;
}

.mobilenav.active .mobile-dd {
    display: block;
}

.mobile-dd .dd-top {
    display: flex;
    margin-bottom: 10px;
}

.mobile-dd .dd-top .dd-left {
    width: 30%;
}

.mobile-dd .dd-top .dd-right {
    width: 70%;
    padding: 15px;
}

.mobile-dd .dd-top .dd-right .menu-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 25px;
}

.mobile-dd .item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 15px;
}

.mobile-dd [data-menu-toggle-parent] {
    width: 25px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mobile-dd .nav-list ul li .item-inner {
    padding: 3px 15px 3px 30px;
}

.mobile-dd .nav-list ul ul li .item-inner {
    padding: 3px 15px 3px 45px;
}

.mobile-dd .nav-list ul ul ul li .item-inner {
    padding: 3px 15px 3px 60px;
}

.mobile-dd .nav-list ul li.active > .item-inner a {
    font-weight: 600;
}

.mobile-dd .nav-list ul li.active > .item-inner {
    background-color: #522f48;
}

.mobile-dd .nav-list.primary .item-inner a {
    font-family: 'Obvia', sans-serif;
    font-size: 26px;
    line-height: 28px;
    text-transform: uppercase;
    color: white;
}

.mobile-dd .nav-list.primary ul .item-inner a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    text-transform: none;
}

.mobile-dd .nav-list.primary {
    margin-bottom: 20px;
    position: relative;
}

.mobile-dd .nav-list.primary::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px; 
    background-color: white;
}

.mobile-dd .item-inner a:hover {text-decoration: none;}

.mobile-dd .nav-list li.has-submenu.active > .item-inner .arrow {
    transform: rotate(180deg);
}

.mobile-dd .nav-list.industry .item-inner a,
.mobile-dd ul.footer-nav-list > li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: white;
    line-height: 17px;
    text-transform: uppercase;
}

.mobile-dd .nav-list.industry .item-inner,
.mobile-dd ul.footer-nav-list > li {
    padding: 8px 15px;
    display: flex;
}
.mobile-dd ul.footer-nav-list > li a:hover{
    text-decoration: none;
}
.mobile-dd .nav-list.industry ul li .item-inner {
    padding: 8px 15px 8px 30px;
}
.mobile-dd .nav-list.industry ul ul li .item-inner {
    padding: 8px 15px 8px 45px;
}
.mobile-dd .nav-list.industry ul ul ul li .item-inner {
    padding: 8px 15px 8px 60px;
}
@media (min-width: 40.063em) {
    .mobile-dd .dd-top .dd-left {
        width: 20%;
    }

    .mobile-dd .dd-top .dd-right {
        width: 80%;
        padding: 15px;
    }
}
@media (min-width: 64.063em) {
    .mobilenav {
        display: none;
    }
}

