
/*=============== NAVBAR ===============*/
.nav {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0;
    background-color: #52a9b2;
    width: 90%;
    margin-inline: auto;
    box-shadow: 0 2px 16px hsla(228, 95%, 4%, .1);
    padding: 0px;
    border-radius: 1rem;
    z-index: 100;
    display: flex;
    flex-wrap: nowrap;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
    flex-direction: row;
    height: 60px;
}

    .nav p {
        padding: 0px;
        margin: 0px;
    }

.nav__list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

    .nav__list li {
        text-align: center;
        color: #fff;
        font-size: 12px;
        font-weight: 500;
    }

.nav__link {
    transition: color .4s;
    line-height: 12px;
    color: #fff;
}

    .nav__link i {
        font-size: 20px;
    }

    .nav__link:hover {
        color: var(--white-color);
    }
