/* ==========================================
   Header
========================================== */

.mmi-header {
    background: #ffffff;
    width: 100%;
    margin: 0;
    padding: 0;
}

.mmi-header__container {
    width: 100%;
    padding: 2px 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mmi-header__logo {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
}

.mmi-header__logo img {
    display: block;
    width: 180px;
    height: auto;
}

.mmi-header__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-color);
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 17px;
    line-height: 29px;
    font-weight: 700;
    border-radius: 999px;
    padding: 6px 20px;
    min-height: 40px;
    white-space: nowrap;
}

.mmi-header__phone:hover,
.mmi-header__phone:focus,
.mmi-header__phone:active,
.mmi-header__phone:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.mmi-header__phone-icon {
    display: none;
}

/* ==========================================
   Guarantee Section
========================================== */

.mmi-guarantee {
    background: #f3f3f3;
    padding: 40px 24px;
    font-family: 'Kumbh Sans', sans-serif;
    text-align: center;
}

.mmi-guarantee__title {
    color: #003a70;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin: 0 0 24px;
}

.mmi-guarantee__items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mmi-guarantee__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.mmi-guarantee__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #2d8b57;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

/* ==========================================
   Footer
========================================== */

.mmi-footer {
    background: #003a70;
    color: #ffffff;
    font-family: 'Kumbh Sans', sans-serif;
    padding: 28px 44px;
}

.mmi-footer__inner {
    max-width: 98%;
    margin: 0 auto;
}

.mmi-footer__links,
.mmi-footer__content {
    width: 320px;
    margin-left: auto;
}

.mmi-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 22px;
}

.mmi-footer__links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
}

.mmi-footer__links a:hover {
    text-decoration: underline;
}

.mmi-footer__separator {
    margin: 0 8px;
    color: #ffffff;
}

.mmi-footer__content {
    text-align: left;
    font-size: 12px;
    line-height: 22px;
    color: #c7d5e5;
}

.mmi-footer__content p {
    margin: 0 0 12px;
    font-weight: 300;
    color: #c7d5e5;
}

.mmi-footer__content p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Mobile
========================================== */

@media (max-width: 767px) {

    /* Header */

    .mmi-header__container {
        padding: 14px 16px;
    }

    .mmi-header__logo img {
        width: 120px;
    }

    .mmi-header__phone {
        background: transparent;
        color: #1d3f7a !important;
        padding: 0;
        min-height: auto;
        font-size: 14px;
        line-height: 24px;
    }

    .mmi-header__phone,
    .mmi-header__phone:hover,
    .mmi-header__phone:focus,
    .mmi-header__phone:active,
    .mmi-header__phone:visited {
        color: #1d3f7a !important;
        background: transparent;
    }

    .mmi-header__phone-text {
        display: none;
    }

    .mmi-header__phone-icon {
        display: block;
        width: 24px;
        height: 24px;
        fill: #1d3f7a;
        color: #1d3f7a;
    }

    /* Guarantee */

    .mmi-guarantee {
        text-align: left;
        padding: 32px 24px;
    }

    .mmi-guarantee__title {
        text-align: center;
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 24px;
    }

    .mmi-guarantee__items {
        flex-direction: column;
        gap: 18px;
        align-content: center;
    }

    .mmi-guarantee__item {
        font-size: 14px;
        line-height: 20px;
    }

    /* Footer */

    .mmi-footer {
        padding: 24px 32px;
    }

    .mmi-footer__links,
    .mmi-footer__content {
        width: auto;
        margin-left: 0;
    }

    .mmi-footer__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
        font-size: 10px;
        line-height: 18px;
    }

    .mmi-footer__separator {
        display: none;
    }

    .mmi-footer__content {
        text-align: left;
        font-size: 10px;
        line-height: 18px;
    }

    .mmi-footer__content p {
        margin-bottom: 18px;
    }
}