/* responsive text queries */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 26px;  
  }
  h2 {
    font-size: 24px;  
  }
  h3 {
    font-size: 22px;  
  }
  h4 {
    font-size: 18px;  
  }
  h5 {
    font-size: 16px;  
  } 
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 24px;  
  }
  h2 {
    font-size: 20px;  
  }
  h3 {
    font-size: 18px;  
  }
  h4 {
    font-size: 16px;  
  }
  h5 {
    font-size: 14px;  
  }  
}