/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.repeater-text-image-block {
  margin-bottom: clamp(30px, 22.3529411765px + 0.0196078431 * 100vw, 60px);
}
.repeater-text-image-block .content-wrapper .content {
  display: flex;
}
.repeater-text-image-block .content-wrapper .content img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: clamp(135px, 52.1568627451px + 0.2124183007 * 100vw, 460px);
  -o-object-fit: cover;
     object-fit: cover;
}
.repeater-text-image-block .content-wrapper .content .text {
  font-size: clamp(14px, 12.9803921569px + 0.0026143791 * 100vw, 18px);
}
.repeater-text-image-block .content-wrapper .content .text p {
  margin-bottom: clamp(10px, 7.4509803922px + 0.0065359477 * 100vw, 20px);
}
.repeater-text-image-block .content-wrapper .content .text p:last-child {
  margin-bottom: 0;
}
.repeater-text-image-block .content-wrapper.column {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 17.4509803922px + 0.0065359477 * 100vw, 30px);
}
.repeater-text-image-block .content-wrapper.column .content {
  flex-direction: column;
  gap: 20px;
  flex: 0.5 0 calc(50% - 15px);
}
@media (max-width: 768px) {
  .repeater-text-image-block .content-wrapper.column .content {
    flex: 1 0 100%;
  }
}
@media (max-width: 768px) {
  .repeater-text-image-block .content-wrapper.row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.repeater-text-image-block .content-wrapper.row .content:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .repeater-text-image-block .content-wrapper.row .content {
    flex-direction: column;
    gap: 20px;
  }
  .repeater-text-image-block .content-wrapper.row .content:nth-child(even) {
    flex-direction: column;
  }
}
.repeater-text-image-block .content-wrapper.row .image {
  flex: 0.5 1 50%;
  position: relative;
  overflow: hidden;
}
.repeater-text-image-block .content-wrapper.row .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .repeater-text-image-block .content-wrapper.row .image {
    position: static;
  }
  .repeater-text-image-block .content-wrapper.row .image img {
    position: static;
  }
}
.repeater-text-image-block .content-wrapper.row .text {
  flex: 0.5 1 50%;
  padding: clamp(10px, 4.9019607843px + 0.0130718954 * 100vw, 30px) clamp(10px, 2.3529411765px + 0.0196078431 * 100vw, 40px);
}
@media (max-width: 768px) {
  .repeater-text-image-block .content-wrapper.row .text {
    padding: 0;
  }
}
