/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 08 2025 | 11:22:57 */
/* Footer */
.main-footer {
    background-color: var(--white);
    padding-top: 6rem;
}
.footer-cta {
    text-align: center;
    border-bottom: none;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.footer-cta::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 4px;
    background: linear-gradient(90deg, #a855f721, var(--brand-purple-dark));
    border-radius: 2px;
}

.footer-cta .logo {
    justify-content: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-dark);
    gap: 0.75rem;
}

.footer-cta .logo .logo-icon-wrapper img {
    height: 36px;
    width: auto;
}

.footer-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    color: var(--brand-dark-blue);
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.footer-social a {
    font-size: 2rem;
    color: var(--brand-dark-blue);
    transition: all .2s ease;
    border: none;
    background: transparent;
}
.footer-social a:hover {
    color: var(--brand-purple);
    transform: translateY(-2px);
}
.footer-links-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    text-align: left;
    max-width: 800px;
}
.footer-col ul li {
    margin-bottom: 1rem;
}
.footer-col a {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--brand-purple);
}
.footer-bottom {
    background-color: #EBE2F9;
    padding: 1rem 0;
    color: #25254e;
    font-size: 0.9rem;
    margin-bottom: 50px;
    margin-left: 50px;
    margin-right: 50px;
    border-radius: 20px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
	max-width: 100%;
}

.footer-bottom p {
    max-width: 50%;
    font-weight: 500;
	margin-bottom: 0;
}

@media (max-width: 992px) {
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 2rem;}
    .footer-bottom .container { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-bottom p { max-width: 100%; }
}

@media (max-width: 768px) {
    .footer-links { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 576px) {
    .footer-title { font-size: 2rem; }
}