footer {
    background-color: var(--orange);
    padding: 100px 0;

    @media (max-width: 1200px) {
        padding: 70px 0;
    }

    @media (max-width: 800px) {
        padding: 50px 0;
    }

    .contents {
        justify-content: space-between;
        align-items: flex-start;

        .column {
            width: calc(100% / 3 - 50px);

            @media (max-width: 1200px) {
                width: calc(50% - 50px);
                margin-bottom: 30px;
            }

            @media (max-width: 800px) {
                width: 100%;
                margin-bottom: 30px;
            }

            h3 {
                font-size: 40px;
                line-height: 1.2;
                margin-bottom: 40px;

                @media (max-width: 800px) {
                    font-size: 34px;
                    margin-bottom: 30px;
                }

            }

            &.git {

                @media (max-width: 1200px) {
                    order: 0;
                }

                .text-container {
                    font-size: 20px;
                    line-height: 1.3;

                    p {
                        margin-bottom: 30px;
                    }

                    a {
                        color: var(--black);
                        text-decoration: underline;
                    }

                }

            }

            &.links {
                font-size: 20px;
                line-height: 1;

                @media (max-width: 1200px) {
                    order: 2;
                }

                a {
                    margin-bottom: 10px;
                    color: var(--black);
                    text-decoration: underline;
                    display: inline-block;
                }

            }

            &.findus {

                @media (max-width: 1200px) {
                    order: 1;
                }

                .text-container {
                    font-size: 20px;
                    line-height: 1.3;

                    a {
                        color: var(--black);
                        text-decoration: underline;
                    }

                }

                .socials {
                    margin-top: 50px;
                    justify-content: flex-start;
                    align-items: center;

                    .icon {
                        width: 35px;
                        height: 35px;
                        position: relative;
                        margin-right: 10px;

                        /* svg path {
                            fill: var(--black);
                        } */

                    }

                }

                .new-site {
                    font-size: 40px;
                    line-height: 1.2;
                    margin-top: 80px;

                    @media (max-width: 1750px) {
                        font-size: 34px;
                    }

                    @media (max-width: 1450px) {
                        font-size: 30px;
                    }

                    @media (max-width: 1200px) {
                        margin-top: 40px;
                    }

                }

            }

        }

    }

}