/* Common */
  .customers-reviews {
      padding-bottom: 35px;
  }
  .customers-review {
    padding-bottom: 66px;
  }
  .customers-review-image {
    width: 192px;
    text-align: right;
    padding-top: 56px;
    float: left;
    margin-right: 31px;
  }
  .customers-review-image img {
    border-radius: 50%;
  }
  .customers-review-name {
    padding: 41px 0 0 0;
    font-size: 22px;
    color: #163B82;
  }
  .customers-review-position {
    margin: 9px 0 0 0;
    font-style: italic;
  }
  .customers-review-text {
    margin: 22px 0 38px 65px;
  }
  .customers-review-companies {
    margin: 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
  }
  .customers-review-companies .item {
  }
  .customers-review-companies .item img {
    max-height: 80px;
  }
/* Adapt */
  @media (max-width: 1024px) {
    .customers-review-companies {
      display: block;
      text-align: center;
      height: auto;
    }
    .customers-review-companies .item {
      display: inline-block;
      margin: 20px;
    }
  }

  @media (max-width: 760px) {
    .customers-review {
      padding-bottom: 0;
    }
    .customers-review-image {
      float: none;
      text-align: center;
      width: 100%;
    }
    .customers-review-position {
      text-align: center;
    }
    .customers-review-name {
      text-align: center;
    }
    .customers-review-text {
      margin: 0;
      padding: 20px;
    }
  }