#footer-nav ul {
    column-gap: 24px;
    font-size: 15px;
    margin-top: 8px
}

.footer-main {
    border-top: 1px solid var(--grey);
    padding-top: 20px
}

.footer-copy-wrapper {
    border-top: 1px solid var(--grey);
    padding-top: 8px
}

.footer-banner {}

.footer-social {
    display: flex;
    gap: 16px
}

.to-top-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}


.to-top-wrapper a {
    width: 36px;
    height: 35px;
    text-indent: -9999px;
    display: block;
    overflow: hidden;
    transition: all 0.3s;
    transform: translateY(90px);
}

.to-top-wrapper a:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    background: url(../../img/totop.svg) center center no-repeat;
    background-size: 100% auto;
}

.to-top-active .to-top-wrapper a {
    transform: translateY(0)
}

.to-top-wrapper a:hover {
    transform: scale(1.1);
}

.to-top-active .to-top-wrapper {
    z-index: 999;
    opacity: 1;
}

@media screen and (max-width:767px) {
    #footer-nav ul {
        column-gap: 24px;
        font-size: 15px;
        justify-content: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 20px
    }

    @media screen and (max-width:567px) {
        .footer-main {
            background-color: transparent;
            border-radius: 0px;
        }

        #site-footer .row {
            text-align: center;
        }

        .footer-link {
            display: flex;
            justify-content: center;
        }

        .footer-main .h-right.v-bottom {
            margin-left: auto;
            margin-right: auto;
        }
    }