/* =========================
   FOOTER
========================= */

.footer{
    padding: 80px 0 60px;

    position: relative;

    z-index: 10;
}

.footer-wrapper{
    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;
}

.footer-brand{
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 24px;
}

/* =========================
   FOOTER LOGO
========================= */

.footer-logo{
    width: 90px;

    height: auto;

    object-fit: contain;
}

/* =========================
   FOOTER TEXT
========================= */

.footer-text{
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-text h3{
    font-size: 28px;

    font-weight: 800;

    letter-spacing: 0.5px;

    background: linear-gradient(
        90deg,
        #58d5ff,
        #ffffff
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    color: transparent;
}

.footer-text p{
    font-size: 15px;

    font-weight: 500;

    background: linear-gradient(
        90deg,
        #58d5ff,
        #ffffff
    );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    color: transparent;

    opacity: 0.9;
}