@media (max-width: 991.99px) {
    .nav-wrapper .ahmad,
    .nav-wrapper .socials {
        display: none;
    }
    .nav-wrapper {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        z-index: 1000;
        background-color: #111418;
        border-bottom: 5px var(--c-orange) solid;
    }

    .nav-wrapper a {
        text-decoration: none;
    }
    .nav-wrapper .navbar-brand {
        color: #FFF !important;
    }
    .nav-wrapper .navbar-nav .nav-link {
        text-align: center;
        padding: 15px 0;
        font-size: 20px;
    }
    .nav-wrapper .navbar-nav .nav-link:hover {
        color: #FFF !important;
    }

    .nav-backdrop {
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        right: 0;
        height: 0;
        background-color: rgba(0,0,0,.25);
        transition: all .6s cubic-bezier(.77,0,.175,1), background-color 3000ms;
        height: 0;
        overflow: hidden;
    }
    .mainnav-collapsed .nav-backdrop {
        height: 100vh;
        background-color: rgba(0,0,0,.8);
    }

    .nav-wrapper nav {
        z-index: 1;
    }
}
@media (min-width: 992px) {


    .nav-wrapper {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 250px;
        border-right: 10px var(--c-orange) solid;
        display: flex;
        flex-direction: column;
        height: 100vh;
        justify-content: space-between;
        align-items: center;
        background-color: #111418;
        overflow-y: auto;
    }
    .nav-wrapper .ahmad {
        color: #FFF;
        text-align: center;
    }
    .nav-wrapper .ahmad img {
        border-radius: 50%;
        margin: 30px 0 20px 0;
        border: 10px #343a40 solid;
        transition: border 500ms;
    }
    .nav-wrapper .ahmad a:hover img {
        border: 10px var(--c-orange) solid;
    }
    .nav-wrapper .ahmad h4 {
        font-weight: 600;
    }


    .nav-wrapper .navbar {
        width: 100%;
        background-color: transparen;
    }
    .nav-wrapper .navbar-brand {
        display: none;
    }
    .nav-wrapper .navbar-nav {
        flex-direction: column !important;
        margin: 0 !important;
        width: 100%;
    }
    .nav-wrapper .navbar-nav .nav-link {
        text-align: center;
        color: var(--c-orange) !important;
    }
    .nav-wrapper .navbar-nav .nav-link:hover {
        text-align: center;
        color: #FFF !important;
        background: rgba(255,255,255,.075);
        border-radius: 4px;
        text-decoration: none;
    }

}
