.footer {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    padding: 37px 12px;

    @media (min-width: 768px) {
        background-color: #1D1D1D;
        padding: 100px 8vw 43px;
        position: relative;
        overflow: hidden;
    }

    @media (min-width: 1200px) {
        padding: 152px 12.5vw 43px;
    }
}

.footer::before {
    @media (min-width: 768px) {
        content: "";
        z-index: 1;
        position: absolute;
        background-image: radial-gradient(ellipse 50% 50%, #282828, transparent);
        top: -50%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 400px;
    }
}

.footer__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    z-index: 2;
    position: relative;

    @media (min-width: 768px) {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
}

.footer__contacts {
    display: flex;
    margin-top: 26px;
    align-items: center;

    @media (min-width: 768px) {
        margin-top: 40px;
    }
}

.contacts__hand {
    width: 30px;
    height: 30px;

    @media (min-width: 768px) {
        width: 39px;
        height: 42px;
    }
}

.contacts__data {
    color: #ADAAAE;
    font-size: 14px;
    line-height: 20px;
    margin-left: 15px;

    @media (min-width: 768px) {
        font-size: 20px;
        line-height: 28px;
        margin-left: 25px;
    }
}

.footer__data {
    color: #DBDBDB !important;
    font-size: 12px;
    line-height: 24px;

    @media (min-width: 768px) {
        font-size: 14px;
    }
}

.data__company-name {
    margin-bottom: 20px;
    font-size: 16px;

    @media (min-width: 768px) {
        font-size: 18px;
    }
}

.footer__socials {
    display: flex;
    justify-content: flex-end;
    color: #A09D9D;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    align-items: center;

    @media (min-width: 768px) {
        font-size: 16px;
        line-height: 24px;
    }
}

.socials__fb {
    width: 31px;
    height: 30px;
    margin-right: 15px;

    @media (min-width: 768px) {
        width: 45px;
        height: 44px;
    }
}

.footer__sub {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    margin-top: 37px;
    color: #EAE7E7;
    font-size: 12px;
    line-height: 24px;
    z-index: 2;
    position: relative;

    @media (min-width: 768px) {
        flex-direction: row;
        margin-top: 87px;
    }
}

.footer__link {
    color: #EAE7E7;
}
