footer {
    background-color: #140e2f;
    padding: 40px 0;
}

footer p, footer a {
    font-size: 17px;
}

@media(max-width: 767px) {
    footer {
        padding: 35px 0;
    }
    footer p, footer a {
        font-size: 16px;
    }
}

footer p {
    color: #e9e8eb;
}

.footer__columns {
    margin-top: -30px;
}

.footer__column {
    width: 33.333%;
    margin-top: 30px;
}

@media(max-width: 991px) {
    .footer__column {
        width: 50%;
    }
    .footer__column-center {
        width: 100%;
        order: -1;
    }
}

@media(max-width: 767px) {
    .footer__column {
        width: 100%;
        text-align: center;
    }
}

.footer__links a {
    font-family: 'Poppins-Medium';
    color: #c3c3ca;
    text-transform: uppercase;
    margin-top: 15px;
    margin-right: 15px;
}

.footer__links a:hover {
    color: #fff;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media(max-width: 767px) {
    .footer__links, .social-media {
        justify-content: center;
    }
}

.social-media a {
    position: relative;
    margin-right: 25px;
}

.social-media a:last-child {
    margin-right: 0;
}

.social-media a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 0;
    height: 0;
    opacity: 0;
    border-radius: 50%;
    background-color: #e49830;
    transition: .2s;
}

.social-media a:hover:after {
    width: 40px;
    height: 40px;
    opacity: 1;
    transition: .2s;
}

.social-media img {
    position: relative;
    z-index: 10;
    height: 24px;
    fill: #ffffff;
}

.social-media img.icon-small {
    height: 21px;
}
