.text-with-background {
  max-width: 1440px;
  margin : 0 auto;
  background-color: var(--color-primary--1);
  border-radius: 20px;
  color: var(--color-white);
}

.twb__wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 16px;
}

.twb__col-one {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
}

.twb__title h2 {
  color: var(--color-white);
  font-weight: 700;
  line-height: 140%; /* 67.2px */
  margin: 0px;
}


.twb__col-two {
  display: flex;
  padding: 16px 32px 16px 16px;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

@media all and (min-width: 750px) {
  .twb__wrapper {
    padding: 48px 32px;
  }

  .twb__col-two {
    padding: 32px 64px 32px 32px;
  }
}

@media all and (min-width: 900px) {
  .twb__wrapper {
    display: grid;
    grid-template-columns: fit-content(463px) auto;
    gap: 28px;
    padding: 48px 32px;
  }

  .twb__col-two {
    padding: 32px 64px 32px 32px;
  }
}


@media all and (min-width: 1300px) {

  .twb__wrapper {
    padding: 64px 123px 64px 121px;
  }

  .twb__col-two {
    padding: 32px 64px 32px 32px;
  }
}
