/* MAIN NAV */
.nav {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column ;
    align-items: end;
}

/* Larger than tablet */
@media (min-width: 800px) {
    .nav, .nav var {
        display: flex;
        width: 100%;
    }

.nav {
    font-size: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: end;
}
}

/* MAIN NAVV */
.nav ul#navmenu {
    display: flex;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav ul, .nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav ul#navmenu a {
    text-decoration: none;
    transition: all ease 0.3s;
    line-height: 1;
    display: block;
    color: #fff;
}

.nav ul#navmenu .l1 {
    position: relative;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.nav ul#navmenu .default a {
    visibility: hidden;
    z-index: -10;
    cursor: pointer;
}

.nav a {
    position: relative;
    padding: 0rem;
    box-sizing: border-box;
    height: 20px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .2rem;
    transition: all ease 0.3s;
    white-space: nowrap;
    font-weight: 500;
    cursor: pointer;
}

/* Larger than tablet */
@media (min-width: 800px) {

}



.nav a:hover {
    opacity: 0.5;
    transition: opacity ease 0.3s;
}

.contact-button {
    margin-left: auto;
    margin-right: 0rem;
}

/* Larger than tablet */
@media (min-width: 800px) {
.contact-button {
    margin-left: auto;
    margin-right: 2rem;
}
}

.stuck .nav a {
    color: #2d3912;
}

.nav a:before {
    display: block;
    position: absolute;
    top: 2rem;
    z-index: 1;
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    opacity: 1;
    transition: width ease 0.3s;
}

.nav a.selected:before {
    width: 100%;
    background: #fff;
}

.stuck .nav a:before {
    background: #b7410e;
}

.stuck .nav a.selected:before {
    background: #b7410e;
    width: 100%;
}

.nav ul#navmenu li:hover a:before, .nav ul#navmenu li a:hover:before {
    width: 100%;
}

.nav ul#navmenu .ul3 {
    display: none !important;
}

.nav ul#navmenu li {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 0;
}

.nav ul#navmenu ul {
    padding-top: 1rem;
    margin: 0;
    position: absolute;
    left: 0;
    opacity: 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    top: 80px;
    left: 50%;
    margin-left: -140px;
    width: 280px;
    visibility: hidden;
    transition: opacity ease 0.3s;
}

/* 2nd Menu */
.nav ul#navmenu li li {
    display: block;
    margin: 0;
    padding: 0;
    position: static;
}

.nav ul#navmenu li li a:before, .nav ul#navmenu li li a.selected:before {
    display: none;
}

.nav ul#navmenu li li a, .nav ul#navmenu li:hover li a {
    box-sizing: border-box;
    display: flex;
    color: #2d3912;
    padding: 0rem 2rem;
    box-sizing: border-box;
    height: 50px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    transition: all ease 0.3s;
    white-space: nowrap;
    opacity: 1;
    margin-bottom: 1px;
    text-transform: uppercase;
    letter-spacing: .2rem;
}

.nav ul#navmenu li li {
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.nav ul#navmenu li li:first-of-type {
    padding-top: 2rem;
}

.nav ul#navmenu li li:last-of-type {
    padding-bottom: 2rem;
}

.nav ul#navmenu li li a img {
    width: 200px;
    height: 100%;
    object-fit: cover;
    object-position: left;
    position: absolute;
    right: -200px;
    top: 0;
    opacity: 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    transition: all ease 0.3s;
}

.nav ul#navmenu li li:hover a img {
    opacity: 1;
    object-position: center;
}

/* 2nd Menu Hover Persistence */
.nav ul#navmenu li:hover li a:hover, .nav ul#navmenu li:hover li:hover a, .nav ul#navmenu li li a.selected {
    background: #d4a42f;
    opacity: 1;
    color: #2d3912;
}

/* 3rd Menu */
.nav ul#navmenu li:hover li:hover li a {
    display: none;
    visibility: hidden;
}

.nav ul#navmenu li:hover ul ul, .nav ul#navmenu li:hover ul ul ul {
    display: none;
}

.nav ul#navmenu li:hover ul, .nav ul#navmenu ul li:hover ul, .nav ul#navmenu ul ul li:hover ul {
    visibility: visible;
    display: flex;
    flex-direction: column;
    opacity: 1;
}

/* Mobile Menu */
.menu-button {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
    z-index: 2;
    color: #fff;
}

