.content {
    min-height: 70vh;
}
.contacts__container {
    max-width: 951px;
    padding-block: 57px;
    padding-bottom: 70px;

    color: var(--dark-color-1);
}
.contacts__title {
    font-family: 'Faberge';
    font-size: 37px;
    font-weight: normal;
    text-align: center;
}
.contacts__img-name {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    margin-top: 44px;
}
.contacts__lists {
    display: flex;
    justify-content: space-between;
}
.contacts__photo {
    width: 82px;
    height: 82px;
    border-radius: 100%;
}
.contacts__name {
    font-family: 'Faberge';
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    margin-left: 12px;
}
.contacts__info-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contacts__lists {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 27px
}
.contacts__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;

    font-size: 25px;
}
.contacts__social-btns-item-icon path {
    fill: var(--dark-color-1);
    stroke: var(--dark-color-1);
}
.contacts__info-item-text {
    margin-left: 10px;
}
.contacts__info-item-icon path {
    stroke: var(--dark-color-1)
}
.contacts__link:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.2s;
}
.contacts__link {
    transition: 0.5s ease-in-out;
}
.contacts__social-btns {
    display: flex;
    column-gap: 17px;
    row-gap: 23px;
    flex-wrap: wrap;

    max-width: 42%;
    min-width: min-content
}
.contacts__social-btns-item-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;
}

.contacts__social-btns-item-icon path{
    stroke: var(--dark-color-1);
    fill: var(--dark-color-1);
}
.contacts__social_btns-item-link {
    display: flex;
    align-items: center;
    justify-content: center;

    border-width: 1px;
    border-color: var(--dark-color-1);
    border-style: solid;
    border-radius: 26px;

    height: 52px;
    width: 120px;
}
.contacts__social-btns-item:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: 0.2s;
}
.contacts__social-btns-item {
    transition: 0.5s ease-in-out;
}
@media (max-width: 1196px) {
    .contacts__container {
        padding-bottom: 56px;
    }
    .contacts__img-name {
        justify-content: center;
        margin-top: 39px;
    }
    .contacts__lists {
        flex-direction: column;
        align-items: center;
        margin-top: 21px;
    }
    .contacts__social-btns {
        width: 100%;
        column-gap: 18px;
        justify-content: center;
        row-gap: 15px;

        max-width: none;
        margin-top: 39px;
    }
    .contacts__social_btns-item-link {
        height: 64px;
        width: 150px;
        border-radius: 75px;
    }
    .contacts__social-btns-item-icon {
        width: 42px;
        height: 42px;
    }
    .contacts__info {
        font-size: 20px;
        gap: 11px;
    }
    .contacts__info-item-text {
        margin-left: 10px;
    }
    .contacts__info-item-icon {
        width: 24px;
        height: 24px;
    }
    .contacts__info-item-icon-mail {
        width: 20px;
        height: 20px;
    }
    .contacts__name {
        font-size: 20px;
        margin-left: 8px;
    }
    .contacts__photo {
        width: 64px;
        height: 64px;
    }
    .contacts__link:hover {
        transform: scale(0.975);
    }
    .contacts__social-btns-item:hover {
        transform: scale(0.95);
    }
}