/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:
    radial-gradient(circle at top right,#312e81 0%,transparent 30%),
    linear-gradient(180deg,#111111,#0a0a0a);

    color:#ffffff;

    border-top:1px solid #2d2d2d;
}

/* =========================================================
   GRID
========================================================= */

.footer-container{
    max-width:1200px;

    margin:auto;

    padding:60px 20px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(230px,1fr));

    gap:40px;
}

/* =========================================================
   LOGO
========================================================= */

.footer-logo{
    height:42px;
    margin-bottom:15px;

    filter:brightness(1.08);
}

/* =========================================================
   TEXT
========================================================= */
.footer-about p,
.footer-col p{
    color:#e4e4e7;

    font-size:14px;

    line-height:1.8;
}

/* =========================================================
   HEADINGS
========================================================= */

.footer-col h4{
    margin-bottom:18px;

    font-size:16px;

    font-weight:700;

    color:#ffffff;

    position:relative;
}

.footer-col h4::after{

    content:'';

    width:35px;

    height:2px;

    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #6366f1
    );

    position:absolute;

    bottom:-6px;

    left:0;
}

/* =========================================================
   LINKS
========================================================= */

.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col li{
    margin-bottom:10px;
}

.footer-col a{
    color:#e4e4e7;


    text-decoration:none;

    font-size:14px;

    transition:.25s ease;
}

.footer-col a:hover{
    color:#ffffff;

    padding-left:6px;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social{
    margin-top:18px;
}

.footer-social a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:40px;
    height:40px;

    margin-right:8px;

    border-radius:50%;

    background:#1f1f1f;

    border:1px solid #2d2d2d;

    color:#ffffff;

    transition:.25s ease;
}

/* SVG */
.footer-social svg{
    width:18px;
    height:18px;

    fill:currentColor;
}

.footer-social a:hover{

    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #6366f1
    );

    border-color:transparent;

    transform:translateY(-3px);

    box-shadow:
    0 8px 20px rgba(139,92,246,.35);
}

/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom{

    text-align:center;

    padding:20px;

    border-top:1px solid #2d2d2d;

    font-size:13px;

    color:#71717a;

    background:#0a0a0a;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .footer-container{
        gap:30px;
        padding:45px 20px;
    }

    .footer-col h4{
        font-size:15px;
    }

    .footer-social a{
        width:38px;
        height:38px;
    }
}