/* ===========================
   Footer
   =========================== */

.footer-section {
    background: #faf9ff;
    border-top:
        1px solid rgba(108,61,214,.08);
    padding-top: 60px;
    padding-bottom: 30px;
}

/* ===========================
   Logo
   =========================== */

.footer-logo {
    max-height: 60px;
    width: auto;
}

.footer-description {
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.7;
}

/* ===========================
   Titles
   =========================== */

.footer-title {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===========================
   Links
   =========================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .75rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: .3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* ===========================
   Contact
   =========================== */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 2px;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* ===========================
   Divider
   =========================== */

.footer-divider {
    opacity: .1;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* ===========================
   Copyright
   =========================== */

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: .9rem;
}

/* ===========================
   Footer CTA
   =========================== */

.footer-cta {
    background:
        linear-gradient(
            135deg,
            rgba(108,61,214,.04),
            rgba(232,62,140,.04)
        );
    border:
        1px solid rgba(108,61,214,.08);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 30px;
}

.footer-cta-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: .5rem;
}

.footer-cta-text {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
    .footer-section {

        text-align: center;
    }
    .footer-description {

        max-width: 100%;
    }
    .footer-contact li {

        justify-content: center;
    }
    .footer-title {

        margin-top: 1rem;
    }
}