.footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    background: rgba(244, 244, 244, 1);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .footer-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.footer .footer-main .footer-left {
    min-width: 700px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}
.footer .footer-main .footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}
.footer .footer-main .footer-right a img {
    width: 32px;
    height: 32px;
}
.divider {
    display: none;
    width: 100%;
    height: 1px;
    background: #fff;
}

@media screen and (max-width: 992px) {
    .footer {
        display: none;
    }
    .footer .footer-main {
        width: 100%;
        flex-direction: column-reverse;
        gap: 20px;
    }
    .footer .footer-main .footer-left {
        min-width: 0;
        max-width: 500px;
        font-size: 15px;
        text-align: center;
    }
    .divider  {
        display: block;

    }
}