.text-img-section {
  margin-top: var(--block-section-spacing-top, var(--section-spacing-top, 40px));
  margin-bottom: var(--block-section-spacing-bottom, var(--section-spacing-bottom, 40px));
  background-color: transparent;
}
.text-img-section--has-section-bg > .container {
  background-color: var(--block-bg, transparent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: var(--block-border-radius, 10px);
  padding: 24px var(--site-gutter, 15px);
}
.text-img-section--no-section-bg > .container {
  background-color: transparent;
  box-shadow: none;
}

.text-img {
  display: flex;
  align-items: center;
  gap: 40px;
}
.text-img__left, .text-img__right {
  min-width: 0;
}
.text-img__right {
  flex: 1 1 0;
}
.text-img__left {
  flex: 1 1 0;
}
.text-img--media-right {
  flex-direction: row-reverse;
}
.text-img--ratio-2-3 .text-img__right {
  flex: 2 1 0;
}
.text-img--ratio-2-3 .text-img__left {
  flex: 3 1 0;
}
.text-img--ratio-1-1 .text-img__right,
.text-img--ratio-1-1 .text-img__left {
  flex: 1 1 0;
}
.text-img--ratio-3-2 .text-img__right {
  flex: 3 1 0;
}
.text-img--ratio-3-2 .text-img__left {
  flex: 2 1 0;
}
.text-img__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.text-img__button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.text-img__button.button {
  display: inline-flex;
  background: var(--text-img-btn-bg, var(--button-bg));
  color: var(--button-text-color);
  font-size: var(--block-button-font-size, var(--button-font-size, 16px));
}
.text-img__media-link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: inherit;
}

.text-img__left h1,
.text-img__left h2,
.text-img__left h3,
.text-img__left h4,
.text-img__left h5 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 18px;
  font-size: var(--block-title-font-size, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color, #fff);
}
.text-img__left h1::after,
.text-img__left h2::after,
.text-img__left h3::after,
.text-img__left h4::after,
.text-img__left h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--additional-c-elements);
}
.text-img__left p {
  margin-bottom: 16px;
  line-height: var(--content-line-height, 1.5);
  color: var(--text-color, #fff);
  font-size: var(--block-body-font-size, 16px);
}
.text-img__left ul,
.text-img__left ol {
  padding-left: 20px;
}

.text-img--framed .text-img__right {
  padding: 20px;
}
.text-img--framed .text-img__slider,
.text-img--framed .text-img__media--single {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 30px 40px 45px;
  background: var(--block-bg);
  border: 2px solid var(--additional-c-elements);
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
}
.text-img--framed .text-img__slider--single,
.text-img--framed .text-img__media--single {
  padding-bottom: 30px;
  text-align: center;
}
.text-img--framed.text-img--no-media-padding .text-img__right, .text-img--framed.text-img--no-item-bg .text-img__right {
  padding: 0;
}
.text-img--framed.text-img--no-media-padding .text-img__slider,
.text-img--framed.text-img--no-media-padding .text-img__slider--single,
.text-img--framed.text-img--no-media-padding .text-img__media--single, .text-img--framed.text-img--no-item-bg .text-img__slider,
.text-img--framed.text-img--no-item-bg .text-img__slider--single,
.text-img--framed.text-img--no-item-bg .text-img__media--single {
  padding: 0;
  max-width: none;
  width: 100%;
  margin: 0;
}
.text-img--framed.text-img--no-media-padding .text-img__image, .text-img--framed.text-img--no-item-bg .text-img__image {
  width: 100%;
  max-width: 100%;
  max-height: none;
}
.text-img--framed.text-img--no-media-border .text-img__slider,
.text-img--framed.text-img--no-media-border .text-img__slider--single,
.text-img--framed.text-img--no-media-border .text-img__media--single, .text-img--framed.text-img--no-item-bg .text-img__slider,
.text-img--framed.text-img--no-item-bg .text-img__slider--single,
.text-img--framed.text-img--no-item-bg .text-img__media--single {
  background: transparent;
  border-color: transparent;
}
.text-img--framed.text-img--single .text-img__right {
  padding: 0;
}
.text-img--framed.text-img--single .text-img__media--single {
  max-width: none;
  width: 100%;
  margin: 0;
}
.text-img--framed.text-img--single .text-img__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}
.text-img--framed.text-img--single:not(.text-img--no-media-padding):not(.text-img--no-item-bg) .text-img__media--single {
  padding: 0;
}
.text-img--framed .text-img__image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0;
}

