.scale-slider-wrapper {
    position: relative;
}

.client-review {
    align-items: center;
    gap: 30px;
}

.client-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.client-info {
    width: calc(100% - 250px - 30px);
    flex: 1;
}

.client-review > p:last-child {
    margin-bottom: 0;
}

.client-review strong {
    font-size: var(--font-md);
    color: var(--color-primary);
    font-weight: var(--font-regular);
}

@media (max-width: 544px)  {
    .events-wrapper.element-scroll-mobile .slick-track {
        width: 100% !important;
    }

    .client-info {
        width: 100%;
        text-align: center;
    }

    .client-review {
        justify-content: center;
    }

    .scale-slider-wrapper .scale-slider-controls {
        justify-content: space-between;
        top: calc(250px / 2 - 18px / 2);
    }
}

.scale-dots {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
}

.scale-dots .slick-dots {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scale-dots .slick-dots li {
  width: 15px !important;
  height: 15px !important;
  border-radius: 50%;
  margin: 0 7px;
  position: relative;
  z-index: 2;
}

.scale-dots .slick-dots li button:hover {
    background-color: var(--color-primary) !important;
}

.scale-dots .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
}

.scale-dots .slick-dots li button:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: transparent;
  opacity: 1 !important;
}

.scale-dots .slick-dots li.slick-active button:before {
  background: var(--color-primary);
}

.scale-dots .worm-dot {
  position: absolute;
  width: 30px;
  height: 15px;
  border-radius: 15px;
  background-color: var(--color-primary);
  top: 0;
  left: 0;
  transform: translate(0, 0);
  transition: transform 0.3s ease, width 0.3s ease;
  pointer-events: none;
  z-index: 1;
}