:root {
    --main: #2a445d;
    --second: #607386;
    --third: #696969;
    --compliment: #FFFFFF;
    --accent: #F1CF16;

    font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
}

.c-main-position {
    position: absolute;
    height: 100vh; 
    z-index: 999;
    top: 0; 
}

body {
    margin: 0;
    padding: 0;
}

.c-main-menu {
    padding: 11px;
    height: 100%;
    width: 6rem; 
    background-color: var(--main);
    color: var(--compliment);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
    overflow: hidden;
    /* box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%); */
    justify-content: space-between;
}

.c-menu-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    transition: background-color 0.2s;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: var(--compliment);
    background-color: var(--main); 
    border: none;
    cursor: pointer;
}

.c-menu-item:focus {
    outline: none;
}

.c-menu-item:hover { 
    color: var(--compliment);
    background-color: var(--second); 
}

.c-main-menu:hover {
    width: 200px;
}

.c-logo-container {
    width: 100%;
    max-height: 140px;
    min-height: 140px;
    display: flex;
    align-items: center;
}

.c-menu-logo {
    margin-bottom: 10px;
    width: 100%;
    padding: 7.5px;
    transition: 0.5s;
}

.c-menu-text {
    /* color: black; */
    color: var(--compliment);
    margin-left: 12.7px;
    opacity: 0;
    transition: 0.6s;
}

.c-main-menu:hover .c-menu-text {
    opacity: 1;
}