.fixed-wrapper_phone {
    display: none;
}

@media screen and (max-width: 991px) {

    .fixed-wrapper_phone {
        position: fixed;
        padding: 8px;
        display: flex;
        justify-content: center;
        width: 100%;
        bottom: 0;
        background-color: #272b31;
        z-index: 999;
        color: #fff;
    }

    .fixed-wrapper_phone a {
        gap: 5px;
        width: 50%;
        height: 35px;
        color: #FFFFFF;
        background-color: var(--title-color);
        display: flex;
        align-items: center;
        border: 1px solid #212121;
        text-transform: uppercase;
        font-size: 14px;
        line-height: 17px;
        letter-spacing: .02em;
        justify-content: center;
    }
}

