#client {
  position: relative;
  padding: 100px 0;
  background: #000;
  color: #fff;
}

.client-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 120px;
  color: var(--blue-light)
}

.client-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 0px;
}


.client-list {
  position: relative;
  width: 100%;
  min-height: 900px;
}

/* vertical line */
.client-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.client-item {
  position: relative;
  height: 200px;
}

.client-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: #fff;
  z-index: 2;
}

.client-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  font-size: 22px;
  font-weight: 400;
  white-space: nowrap;
  color: #ffffff;
}

/* ---------- LEFT SIDE (1 & 3) ---------- */

.client-item:nth-child(odd) .client-label {
  right: calc(50% + 60px);
  text-align: right;
}

/* ---------- RIGHT SIDE (2 & 4) ---------- */

.client-item:nth-child(even) .client-label {
  left: calc(50% + 60px);
  text-align: left;
} 

    
@media (max-width: 768px) {
 
    }
@media (max-width: 480px) {
    
#client {
  height: 750px;
  padding: 100px 0;
  background: #000;
  color: #fff;
}

/* ---------- HEADER ---------- */

.client-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 90px;
}

.client-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.client-description {
  font-size: 12px;
  line-height: 0;
  color: #9a9a9a;
  margin-bottom: 1px;
}


.client-list {
  position: relative;
  width: 100%;
  height: 900px;
}

/* vertical line */
.client-list::before {
  content: "";
  position: absolute;
  height: 400px;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

/* ---------- ITEM ---------- */

.client-item {
  position: relative;
  height: 100px;
}

/* ---------- ICON (CENTER NODE) ---------- */

.client-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  color: #fff;
  z-index: 2;
}

/* ---------- LABEL BASE ---------- */

.client-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
  color: #ffffff;
}

/* ---------- LEFT SIDE (1 & 3) ---------- */

.client-item:nth-child(odd) .client-label {
  right: calc(50% + 30px);
  text-align: right;
}

/* ---------- RIGHT SIDE (2 & 4) ---------- */

.client-item:nth-child(even) .client-label {
  left: calc(50% + 30px);
  text-align: left;
} 
    

}