.footer .footer-links {
    column-gap: 20px;
}

.footer .footer-link {
    color: #8A9097;
    position: relative;
    font-family: 'Montserrat-SemiBold';
    transition: all 500ms ease;
}

.footer .footer-link:hover {
    color: #8247FF;
}

.footer .footer-link::after {
    content: '';
    position: absolute;
    background-color: #8247FF;
    height: 1px;
    width: 0;
    bottom: 0;
    left: 0;
    transition: all 500ms ease;
}

.footer .footer-link:hover::after {
    width: 100%;
}

.footer .footer-logo img {
    height: 30px;
}

.footer .footer-top {
    border-bottom: 1px solid #d4d6d9;
    padding-bottom: 10px;
}

.footer .footer-bottom {
    padding-top: 10px;
    column-gap: 15px;
}

.footer .all-rights {
    font-size: 15px;
    color: #8A9097;
}

.footer .social-links {
    column-gap: 10px;
}

@media screen and (max-width: 1080px) {
    .footer .footer-links {
        display: none;
    }

    .footer .all-rights {
        font-size: 12px;
    }

    .footer .footer-logo img {
        height: 20px;
    }
}