.c-tabs {
  display: flex;
}
.c-tabs ul {
  display: flex;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  padding: 6px;
}
.c-tabs ul li {
  display: flex;
}
.c-tabs ul li a {
  padding: 12px 14px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  opacity: 0.6;
  line-height: 9px;
  display: flex;
  padding: 12px 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.c-tabs ul li a:hover {
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
}
.c-tabs ul li.active a {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}
