/* ============================== Group ============================== */

.group {
  width: 100%;
  height: 1240px;
  padding: 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.group__image {
  width: 500px;
  height: 500px;
}

.group__image img {
  width: 400px;
  height: auto;
}

.group__content {
  display: flex;
  flex-direction: column;
  gap: 8vh;
}

/* ========== Tablet (≤1024px) ========== */
@media screen and (max-width: 1024px) {
  .group {
    width: 90vw;
    height: auto;
  }

  .group__image {
    width: 80vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .group__image img {
    width: 320px;
  }
}

/* ========== Mobile (≤768px) ========== */
@media screen and (max-width: 768px) {
  .group {
    height: auto;
    padding: 40px 16px;
  }

  .group__image {
    width: 60vw;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .group__image img {
    width: 70vw;
  }
}

/* ============================== //Group ============================== */
