
.banner_social__wrapper {
    padding: 2.3125rem 1.5625rem;
    border-radius: 1.875rem;
    background-color: var(--light-blue-main);
    background-image: url('/wp-content/themes/dv-consulting/assets/images/banner_social_bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 3.75rem;
}

.banner_social__wrapper .h2-title {
    margin-right: 2.5rem;
    max-width: 20.625rem;
}

.banner_social__koazbar {
    font-size: 2.5rem;
    line-height: 96%;
    max-width: 22.5rem;
    width: 100%;
}


.banner_links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.banner_link {
    width: 3.309375rem;
    height: 3.309375rem;
    background-color: var(--IT);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .3s ease;
}
.banner_link.banner_link_black {
    background-color: #000000;
}
.banner_link.banner_link_black:hover {
    background-color: #05142C;
}
.banner_link:hover {
    background-color: var(--IT-hover);
}

.banner_link::before {
    content: '';
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: var(--white);


}

.banner_link_tg::before {
    width: 1.4375rem;
    height: 1.1875rem;
    mask-image: url('/wp-content/themes/dv-consulting/assets/images/icons/tg.svg');
}

.banner_link_vk::before {
    width: 1.6875rem;
    height: 1rem;
    mask-image: url('/wp-content/themes/dv-consulting/assets/images/icons/vk.svg');
}

.banner_link_mail::before {
    width: 1.5rem;
    height: 1.0625rem;
    mask-image: url('/wp-content/themes/dv-consulting/assets/images/icons/mail.svg');
}


@media (max-width: 1125px){
    .banner_social__wrapper {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px){
    .banner_social__wrapper {
        gap: 1.5rem;
    }

    .banner_social__koazbar {
        font-size: 2.25rem;
        line-height: 2.25rem;
        width: 100%;
        max-width: none;
    }

    .banner_social__wrapper .banner_link {
        width: 3.25rem;
        height: 3.25rem;
        border-radius: 0.9375rem;
    }
}