#nav {
    background-color: black;
    width: 80%;
    padding: 0 10%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
}

#nav-icon {
    text-decoration: none;
    color: var(--main-text-color);
    font-size: 1.5rem;
}

#nav-items {
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    list-style-type: none;
    color: var(--main-text-color);
    font-family: var(--font-family);
}

.nav-items-about-title {
    padding: 3vh 1vw;
    cursor: pointer;
    min-width: 10%;
    display: flex;
    justify-content: center;
}

.nav-items-about-title:hover {
    background-color: black;
    color: var(--main-text-color);
}

#nav-items-about-title-items {
    width: fit-content;
    position: absolute;
    display: none;
    background-color: black;
    padding: 1vh 1vw;
    margin: 0;
    color: var(--main-text-color);
    list-style-type: none;
}

#nav-items-about-title-items a {
    color: var(--main-text-color);
    text-decoration: none;
}

#nav-items-about-title-items li {
    padding: 2vh 4vw;
    margin: 0;
}

#nav-items-about-title-items li:hover {
    background-color: var(--main-text-color);
    color: black;
    cursor: pointer;
}

#nav-items-about:hover #nav-items-about-title-items {
    display: block;
}

#nav-items-about-title-items:hover #nav-items-about {
    background-color: black;
    color: var(--main-text-color);
}

/* -------------------------------------------------------------------- */

#nav-colapse {
    display: none;
    flex-direction: column;
    position: fixed;
    width: 100%;
    background-color: black;
    z-index: 100;
}

#nav-colapse-top {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3vh 4vw;
}

#nav-colapse-top-icon {
    color: var(--main-text-color);
    font-family: var(--font-family);
    font-size: 1.5rem;
    text-decoration: none;
}

#nav-colapse-top-btn {
    position: absolute;
    right: 4vw;
    padding: 1vh 1vw;
    background-color: transparent;
    border: none;
    color: var(--main-text-color);
    font-size: 1.5rem;
}

#nav-colapse-dropdown {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style-type: none;
}

#nav-colapse-dropdown li {
    color: var(--main-text-color);
    font-family: var(--font-family);
    font-size: 1.2rem;
    width: 100%;
    padding: 2vh 0;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 2000px) {
    #nav-icon {
        font-size: 1.5rem;
    }
    #nav-items {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1440px) {
    
}

@media screen and (min-width: 1000px) {
    #nav-items {
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 500px) {
    #nav-items {
        font-size: 1.2rem;
    }
    /* #nav-items li {
        margin-right: 5vw;
    } */
}

@media screen and (max-width: 500px) {
    #nav {
        display: none;
    }

    #nav-colapse {
        display: flex;
    }
}

@media screen and (max-width: 400px) {
    
}