.tabs {
 display: flex;
  flex-wrap: wrap;
  padding-left: 0px;
  padding-right: 0px;
}
.tabs li {
  cursor: pointer;
  padding: 5px 25px;
  padding-top: 8px;
  border-radius: 7px;
  border: 1px solid #DDD;
  background-color: #4e4e4e;
  transition: 0.25s;
  color: #fff;
  width: 47%;
   text-align: center;
    margin: 3px;

}
.tabs a {
  width: 47%;
}
.tabs li::marker  {
  color: transparent;
}
.tabs li:hover {
  border-color: #f79323;
  color: #FFF;
  background-color: #f79323;
}
.tabs li.active {
  border-color: #111;
  color: #FFF;
  background-color: #111;
}

.tab-content {
  display: none;
  padding: 0px;
  margin-top: 10px;
}
.tab-content h2 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}
.tab-content p {
  font-size: 16px;
  line-height: 1.6;
}



@media (min-width: 768px) {
.tabs li {
  cursor: pointer;
  padding: 5px 25px;
  padding-top: 8px;
  border-radius: 7px;
  border: 1px solid #DDD;
  background-color: #4e4e4e;
  transition: 0.25s;
  color: #fff;
  width: 30%;
   text-align: center;
   margin: 3px;
}
.tabs a {
  width: 30%;
}
}


@media (min-width: 1200px) {
.tabs li {
  cursor: pointer;
  padding: 10px 10px;
  border-radius: 7px;
  border: 1px solid #DDD;
  background-color: #4e4e4e;
  transition: 0.25s;
  color: #fff;
  width: 10%;
  text-align: center;
  margin: 5px;
}
.tabs a {
  width: 14%;
}

}
