

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--cl--1--);
    z-index: var(--z-fixed);
    box-shadow: 0px 20px 24px -4px rgba(17, 24, 19, 0.1), 0px 8px 8px -4px rgba(17, 24, 19, 0.1);
}

.nav {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_logo,
.nav_toggle,
.nav_close {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_logo {
    /* column-gap: .5rem; */
    width: 100px;
    position: relative;
}

.nav_logo img{
    height: 100px;
    width: 100px;
}


.nav_logo > span{
    position: absolute;
    right: -10px;
    color: black;
}

.nav_toggle,
.nav_close {
  display: none;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
    .nav_menu {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--cl--3--);
        color: var(--cl--1--);
        width: 80%;
        height: 100%;
        box-shadow: 0 0 16px hsla(268, 58%, 4%, .2);
        padding: 6rem 3rem;
        display: flex;
        flex-direction: column;
        row-gap: 2.5rem;
        transition: right .4s;
    }

    .nav_item a {
        color: var(--cl--1--);
    }
}

.nav_list {
    display: flex;
    /* flex-direction: column;
    row-gap: 2.5rem; */
}

.nav_link {
    color: #191c26;
    font-weight: 600;
    transition: color .4s;
}

.nav_link:hover {
    color: var(--cl--3--);
}


.nav_close {
    position: absolute;
    top: .75rem;
    right: 1.5rem;
}

/* Show menu */

.show-menu {
    right: 0;
}

/* End Navigation */

@media screen and (max-width: 900px) {
    .toggleMenu {
        background-image: url(../images/menu-3-fill.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        width: 30px;
        height: 30px;
        z-index: 1000;
        transition: background-size 0.3s ease-in-out;
        -webkit-transition: background-size 0.3s ease-in-out;
        -moz-transition: background-size 0.3s ease-in-out;
        -ms-transition: background-size 0.3s ease-in-out;
        -o-transition: background-size 0.3s ease-in-out;
    }

    .toggleMenu.active {
        position: fixed;
        right: 5%;
        background-image: url(../images/close-fill.png);
        background-size: 25px;
    }

    .navigaton {
        position: absolute;
        inset: 0;
        min-height: 0;
        opacity: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
    }

    .navigaton.active {
        position: fixed;
        min-height: 100%;
        opacity: 1;
        background: var(--cl--1--);
        z-index: 999;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    nav ul {
        flex-direction: column;
    }

    .about-content {
        margin-left:0;
    }

    .filter {
        overflow-x: scroll;
        padding: 1.5em 0;
    }

    .project-filter-slider {
        flex-wrap: wrap;
    }

    .end {
        flex-direction: column;
    }

    .nav_list {
        display: flex;
        flex-direction: column;
        row-gap: 2.5rem;
    }

    .nav_toggle,
    .nav_close {
        display: block;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        font-size: 1.25rem;
        cursor: pointer;
    }
    
}

@media screen and (min-width: 915px) {
    .nav_list {
        display: flex;
        justify-content: space-between;
    }

    .nav_item {
        margin-right: 2rem;
        margin-bottom: 0;
    }

    .nav_link {
        color: var(--cl--6--);
    }

    .nav_toggle {
        display: none;
    }
}

@media screen and (min-width: 900px)  {
    .nav_list {
        display: flex;
    }
}