.stuck .menu-button {
    color: #b7410e;
}

.efi-mobile-menu .navicon {
    display: none;
}

@media (min-width: 600px) {
    .menu-button {
        padding: 0 2rem;
    }
}

.menu-button:hover {
    opacity: 0.5;
}

/* Larger than tablet */
@media (min-width: 1000px) {
    .menu-button {
        display: none;
    }
}

.efi-mobile-menu:before {
    content: "";
    height: 100px;
    width: calc(100% - 8rem);
    display: block;
    margin: 1rem 4rem;
    box-sizing: border-box;
    background: url(../Userfiles/template/logo-white.svg) no-repeat center;
    background-size: 100% 70px;
}

.efi-mobile-menu {
    width: 80%;
    max-width: 400px;
    position: fixed;
    background: rgba(45, 57, 18, 0.8);
    z-index: 9900;
    left: -100%;
    top: 0;
    display: block;
    transition: all ease 0.3s;
    height: 100vh;
}

body.efi-menu-open {
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.efi-mobile-menu .default {
    display: none;
}

.efi-mobile-menu-inner {
    padding: 0 1rem;
    height: calc(100vh - 200px - 2rem);
    overflow: hidden;
    overflow: auto;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
    -webkit-overflow-scrolling: touch;
}

/* Larger than mobile */
@media (min-width: 400px) {
    .efi-mobile-menu-inner {
        padding: 0 2rem;
    }
}

.efi-mobile-menu-inner::-webkit-scrollbar-track {
    background-color: transparent;
}

.efi-mobile-menu-inner::-webkit-scrollbar {
    background-color: transparent;
}

.efi-mobile-menu-inner::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
}

body.efi-menu-open .efi-mobile-menu {
    left: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 0px 100px #000;
}

body.efi-menu-open .efi-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.2);
    z-index: 9800;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.efi-mobile-menu ul, .efi-mobile-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}

.efi-mobile-menu .efi-expanded + ul {
    display: block;
}

.efi-mobile-menu li a {
    text-decoration: none;
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 50px;
    line-height: 1;
    padding: 1rem 2rem;
    color: #fff;
    transition: background ease 0.3s;
    box-sizing: border-box;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.efi-mobile-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.efi-mobile-menu li a.efi-expanded {
    background: #fff !important;
    color: #2d3912;
}

.efi-menu-expand {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
    align-content: center;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    transition: color ease 0.3s;
    border-radius: 100rem;
    transition: background ease 0.3s;
}

.efi-menu-expand:after {
    font-family: "FontAwesome 5 Free";
    font-weight: 600;
    content: "\002B";
}

.efi-expanded .efi-menu-expand:after {
    content: "\2212";
}

.efi-menu-expand:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Level 1 */
.efi-mobile-menu > ul {
}

.efi-mobile-menu > ul > li > a {
}

/* Level 2 */
.efi-mobile-menu ul ul {
    display: none;
    background: rgba(0, 0, 0, 0.1);
}

.efi-mobile-menu ul ul > li > a {
}

/* Level 3 */
.efi-mobile-menu ul ul ul {
    display: none;
    background: rgba(0, 0, 0, 0.1);
}

.efi-mobile-menu ul ul ul > li > a {
}

/* Level 4 */
.efi-mobile-menu ul ul ul ul {
    display: none;
    background: rgba(0, 0, 0, 0.1);
}

.efi-mobile-menu ul ul ul ul > li > a {
}

.other-links {
    padding-top: 4rem;
}

.other-links a {
    text-decoration: none;
    display: block;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 90%;
    opacity: 0.8;
}

.other-links .phone-link {
    display: none;
}

.efi-mobile-phone {
    width: 100%;
    color: #fff;
    font-size: initial;
    letter-spacing: 1px;
    box-sizing: border-box;
    text-align: center;
}

.efi-mobile-phone:empty {
    display: none;
}

.efi-mobile-phone a {
    display: block;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
}

.efi-mobile-social {
    padding: 2rem 2rem;
    text-align: center;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.efi-mobile-social:empty {
    display: none;
}

.efi-mobile-social a {
    text-decoration: none;
    padding: 0 1rem;
    color: #fff;
}

.efi-mobile-social a:hover {
    color: rgba(255, 255, 255, 0.5);
}