.text-img--slider .text-img__slider-wrapper {
  align-items: center;
}
.text-img--slider .text-img__slider-slide {
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
}
.text-img--slider .text-img__slider--single {
  padding-bottom: 30px;
}
.text-img--slider .text-img__slider-pagination {
  position: static;
  margin-top: 25px;
}
.text-img--slider .text-img__slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--swiper-nav-bg, #596273);
  opacity: 1;
}
.text-img--slider .text-img__slider-pagination .swiper-pagination-bullet-active {
  background: var(--additional-c-elements);
}
.text-img--slider .text-img__slider-prev,
.text-img--slider .text-img__slider-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border: none;
  padding: 0;
  background: var(--swiper-nav-bg, #596273);
  border-radius: 8px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 20;
}
.text-img--slider .text-img__slider-prev::before,
.text-img--slider .text-img__slider-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.text-img--slider .text-img__slider-prev {
  left: 10px;
}
.text-img--slider .text-img__slider-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.text-img--slider .text-img__slider-next {
  right: 10px;
}
.text-img--slider .text-img__slider-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

@media screen and (max-width: 1200px) {
  .text-img--framed .text-img__slider,
  .text-img--framed .text-img__media--single {
    max-width: 450px;
  }
}
@media (max-width: 992px) {
  .text-img {
    justify-content: space-between;
    gap: 28px;
  }
  .text-img__left,
  .text-img__right {
    min-width: 0;
  }
  .text-img__left h1,
  .text-img__left h2,
  .text-img__left h3,
  .text-img__left h4,
  .text-img__left h5,
  .text-img__left h6 {
    font-size: var(--block-title-font-size, 24px);
  }
  .text-img__left p {
    font-size: var(--block-body-font-size, 14px);
  }
  .text-img--framed .text-img__right {
    padding: 0;
  }
  .text-img--framed .text-img__slider,
  .text-img--framed .text-img__media--single {
    max-width: 100%;
    padding: 20px 20px 30px;
  }
  .text-img--framed .text-img__slider-slide {
    padding: 8px;
  }
  .text-img--framed .text-img__image {
    max-height: 340px;
  }
  .text-img--framed .text-img__slider-prev,
  .text-img--framed .text-img__slider-next {
    width: 34px;
    height: 34px;
  }
  .text-img--framed .text-img__slider-prev {
    left: 8px;
  }
  .text-img--framed .text-img__slider-next {
    right: 8px;
  }
  .text-img--framed.text-img--no-media-padding .text-img__slider,
  .text-img--framed.text-img--no-media-padding .text-img__slider--single,
  .text-img--framed.text-img--no-media-padding .text-img__media--single, .text-img--framed.text-img--no-item-bg .text-img__slider,
  .text-img--framed.text-img--no-item-bg .text-img__slider--single,
  .text-img--framed.text-img--no-item-bg .text-img__media--single {
    padding: 0;
  }
}
@media (max-width: 568px) {
  .text-img,
  .text-img--media-left,
  .text-img--media-right {
    flex-direction: column;
    gap: 24px;
  }
  .text-img__left,
  .text-img__right {
    flex: 1 1 auto;
    width: 100%;
  }
  .text-img--framed .text-img__slider,
  .text-img--framed .text-img__media--single {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 18px 42px 28px;
  }
  .text-img--framed .text-img__slider--single,
  .text-img--framed .text-img__media--single {
    padding-left: 20px;
    padding-right: 20px;
  }
  .text-img--framed .text-img__image {
    max-height: 360px;
  }
  .text-img--framed.text-img--no-media-padding .text-img__slider,
  .text-img--framed.text-img--no-media-padding .text-img__slider--single,
  .text-img--framed.text-img--no-media-padding .text-img__media--single, .text-img--framed.text-img--no-item-bg .text-img__slider,
  .text-img--framed.text-img--no-item-bg .text-img__slider--single,
  .text-img--framed.text-img--no-item-bg .text-img__media--single {
    padding: 0;
  }
  .text-img__left {
    order: 1;
  }
}

/*# sourceMappingURL=text-img.css.map */
