/* Global Footer */

.site-footer {
    background: #26282a;
    color: #ffffff;
    padding: 56px 0 32px 0;
    font-family: var(--font-inter);
}

.site-footer__top {
    padding: 0;
}

.site-footer__top-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "brand"
        "sections";
    gap: 56px;
    align-items: start;
}

.site-footer__brand-column {
    grid-area: brand;
    padding-top: 0.25rem;
}

.site-footer__sections-column {
    grid-area: sections;
}

.site-footer__brand-link {
    display: inline-block;
}

.site-footer__sections {
    display: grid;
    place-items: start;
    grid-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    grid-row-gap: 0;
    row-gap: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.site-footer__section {
    width: 100%;
    /*padding-inline: 32px;*/
    font-size: 0.8125rem;
    line-height: 1.5;
    letter-spacing: 0em;
}

.site-footer__section.is-contact {
    margin-left: auto;
}

.site-footer__brand {
    display: block;
    max-width: 100%;
    height: auto;
    width: 137px;
}

.site-footer__heading {
    color: #fff;
    font: inherit;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-footer__link {
    display: block;
    width: 100%;
    min-height: 28px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.1s;
    text-decoration: none;
}

.site-footer__link.is-contact {
    white-space: normal;
    text-wrap: pretty;
}

.site-footer__text {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #fe5000;
    text-decoration: none;
}

.site-footer__placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.site-footer__social {
    padding-top: 1rem;
    overflow: hidden;
}

.site-footer__social-links {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.site-footer__social-links a {
    color: rgba(255, 255, 255, 0.65);
    width: 14px;
    height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.site-footer__social-links svg {
    width: 100%;
    height: 100%;
}

.site-footer__social-links a:hover,
.site-footer__social-links a:focus {
    color: #fe5000;
}

.site-footer__corecare {
    margin-top: 1.25rem;
}

.site-footer__corecare-logo {
    width: 98px;
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0.65;
    transition: opacity 0.2s ease;
}

.site-footer__corecare a:hover .site-footer__corecare-logo,
.site-footer__corecare a:focus-visible .site-footer__corecare-logo {
    opacity: 1;
}

.site-footer__corecare-bab-iso {
    display: block;
    width: auto;
    max-width: 100%;
    height: 60px;
    margin-top: 12px;
    opacity: 0.8;
}

.site-footer__bottom {
    padding: 0;
}

.site-footer__bottom-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    width: 100%;
    margin: 32px auto 32px auto;
}

.site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-footer__legal-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
}

.site-footer__legal-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.site-footer__legal-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.01em;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    margin: 0;
    padding: 0;
    text-align: unset;
    transition: color 0.1s;
}

.site-footer__legal-menu a:hover,
.site-footer__legal-menu a:focus {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.1s;
}

.site-footer__copyright {
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.01em;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 1150px) {
    .site-footer__sections {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .site-footer__section:first-of-type {
        padding-inline-start: 0;
    }

    .site-footer__section:last-of-type {
        padding-inline-end: 0;
    }
}

@media (max-width: 900px) {
    .site-footer__sections {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-row-gap: 2rem;
    }

    .site-footer__section.is-sectors {
        grid-column: span 2;
        padding-inline-end: 0;
    }

    .site-footer__section.is-sectors .site-footer__links {
        display: grid;
        grid-template-rows: repeat(5, auto);
        grid-auto-flow: column;
        grid-auto-columns: minmax(0, 1fr);
        column-gap: 0rem;
        row-gap: 4px;
    }

    .site-footer__section:nth-of-type(3n) {
        padding-inline-start: 0;
    }
}

@media (max-width: 570px) {
    .site-footer {
        padding-bottom: 24px;
        padding-top: 32px;
    }

    .site-footer__top-grid {
        grid-gap: 24px;
    }

    .site-footer__bottom-divider {
        margin: 24px auto 32px auto;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        gap: 12px;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .site-footer__sections {
        grid-template-columns: 1fr;
        grid-row-gap: 1rem;
    }

    .site-footer__legal-menu {
        width: 100%;
        justify-content: flex-start;
        flex-direction: row;
        align-items: flex-start;
    }

    .site-footer__section.is-sectors .site-footer__links {
        display: flex;
        flex-direction: column;
    }

    .site-footer__section.is-sectors {
        grid-column: span 1;
    }

    .site-footer__heading {
        margin-bottom: 0.25rem;
    }

    .site-footer__links {
        row-gap: 0px;
    }
}
