#footer {
    padding: 2rem 2rem 1rem 2rem;
}

.footer-title {
    font-size: 2em;
    font-weight: 200;
    hyphens: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.5rem;
}

.footer-links {
    display: flex;
    width: 60%;
}

.footer-company {
    width: 50%;
}

.footer-product {
    width: 50%;
}

.footer-extra {
    display: flex;
    width: 40%;
}

.footer-social {
    width: 60%;
}

.footer-right {
    text-align: right;
    width: 40%;
}

.footer-copyright {
    clear: both;
}

.footer-fa {
    padding: 8px;
    color: white;
    border-radius: 0.5rem;
    border: 1px solid white;
    font-size: 24px !important;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.15s ease-in-out;
}

.footer-fa:hover {
    color: #4C4CFF;
    background-color: #FFF;
    text-decoration: none;
    box-shadow: 0.1em 0.2em 0.1em rgba(100, 100, 255, 50%);
}

footer ul a,
footer ul p {
    font-size: 1.25em;
    color: white !important;
}

@media (max-width: 991px) {
    .footer-links {
        width: 68%;
    }

    .footer-extra {
        width: 32%;
        flex-direction: column;
        row-gap: 1.5rem;
    }

    .footer-social {
        width: 100%;
    }

    .footer-right {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-links {
        width: 100%;
    }

    .footer-title {
        font-size: 1.5em;
    }

    .footer-company {
        width: 50%;
    }

    .footer-product {
        width: 50%;
    }

    .footer-extra {
        width: 100%;
        flex-direction: row;
    }

    .footer-social {
        width: 64%;
    }

    .footer-right {
        text-align: right;
        width: 36%;
    }
}

@media (max-width: 480px) {
    #footer {
        padding: 2rem 1rem;
    }

    .footer-links {
        flex-direction: column;
        width: 64%;
        row-gap: 1.5rem;
    }

    .footer-company {
        width: 100%;
    }

    .footer-product {
        width: 100%;
    }

    .footer-extra {
        width: 36%;
        flex-direction: column;
        row-gap: 1.5rem;
    }

    .footer-social {
        width: 100%;
    }

    .footer-right {
        text-align: right;
        width: 100%;
    }
}