
.tab__list {
  display: flex;
  margin-bottom: 0;
}
.tab__item {
  overflow: hidden;
  cursor: pointer;
  padding: 12px 8px;
  /* text-shadow: 0 0 0.5px currentColor; */
  /* letter-spacing: 1px; */
  /* transition: 0.2s; */
  font-size: 16px;
  position: relative;
  color: #777777;
  width: 33.3%;
  text-align: center;
}
.tab__item:before {
  content: "";
  position: absolute;
  top: 95%;
  left: 0;
  height: 2px;
  width: 100%;
  /* background: #19d9b4; */
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
}
.tab__list.main__tab .tab__item.is--active {
  color: #fff;
  position: relative;
  background: #7F63AB;
}
.tab__item.is--active:before {
  visibility: visible;
  opacity: 1;
}
.tab__content {
  padding: 0;
  /* background: #ffffff; */
  /* border-radius: 0 10px 10px; */
}
.tab__content-item {
  display: none;
}
.tab__content-item.is--active {
  display: block;
}
.tab__content-title {
  padding: 24px 24px 24px 0;
}

.tab .tab .tab__item {
  font-size: 12px;
}
.tab .tab .tab__content {
  padding: 0;
}
.tab__content-item .tab__list {
  background: rgba(0, 0, 0, .7);
}
.tab__content-item.is--active .tab__list .tab__item.is--active {
  background: transparent;
  border-bottom: 3px solid #4cbd92;
  color: #4cbd92;
}
.tab__content-item.is--active .tab__list .tab__item {
  color: #ffffff;
}
/* .tab__content-item.is--active .tab__list .tab__item {
  border-bottom: 5px solid #666666;
} */
.section__blogstab {
  margin-top: -93px;  
  position: relative;
  padding-bottom: 40px;
}
.tab__list.main__tab .tab__item {
  background: #fff;
}
.tab__list.main__tab .tab__item:nth-child(2) {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.subtab_flex figure h2 {
  text-transform: uppercase;
  font-size: 15px;
}