footer {
    font-family: 'Archivo', serif;
    font-style: normal;
    font-weight: 400;
    padding: 0 12.5%;
    aspect-ratio: 4.6 / 1;
    background-color: #D9D9D9;
    font-size: 1rem;
    line-height: 2rem;
    color: rgba(0, 0, 0, 0.8);
}

.footer-logo {
    height: 38%;
    position: relative;

    svg {
        width: 16%;
        height: 40%;
        position: absolute;
        left: 0;
        bottom: 1rem;
    }
}

.footer-body {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.footer-details {
    flex: 4;
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 1rem;
}

.footer-address {
    flex: 2;

    a {
        text-decoration: none;
        color: rgba(0, 0, 0, 0.8);
    }
}

.footer-copyright {
    flex: 2;

    & > div:nth-child(2) {
        a {
            text-decoration: none;
            color: rgba(0, 0, 0, 0.8);
        }
    }
}

.footer-email {
    flex: 1;

    a {
        text-decoration: underline;
        color: rgba(0, 0, 0, 0.8);
    }
}

.facebook-instagram {
    flex: 1;
    position: relative;

    svg {
        width: 40%;
        height: 15%;
        position: absolute;
        left: 5rem;
    }
}
