.footer-wrapper {
    border-top: 1px solid black;
    padding: 2rem 7rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.footer-box-row-one {
    display: flex;
    justify-content: space-between;
}

.footer-box-row-one a {
    text-decoration: none;
}

.footer-box-row-two {
    display: flex;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .footer-wrapper {
        padding: 2rem 1rem;
        flex-direction: column-reverse;
    }

    .footer-box-row-one {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-box-row-two {
        justify-content: center;
    }
}