.footer {
    padding: 20px 20px 70px !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #7c3dc7;
}

.footer__container {
    padding-top: 0;
    max-width: 1440px;
    width: 100%;
}

.footer__content {
    position: relative;
    width: 100%;
    background-image: url('/public/static/footer_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 10px;
}
.footer__main {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    padding: 30px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 68px;
}

.footer__row {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.footer__brand-row {
    display: flex;
    align-items: center;
    gap: 19px;
}

.footer__brand-row:nth-child(2) {
    gap: 10px;
}

.footer__brand-logo {
    width: 90px;
    height: 90px;
}

.footer__brand-title {
    font-family: var(--font3);
    font-weight: 400;
    font-size: 24px;
    line-height: 90%;
    text-transform: uppercase;
    color: #383838;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__nav a {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #383838;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 252px;
}

.footer__contact {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #b6a9c5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contact a {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #7d3ec6;
}

.footer__copyright {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    color: #b6a9c5;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__copyright p a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.footer__copyright p:last-child {
    color: #7e3fc5;
}

.footer__robot {
    position: absolute;
    top: 24px;
    right: 40px;
    color: #9e62fe;
}

@media (max-width: 885px) {
    .footer {
        padding: 0 0 50px !important;
    }
    .footer__main {
        padding: 24px;
    }

    .footer__row {
        gap: 50px;
        row-gap: 70px;
    }
}

@media (max-width: 700px) {
    .footer__row {
        flex-wrap: wrap;
    }

    .footer__brand-logo {
        width: 66px;
        height: 66px;
    }

    .footer__contacts {
        max-width: 100%;
        min-width: 100%;
        gap: 16px;
    }

    .footer__main {
        gap: 24px;
    }

    .footer__contact {
        align-items: flex-start;
    }

    .footer__copyright {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .footer__robot {
        left: 50px;
        top: 28%;
        width: fit-content;
    }

    .footer__robot svg {
        width: 64px;
        height: 44px;
    }
}

@media (max-width: 350px) {
    .footer__row {
        gap: 15px;
        row-gap: 30px;
    }
}
