/*!********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./blocks/items/image-text/image-text.scss ***!
  \********************************************************************************************************************************************************************************************************/
.image-text {
  background: var(--color-light);
}
.image-text__inner {
  padding: calc(32px + 7rem) 0;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .image-text__inner {
    padding: calc(32px + 4rem) 0;
  }
}
.image-text__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media (max-width: 992px) {
  .image-text__wrapper {
    gap: 3rem 0;
  }
}
.image-text__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .image-text__item {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}
.image-text__item:nth-child(odd) .image-text__image {
  order: 2;
}
@media (max-width: 992px) {
  .image-text__item:nth-child(odd) .image-text__image {
    order: 0;
  }
}
.image-text__item:nth-child(odd) .image-text__text {
  order: 1;
}
@media (max-width: 992px) {
  .image-text__item:nth-child(odd) .image-text__text {
    order: 0;
  }
}
.image-text__image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/0.8;
}
.image-text__image picture,
.image-text__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-text__text {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  max-width: 85%;
}
.image-text__text > * {
  margin: 0;
}
.image-text__title {
  max-width: 85%;
}
.image-text__cta {
  margin-top: 1.5rem;
}
.image-text__content {
  display: flex;
  flex-direction: column;
  margin: 1rem 0 0.5rem;
  gap: 10px 0;
}
.image-text__content > * {
  margin: 0;
}
