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

.site-footer {
    /*margin-top: 4rem;*/
    padding: 4.75rem 0 0;

    background: #414242;
    color: #ffffff;

    font-family: "Nunito", sans-serif;
}

/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 1.4rem;

    text-decoration: none;
}

.footer-logo img {
    display: block;

    width: 190px;
    max-width: 100%;
    height: auto;
}

.footer-desc {
    max-width: 320px;

    margin: 0 0 1.6rem;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.75;
}

/* =========================================================
   SOCIAL LINKS
========================================================= */

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;

    font-size: 1rem;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    border-color: var(--hmh-teal);
    background: var(--hmh-teal);
    color: #ffffff;

    transform: translateY(-2px);
}

/* =========================================================
   COLUMN HEADINGS
========================================================= */

.footer-heading {
    position: relative;

    margin: 0 0 1.6rem;
    padding-bottom: 0.8rem;

    color: #ffffff;

    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
}

.footer-heading::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 32px;
    height: 2px;

    border-radius: 999px;

    background: var(--hmh-teal);
}

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

.footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.76);

    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a::before {
    content: "";

    width: 0;
    height: 1px;

    margin-right: 0;

    background: var(--hmh-teal);

    transition:
        width 0.25s ease,
        margin-right 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-links a:hover::before,
.footer-links a:focus-visible::before {
    width: 12px;
    margin-right: 7px;
}

/* =========================================================
   CONTACT
========================================================= */

.footer-contact-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-bottom: 1rem;

    color: rgba(255, 255, 255, 0.76);

    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1.55;
}

.footer-contact-icon {
    flex: 0 0 auto;

    width: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding-top: 2px;

    color: var(--hmh-teal);
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    word-break: break-word;

    transition: color 0.25s ease;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
    color: var(--hmh-teal);
}

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

.footer-bottom {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;

    margin-top: 4rem;
    padding: 1.4rem 0;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);

    font-size: 0.88rem;
    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
    color: var(--hmh-teal);
}

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

@media (max-width: 1199.98px) {

    .site-footer {
        padding-top: 4rem;
    }

    .footer-brand {
        max-width: 100%;
    }

}

@media (max-width: 767.98px) {

    .site-footer {
        margin-top: 3rem;
        padding-top: 3.5rem;
    }

    .footer-logo img {
        width: 165px;
    }

    .footer-heading {
        margin-bottom: 1.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 3rem;
    }

}

@media (max-width: 575.98px) {

    .site-footer {
        padding-top: 3rem;
    }

    .footer-bottom {
        align-items: center;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

}