.footer {
    background: var(--secondary-color-extra-dark);
    color: var(--white);
    padding: 4rem 0 1rem;
    font-size: 14px;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: calc(1200px + 4rem);
    padding: 0 2rem;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer ul {
    margin: 0;
    padding: 0;
}

.footer h4,
.footer p {
    color: var(--grey-light);
    margin: 0 0 0.4rem 0;
    padding: 0;
}

.footer li {
    margin-bottom: 0.4rem;
}

.footer a {
    color: var(--grey-light);
    text-decoration: none;
}

.footer a:hover {
    color: var(--grey-extra-light);
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-address {
    display: inline-block;
    margin-bottom: 1rem;
    max-width: 10rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-icon {
    width: 24px;
}

.footer-copyright {
    margin: 0 auto;
}

/* Responsive */
@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 992px) {
    .footer-container {
        align-items: center;
    }

    .footer-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        row-gap: 3rem;
    }

    .footer-copyright {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        font-size: 12px;
        padding: 3rem 0 1rem;
    }

    .footer-address {
        max-width: 9rem;
    }
}

@media screen and (max-width: 624px) {
    .footer-row {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        row-gap: 2rem;
    }
}

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

@media screen and (max-width: 425px) {

}

@media screen and (max-width: 375px) {
    .footer-row {
        grid-template-columns: 1fr;
        gap: 4rem;
        row-gap: 2rem;
    }
}