.client-end-users {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* TABLET */
  /* END TABLET */
  /* MOBILE */
  /* MOBILE END */
}
@media (max-width: 1024px) {
  .client-end-users {
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .client-end-users {
    flex-direction: column;
    gap: 70px;
  }
}
.client-end-users .divider {
  width: 1px;
  background-color: #111;
  height: auto;
}
@media screen and (max-width: 576px) {
  .client-end-users .divider {
    display: none;
  }
}
.client-end-users__block {
  position: relative;
  width: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.client-end-users__text {
  font-size: 20px;
  color: #111;
}
.client-end-users__title {
  color: var(--primary--color);
  line-height: 36px;
}
@media only screen and (max-width: 991.98px) {
  .client-end-users .wrap {
    position: relative;
    padding-right: 67px;
    padding-left: 67px;
    margin-left: unset;
    margin-right: unset;
    justify-content: space-between;
    gap: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .client-end-users .wrap {
    max-width: 377px;
    padding: 100px 18px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 70px;
  }
  .client-end-users__block {
    width: 100%;
  }
}