.tab-wrapper ul {
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tab-wrapper ul li {
  float: left;
  list-style: none;
  padding: 3px 20px;
  background: #ffff;
  border-radius: 20px 20px 20px 20px;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tab-wrapper ul li:hover {
  background: #f0c84c;
}
.tab-wrapper ul li a {
  color: #202b5d;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tab-wrapper ul li.active {
  background: #f0c84c;
}

.tab-content {
  padding: 15px;
}

.tab-item {
  display: none;
}
.tab-item span {
  color: #62718d;
  font-size: 17px;
  line-height: 26px;
}
.tab-item button {
  display: block;
  padding: 10px 25px;
  border: none;
  background-color: #f0c84c;
  margin-top: 40px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tab-item button a {
  color: #ffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tab-item button:hover {
  background-color: #202b5d;
}