.footer > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer > div > div:last-of-type .footer__link {

    margin-right: 0;
    margin-left: 50px;
}

.footer .footer__link:hover {
    color: #416365;
}

.footer .footer__link {
    margin-right: 50px;
    color: #999;
    cursor: pointer;
}

.footer {
    border-top: 1px solid #ccc;
    line-height: 150px;
    color: #999;
    font-size: 24px;
    line-height: 150px;
    font-family: 'ProximaNova_bold', sans-serif;
    font-weight: bold;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;

}

@media screen and (max-width: 1200px) {
    .footer {
        font-size: 19px;
        line-height: 90px;
    }
}

@media screen and (max-width: 766px) {
    .footer > div > div:last-of-type .footer__link {
        margin-left: 20px;
    }

    .footer {
        font-size: 11px;
        line-height: 50px;
    }

    .footer .footer__link {
        margin-right: 20px;
    }
}