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

.site-footer {
    width: 100%;
    padding: 50px 24px 24px;
    background: #0f172a;
    color: #ffffff;
}

.site-footer .footer-grid,
.site-footer .footer-bottom {
    width: 100%;
    max-width: 1180px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px;
}

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

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-grid a,
.footer-grid p {
    margin: 0;
    color: #aebbd0;
    font-size: 0.74rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 35px !important;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9eacc1;
    font-size: 0.7rem;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1050px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:700px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:18px;
    }

    .footer-bottom div{
        flex-wrap:wrap;
        gap:15px;
    }
}
