.nav {
    height: 10rem;
    width: 100%;
    background-color: var(--bg);
    position: fixed;
    top: 0px;
    z-index: 100;

    display: flex;
    justify-content: space-around;
    align-items: center;

    background-color: var(--bg);

    box-shadow: -5px 8px 10px rgb(148, 130, 111);
    overflow: hidden;
}


.nav .logo {
    flex: 0.5;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;

    overflow: hidden;
}

.nav .logo h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--title);

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

}

.nav .list {
    flex: 0.5;

    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
}

.nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;

}

.nav ul li {

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

    overflow: hidden;

}

.nav ul li a {
    text-decoration: none;

    display: flex;
    justify-content: space-around;
    align-items: center;


    font-size: 1.3rem;
    font-weight: 700;
    color: #ff3300;

    cursor: none;
}



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

    .nav {
        height: 5rem;
        overflow-x: hidden;

    }

    .logo {
        overflow: visible !important;
    }

    .nav .list {
        display: none;
    }

    .menu {

        display: visible;

        height: 5rem;
        width: 100%;


        background-color: #524439;
        position: fixed;
        z-index: 100;
        bottom: 0px !important;
    }

    .menu .list {
        height: 100%;
        width: 100%;

    }

    .menu .list ul {
        height: 100%;
        width: 100%;
        list-style-type: none;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .menu .list ul a {
        font-size: 1rem;
        font-weight: 500;
        color: orange;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

}