/* Footer */
.page-footer .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    list-style: none;
    margin-bottom: 50px;
}

.page-footer .footer-notice {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    margin-bottom: 0;
}

.page-footer .footer-notice p {
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    margin-bottom: 0;
}

.footer-disclaimer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social i {
    font-size: 20px;
    color: #7e7e7e;
}

.footer-social a:hover i {
    color: var(--gb-primary-color);
}


.footer-copyright p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    color: #000;
}

.back-to-top .btn {
    font-weight: 700;
    background: #f3f4f6;
    color: var(--gb-primary-color);
}

@media (min-width: 1200px) {
    .page-footer .footer-nav {
        flex-direction: row;
    }
}