.block-joinus__wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 32px 24px;
  background-color: var(--color-primary--1);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 15px;

  z-index: 5;
}

.block-joinus__wrapper > .col1 > img {
  width: 100%;
  height: auto;
  transform: rotate(-2.292deg);
  border-radius: 10px;
  border: 10px solid #FFF;
}

.block-joinus__wrapper > .col2 {
  width: 100%;
}

@media (min-width: 999px) {
  .block-joinus__wrapper {
    margin-top: 90px;
    margin-bottom: 90px;
    padding: 64px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 32px;
  }

  .block-joinus__wrapper > .col2 {
    padding: 0 32px;
    max-width: 600px;
  }
}

