.site-footer {
    background-color: var(--color-white);
    border: 1px solid #707070;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    padding: 100px 0 70px;

    @media screen and (max-width: 991px) {
        padding: var(--spacing-2xl) 0;
    }
    @media screen and (max-width: 576px) {
        padding: var(--spacing-xl) 0;
    }
    .footer-logo {
        width: 674px;
        margin-bottom: 40px;

        @media screen and (max-width: 1600px) {
            width: 100%;
            max-width: 400px;
        }
        a {
            display: block;
            width: 100%;
        }
        img {
            width: 100%;
        }
    }
    .footer-columns {
        margin-bottom: 50px;

        @media screen and (max-width: 991px) {
            margin-bottom: 40px;
        }
        .footer-col {
            @media screen and (max-width: 991px) {
                margin-top: 30px;
            }
            @media screen and (max-width: 576px) {
                margin-top: 20px;
            }
            .footer-col-heading {
                font-size: 3.9rem;
                font-family: var(--font-secondary);
                line-height: 1.6;
                text-transform: uppercase;
                margin-bottom: 0;

                @media screen and (max-width: 1500px) {
                    font-size: 3.2rem;
                }
                @media screen and (max-width: 991px) {
                    font-size: 3rem;
                }
                @media screen and (max-width: 576px) {
                    font-size: 2.5rem;
                }
            }
            .footer-col-text {
                p, address {
                    margin-bottom: 0;

                    a {
                        color: var(--color-black);

                        &:hover, &:focus-visible {
                            text-decoration: underline;
                            color: var(--color-purple);
                        }
                    }
                }
            }
        }
    }
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;

        @media screen and (max-width: 991px) {
            flex-direction: column-reverse;
        }
        .footer-copyright {
            p {
                color: #707070;
                margin-bottom: 0;

                @media screen and (max-width: 991px) {
                    margin-top: 15px;
                }
            }
        }
        .footer-logos {
            display: flex;
            align-items: center;

            .footer-logo-item {
                margin-right: 70px;

                @media screen and (max-width: 1199px) {
                    margin-right: 50px;
                }
                @media screen and (max-width: 991px) {
                    margin-right: 40px;
                }
                @media screen and (max-width: 576px) {
                    margin-right: 30px;
                }
                &:first-of-type {
                    img {
                        width: 350px;

                        @media screen and (max-width: 1199px) {
                            width: 250px;
                        }
                        @media screen and (max-width: 991px) {
                            width: 200px;
                        }
                        @media screen and (max-width: 576px) {
                            width: 150px;
                        }
                    }
                }
                &:last-of-type {
                    margin-right: 0;

                    img {
                        width: 220px;

                        @media screen and (max-width: 1199px) {
                            width: 120px;
                        }
                        @media screen and (max-width: 991px) {
                            width: 100px;
                        }
                    }
                }
                a {
                    display: block;
                }
            }
        }
    }
}