.social_networks {
    background: var(--yellow);
}

.social_networks .container {
    border-radius: 30px;
    background: #fff;
    padding: 36px 0 36px 29px;
}

.social_networks_content {
    display: flex;
    width: 70%;
    justify-content: space-between;
}

.social_networks_inform {
    display: flex;
    gap: 43px;
}

.social_networks_picture {
    width: 72px;
    height: 100%;
}

.social_networks_title {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #333;
    margin-bottom: 12px;
}

.social_networks_text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #767676;
}

.social_networks_icon {
    display: flex;
    gap: 24px;
}
.social_networks_icon img {
    transition: 0.3s;
}

.social_networks_icon img:hover {
    filter: grayscale(1);
}
/*АДАПТИВ*/

@media screen and (max-width: 1500px) {
    .social_networks .container {
        padding: 36px;
    }

    .social_networks_content {
        width: 100%;
        justify-content: space-around;
    }
}

@media screen and (max-width: 950px) {
    .social_networks_content {
        flex-direction: column;
    }

    .social_networks_icon {
        justify-content: center;
        margin-top: 24px;
    }
}

@media screen and (max-width: 650px) {
    .social_networks_inform {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}
