.sidebar {
    flex: 0 0 240px;
    margin-right: 1rem;
    transition: all .5s ease-out;
    height: 80%;
}

.sidebar__heading {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    padding: .5rem 0;
}

.sidebar__link {
    padding: 0.7rem 1.9rem;
    font-size: 13px;
    font-weight: 400;
}

.sidebar__link:hover {
    color: var(--text-color);
}

/* Responsive Style */

@media screen and (max-width:800px) {
    .sidebar {
        display: none;
    }

    .show {
        display: block;
        width: 50%;
        z-index: 5;
        position: fixed;
        left: 0;
        padding: 2rem;
        background-color: var(--white);
        overflow-y: scroll;
    }
}