#footer {
    padding: 24px;
}

#footerLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 27px;
}

.footerLink {
    font-size: 18px;
    line-height: 1.2;
    color: var(--red);
    display: flex;
    gap: 30px;
    text-transform: uppercase;
}

#footerAddress {
    font-size: 18px;
    text-align: center;
    margin-bottom: 72px;
    color: var(--red);
}

#footerGraphicImg {
    max-width: 291px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    #footer {
        padding: 16px;
        gap: 5px;
    }

    #footerLinks {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footerLink {
        gap: 5px;
        font-size: 13px;
    }

    .footerLink:not(:first-child)::after {
        content: none;
    }

    #footerAddress {
        font-size: 13px;
    }

    #footerGraphicImg {
        max-width: 150px;
    }
}