.item__background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media (min-width: 480px) {
  .background__mobile {
    display: block;
  }
  .background__tablet {
    display: none;
  }
  .background__desktop {
    display: none;
  }
}

@media (min-width: 576px) {
  .background__mobile {
    display: block;
  }
  .background__tablet {
    display: none;
  }
  .background__desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .background__mobile {
    display: none;
  }
  .background__tablet {
    display: block;
  }
  .background__desktop {
    display: none;
  }
}

@media (min-width: 992px) {
  .background__mobile {
    display: none;
  }
  .background__tablet {
    display: block;
  }
  .background__desktop {
    display: none;
  }
}

@media (min-width: 1200px) {
  .background__mobile {
    display: none;
  }
  .background__tablet {
    display: none;
  }
  .background__desktop {
    display: block;
  }
}
/*# sourceMappingURL=custom.css.map */