#sg-mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 100;
    display: none;
    font-size: 24px;
}
#sg-mobile-menu .menu-subhead {
    margin-right: 0;
    margin-left: 0;
}
#sg-mobile-menu .unfold-menu {
    padding-right: 20px;
    cursor: pointer;
}
#sg-mobile-menu .fas.fa-plus {
    font-weight: 300;
    font-size: 28px;
}
#sg-mobile-menu .fas.fa-minus {
    font-weight: 300;
    font-size: 28px;
}
#sg-mobile-menu .submenu {
    padding-left: 24px;
    filter: contrast(0.8);
}
#sg-mobile-menu .submenu .menu-item {
    display: block;
    padding: 10px 5px;
    margin-bottom: 10px;
    background: rgba(191, 191, 191, 0.23);
}
#sg-mobile-menu .menu-item {
    padding: 10px 0px;
    margin-top: 4px;
    border-bottom: 1px solid #b4934a;
}
#sg-mobile-menu .showcase {
    width: 27%;
    scroll-behavior: smooth;
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: start;
    box-shadow: inset 20px 0px 30px 0px rgba(0, 0, 0, 0.37);
}
#sg-mobile-menu .showcase .showcase-title {
    border: 3px solid #D5D6AA;
    color: #D5D6AA;
    border-radius: 10px;
    padding: 15px;
}
@media (max-width: 768px) {
    #sg-mobile-menu .showcase {
        min-width: 50%;
    }
}
@media (max-width: 414px) {
    #sg-mobile-menu .showcase {
        display: none;
    }
}
#sg-mobile-menu .showcase .position-relative:hover .position-absolute {
    opacity: 1;
}
#sg-mobile-menu .showcase .position-relative .position-absolute {
    width: 100%;
    height: 100%;
    background: rgba(0, 56, 88, 0.81) !important;
    z-index: 1;
    top: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: all 0.5s ease-in;
}
#sg-mobile-menu .menu-wrapper {
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
}
#sg-mobile-menu .menu-wrapper .menu-inner {
    min-width: 24%;
    width: 450px;
    display: flex;
    flex-direction: column;
    color: white;
    padding: 2rem 2rem 2rem 45px;
}
@media (max-width: 1336px) {
    #sg-mobile-menu .menu-wrapper .menu-inner {
        min-width: 28%;
    }
}
@media (max-width: 1024px) {
    #sg-mobile-menu .menu-wrapper .menu-inner {
        min-width: 36%;
    }
}
@media (max-width: 768px) {
    #sg-mobile-menu .menu-wrapper .menu-inner {
        min-width: 50%;
    }
}
@media (max-width: 736px) {
    #sg-mobile-menu .menu-wrapper .menu-inner {
        overflow-y: scroll;
    }
}
@media (max-width: 414px) {
    #sg-mobile-menu .menu-wrapper .menu-inner {
        min-width: 100%;
    }
}
#sg-mobile-menu .menu-wrapper .menu-header {
    display: flex;
    padding-bottom: 0.3rem;
    justify-content: space-between;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.49);
}
#sg-mobile-menu .menu-wrapper .menu-header .h3 {
    margin: 0;
    line-height: 0.9;
}
#sg-mobile-menu .menu-wrapper .menu-header .menu-close {
    cursor: pointer;
    left: 10px;
    position: fixed;
}
#sg-mobile-menu .menu-wrapper .copyright {
    margin-top: auto;
    text-align: right;
    text-transform: lowercase;
    color: #c8c8c866;
    transition: color 0.5s ease-in;
}
#sg-mobile-menu .menu-wrapper .copyright:hover {
    color: #4e4e4e;
}
#sg-mobile-menu .menu-wrapper a {
    color: #000000;
    text-decoration: none;
}
#sg-mobile-menu .menu-wrapper a:hover {
    color: #b4934a;
    text-decoration: none;
}
#sg-mobile-menu .menu-inner > ul {
    list-style: none;
    padding: 1rem 0 0;
}
#sg-mobile-menu .menu-inner > ul > .menu-item {
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
}
#sg-mobile-menu .menu-inner > ul > .menu-item > a {
    font-size: 1.4rem;
}
#sg-mobile-menu .menu-inner > ul .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#sg-mobile-menu .menu-inner > ul .menu-item-has-children .submenu {
    display: none;
    white-space: nowrap;
    margin-top: 0.5rem;
    padding: 0;
    width: 100%;
}
#sg-mobile-menu .menu-inner > ul .menu-item-has-children .submenu > .menu-item {
    background: #b3b3b3;
    padding: 0.2rem 1rem;
    margin-bottom: 0.3rem;
    display: flex;
}
#sg-mobile-menu .menu-inner > ul .menu-item-has-children > a {
    width: 80%;
}
#sg-mobile-menu .menu-inner > ul .menu-item-has-children > .unfold-menu {
    width: 20%;
    text-align: right;
    cursor: pointer;
}

#sg-mobile-menu-icon {
    display: none;
    visibility: hidden;
}
@media (max-width: 992px) {
    #sg-mobile-menu-icon {
        display: block;
        visibility: visible;
    }
}

#sg-desktop-menu-icon {
    display: none;
    visibility: hidden;
}
@media (min-width: 992px) {
    #sg-desktop-menu-icon {
        display: block;
        visibility: visible;
    }
}

.fas.fa-bars {
    font-weight: 400;
}