@media only screen and (max-width: 950px) {
    #rp {
        display: none;
    }

    #seventyfive {
        position: fixed;
        right: 2.2vw;
        top: 50px;
        z-index: 999;
        width: 150px;
    }

    #cls {
        position: fixed;
        right: 5vw;
        top: 160px;
        z-index: 999;
        color: #e70000;
        font-size: 30px
    }
}

/* Landscape */
@media screen and (min-width: 600px) and (max-width: 1024px) and (orientation: portrait) {
    .brand_color {
        padding-top: 50px;
    }
  }

  /* Portrait */
  @media screen and (max-width: 1180px) and (orientation: landscape) {
    .brand_color {
        padding-top: 30px;
    }
  }

