
@media (max-width: 767px){
  #main-content{
    padding: 0;
  }
  .scroll-horizontally-when-mobile > div:nth-child(3){
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .scroll-horizontally-when-mobile > div:nth-child(3)::-webkit-scrollbar{
    display: none;
  }
}

.text-below-feature{
  position: relative;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction:column;
  justify-content: space-between;
}
.mobile-scroll-width > div {
  flex: 0 0 24%;
}
.mobile-scroll-width > div:first-child .text-below-feature{
  margin-left: 0;
}

.mobile-scroll-width > div:last-child .text-below-feature{
  margin-right: 0;
}

.text-below-feature img{
  display: block;
  width: 100%;
  height: 100%;
}
.text-below-feature > div{
  display: block;
  color: #003764;
  margin: 0;
  padding: 0;
  line-height: normal;
  font-weight: 500;
  font-size: 4.8vw;
  margin: 2vw auto;
}
.text-below-feature > p {
  color: #003764;
  letter-spacing: normal;
  line-height: 1.6;
  font-weight: normal;
}

@media (min-width: 768px){
  .text-below-feature{
    width: auto;
    min-width: unset;
    max-width: unset;
    margin: 0 0;
  }

  .text-below-feature > div{
    margin: min(0.64vw, 8px) auto;
    font-size: min(1.75vw, 20px);
    letter-spacing: normal;
  }

  .text-below-feature > p {
    color: #003764;
    font-size: min(1vw, 14px);
    letter-spacing: normal;
    font-weight: normal;
  }
}

@media (max-width: 767px){
  .mobile-scroll-width > div {
    flex: 0 0 35%;
    margin: 0 1vw;
  }
  .mobile-scroll-width > div:first-child {
    margin-left: 0;
  }
  
  .mobile-scroll-width > div:last-child {
    margin-right: 0;
  }
  
  .text-below-feature > div{
    margin: min(0.6vw, 6px) auto;
    font-size: min(3vw, 18px);
    letter-spacing: normal;
  }

  .text-below-feature > p {
    color: #003764;
    font-size: min(2vw, 12px);
    letter-spacing: normal;
    font-weight: normal;
    line-height: 1.4;
    margin: 0 2vw;
  }

}