﻿

.Footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    line-height: 10px;
}

.Footer .Links {
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.footer-wrapper {
    margin: 0 auto;
    width: 100%;
}


    .Footer .Links .footer-links {
        font-weight: 600;
        list-style-type: none;
        overflow: hidden;
    }

        .Footer .Links .footer-links li {
            float: left;
            padding: 0 10px 0 8px;
            position: relative;
        }

            .Footer .Links .footer-links li:before {
                content: "";
                position: absolute;
                left: 0;
                top: 2px;
                height: 13px;
                width: 1px;
                background: #999;
            }

            .Footer .Links .footer-links li:first-child:before {
                content: none;
            }

        .Footer .Links .footer-links a {
            -webkit-transition: color .3s ease-in-out;
            transition: color .3s ease-in-out;
            text-decoration: none;
            color: #999;
        }

            .Footer .Links .footer-links a:hover {
                color: #737373;
            }

    .Footer .Copyright .copyright_Link {
        color: #999;
        font-weight: 600;
    }

        .Footer .Copyright .copyright_Link a {
            -webkit-transition: color .3s ease-in-out;
            transition: color .3s ease-in-out;
            color: #999;
            text-decoration: none;
        }

            .Footer .Copyright .copyright_Link a:hover {
                color: #737373;
            }
