#footer {
    padding: 64px 0 24px;
    color: #000000;
    border-top: 1px solid #e2e8f0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.footer-flex {
    display: flex;
    flex-direction: column;
}
.footer-flex-content-link {
    color: #666666;
    font-weight: 600;
    transition: color .3s ease;
}
.footer-flex .footer-flex-content {
    color: #000000;
    font-weight: 600;
    
}
.footer-flex .footer-flex-content-link:hover {
    color: #1e87f0;
    text-decoration: none;
}
p.footer-logo-text {
    color: #666666;
}