.image-slider {
  width: 227px;
  height: 100px;
}

.desktopView {
  display: block;
}

.mobileView {
  display: none;
}

@media only screen and (max-width: 768px) {
  .width50 {
    width: 50%;
  }

  .image-slider {
    width: 152px;
    height: 67px;
  }

  .desktopView {
    display: none !important;
  }

  .mobileView {
    display: flex;
    justify-content: center;
  }
}