.offcanvas-menu-overlay {
    overflow: hidden;
}

.offcanvas-menu {
    background: white;
    color: #000;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    transition: .2s;
}

.offcanvas-menu-open {
    right: 0;
}

.offcanvas-menu-header {
    background-color: #fbf8f1;
    border-bottom: 1px solid #ddd;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.offcanvas-menu-close {
    background: transparent;
    color: #000;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.offcanvas-menu-brand img {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.offcanvas-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.offcanvas-list a {
    text-decoration: none;
    text-align: center;
}

.offcanvas-list a > * {
    display: block;
}

.offcanvas-list a i {
    font-size: 20px;
}

.offcanvas-list a span {
    font-size: 14px;
    white-space: nowrap;
}

.offcanvas-menu-body {
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.offcanvas-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    background: white;
}

.offcanvas-nav > li {
    border-bottom: 1px solid #ddd;
    position: static;
}

.offcanvas-nav > li > a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .8px;
    text-decoration: none;
    color: #000;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offcanvas-nav-secondary > li > a {
    color: #464646;
}

.offcanvas-nav > li > a .offcanvas-toggle {
    font-size: 18px;
    color: #5f9ea0;
}

.offcanvas-nav-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    z-index: 999;
}

.offcanvas-nav-dropdown > li > a {
    color: #464646;
}

.offcanvas-nav-dropdown > li:first-child > a {
    background: #bdd6d3;
    color: #000;
    font-weight: 700;
}

.offcanvas-nav-dropdown > li:first-child a > i {
    color: white;
}

.offcanvas-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown.open .offcanvas-nav-dropdown {
    display: block;
}

.offcanvas-menu-footer {
    padding: 16px 24px 32px;
}

.offcanvas-socials {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.offcanvas-socials a {
    text-decoration: none;
    color: #5f9ea0;
    font-size: 24px;
}

@media (max-width: 359px) {
    .offcanvas-list {
        display: none;
    }
}