#Footer {
    & div {
        & div ul {
            padding-right: 50px;
        }
        & div ul li {
            list-style: none;
            & a {
                color: white;
                font-size: 3vw;
            }
            @media screen and (min-width: 768px) {
                & a {
                    text-decoration: none;
                    font-size: 1.3vw;
                    transition: all 0.1s ease-in-out;
                    &:hover {
                        text-decoration: underline;
                        font-size: 1.4vw;
                    }
                }
            }
        }
        &:nth-child(2) {
            & > a {
                font-size: 2.5vw;
            }
            & > p {
                font-size: 2.3vw;
                padding-bottom: 0;
                font-weight: bolder;
            }
            @media screen and (min-width: 768px) {
                & > a {
                    text-decoration: none;
                    font-size: 1.5vw;
                    transition: all 0.1s ease-in-out;
                    &:hover {
                        text-decoration: underline;
                        font-size: 1.6vw;
                    }
                }
                & > p {
                    font-size: 1.8vw;
                }
            }
        }
        &:nth-child(1) {
            padding-bottom: 10vw;
        }
        & h4 {
            font-size: 5vw;
        }
        @media screen and (min-width: 768px) {
            &:nth-child(1) {
                padding-bottom: 7vw;
            }

            & h4 {
                font-size: 2.5vw;
            }
        }

    }
}