@charset "UTF-8";

.footer {
    width: 100%;
}

.text-footer-address {
    padding-top: 5px;
}

.footer .list-unstyled li a {
    color: #9d9d9d;
    position: relative;
}

.footer .list-unstyled li a:hover,
.footer .list-unstyled li a:focus {
    color: #fff;
}

.footer .list-unstyled li a:before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    float: left;
    background-color: #fff;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.footer .list-unstyled li a:hover::before,
.footer .list-unstyled li a:focus::before {
    width: 100%;
}