footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 155px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.footer-contacts-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    /*margin-right: 8%;*/
    /*margin-left: 8%;*/
    border-radius: 15px 15px 0 0;
    background: radial-gradient(at 80% 10%, var(--bg-footer-color2) 6%, var(--bg-footer-color) 80%);
}

.footer-contacts-name {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 27px;
}

.footer-contacts-name-text {
    margin: 0;
}

.footer-contacts-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 23px;
}

.footer-contacts-phone-text {
    margin: 0;
}

.footer-contacts-email {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 23px;
}

.footer-contacts-email-text {
    margin: 0;
}

.footer-contacts-address {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 23px;
    margin-bottom: 27px;
}

.footer-contacts-address-text {
    margin: 0;
}

@media (max-width: 950px) {
    footer {
        display: none;
    }
}