.phone-box {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 1.5%;
    width: 160px;
    -webkit-box-shadow: 1px 2px 10px rgba(0,0,0,.5);
    -moz-box-shadow: 1px 2px 10px rgba(0,0,0,.5);
    box-shadow: 1px 2px 10px rgba(0,0,0,.5);
    text-align: center
}

.number span {
    text-decoration: none;
    color: #fff
}

.text-box {
    width: 160px;
    background: #ffd400;
    padding: 6px;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    border-bottom: 1px solid #ccc
}

.number {
    width: 160px;
    background: #00bbb7;
    padding: 6px;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    font-size: 16px
}

.d-none-deskt {
    display: block
}

.d-none-mobile {
    display: none
}

@media(max-width:1360px) {
    .phone-box {
        position: fixed;
        z-index: 5;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
        -webkit-box-shadow: 1px 2px 10px rgba(0,0,0,.5);
        -moz-box-shadow: 1px 2px 10px rgba(0,0,0,.5);
        box-shadow: 1px 2px 10px rgba(0,0,0,.5);
        text-align: center
    }

    .d-none-mobile {
        display: block
    }

    .d-none-deskt {
        display: none
    }

    .number span {
        text-decoration: none;
        color: #fff
    }

    .text-box {
        width: 100%;
        background: #ffd400;
        padding: 6px;
        text-transform: uppercase;
        color: #000;
        font-weight: 700;
        font-size: 12px;
        border-bottom: 1px solid #ccc
    }

    .number {
        display: flex;
        width: 100%;
        background: #00bbb7;
        padding: 6px;
        text-transform: uppercase;
        color: #000;
        font-weight: 700;
        font-size: 20px
    }

    body {
        margin-top: 50px
    }

    .left_phone {
        width: 40%;
        height: 100%;
        flex: 0 0 40%;
        text-align: center
    }

    .center_phone {
        width: 20%;
        height: 100%;
        flex: 0 0 20%;
        text-align: center;
        margin: 0 40px
    }

    .right_phone {
        width: 40%;
        height: 100%;
        flex: 0 0 40%;
        text-align: center
    }
}