.text-image {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  z-index: -1;
  overflow: hidden;
}

.text-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), -webkit-gradient(linear, left bottom, left top, from(rgba(55, 64, 78, 0.6)), to(rgba(55, 64, 78, 0.6)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(0deg, rgba(55, 64, 78, 0.6), rgba(55, 64, 78, 0.6));
}

.text-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-wrapper {
  margin-top: -240px;
  padding: 0 130px;
}

.text-wrapper.text-wrapper-default {
  margin-top: 0;
  padding: 0;
}

.text-holder {
  background: var(--bg_secondary);
  border-radius: 20px;
  padding: 50px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

.text-advantages {
  width: 33%;
}

.text-advantages_item {
  margin-bottom: 30px;
  background: var(--third);
  padding: 30px;
  border-radius: 20px;
}

.text-advantages_item:last-child {
  margin-bottom: 0;
}

.text-advantages_item .advantage-item_icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

.text-advantages_item .advantage-item_icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.text-advantages_item .advantage-item_name {
  font-weight: 700;
  font-size: clamp(16px, calc(0.0025 * 100vw + 15.2px), 20px);
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--head);
}

.text-content {
  width: 60%;
}

.text-desc {
  height: 240px;
  overflow-y: auto;
  padding-right: 40px;
}

.text-desc * {
  font-weight: 500;
  font-size: clamp(14px, calc(0.00125 * 100vw + 13.6px), 16px);
  line-height: 145%;
  letter-spacing: 0%;
  color: var(--text_primary);
}

@media (max-width: 1400px) {
  .text-wrapper {
    padding: 0 80px;
  }
  .text-holder {
    padding: 30px 40px;
  }
}

@media (max-width: 992px) {
  .text-block {
    padding: 20px 0 !important;
  }
  .text-wrapper {
    padding: 0 40px;
  }
  .text-holder {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .text-advantages {
    width: 100%;
  }
  .text-advantages_item {
    padding: 15px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .text-advantages_item .advantage-item_icon {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .text-content {
    width: 100%;
  }
}

@media (max-width: 769px) {
  .text-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 620px) {
  .text-image {
    height: 300px;
  }
  .text-wrapper {
    margin-top: 0;
    padding: 0;
  }
  .text-holder {
    padding: 20px 0;
  }
}
/*# sourceMappingURL=block.css.map */