/*body {
    margin: 0 0 55px 0;
}

.NavbarFooter {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 55px;
    overflow-x: auto;
    background-color: #27AE60;
    display: flex;
    right: 0;
    left: 0;
    z-index: 400;
}*/

.NavbarHeader {
    position: fixed;
    top: 0;
    height: 55px;
    overflow-x: auto;
    display: flex;
    justify-content: center;
    z-index: 400;
}
/*.navLinkFooter {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    text-decoration: none;
    color: white;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
}
    .navLinkFooter:hover {
        color: white;
    }

.link-active {
    color: #009578;
}

.NavIconFooter {
    font-size: 18px;
}
.NavtextFooter {
     margin:unset; 
    color: white;
}*/


:root {
    --clr: #fff;
}

.bodyFooter {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--clr);
    margin-top: 138px;
}

    .navigationFooter .ulFooter {
        display: flex;
        width: 350px;
    }

        .navigationFooter .ulFooter .listFooter {
            position: relative;
            list-style: none;
            width: 70px;
            height: 70px;
            z-index: 1;
        }

            .navigationFooter .ulFooter .listFooter a {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                width: 100%;
                text-align: center;
                font-weight: 500;
            }

                .navigationFooter .ulFooter .listFooter a .iconFooter {
                    position: relative;
                    display: block;
                    line-height: 75px;
                    font-size: 1.5em;
                    text-align: center;
                    transition: 0.5s;
                    color: var(--clr);
                }

            .navigationFooter .ulFooter .listFooter.active a .iconFooter {
                transform: translateY(-35px) translateX(1px);
            }

            .navigationFooter .ulFooter .listFooter a .textFooter {
                position: absolute;
                color: var(--clr);
                font-weight: 400;
                font-size: 0.75em;
                letter-spacing: 0.05em;
                transition: 0.5s;
                opacity: 1;
                transform: translateY(20px);
            }

            .navigationFooter .ulFooter .listFooter.active a .textFooter {
                opacity: 1;
                transform: translateY(10px);
            }

    .indicatorFooter::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -22px;
        width: 20px;
        height: 20px;
        background: transparent;
    }

    .indicatorFooter::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -22px;
        width: 20px;
        height: 20px;
        background: transparent;
    }

.navigationFooter .ulFooter .listFooter:nth-child(1).active ~ .indicatorFooter {
    transform: translateX(calc(70px * 0))
}

.navigationFooter .ulFooter .listFooter:nth-child(2).active ~ .indicatorFooter {
    transform: translateX(calc(70px * 1))
}

.navigationFooter .ulFooter .listFooter:nth-child(3).active ~ .indicatorFooter {
    transform: translateX(calc(70px * 2))
}

.navigationFooter .ulFooter .listFooter:nth-child(4).active ~ .indicatorFooter {
    transform: translateX(calc(70px * 3))
}

.navigationFooter .ulFooter .listFooter:nth-child(5).active ~ .indicatorFooter {
    transform: translateX(calc(70px * 4))
}