.footer {
    position: relative;
    z-index: 2;
    padding-block: 100px;
    background-color: #1D1D1D;
}

.footer .container {
    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 {
    max-width: 201px;
    width: 100%;
}

.footer__socials {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.footer__description {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.50);

    margin-bottom: 50px;
}

.footer__list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

.footer__list-link a {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.50);
    text-decoration: none;
    white-space: nowrap;
}

.footer__circle {
    position: absolute;
    top: -393px;
    left: -630px;
    width: 1000px;
    height: 1000px;
}

@media (max-width: 1200px) {
    .footer {
        padding-block: 40px;
    }

    .footer__top {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer__list {
        gap: 70px;
    }
}


@media (max-width: 700px) {

    .footer__top {
        flex-direction: column;
        gap: 20px;
    }

    .footer__socials-icon {
        width: 36px;
        height: 36px;
    }

    .footer__description {
        margin-bottom: 30px;
    }

    .footer__list {
        flex-direction: column;
        gap: 10px;
    }
}