﻿

#footerNav {
    margin: 33px 0 -8px;
    padding: 34px 0 0;
    text-align: center;
    border-top: 2px solid #fff;
}

#footerNav li {
    position: relative;
    list-style: none;
    margin: 0;
}

#footerNav li ul {
	margin-left: 0;
}

#footerNav > li {
    display: inline-block;
    margin: 0 30px;
}

#footerNav > li > a, #footerNav > li > span {
    display: block;
    padding: 3px 1px 4px;
    font-size: 119%;
    line-height: 100%;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

#footerNav > li > a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

#footerNav > li > a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

#footerNav > li > span {
	cursor: default;
}

