.fix p {
    position: fixed;
    z-index: 1000000;
    top: 50%;
    left: 30px;

    color: #aaa;
    font-size: 10px;
    font-weight: 700;
    writing-mode: vertical-lr;

    transform: translateY(-50%);
}
.fix p:nth-child(1) {
    transform: rotate(180deg);
}
.fix p:nth-child(2) {
    left: auto;
    right: 30px;
}
@media screen and (max-width:1024px) {
    .fix {
        display: none;
    }
}