.partnership {
  width: 100%;
}

.partnership .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.partnership_row {
  width: 100%;
}

.partnership h2 {
  width: 100%;
  max-width: 407px;
  height: 100%;
  position: sticky;
  top: 60px;
  left: 0;
}

.partnership_desc {
  width: calc(100% - 407px - 24px);
  max-width: 740px;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 992px) {
  .partnership .container {
    gap: 16px;
  }

  .partnership_row {
    margin-bottom: 8px;
  }

  .partnership h2 {
    position: static;
  }

  .partnership_desc {
    width: 100%;
    max-width: 100%;
  }
}
