*{
  scroll-behavior: smooth;
}
.anchor-outer{
  position: absolute;
  width: 100%;
}
.anchor-list-wrapper{
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 110px;
  background: #fff;
  z-index: 111;
}
.anchor-list{
  display: flex;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  justify-content: center;
}
.anchor-list .anchor{
  padding: 30px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 19px;
  line-height: 120%;
  border: 0;
  border-style: solid;
  border-bottom-width: 7px;
  border-color: transparent;
}
.anchor-list .anchor.active{
  border-bottom-width: 7px;
  border-image: linear-gradient(to right, #A456FF 0%, #BB00FF 100%) 1;
}

@media(max-width: 767px){
  .anchor-list{
    gap: 20px;
    justify-content: flex-start;
    padding: 0 20px;
    width: max-content;
    overflow: auto;
    max-width: 100%;
  }
  .anchor-list .anchor{
    font-size: 16px;
    padding: 20px 0;
    font-weight 600;
    text-align: center;
    display: block;
    min-width: max-content;
    border-bottom-width: 3px !important;
  }
}