.footer-contact__phone {
    display: flex;
    flex-direction: column;
    margin-top: 33px;
    gap: 12px;
}
.footer-contacts-link {
    color: var(--white);
    font-family: var(--inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    display: flex;
    gap: 19px;
}
.footer-contacts-link:hover {opacity: 0.7;}
.footer-contacts-link__mail::before,
.footer-contacts-link__phone::before {
    content: '';
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    display: block;
}
.footer-contacts-link__mail::before {
    background-image: url("../../../images/footer/email.svg");
}
.footer-contacts-link__phone::before {
    background-image: url("../../../images/footer/phone.svg");
}

@media (max-width: 768px) {
    .footer-contact__phone {
        padding: 26px 0 24px;
        border-bottom: 1px solid #2B3749;
        margin: 0;
    }
}
