/**
 * Footer
 *
 * Bestand:
 * assets/css/06-footer.css
 */


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

.mvd-site-footer,
.mvd-site-footer * {
    box-sizing: border-box;
}

.mvd-site-footer {
    width: 100%;
    color: rgba(255, 255, 255, 0.72);
    background: var(--mvd-dark, #172033);
}

.mvd-site-footer__main {
    padding: 64px 0 54px;
}

.mvd-site-footer__grid {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.35fr)
        minmax(150px, 0.65fr)
        minmax(280px, 1fr);
    gap: 70px;
    align-items: start;
}


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

.mvd-footer-brand {
    min-width: 0;
}

.mvd-footer-brand__logo {
    display: inline-flex;
    align-items: center;
    max-width: 280px;
    margin-bottom: 22px;
    padding: 14px 17px;
    background: #ffffff;
    border-radius: 8px;
}

.mvd-footer-brand__logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.mvd-footer-brand__logo .custom-logo {
    display: block;
    width: auto;
    max-width: 235px;
    max-height: 62px;
    object-fit: contain;
}

.mvd-footer-brand__fallback {
    color: var(--mvd-blue, #183871);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
}

.mvd-footer-brand__description {
    max-width: 510px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.87rem;
    line-height: 1.75;
}

.mvd-footer-request-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 45px;
    padding: 10px 18px;
    color: var(--mvd-blue-dark, #102752);
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 750;
    line-height: 1.4;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.mvd-footer-request-button:hover,
.mvd-footer-request-button:focus-visible {
    color: var(--mvd-blue-dark, #102752);
    background: #eef1f5;
    border-color: #eef1f5;
    transform: translateY(-1px);
    outline: none;
}


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

.mvd-footer-heading {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


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

.mvd-footer-navigation__list {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mvd-footer-navigation__item {
    margin: 0;
    padding: 0;
}

.mvd-footer-navigation__link {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.84rem;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.mvd-footer-navigation__link::before {
    width: 5px;
    height: 5px;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    content: "";
    transition: background-color 180ms ease;
}

.mvd-footer-navigation__link:hover,
.mvd-footer-navigation__link:focus-visible {
    color: #ffffff;
    transform: translateX(3px);
    outline: none;
}

.mvd-footer-navigation__link:hover::before,
.mvd-footer-navigation__link:focus-visible::before {
    background: #ffffff;
}


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

.mvd-footer-contact__list {
    display: grid;
    gap: 19px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mvd-footer-contact__item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    margin: 0;
    padding: 0;
}

.mvd-footer-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.mvd-footer-contact__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

.mvd-footer-contact__label {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.64rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.mvd-footer-contact__content a,
.mvd-footer-contact__content strong {
    color: #ffffff;
    font-size: 0.87rem;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.mvd-footer-contact__content a:hover,
.mvd-footer-contact__content a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
    outline: none;
}

.mvd-footer-contact__content small,
.mvd-footer-contact__content > span:last-child {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.72rem;
    line-height: 1.5;
}


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

.mvd-site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.mvd-site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 70px;
    padding: 17px 0;
}

.mvd-footer-copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.69rem;
    line-height: 1.5;
}

.mvd-footer-copyright__separator {
    color: rgba(255, 255, 255, 0.22);
}

.mvd-footer-legal__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mvd-footer-legal__list li {
    margin: 0;
    padding: 0;
}

.mvd-footer-legal__list a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.69rem;
    line-height: 1.5;
    text-decoration: none;
}

.mvd-footer-legal__list a:hover,
.mvd-footer-legal__list a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
    outline: none;
}


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

@media (max-width: 1000px) {

    .mvd-site-footer__grid {
        grid-template-columns:
            minmax(260px, 1fr)
            minmax(240px, 1fr);
        gap: 48px;
    }

    .mvd-footer-navigation {
        grid-row: 2;
    }

}

@media (max-width: 700px) {

    .mvd-site-footer__main {
        padding: 50px 0 42px;
    }

    .mvd-site-footer__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .mvd-footer-navigation {
        grid-row: auto;
    }

    .mvd-footer-brand__logo {
        max-width: 250px;
    }

    .mvd-footer-brand__logo .custom-logo {
        max-width: 210px;
        max-height: 56px;
    }

    .mvd-site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 13px;
        min-height: auto;
        padding: 22px 0;
    }

    .mvd-footer-legal__list {
        justify-content: flex-start;
    }

}

@media (max-width: 420px) {

    .mvd-footer-brand__logo {
        width: 100%;
        max-width: 230px;
        padding: 12px 14px;
    }

    .mvd-footer-brand__logo .custom-logo {
        max-width: 195px;
    }

    .mvd-footer-request-button {
        width: 100%;
        max-width: 260px;
    }

    .mvd-footer-copyright__separator {
        display: none;
    }

    .mvd-footer-copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

}