.footer-container {
    background: var(--footer-background);
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    text-align: center;
    padding: 50px;
    justify-content: space-around;
    flex-wrap: nowrap;
    margin-top: 75px;
}

.footer-image {
    text-align: left;
}

.footer-image img {
    width: 84px;
}

.footer-item:last-child {
    justify-self: flex-end;
}

.social-inner-img img {
    width: 100%;
}

.footer-item .list-inline {
    min-height: 50px;
}

@media only screen and (max-width: 600px) {
    .footer-container {
        grid-template-columns: none !important;
        gap: 20px;
    }

    .footer-container .footer-item {
        text-align: center;
    }

    .footer-image {
        text-align: center;
    }

    .footer-item:last-child {
        justify-self: center;
    }
}