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

.site-footer {
    border-top: 1px solid #e4e8ef;
    padding-top: 55px;
    background: #fbfdff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 1.3fr 1fr 1fr 1fr 1.35fr;
    gap: 25px;
    padding-bottom: 35px;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-brand>small {
    display: block;
    margin-left: 63px;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: .4px;
    font-size: 11px;
    line-height: 1.35;
}

.footer-brand {
    border-right: 1px solid #e0e5ec;
    padding-right: 25px;
}

.footer-brand p {
    max-width: 200px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.socials a svg {
    width: 15px;
}

svg.twitterX {
    width: 18px !important;
}

.socials a {
    width: 37px;
    height: 37px;
    border: 1px solid #dce3ec;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: bold;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.socials a svg path {
    transition: fill .25s ease;
}

.socials a:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-4px);
}

.socials a:hover svg path {
    fill: #fff !important;
}

.footer-column h4,
.footer-contact h4 {
    font-size: 15px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after,
.footer-contact h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--blue), #06b6d4);
}

.footer-column a {
    display: block;
    color: var(--muted);
    font-size: 12.5px;
    margin: 9px 0;
    transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
    color: var(--blue);
    transform: translateX(3px);
}

.footer-contact {
    border-left: 1px solid #e0e5ec;
    padding-left: 25px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 11.5px;
    margin: 9px 0;
    transition: color .2s ease, transform .2s ease;
}

.footer-contact p:hover {
    color: var(--blue);
    transform: translateX(3px);
}

.footer-contact span {
    color: var(--blue);
    font-size: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    min-height: 55px;
    border-top: 1px solid #e4e8ef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    padding: 16px 0;
}

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

.footer-bottom a {
    transition: color .2s ease;
}

.footer-bottom a:hover {
    color: var(--blue);
}

.footer-bottom img {
    max-width: 30px;
    margin-right: 5px;
    object-fit: cover;
    border-radius: 2px;
}

.footer-bottom>span:nth-of-type(2) {
    display: flex;
    gap: 5px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {

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

    .footer-contact,
    .footer-brand {
        border: 0;
        padding: 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
        border-bottom: 1px solid #e0e5ec;
        padding-bottom: 24px;
        margin-bottom: 6px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 15px 0;
        text-align: center;
    }

    .footer-bottom div {
        gap: 20px;
    }

    .footer-brand p {
        max-width: 95%;
    }
}