nav {
    width: 100%;
    height: 5em;
    background-color: #141b21;

    border-bottom: 3px black solid;

    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1;

}

nav > .menu {
    width: 90%;
    height: 100%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    padding-right: 5%;
}

nav > .menu > .logo {
    width: 10%;
    height: 100%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

nav > .menu .logo > img {
    width: auto;
    height: 40px;
}

nav > .menu > .item {
    width: 10%;
    height: 100%;

    text-decoration: none;
    color: #efbe4e;
    text-transform: uppercase;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    transition: 0.3s linear;
}

nav > .menu > .item.contact {
    width: 7% !important;
}

nav > .menu > .item.contact > i {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

nav > .menu > .item.contact-us {
    height: 70%;
    width: 13%;
    padding: 5px;
    text-align: center;
    background-color: #efbe4e;
    color: #141b21;
    border: 1px black solid;
    transition: 0.3s linear;
}

nav > .menu > .item.contact-us:hover {
    height: 60%;
    width: 13%;
    padding: 5px;
    color: #efbe4e;
    background-color: #141b21;
    border: 1px #efbe4e solid;
    box-shadow: none;
    transition: 0.3s linear;
}

nav > .menu > .item:hover {
    color: #f6c758;
    box-shadow: inset 0px 5px 0px 0px rgb(239, 190, 78);
    transition: 0.3s linear;
}

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

    nav {
        width: 100%;
    }

    nav > .menu {
        width: 100%;
        height: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }

}

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

    nav {
        width: 100%;
        font-size: 13px;
    }

    nav > .menu {
        width: 100%;
        height: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }

}

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

    nav {
        width: 100%;
        font-size: 13px;
    }

    nav > .menu {
        width: 100%;
        height: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }

}

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

    nav {
        width: 100%;
        height: 10em;
        font-size: 12px;
    }

    nav > .menu {
        width: 85%;
        height: 100%;
        padding-left: 0px;
        padding-right: 0px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav > .menu > .logo {
        width: 100%;
        height: 50%;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    nav > .menu > .item {
        height: 20%;
    }

    nav > .menu > .item.contact-us {
        height: 30%;
        width: 15%;
    }

    nav > .menu > .item.contact-us:hover {
        height: 30%;
        width: 15%;
    }

}

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

    nav {
        width: 100%;
        height: 10em;
        font-size: 12px;
    }

    nav > .menu {
        width: 85%;
        height: 100%;
        padding-left: 0px;
        padding-right: 0px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav > .menu > .logo {
        width: 100%;
        height: 50%;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    nav > .menu > .item {
        height: 30%;
        width: 20%;
        padding-left: 10px;
        padding-right: 10px;
    }

    nav > .menu > .item.contact-us {
        height: 30%;
        width: 20%;
    }

    nav > .menu > .item.contact-us:hover {
        height: 30%;
        width: 20%;
    }

}

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

    nav {
        width: 100%;
        height: 10em;
        font-size: 10px;
    }

    nav > .menu {
        width: 85%;
        height: 100%;
        padding-left: 0px;
        padding-right: 0px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav > .menu > .logo {
        width: 100%;
        height: 50%;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    nav > .menu > .item {
        height: 30%;
        width: 20%;
        padding-left: 10px;
        padding-right: 10px;
    }

    nav > .menu > .item.contact-us {
        height: 30%;
        width: 25%;
    }

    nav > .menu > .item.contact-us:hover {
        height: 30%;
        width: 25%;
    }

}

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

    nav {
        width: 100%;
        height: 10em;
        font-size: 9px;
    }

    nav > .menu {
        width: 100%;
        height: 100%;
        padding-left: 10px;
        padding-right: 10px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav > .menu > .logo {
        width: 100%;
        height: 50%;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    nav > .menu > .item {
        height: 20%;
    }

    nav > .menu > .item.contact-us {
        height: 30%;
        width: 25%;
    }

    nav > .menu > .item.contact-us:hover {
        height: 30%;
        width: 25%;
    }

}