.Image-desktop {
    display: flex;
    flex: 1 1;
    max-width: 100%;
}
.Image-mobile {
  display: none;
}

/*--- Tablet and Mobile ---*/
@media (max-width: 767px) {
  .Image-desktop {
    display: none;
  }
  .Image-mobile {
    display: initial;
    width: 100%;
  }
}
