.footer-contacts {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 110;
    padding-top: 10px;
}
.footer-contacts .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 50px;
	padding: 0 !important;
}
.footer-contacts .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer-contacts .social > * {
    margin: 0 -1px 0 0;
    width: 46px;
    position: relative;
}
.footer-contacts .social img {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -16px;
    -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media screen and (max-width: 764px) {
    .footer-contacts {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 110;
        padding-top: 50px;
        display: flex;
    }
    .footer-contacts .social img:first-child {
        opacity: 1;
    }
    .footer-contacts .social img:last-child {
        opacity: 0;
    }
}
@media screen and (min-width: 765px) {
    .footer-contacts .social img:first-child {
        opacity: 0;
    }
    .footer-contacts .social i:first-child {
        font-size: 20px;
        color: #999;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -10px 0 0 -7px;
        -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    }
    .footer-contacts .social a:hover img {
        opacity: 0;
    }
    .footer-contacts .social a:hover img:first-child {
        opacity: 1;
    }
    .footer-contacts .social a:hover i:first-child {
        color: #3ebec4;
    }
}