.site-footer {
    .footer-top {
        padding: 80px 0 60px;

        @media screen and (max-width: 1200px) {
            padding: var(--spacing-xl) 0 var(--spacing-lg);
        }
        @media screen and (max-width: 576px) {
            padding: var(--spacing-lg) 0 var(--spacing-md);
        }
        .footer-content {
            display: flex;
            gap: 30px;
            justify-content: space-between;
            align-items: flex-end;

            @media screen and (max-width: 1200px) {
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-content-left {
                @media screen and (max-width: 768px) {
                    width: 100%;
                    text-align: center;
                }
                .footer-logo {
                    width: 536px;
                    margin-bottom: 50px;

                    @media screen and (max-width: 1200px) {
                        width: 100%;
                        max-width: 400px;
                        margin-bottom: 30px;
                    }
                    @media screen and (max-width: 768px) {
                        margin: 0 auto 30px;
                    }
                    a {
                        display: block;
                        width: 100%;
                    }
                    img {
                        width: 100%;
                    }
                }
                .footer-desc {
                    font-size: var(--font-size-lg);
                    font-weight: 600;
                    line-height: 1.6;
                    color: var(--color-yellow);
                    margin-bottom: 0;

                    @media screen and (max-width: 1200px) {
                        font-size: 3rem;
                    }
                    @media screen and (max-width: 768px) {
                        text-align: center;
                        font-size: var(--font-size-md);
                        line-height: 1.2;
                    }
                    @media screen and (max-width: 576px) {
                        font-size: 2.4rem;
                    }
                }
                .footer-navigation {
                    margin-top: 40px;

                    @media screen and (max-width: 1200px) {
                        margin-top: 20px;
                    }
                    nav {
                        ul {
                            margin: 0;
                            padding: 0;

                            li {
                                position: relative;
                                list-style-type: none;
                                display: inline-block;
                                padding: 0 15px;
                                margin-left: -6px;
                                
                                @media screen and (max-width: 768px) {
                                    width: 100%;
                                    padding: 0;
                                    margin-left: 0;
                                }
                                &:first-child {
                                    padding-left: 0;
                                    margin-left: 0;
                                }
                                &:last-child {
                                    padding-right: 0;

                                    &:after {
                                        display: none;
                                    }
                                }
                                &:after {
                                    content: '';
                                    position: absolute;
                                    top: 50%;
                                    right: -1px;
                                    transform: translateY(-50%);
                                    width: 1px;
                                    height: 28px;
                                    background-color: var(--color-white);

                                    @media screen and (max-width: 768px) {
                                        display: none;
                                    }
                                }
                                a {
                                    font-size: 2rem;
                                    font-weight: 400;

                                    @media screen and (max-width: 991px) {
                                        font-size: 1.8rem;
                                    }
                                    @media screen and (max-width: 768px) {
                                        font-weight: 500;
                                    }
                                    @media screen and (max-width: 576px) {
                                        font-size: var(--font-size-sm);
                                    }
                                    &:hover, &:focus-visible {
                                        color: var(--color-yellow);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .footer-content-right {
                @media screen and (max-width: 768px) {
                    width: 100%;
                    text-align: center;
                }
                .footer-contact {
                    text-align: right;

                    @media screen and (max-width: 1200px) {
                        text-align: left;
                    }
                    @media screen and (max-width: 768px) {
                        text-align: center;
                    }
                    h3 {
                        font-size: 3.1rem;
                        font-weight: bold;
                        color: var(--color-light-blue);
                        margin-bottom: .5rem;

                        @media screen and (max-width: 1200px) {
                            font-size: 2.8rem;
                        }
                        @media screen and (max-width: 768px) {
                            font-size: 2.2rem;
                        }
                    }
                    p {
                        margin-bottom: 0;

                        a {
                            &:hover, &:focus-visible {
                                color: var(--color-yellow);
                            }
                        }
                    }
                }
            }
        }
    }
    .footer-bottom {
        background-color: #212529;
        padding: 30px 0;

        @media screen and (max-width: 576px) {
            padding: 20px 0;
        }
        .copyright {
            font-size: 2.1rem;
            color: var(--color-white);
            margin-bottom: 0;

            @media screen and (max-width: 991px) {
                font-size: 1.8rem;
            }
            @media screen and (max-width: 768px) {
                text-align: center;
            }
            @media screen and (max-width: 576px) {
                font-size: 1.4rem;
            }
        }
    }
}