.footer
{
    background: #0a0f1c;

    padding: 70px 20px 20px;

    color: #fff;
}

.footer-container
{
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    max-width: 1200px;

    margin: 0 auto;
}

.footer-col h3,
.footer-col h4
{
    margin-bottom: 15px;

    color: #fff;
}

.footer-col p,
.footer-col a
{
    color: rgba(255,255,255,.6);

    font-size: 14px;

    text-decoration: none;

    display: block;

    margin-bottom: 8px;
}

.footer-col a:hover
{
    color: #fff;
}

.footer-social
{
    display: flex;

    gap: 10px;
}

.social-icon
{
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: rgba(255,255,255,.05);

    transition: .2s;
}

.social-icon:hover
{
    background: #2563eb;
}

.footer-bottom
{
    margin-top: 40px;

    text-align: center;

    font-size: 13px;

    color: rgba(255,255,255,.4);

    border-top: 1px solid rgba(255,255,255,.05);

    padding-top: 20px;
}


/* =========================================================
RESPONSIVE FOOTER FIX
========================================================= */

/* tablets */
@media (max-width: 1024px)
{
    .footer-container
    {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobile */
@media (max-width: 600px)
{
    .footer-container
    {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-col ul
    {
        padding: 0;
    }

    .footer-col ul li
    {
        list-style: none;
    }

    .footer-social
    {
        justify-content: center;
    }
}