.menu-bar-main-container {
    /* z-index: 2; */
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100vh - 64px - 64px);
    width: 232px;
    background: rgba(42, 54, 71, 1);
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.menu-bar-main-container a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    line-height: 19.2px;
}

.menu-hover:hover {
    background-color: rgba(42, 61, 89, 1);
}

.current {
    background-color: rgba(9, 25, 49, 1);
}

.menu-bar-logo {
    width: 100px;
    height: 122px;
}

.menu-container {
    height: 229px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-container a {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 56px;
    padding-right: 56px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.menu-container a img {
    width: 30px;
    height: 30px;
}

.policy-container {
    width: 232px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 100%;
}

.policy-container a {
    color: rgba(168, 168, 168, 1);
    display: flex;
    padding: 8px 60px;
    gap: 8px;
}

.policy-container a:hover {
    color: #29ABE2;
}

.d-none {
    display: none !important;
}

.sub-menu-main-container {
    width: 100vw;
    height: 100vh;
    z-index: 98;
    position: absolute;
    top: 0;
    left: 0;
}

.sub-menu-sub-container {
    z-index: 99;
    position: absolute;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    top: 96px;
    right: 24px;
    background-color: rgba(42, 54, 71, 1);
    padding: 10px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.sub-menu-sub-container a {
    width: 130px;
    height: 46px;
    padding: 8px 16px 8px 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #CDCDCD;
}

.sub-menu-sub-container a:hover {
    background-color: rgba(42, 61, 89, 1);
}