/**
 * Image text
 */

.image-text {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.image-text--bottom {
  flex-direction: column-reverse;
  margin-bottom: 40px;

  .image-text__image {
    justify-content: center;
  }
}

.image-text--right {
  flex-direction: column-reverse;
}
.image-text__image {
  display: flex;
  justify-content: center;
}
.image-text__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.image-text__text h2 {
  margin-top: 0;
}
@media all and (min-width: 600px) {
  .image-text__wrapper {
    padding: 0 2rem;
  }

  .image-text--bottom {
    .image-text__wrapper {
      padding: 0;
    }
  }

}
@media all and (min-width: 900px) {
  .image-text {
    flex-direction: row;
  }
  .image-text--bottom {
    flex-direction: column-reverse;
    margin-bottom: 80px;



    .image-text__image {
      justify-content: flex-start;
    }
  }
  .image-text--right {
    flex-direction: row-reverse;
  }
  .image-text__image {
    width: 200%;
  }
  .image-text__wrapper {
    justify-content: center;
  }
}
@media all and (min-width: 1200px) {
  .image-text__image {
    width: 100%;
  }

  .image-text_size--large .image-text__image {
    width: 449%;
  }

  .layout--twocol .image-text--bottom {
    max-width: 404px;
    width: 100%;
    margin-top: 100px;
  }

}

.image-text__text--orange {
  color : var(--color-primary--1);
}
