.indexTextBlock {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
    gap: 40px;
    color: #000 !important;
  }
  @media (max-width: 750px) {
    .indexTextBlock {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
  }
  .indexTextBlock__right-block {
    max-width: 700px;
  }
  .indexTextBlock__title {
    max-width: 560px;
    margin-top: 0px;
    size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  @media (max-width: 750px) {
    .indexTextBlock__title {
      text-align: center;
    }
  }
  .indexTextBlock__paragraf {
    max-width: 580px;
    font-size: 24px;
    font-family: var(--sec-font-family);
  }
  @media (max-width: 750px) {
    .indexTextBlock__paragraf {
      text-align: center;
    }
  }
  .indexTextBlock__right-block-wrp {
    border-radius: var(--br-20);
    background: var(--sec-theme-color);
    padding: 20px;
  }
  .indexTextBlock__list-paragraf {
    font-size: 18px;
    line-height: 27px;
  }
  .indexTextBlock__list {
    counter-reset: steps;
  }
  .indexTextBlock__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 20px;
  }
  .indexTextBlock ul.indexTextBlock__list li.indexTextBlock__list-item::before {
    counter-increment: steps;
    content: counter(steps);
    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;
    min-width: 20px;
    min-height: 20px;
    height: 20px;
    width: 20px;
    margin-right: 15px;
    border-radius: 5px;
    background-color: var(--theme-color);
}
  
  .black-fon {
    background-color: #000;
    margin-top: 40px;
  }
  
  .slogan-block__title {
    padding-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    font-size: 36px;
    line-height: 43px;
  }
  .slogan-block__subtitle {
    text-align: center;
    color: #fff;
    font-family: var(--sec-font-family);
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 50px;
  }
  .slogan-block__subtitle-color {
    font-family: var(--font-family);
    color: var(--theme-color);
  }
  .slogan-block__img-wrp {
    line-height: 0;
  }
  .slogan-block__img {
    border-radius: var(--br-20) var(--br-20) 0 0;
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .black-fon .maxwidth-theme {
    background-color: #000 !important;
  }