/* ======== NAV CSS ========= */

/* ------------------------------ 
    Header
------------------------------ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
	background: #efefef;
}

header .container {
	max-width: 1440px;
}

header .social-icon {
	margin-left: 30px;
}

.brand-logo {
    max-width: 390px;
    padding: 20px 0;
    z-index: 1;
}

.brand-logo svg,
.brand-logo img,
.footer-logo-wrap svg,
.footer-logo-wrap img {
    width: 100%;
    min-width: 100px;
}

.floatingNav {
	border-radius: 0;
	box-shadow: 0px 1px 10px #999;
	-webkit-transition: all ease .2s;
	-ms-transition: all ease .2s;
	-moz-transition: all ease .2s;
	transition: all ease .2s;
}





/* ------------------------------ 
    Desktop Navigation
------------------------------ */
.nav {
	margin: 0;
}

/* .main-menu-item.has-sub-menu:hover:after {
    content: "";
    height: 0;
    position: absolute;
    bottom: 0;
    right: calc(50% - 10px);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #0A0B09;
} */

.main-menu-item a,
.desktop-navigation .main-menu-item span {
    padding: 0 15px;
    /* transition: all .5s ease-in-out; */
}

.main-menu-item:last-of-type a,
.main-menu-item:last-of-type span {
    padding-right: 0;
}

/* Sub-Menu */
ul.nav li {
    position: relative;
}

ul.nav ul {
    display: none;
    position: absolute;
    padding: 0;
    left: 0;
    top: 100%;
    background: #efefef;
    width: auto;
    list-style: none;
    transition: all .33s ease-in-out;
    margin-top: 5px;
	/*margin: 5px 0 0 20px;*/
    /*box-shadow: 1px 5px 20px -5px rgb(0 0 0 / 20%);*/
	margin: 5px 0 0 0;
	box-shadow: 0px 20px 20px -20px rgb(0 0 0 / 20%);
}

ul.nav ul:before {
    content: "";
    height: 10px;
    position: absolute;
    top: -10px;
    width: 100%;
}

/* ul.nav ul:before {
    content: "";
    height: 20px;
    position: absolute;
    top: -20px;
    right: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #0A0B09;
} */

ul.nav ul ul {
    top: 0;
    left: 100%;
}

ul.nav li:hover > ul {
    display: block;
}

ul.nav ul li {
    min-width: 220px;
}

.desktop-navigation .sub-menu-item {
    padding: 5px 15px;
}

.desktop-navigation .sub-menu-item a {
    display: block;
    transition: none;
}

.desktop-navigation .sub-menu-item:last-of-type .border-bottom {
    border: 0 !important;
}

.sub-menu-item a {
    padding: 0;
}

/* Sub-Menu With Children */
ul.nav ul li.has-sub:after {
    content: "";
    position: absolute;
    right: 10px;
    top: calc(50% - 7px);
    border-bottom: 5px solid transparent;
    border-left: 5px solid #fff;
    border-top: 5px solid transparent;
}

/* Nav Extras */
.desktop-navigation .btn {
    font-size: 1em;
}

.customer-portal {
    font-size: .875em;
}




/* ------------------------------ 
    Mobile Navigation
------------------------------ */
.navbar {
    padding: 0;
    position: unset;
}

#mobile-navigation {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    overflow-y: scroll;
    height: calc(100vh - 70px);
}

.mobile-nav .navbar-toggler {
    line-height: normal;
    width: auto;
    background: none;
}

.mobile-nav-btn {
    font-weight: 100;
    padding: .25rem .55rem;
    font-size: 1.5rem;
    line-height: 1;
    background-color: #091f40;
    border: 1px solid #091f40;
    border-radius: 5px;
	margin-right: 15px;
}

.mobile-nav ul {
    list-style-type: none;
    padding: 15px 20px;
}

.mobile-nav .navbar-nav {
	box-shadow: 0px 20px 20px -20px rgb(0 0 0 / 20%);
	margin: 0;
}

.mobile-nav li {
    padding: 5px 15px;
}

.mobile-nav li:nth-child(1) {
    border-top: 0 !important;
}

.mobile-nav .menu-item-has-children:first-of-type {
    border: 0 !important;
}

.mobile-nav li a:after {
    display: none;
}

.mobile-nav ul ul {
	margin-top: 0;
    margin-left: -20px;
    margin-right: -20px;
    padding: 10px 20px 10px;
    border-bottom: 1px solid rgba(9,31,64,0.5);
}

.mobile-nav ul ul ul a {
    padding-left: 80px !important;
}

.dropdown-caret svg {
    color: #a9353a;
    margin-left: 10px;
}

.dropdown-caret {
    padding-right: 20px;
    position: absolute;
    right: 0;
    display: inline-block;
    width: 100%;
    text-align: right;
    z-index: 999;
}