.footer {
    position: relative;
    z-index: 2;
    background: rgb(248, 248, 248);
}

.footer__container {
    padding-block: 100px;
}

.footer__main {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 30px;
    z-index: 2;
}

.footer__line {
    background-color: rgba(255, 255, 255, 0.50);
    height: 1px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    width: 265px;
    height: 64.774px;
}

.footer__socials {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.footer__description {
    color: rgba(2, 13, 27, 0.5);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25rem;
    /* 142.857% */
    padding-bottom: 30px;
    border-bottom: 1px solid #020D1B33;

    margin-bottom: 50px;
}

.footer__list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.footer__list-link a {
    color: rgba(2, 13, 27, 0.5);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    white-space: nowrap;
}

.footer__circle {
    position: absolute;
    top: -393px;
    left: -630px;
    width: 1000px;
    height: 1000px;
}

@media (max-width: 700px) {

    .footer__container {
        padding-block: 40px;
    }

    .footer__logo {
        width: 178.179px;
        height: 43.553px;
    }

    .footer__top {
        flex-direction: column;
        align-items: center;
        row-gap: 24px;
    }

    .footer__socials-icon {
        width: 36px;
        height: 36px;
    }

    .footer__description {
        margin-bottom: 30px;
    }

    .footer__list {
        column-gap: 15px;
        justify-content: center;
        flex-direction: column;
    }
}