/* brends start */
  .brends {
    padding: 40px 0;
    background-color: white;
  }

  .brends__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }

  .brends__list-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 140px;
    max-width: 700px;
  }

  .brends__list-item--first, .brends__list-item--two,
  .brends__list-item--three, .brends__list-item--four {
    opacity: 0;
    -webkit-transition: all 1.5s ease 0s;
    -o-transition: all 1.5s ease 0s;
    transition: all 1.5s ease 0s;
  }

  @media (min-width: 520px) {
    .brends__list-item {
      min-width: 200px;
    }
  }
  
  @media (min-width: 700px) {
    .brends__list-item {
      min-width: 250px;
    }
  }

  .brends__text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #103D4B;
    min-height: 48px;
    margin: 10px 0;
    max-width: 200px;
  }

  .brends__link {
    color: #00AEC7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
  }

  .brends__link > svg {
    margin-left: 8px;
    width: 22px;
    height: 12px;
  }

  @media (min-width: 768px) {
    .brends__list-item {
      min-width: 142px;
    }
  }

  @media (min-width: 1280px) {
    .brends__list {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }

    .brends__list-item {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      max-width: 325px;
    }

    .brends__list-item > img {
      width: 244px;
      height: 122px;
    }

    .brends__text {
      font-size: 18px;
      line-height: 28px;
      margin: 20px 0;
      max-width: none;
      min-height: 84px;
    }

    .brends__link {
      font-weight: 500;
      font-size: 16px;
      line-height: 18px;
    }
  }
/* brends end */