.exe-image{
  padding: 15px;
}

.exe-image img {
  margin: auto;
}

.rounded-image img {
  border-radius: 20px;
}

.desktop-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mobile-img {
  display: none;
}

@media only screen and (max-width: 768px) {
  .desktop-img {
    display: none;
  }

  .mobile-img {
    display: block;
    max-width: 100%;
    height: auto;
  }
}