.social-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 80px;
}

.social-bottom .social-bottom__title {
    text-align: center;
}

.social-bottom .social__items--type-color .social__link {
    background-color: rgba(136, 136, 136, 0.1);
}

.social-bottom .social__items--type-color .social__item {
    justify-content: center;
    gap: 10px;
}

.social-bottom .social__items .social__link {
    border-radius: 50%;
}

.social-bottom .social__items.social__items--md .social__link {
    width: 60px;
    height: 60px;
}

.social-bottom .social__link-name {
    color: var(--white_text_black);
}

.social-bottom .social__item:hover .social__link-name {
    color: var(--fill_dark_lite_hover);
}

.social-bottom .social__items .social__link:before {
    background-image: url("images/social_dark.svg?1");
}

.social-bottom .social__items .social__item:hover .social__link:before {
    background-image: url("/bitrix/templates/aspro-lite/images/svg/social.svg?1");
}

@media (max-width: 750px) {
    .social-bottom {
        gap: 0;
    }

    .social-bottom .social__items.social__items--md.social__items--grid {
        grid-template-columns: 1fr;
    }

    .social-bottom .social__items.social__items--md .social__link {
        width: 40px;
        height: 40px;
    }

    .social-bottom .social__items--type-color .social__item {
        justify-content: flex-start;
    }
}