.site-footer {
    background-color: #f8fafc;
    border-top: 1px solid #e5eaf0;
    padding: 70px 0 0;
    color: #5e6875;
}

.site-footer .footer-row {
    row-gap: 40px;
}

.site-footer .footer-column {
    margin-bottom: 30px;
}

.site-footer .footer-brand h2 {
    margin-bottom: 18px;
    color: #14213d;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.site-footer h3 {
    position: relative;
    margin-bottom: 22px;
    padding-bottom: 12px;
    color: #14213d;
    font-size: 18px;
    font-weight: 700;
}

.site-footer h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 3px;
    background-color: #0066cc;
    border-radius: 20px;
}

.site-footer address {
    margin-bottom: 22px;
    color: #687384;
    font-size: 16px;
    font-style: normal;
    line-height: 1.8;
}

.site-footer .footer-contact {
    margin-bottom: 24px;
    color: #687384;
    font-size: 15px;
    line-height: 1.9;
}

.site-footer .footer-contact strong {
    color: #14213d;
}

.site-footer a {
    color: #687384;
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.site-footer a:hover {
    color: #0066cc;
    text-decoration: none;
}

.site-footer .footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .footer-links li {
    margin-bottom: 13px;
}

.site-footer .footer-links a {
    position: relative;
    display: inline-block;
    padding-left: 0;
    font-size: 16px;
    font-weight: 500;
}

.site-footer .footer-links a::before {
    content: "›";
    position: absolute;
    left: -14px;
    opacity: 0;
    color: #0066cc;
    transition:
        opacity 0.25s ease,
        left 0.25s ease;
}

.site-footer .footer-links a:hover {
    padding-left: 14px;
}

.site-footer .footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

.site-footer .instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #e1306c;
    font-size: 18px;
    font-weight: 600;
}

.site-footer .instagram-link i {
    font-size: 23px;
}

.site-footer .instagram-link:hover {
    color: #bd1e59;
    transform: translateY(-2px);
}

.site-footer .footer-bottom {
    margin-top: 25px;
    padding: 22px 0;
    border-top: 1px solid #dfe5ec;
    text-align: center;
}

.site-footer .footer-bottom p {
    margin: 0;
    color: #788391;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 55px;
    }

    .site-footer .footer-brand h2 {
        font-size: 27px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .site-footer {
        padding: 45px 20px 0;
        text-align: left;
    }

    .site-footer .footer-column {
        margin-bottom: 20px;
    }

    .site-footer .footer-brand h2 {
        font-size: 25px;
    }

    .site-footer h3 {
        margin-top: 10px;
    }

    .site-footer .footer-bottom {
        margin-top: 10px;
    }
}