/* ========================================
SITE FOOTER
======================================== */

.site-footer {

    background:
        linear-gradient(
            135deg,
            #071b37 0%,
            #0a2345 50%,
            #071b37 100%
        );

    color: #ffffff;

}


/* ========================================
FOOTER TOP
======================================== */

.site-footer__top {

    padding-top: 36px;

}


/* ========================================
FOOTER CTA
======================================== */

.site-footer__cta {

    min-height: 168px;

    padding:
        32px
        44px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border: 1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.025);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.04);

}


/* ========================================
CTA CONTENT
======================================== */

.site-footer__cta-content {

    text-align: right;

}


.site-footer__cta-title {

    margin-bottom: 10px;

    font-size: 32px;

    font-weight: 700;

    color: #ffffff;

}


.site-footer__cta-description {

    font-size: 16px;

    line-height: 2;

    color:
        rgba(255, 255, 255, 0.65);

}


/* ========================================
CTA BUTTON
======================================== */

.site-footer__cta-button {

    min-width: 290px;

    min-height: 62px;

    padding:
        0
        30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    font-size: 16px;

    font-weight: 700;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff7a18,
            #ff5a1f
        );

    box-shadow:
        0 10px 25px
        rgba(255, 102, 25, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.site-footer__cta-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 30px
        rgba(255, 102, 25, 0.32);

}


/* ========================================
FOOTER MAIN
======================================== */

.site-footer__main {

    padding:
        72px
        0
        54px;

}


/* ========================================
FOOTER GRID
======================================== */

.site-footer__grid {

    display: grid;

    grid-template-columns:

        1.2fr
        1fr
        1fr
        1fr;

    gap: 0;

}


/* ========================================
FOOTER BRAND
======================================== */

.site-footer__brand {

    padding-left: 48px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.16);

}


/* ========================================
FOOTER LOGO
======================================== */

.site-footer__logo {

    width: 150px;

    margin-bottom: 24px;

    display: block;

}


.site-footer__logo img {

    width: 100%;

    height: auto;

    object-fit: contain;

}


/* ========================================
CONTACT
======================================== */

.site-footer__contact {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 26px;

}


.site-footer__contact a {

    font-size: 16px;

    color:
        rgba(255, 255, 255, 0.72);

    transition:
        color 0.2s ease;

}


.site-footer__contact a:hover {

    color: #ffffff;

}


/* ========================================
SOCIALS
======================================== */

.site-footer__socials {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

}


.site-footer__social {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    color:
        rgba(255, 255, 255, 0.75);

    background:
        rgba(255, 255, 255, 0.025);

    font-size: 21px;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}


.site-footer__social:hover {

    transform:
        translateY(-3px);

    color: #ffffff;

    border-color:
        rgba(255, 255, 255, 0.3);

    background:
        rgba(255, 255, 255, 0.08);

}


/* ========================================
FOOTER COLUMNS
======================================== */

.site-footer__column {

    padding:
        8px
        56px;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.16);

}


.site-footer__column:last-child {

    border-left: none;

}


/* ========================================
FOOTER TITLE
======================================== */

.site-footer__title {

    margin-bottom: 28px;

    font-size: 20px;

    font-weight: 700;

    color: #ffffff;

}


/* ========================================
FOOTER LINKS
======================================== */

.site-footer__links {

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.site-footer__links a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    font-size: 15px;

    color:
        rgba(255, 255, 255, 0.7);

    transition:
        color 0.2s ease,
        transform 0.2s ease;

}


/* Arrow */

.site-footer__links a::before {

    content: "\f104";

    font-family:
        "Font Awesome 6 Free";

    font-weight: 900;

    font-size: 13px;

    color: #e27b2e;

}


.site-footer__links a:hover {

    color: #ffffff;

    transform:
        translateX(-4px);

}


/* ========================================
FOOTER BOTTOM
======================================== */

.site-footer__bottom {

    min-height: 84px;

    display: flex;

    align-items: center;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.14);

}


.site-footer__bottom .container {

    text-align: center;

}


.site-footer__bottom p {

    font-size: 15px;

    color:
        rgba(255, 255, 255, 0.65);

}


/* ========================================
RESPONSIVE
======================================== */

@media (max-width: 1100px) {


    .site-footer__grid {

        grid-template-columns:
            1fr
            1fr;

        gap: 45px;

    }


    .site-footer__brand {

        padding-left: 0;

        border-left: none;

    }


    .site-footer__column {

        padding:
            8px
            30px;

    }


}


@media (max-width: 768px) {


    /* CTA */

    .site-footer__top {

        padding-top: 24px;

    }


    .site-footer__cta {

        padding:
            30px
            24px;

        flex-direction: column;

        text-align: center;

    }


    .site-footer__cta-content {

        text-align: center;

    }


    .site-footer__cta-title {

        font-size: 25px;

    }


    .site-footer__cta-description {

        font-size: 14px;

    }


    .site-footer__cta-button {

        width: 100%;

        min-width: auto;

    }


    /* Main */

    .site-footer__main {

        padding:
            55px
            0
            45px;

    }


    .site-footer__grid {

        grid-template-columns:
            1fr
            1fr;

        gap: 35px;

    }


    .site-footer__column {

        padding:
            0
            15px;

        border-left: none;

    }


    .site-footer__title {

        font-size: 18px;

        margin-bottom: 20px;

    }


    .site-footer__links {

        gap: 14px;

    }


    .site-footer__links a {

        font-size: 14px;

    }


}


@media (max-width: 480px) {


    .site-footer__cta {

        border-radius: 16px;

    }


    .site-footer__cta-title {

        font-size: 21px;

    }


    .site-footer__cta-description {

        font-size: 13px;

    }


    .site-footer__cta-button {

        min-height: 56px;

        font-size: 14px;

    }


    .site-footer__grid {

        grid-template-columns:
            1fr;

        gap: 38px;

    }


    .site-footer__brand {

        padding-bottom: 30px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.13);

    }


    .site-footer__column {

        padding: 0;

        text-align: center;

    }


    .site-footer__links {

        align-items: center;

    }


    .site-footer__bottom {

        min-height: 70px;

    }


    .site-footer__bottom p {

        font-size: 13px;

    }

}

.mk-homepage-v2-footer .container {
    width: min(calc(100% - 48px), 1320px);
    margin-inline: auto;
}

.mk-homepage-v2-footer .site-footer__links {
    padding: 0;
    margin: 0;
}

.mk-homepage-v2-footer .site-footer__link-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 18px;
}

.mk-homepage-v2-footer .site-footer__links a.has-icon::before {
    display: none;
}

@media (max-width: 768px) {
    .mk-homepage-v2-footer .container {
        width: min(calc(100% - 32px), 1320px);
    }
}