.group-tabs{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
}

.group-tabs .tab-btn{
  box-sizing: content-box;
  padding: 15px 0px;

  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  border-bottom:  10px solid rgba(255,255,255,0);
  cursor: pointer;
}

.group-tabs .tab-btn .sm{
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  text-align: center;
}

.group-tabs .tab-btn.yellow.act{
  border-bottom:  10px solid #ebca1a;
  
  
}

.group-tabs .tab-btn.green.act{
  border-bottom:  10px solid #2d998a;
}

@media (min-width:767px){
  .group-tabs{
    display: none;
  }
}

@media (min-width:500px) and (max-width:767px){
  .group-tabs .tab-btn{
    font-size: 6vw;
  }
  .group-tabs .tab-btn .sm{
    font-size: 4vw;
  }
}
