/* !- Fonts */
/* !- Sizes */
/* !- Spaces */
/* !- Layout breakpoints and spacing */
/* !- Text and Image */
.block-text-and-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  padding-bottom: 24px;
}

.text-and-image-col {
  display: flex;
  height: 100%;
}

.text-col {
  align-self: center;
}

.image-col {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 366px;
  border-radius: 8px;
}

@media screen and (max-width: 900px) {
  .block-text-and-image {
    display: flex;
    flex-direction: column;
  }
  .block-text-and-image.flip-order {
    display: flex;
    flex-direction: column-reverse;
  }
}

/*# sourceMappingURL=style.css.map */
