/*Extra small devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap*/

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  .landing-image {
    background-position:0px 0px !important;
  }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  .landing-image {
    background-position:0px -100px !important;
  }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  .landing-image {
    background-position:0px -200px !important;
  }
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
  .landing-image {
    background-position:0px -200px !important;
  }
}
