/* Default: Hide the mobile SVG and show the desktop SVG */
.mobile-image {
  display: none;
}

.desktop-image {
  display: block;
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 768px) {
  .desktop-image {
    display: none;
  }

  .mobile-image {
    display: block;
  }
}
