.project-slider-heading {
  margin: 0 0 8px;
}
.project-slider-header {
  margin: 0 0 32px;
  padding-right: 24px;
}
.project-slider-wrapper {
  overflow: hidden;
}

.project-slider {
  display: flex; /* standard slider layout */
}

.project-slider .slide-item {
  flex: 0 0 auto;
  margin-right: 16px;
  width: 450px;
}

.project-slider .slide-item .img-wrapper {
  aspect-ratio: 2 / 2.22;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.project-slider .slide-item img {
	height: 156px;
  box-shadow:
      0 5px 10px -2px rgba(13, 13, 18, 0.04),
      0 4px 8px -1px rgba(13, 13, 18, 0.02);
}

.project-slider-controls {
  display: flex;
  align-items: center;
  margin: 32px 0 0;
  padding-right: 32px;
}

.project-slider-navigate {
  display: inline-flex;
  gap: 24px;
  margin-left: auto;
}

.project-slider-navigate span {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
}

.custom-pagination {
  /*display: inline-flex;*/
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.32px;
}

.custom-pagination .separator {
  width: 32px;
  height: 1px;
  background-color: #000;
}

.counter-wrapper {
  position: relative;
  display: flex;
  height: 28px;
  width: 20px;
  text-align: center;
  overflow: hidden;
}

.total-pages {
  width: 20px;
  text-align: center;
}

.counter-wrapper .current-count {
  position: absolute;
  width: auto;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

.current-count span {
  display: block;
  height: 28px;
  line-height: 28px;
  text-align: center;
}


@media (max-width: 767px) {
}