.features{
  padding: 64px 20px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}
.features::-webkit-scrollbar {
  display: none;
}
.features-wrapper{
  display: flex;
  gap: 64px;
  justify-content: space-between;
  margin: 0 auto;
}
.features-wrapper .feature{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: max-content;
  padding: 0 24px;
  position: relative;
}

.features-wrapper .feature h4{
  margin-bottom: 0;
}

@media(max-width: 1080px){
  .features-wrapper{
    gap: 0;
  }
}
@media(max-width: 767px){
  .features-wrapper .feature h4{
    font-size: 12px !important;
  }
  .features{
    padding: 24px 0;
  }
  .features-wrapper .feature svg{
    height: 24px;
  }
  .features-wrapper .feature{
    padding: 0 20px;
  }
  .features-wrapper .feature::after{
    width: 1px;
    height: 100%;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
  }
  .features-wrapper .feature:last-child::after{
    display: none;
  }