/* Media Query for Services Landing Page */
@media only screen and (min-width: 320px) and (max-width: 480px){
  #desktop {
      display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width : 1024px){
  #desktop {
      display: none;
  }
  #mobile {
      margin-top: 30%;
  }
}
@media only screen and (min-width: 540px) and (max-width: 720px){
  #mobile {
      display: none;
  }
}
@media only screen  and (min-width : 1224px){
  #mobile {
      display: none;
  }
}