.mobile-menu {
    display: none;
}

@media screen and (max-width: 60em) {
    ::-webkit-scrollbar {
        width: 4px;
        height: 0;
        /* background: red; */
    }


    ::-webkit-scrollbar-track {
        border-radius: 2px;
    }

    ::-webkit-scrollbar-thumb {

        border-radius: 2px;
        background: var(--blue);
    }


    ::-webkit-scrollbar-thumb:hover {
        background: var(--logo-color);
    }
}

/* NAVBAR */
@media screen and (max-width: 60em) {
    nav {
        left: -100vw;
        padding-top: 5em;
        transition: 0.2s ease-in-out;
    }

    .nav-mobile-display {
        left: 0;
        transition: 0.2s ease-in-out;
    }

    nav:hover .navbar-wrapper {
        animation: none;
    }

    nav:hover .nav-text {
        animation: none;
    }

    nav ul.navbar-wrapper {
        width: 45vw;
    }

    .nav-text {
        display: inline-block;
    }

    .navbar-items {
        width: 100%;
        font-size: 2em;
        padding: 0.5em;
    }

    #donate-nav {
        height: 3em;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        left: 0vw;
        top: 1rem;
        z-index: 25;
        font-size: 3em;
        color: var(--blue);
        border: none;
        background: none;
    }
}

@media screen and (max-width: 40em) {
    nav ul.navbar-wrapper {
        width: 50vw;
    }

    .navbar-items {
        font-size: 1.25em;
    }
}


/* FOOTER */

@media screen and (max-width: 60em) {
    footer {
        padding-left: 1em;
        height: auto;
        z-index: 0;
        position: relative;
    }

    .income-tax {
        left: 0.5em;
        font-size: 0.9em;
        font-weight: 400;
    }

    .address-container {
        font-size: 1.4em;
        bottom: 4em;
    }

    .about-container {
        font-size: 1em;
        width: 49%;
        top: 1em;
        position: relative;
        display: inline-block;
    }

    .social-container {
        position: relative;
        text-align: right;
        width: 100%;
    }

    .footer-item {
        font-size: 1em;
        padding: 0.25em;
        display: block;
    }

    .item-title {
        display: block;
    }

    .social-item {
        font-size: 1.75em;
        padding: 0 0.25em;
        display: inline-block;
    }

    .legal-container,
    .links-container {
        width: max-content;
        width: 25%;
        display: inline-block;
        vertical-align: top;
        margin: 0 0em 5em;
    }

    .links-container {
        margin-top: 0;
    }

    .links-item,
    .legal-item {
        /* text-indent: 1em; */
    }

    .item-title {
        text-indent: 0;
    }

    .about-text {
        text-indent: 0;
        margin-right: 2em;
    }

    .about-img {
        width: 25%;
        position: relative;
        right: 1em;
    }
}