nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

nav.scrolled {
    background-color:  #1d1d1ddd;
}

.justify-spaced {
    justify-content: space-between;
}

#company-name {
    color: white;
    margin-left: 40px;
    font-size: 35px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    
}

.nav-item-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nav-item {
    font-family: "Montserrat", sans-serif;
    margin-left: 0;
    margin-right: 40px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s;
}

.nav-item:not(.active) {
    color: white;
    font-size: 25px;
}

.nav-item.active {
    color: #EC7969;
    font-size: 27px;
}

.nav-item:hover {
    color: #EC7969;
    font-size: 27px;
}

@media screen and (max-width:414px){
    nav {
        height: 200px;
        position: absolute;
    }

    nav.scrolled {
        background: none;
    }

    #company-name { 
        max-width: 40%;
        margin-left: 20px;
    }

    .nav-item-list {
        justify-content: end;
    }

    .nav-item {
        margin-bottom: 6px;
        margin-right: 20px;
    }

    .nav-item:not(.active) {
        font-size: 22px;
    }

    .nav-item.active {
        font-size: 24px;
    }
}