.nth-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 50px;
}

.nth-slider ul {
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  justify-content: right;

  position: absolute;
  left: 0;
  right: 0;
  top: unset;
  bottom: -35px;

  z-index: 10;
  white-space: nowrap;
}

.nth-slider img {
  display: block;
  margin: 0 auto;
  height: auto;
  max-width: 100%
}

.nth-slider ul li {
  display: block;
  font-size: 1.55rem;
  width: 1.25rem;
  margin-bottom: 0;
  line-height: 1;
}

.nth-slider li a {
  color: var(--x-light-color);
  text-decoration: none;
}

.nth-slider li a:hover {
  color: var(--grey075);
}

.nth-slider li a.active,
.nth-slider li a.active:hover {
  color: var(--purple);
  cursor: default;
}

