.ws-featurescroll .ws-featurescroll-list {
  display: none;
}

.ws-featurescroll .ws-feature .ws-feature-subheading {
  color: var(--ws-light-blue);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ws-featurescroll .ws-feature .ws-feature-heading {
  color: var(--ws-purple);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {

  .ws-featurescroll .ws-feature{
    margin-bottom: 4rem;
  } 
}

@media screen and (min-width: 768px) {

  .ws-featurescroll {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-gap: 4rem;
    align-items: start;
    max-width: 1024px;
    margin:auto;
  }

  .ws-featurescroll .ws-featurescroll-list {
    display: grid;
    text-align: right;
    position: sticky;
    top:25%;
    height:50vh;
    align-items: center;
  }

  .ws-featurescroll .ws-featurescroll-list ul {
    list-style: none;
    margin:0;
    padding: 0;
    border-right: solid 0.5px var(--ws-purple);
    display:flex;
    flex-direction: column;
    grid-gap: 2rem;
  }

  .ws-featurescroll .ws-featurescroll-list ul li {
    padding: 2rem 2rem;
  }

  .ws-featurescroll .ws-featurescroll-list ul li.active{
    border-right: solid 4px var(--ws-dark-blue);
  }

  .ws-featurescroll .ws-featurescroll-list ul li a {
    color: var(--ws-purple);
    font-weight: 700;
  }

  .ws-featurescroll .ws-featurescroll-list ul li a:hover {
    color: var(--ws-dark-blue);
  }

  .ws-featurescroll .ws-feature {
    padding-right: 10rem;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .ws-featurescroll .ws-feature .ws-feature-heading {
    margin-bottom: 2.5rem;
  }
}