.image_text_module {
  padding: 64px 24px;

}
.image_text_module .image_text_module_content_container{
  max-width: var(--ib-container, 1200px);
  width: 95%;
  margin: 0 auto;
}
.image_text_module__section-title{
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  /* color: var(--ib-text); */
  margin-bottom: 6rem;
}

.image_text_module__block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.image_text_module__block + .image_text_module__block {
  margin-top: 64px;
}

.image_text_module__block--image_right {
  direction: rtl;
}

.image_text_module__block--image_right > * {
  direction: ltr;
}

.image_text_module__media {
  width: 100%;
}

.image_text_module__media_bg {
  width: 100%;
  aspect-ratio: 16 / 9; 
  border-radius: 16px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image_text_module__content .heading{
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;

}

.image_text_module__text p:first-child {
 font-size: 19px;
}

.image_text_module__button {
  display: inline-block;
  margin-top: 16px;
  background: #1c2230;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
}


.image_text_module--white {
  background: #fff;
}

.image_text_module--dark {
  background: #100F34;
}

.image_text_module--white .image_text_module__content .heading {
  color: #100F34;
}

.image_text_module--dark .image_text_module__content .heading {
  color: #F5843C;
}

.image_text_module--dark .image_text_module__text {
  color: #fff;
}


.image_text_module--white .image_text_module__section-title {
  color: #100F34;
}

.image_text_module--dark .image_text_module__section-title {
  color: #fff;
}

@media only screen and (max-width: 900px) {
  .image_text_module{
    padding: 1rem;
  }
  .image_text_module__section-title{
    margin-bottom: 0;
  }
  .image_text_module__content{
    max-width: 100% !important;
    padding: 0 1rem !important;
  }
  .image_text_module .image_text_module__block{
    margin-top: 2rem;
    margin-bottom: 0rem;
  }
}