& .company-development {
  & .company-development__items {
    display: flex;
    gap: 12px;
    justify-content: space-between;

    @media(max-width: 992px) {
      flex-direction: column;
      gap: 60px;
    }
  }

  & .company-development__item {
    max-width: 704px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    @media(max-width: 992px) {
      max-width: 100%;
    }

    & .section__title {
      margin-bottom: 4px;
      text-align: center;
    }

    & .section__subtitle {
      margin-bottom: 12px;
      text-align: center;
      max-width: 470px;
    }

    & .company-development__item-description {
      color: var(--Text-Accent);
      text-align: center;
      font-family: 'Evolventa';
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 132%;
      letter-spacing: -0.36px;
      margin-bottom: 24px;
      max-width: 356px;
    }

    & .company-development__item-image {
      max-width: 704px;
      width: 100%;
      height: 446px;
      border-radius: 2px;
      overflow: hidden;

      @media(max-width: 992px) {
        max-width: 100%;
      }

      & img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }
  }
}