ия купить Элек.footer {
    padding: 48px 0 32px;
    background: #f5f5f5;
}

.footer .container {
    margin: 0 auto;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer_block_with_logo {
    width: 20%;
}

.footer_block_link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 8px;
    column-gap: 60px;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #d9d9d9;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #8d8d8d;
    margin-top: 32px;
}

.footer_block_title {
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #323232;
}

.footer_block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_block a,
.footer_block_text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #323232;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.footer_block a:hover {
    color: #5ab563;
}

.footer_block_time {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #898989;
}

.footer_logo {
    width: 102px;
    margin-bottom: 16px;
}

.footer_social_media {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.footer_social_media_item {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #5ab563;
    border: 1px solid #5ab563;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.footer_social_media_item:hover {
    background: #fff;
}

.footer_social_media_item:hover img {
    filter: brightness(0) saturate(100%) invert(60%) sepia(62%) saturate(361%) hue-rotate(75deg) brightness(93%) contrast(88%);
}

.n_one {
    grid-area: n_one;
}

.n_two {
    grid-area: n_two;
}

.n_three {
    grid-area: n_three;
}

.n_four {
    grid-area: n_four;
}

.n_five {
    grid-area: n_five;
}

.n_six {
    grid-area: n_six;
}

@media screen and (max-width: 1080px) {
    .footer_bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer_top {
        display: grid;
        grid-template-areas:
            "n_one n_six"
            "n_two n_two"
            "n_four n_five";
        row-gap: 30px;
    }

    .footer_block_with_logo {
        width: 60%;
    }

    .footer_block_link {
        column-gap: 260px;
    }
}

@media screen and (max-width: 672px) {
    .footer_top {
        row-gap: 24px;
        grid-template-areas:
            "n_one n_one"
            "n_two n_two"
            "n_four n_four"
            "n_five n_six";
    }

    .footer_block_with_logo {
        width: 90%;
    }

    .footer_block_link {
        column-gap: 40px;
    }
}
