/* Media query for DESKTOP size devices: */

@media screen and (min-width: 769px) {
  .articleSupportTop {
    background-image: url("../image/support/background-support.webp");

    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
  }
  .imgSupportDesktop {
    width: 500px;
    height: 400px;
  }

  .articleSupportBottom {
    background-color: white;
    width: 100%;
  }
}

/* Media query for MOBILE size devices: */
@media screen and (max-width: 768px) {
  .articleSupportTop {
    background-image: url("../image/support/background-support.webp");

    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
  }

  .imgSupportDesktop {
    display: none;
  }
  .articleSupportBottom {
    background-color: white;
    width: 100%;
  }
}
