footer {
    position: relative;
    display: block;
    margin-top: 20px;
}
/* =========================================================
   MCR FOOTER
   ========================================================= */

.site-footer {
    clear: both;
    margin: 0;
    padding: 0;
    border: 0;
    background: #192a3d;
    color: #ffffff;
    font-family: "Open Sans", Arial, sans-serif;
}

/* CONTACT AREA
--------------------------------------------------------- */

.site-footer .footer-contact-section {
    padding: 22px 0;
    border-bottom: 1px solid rgba(204, 204, 204, 0.2);
}

.site-footer .footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px 70px;
}

.site-footer .footer-icon-pair {
    display: flex;
    align-items: center;
    min-width: 0;
    color: #ffffff;
}

.site-footer .footer-icon-pair .icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 13px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
}

.site-footer .footer-icon-pair .icon svg {
    display: block;
    fill: #ffffff;
}

.site-footer .footer-icon-pair .text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 21px;
}

.site-footer .footer-icon-pair .text b {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
}

.site-footer .footer-icon-pair .text span,
.site-footer .footer-icon-pair .text a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.site-footer .footer-icon-pair .text a {
    transition: color 0.2s ease;
}

.site-footer .footer-icon-pair .text a:hover {
    color: #2872fa;
}

/* FOOTER MENU
--------------------------------------------------------- */

.site-footer .footer-menu-section {
    padding: 25px 0 20px;
}

.site-footer .footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 0;
}

.site-footer .footer-menu a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    color: #ffffff;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.site-footer .footer-menu a:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%);
}

.site-footer .footer-menu a:hover {
    color: #2872fa;
}

/* COPYRIGHT
--------------------------------------------------------- */

.site-footer .footer-bottom-section {
    border-top: 1px solid rgba(204, 204, 204, 0.2);
}

.site-footer .footer-copyright {
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    text-align: center;
}

/* TABLET
--------------------------------------------------------- */

@media (max-width: 991px) {
    .site-footer .footer-contact-row {
        gap: 22px 40px;
    }

    .site-footer .footer-menu a {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {
    .site-footer .footer-contact-section {
        padding: 20px 0;
    }

    .site-footer .footer-contact-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 17px;
        max-width: 360px;
        margin: 0 auto;
    }

    .site-footer .footer-icon-pair {
        align-items: flex-start;
    }

    .site-footer .footer-icon-pair .icon {
        width: 34px;
        height: 34px;
        margin-right: 11px;
    }

    .site-footer .footer-icon-pair .icon svg {
        width: 14px;
        height: 14px;
    }

    .site-footer .footer-icon-pair .text {
        padding-top: 1px;
        font-size: 13px;
        line-height: 20px;
    }

    .site-footer .footer-icon-pair .text span,
    .site-footer .footer-icon-pair .text a {
        font-size: 14px;
        line-height: 20px;
    }

    .site-footer .footer-menu-section {
        padding: 17px 0 14px;
    }

    .site-footer .footer-menu {
        gap: 0;
    }

    .site-footer .footer-menu a {
        padding: 7px 12px;
        font-size: 13px;
        line-height: 20px;
        text-align: center;
    }

    .site-footer .footer-menu a:not(:last-child)::after {
        height: 14px;
    }

    .site-footer .footer-copyright {
        padding: 18px 0;
        font-size: 12px;
        line-height: 19px;
    }
}

/* VERY SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 420px) {
    .site-footer .footer-menu {
        display: block;
        text-align: center;
    }

    .site-footer .footer-menu a {
        display: block;
        width: 100%;
        padding: 7px 5px;
    }

    .site-footer .footer-menu a::after {
        display: none;
    }
}
