.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: #fff;
    padding: 24px 48px 48px;
}

.fullscreen-menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.fullscreen-menu.active {
    visibility: visible;
}

.menu-navigation .menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-navigation .menu-items li {
    text-align: left;
}

.menu-navigation .menu-items a {
    height: 96px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-size: 96px;
    font-style: normal;
    font-weight: 300;
    line-height: 90%;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease, background-color 0.2s ease, padding-right 0.2s ease;
    border-radius: 8px;
    padding: 0 8px;
    position: relative;
    padding-right: 8px;
}

.menu-navigation .menu-items a img {
    position: absolute;
    right: 16px;
    height: calc(100% - 32px);
    margin-left: 16px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-navigation .menu-items a:hover {
    color: var(--color-primary);
    background-color: var(--color-secondary);
    padding-right: 96px;
}

.menu-navigation .menu-items a:hover img {
    opacity: 1;
}

.close-menu {
    display: flex;
    height: 59px;
    padding: 0px 24px;
    align-items: center;
    gap: 10px;
    border-radius: 106px;
    background: rgba(130, 130, 130, 0.11);
    backdrop-filter: blur(22px);
    color: #fff;
    border: none;
}


.close-menu:hover .close-icon::before,
.close-menu:hover .close-icon::after {
    background-color: #888;
} 

.fullscreen-menu .branding-left-one, .fullscreen-menu .branding-left-two {
    color: #fff;
}

.fullscreen-menu .fullscreen-menu-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.fullscreen-menu .fullscreen-menu-top > div {
    flex: 1
}

.fullscreen-menu .contact-email {
    color: var(--color-secondary);
}

.fullscreen-menu .social-links, .fullscreen-menu .social-links li {
    margin-bottom: 12px;
    text-align: right;
}

.fullscreen-menu .bcorp-logo {
    filter: invert(1);
}

.fullscreen-menu .header-right {
    /* margin-right: -24px; */
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.fullscreen-menu .menu-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .fullscreen-menu {
        padding: 14px 8px 0;
        height: 100dvh;
    }
    
    .fullscreen-menu-bottom  {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-bottom: 32px;
    }

    .menu-navigation .menu-items a {
        height: 24px;
        font-size: 36px;
        font-style: normal;
        font-weight: 300;
        line-height: 100%; /* 36px */
        margin-bottom: 16px;
        padding: 0;
    }

    .menu-navigation .menu-items a:hover {
        color: white;
        background-color: inherit;
        padding-right: 0;
    }
    
    .menu-navigation .menu-items a:hover img {
        opacity: 0;
    }
    
}