:root {
    --mf-text-light: #ffffff;
}

.main-footer {
    position: relative;
    overflow: hidden;
    width: 100%;
    color: var(--mf-text-light);
}

.main-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-footer__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-footer__container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: max(40px, 14.583vw) max(24px, 1.25vw) max(40px, 6.25vw)
}

.main-footer__content {
    display: flex;
    flex-direction: column;
}

.main-footer__subtitle {
    font-size: max(14px, 0.833vw);
    line-height: 1.3;
    text-transform: uppercase;
    margin: 0;
    color: var(--color-ebecec);
}

.main-footer__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: max(24px, 4vw) 0;
    width: 100%;
}

.main-footer__brand-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-footer__logo {
    max-width: max(120px, 22vw);
    height: auto;
    margin-bottom: max(16px, 2.5vw);
    display: block;
}

.main-footer__brand-divider {
    display: none;
}

.main-footer__brand-text {
    font-size: max(12px, 0.625vw);
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-direction: column;
}

@media (min-width: 48.01rem) {

    .main-footer__title {
        font-weight: 400;
        margin-bottom: max(5px, 0.25vw);
    }

    .main-footer__content {
        justify-content: flex-end;
        gap: max(100px, 5.208vw);
    }

    .main-footer__divider {
        display: none;
    }

    .main-footer__brand-group {
        flex-direction: row;
        align-items: center;
        gap: max(16px, 0.938vw);
    }

    .main-footer__logo {
        width: max(185px, 9.635vw);
        margin-bottom: 0;
    }

    .main-footer__brand-divider {
        display: block;
        width: 1px;
        height: max(22px, 1.6vw);
        background-color: rgba(255, 255, 255, 0.3);
    }
}