.footer {
    background: #020617;
    color: rgba(255,255,255,.7);
    padding: 80px 20px 30px;
    border-top: 1px solid rgba(255,255,255,.05);
}

/* .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
} */

.footer-grid {
    display: grid;
    grid-template-columns: 1fr .9fr 1fr;
    gap: 40px;
}

.footer-links {
    justify-self: center;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 14px;
}

.footer-brand .logo-img {    
    width: auto;
    max-width: 100%;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: .25s;
}

.footer a:hover {
    color: var(--bs-primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

.social-links a:hover {
    background: rgba(255,140,83,.15);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.05);
    font-size: 13px;
}

.developer-credit {
  display: block;
  font-size: 0.85rem;
  margin-top: 5px;
  opacity: 0.8;
}

.developer-credit a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.developer-credit a:hover {
  text-decoration: underline;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}
