footer {
    width: 100vw;
    padding: 40px 20px;
    background: rgb(var(--blue));
    border-top: 30px solid rgb(var(--orange));
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 90vw;
    gap: 40px;
    margin: 0 auto;
    /* background: rgb(var(--light)); */
    border-radius: 20px;
    color: rgb(var(--light));
    overflow: hidden;
    height: fit-content;
}
.footer-wrapper figure {
    background: rgb(var(--light));
    width: fit-content;
    margin: 0;
    height: 290px;
    order: 1;
}
.footer-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.footer-wrapper h2 {
    margin: 0 0 10px;
}
.footer-wrapper .content {
    order: 0;
    text-align: center;
}

@media screen and (min-width:1024px) {
    .footer-wrapper {
        display: flex;
        flex-direction: row;
        max-width: 80vw;
        /* justify-content: space-between; */
        align-items: center;
    }
    .footer-wrapper figure {
        order: 0;
        height: 180px;
    }
    .footer-wrapper .content {
        order: 1;
        text-align: left;
    }
}