.footer-social {
    display: flex;
    justify-content: center;
    /*flex-wrap: wrap;*/
    gap: 14px;
    margin-top: 1rem;
    position: relative;
    z-index: 5;
}

.footer-social .social-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #eef2f7;
    color: #111;
    transition: background .15s ease, color .15s ease;
}

.footer-social .social-btn span {
    font-size: 16px;
    line-height: 1;
}

.footer-social .social-btn:hover {
    background: #dbe4ff;
    color: #000;
}

@media (min-width: 1024px) {
    .footer-social {
        justify-content: flex-end;
        margin-left: auto;
        margin-right: 30px;
    }
}
