
/* Hide menu on mobile screens */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.menu-toggle span {
    background-color: white;
    height: 3px;
    width: 100%;
    margin: 4px 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .header-nav .list-unstyled {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        /* background-color: #333; */
        padding: 0;
        text-align: center;
        margin-top: 1.6rem;
    }

    .header-nav .list-unstyled li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
        margin-top: 2rem;
        margin-right: 0.5rem;
    }
}

/* Show menu when it is active */
.header-nav .list-unstyled.active {
    display: flex;
}