:root {
  --ws-dark-blue: #0072B6;
  --ws-light-blue: #609ED2;
  --ws-purple: #262B65;
  --ws-grey: #d1d3d4;
}


.ws-featurecarousel {
  padding: 3rem 0;
  
}

.ws-featurecarousel .ws-featurelist{
  display:grid;  
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}

.ws-featurecarousel-content {
  width:100%;
}

.ws-featurecarousel .ws-featurecarousel-title {
  margin-bottom: 2rem;
}

.ws-featurecarousel .ws-featurelist .ws-feature {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.25);
  padding: 1.5rem;
}

.ws-featurecarousel .ws-feature-icon {
  margin-bottom: 1rem;
}

.ws-featurecarousel .ws-feature-icon img {
  max-height: 4rem;
  max-width: 100%;
  width: auto;
}

.ws-featurecarousel .ws-feature-title {
  margin-bottom: 2rem;
}

.ws-featurecarousel .ws-controls {
  display: none;
}

.ws-featurecarousel .ws-controls button {
  border:0;
  background: #fff;
  border-radius: 5rem;
  width:2.5rem;
  height: 2.5rem;
  line-height: 0;
  display: grid;
  align-content: center;
  justify-content: center;
  border-radius: 4rem;
  border: solid 1px var(--ws-purple);
}

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

  .ws-featurecarousel .ws-featurelist{ 
    width:100% !important;
  }

}

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

  .ws-featurecarousel{
    padding: 5rem 0;
    overflow-x: hidden;
  }


  .ws-featurecarousel .ws-featurelist{
    display:flex;  
    flex-wrap: nowrap;
    margin-bottom: 1.5rem;
    transition: all 0.25s ease-in-out;
    grid-gap: 2rem;
  }

  .ws-featurecarousel-content {
    max-width: 1440px;
    margin: auto;
  }

  .ws-featurecarousel .ws-featurecarousel-title {
    margin-bottom: 4rem;
  }

  .ws-featurecarousel .ws-featurelist .ws-feature {
    width: 33%;
    margin-left:0.25rem;
  }

  .ws-featurecarousel .ws-controls button:hover {
    background-color: var(--ws-purple);
    cursor: pointer;
  }

  .ws-featurecarousel .ws-controls button:hover svg path {
    fill:#fff;
  }

  .ws-featurecarousel .ws-controls {
    display: flex;
    justify-content: end;
    grid-gap: 1rem;
  }
}