/**
 * Big image text
 */
 .big-image-text {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
  }
  .big-image-text--right {
    flex-direction: column-reverse;
  }
  .big-image-text__image {
    display: none;
  }
  .big-image-text__wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .big-image-text__wrapper {
    padding: 0;
    width: calc(100% - 3rem);
    margin: 0 auto;
  }
  .big-image-text__text h2 {
    margin-top: 0;
  }
  @media all and (min-width: 600px) {
    .big-image-text__wrapper {
      padding: 0 2rem;
    }
  }
  @media all and (min-width: 900px) {

    .big-image-text__image {
        display: flex;
        justify-content: center;
    }
    .big-image-text {
      flex-direction: row;
    }
    .big-image-text--right {
      flex-direction: row-reverse;
    }

    .big-image-text__wrapper {
      justify-content: center;
      width: 50%;
    }

    .big-image-text__text {
        max-width: 630px;
        width: 100%;
    }
  }