.js-tabs {
  max-width: 100%;
}
.js-tabs__header {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 30px;
  -webkit-gap: 30px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;

}
.js-tabs__title {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
  cursor: pointer;
  padding: 15px 35px !important;
  transition: all 0.3s;
  color: #000;
  font-weight: 500;
  display: block;
  font-size: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.js-tabs__title:hover {
  text-decoration: none;
}
.js-tabs__title:hover,
.js-tabs__title-active{
  background-color: #000;
  color: #fff;
}

.js-tabs__content {
  line-height: 1.5;
  margin-top: 40px;
}
@media only screen and (max-width: 1366px) {
  .js-tabs__title{
    font-size: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 10px 25px !important;
  }
}
@media only screen and (max-width: 860px) {
  .js-tabs__header{
    gap: 10px;
  }
  .js-tabs__header li{
    flex: none;
    padding: 0;
  }
  .js-tabs__content{
    margin-top: 20px;
  }
}