      /* Taller Phones Landscape */
@media (max-width: 992px) and (orientation: landscape) {
    .logo-style {
      max-width: 150px;
      top: 30px;
      left:30px;
    }
    #a-head {
      top:25%;
      left: 4%;
      width: 55%;    
      font-size: 1.4rem;
    }
    #a-par {
      top: 45%;
      left: 4%;
      width: 55%;
      line-height: 1.2;
      font-size: 0.9rem;
    }
  }
      /* Shorter Phones Landscape */
@media (max-width: 768px) and (orientation: landscape) {
    #a-head {
      font-size: 1.2rem;
    }
    #a-par {
      font-size: 0.8rem;      
    }
  }
/* Taller Phones Portrait */
  @media (max-width: 450px) {
    .logo-style {
        max-width: 150px;
        top: 30px;
        left:30px;
      }   
    .hero-image {
      top:10vh;
      right: 0;
      width: 115%;
    }
    #a-head {
      top: 20%;
      left: 8%;
      width: 46%;    
      font-size: 1.3rem;
    }
    #a-par {
      line-height: 1.4;
      top: 48%;
      left: 8%;
      width: 85%;
      font-size: 1rem;
    }
    }
    /* Shorter Phones Portrait */
    @media (max-width: 450px) and (max-height: 700px) {
    #a-head {
        font-size: 1.2rem;
        }
    #a-par {
        font-size: 0.9rem;
    }    
    }