.com_tab {
  position: relative;
}
.com_tab .tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  align-self: stretch;
}
.com_tab .tabs li {
  display: flex;
  max-width: 300px;
  padding: 15px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: -20px;
  flex: 1 0 0;
  position: relative;
  border-radius: 30px;
  border: 2px solid #DDD;
  background: #FFF;
}
.com_tab .tabs li > button,
.com_tab .tabs li a {
  width: 100%;
  color: #333;
  font-family: "Paperlogy";
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 133.333%;
  letter-spacing: -0.72px;
  text-align: center;
}
.com_tab .tabs li > button span,
.com_tab .tabs li a span {
  font-size: 1rem;
  letter-spacing: -0.6px;
}
.com_tab .tabs li::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 10px;
  border-radius: 999px;
  background: #DDD;
  position: absolute;
  right: -30px;
}
.com_tab .tabs li:last-child::after {
  display: none;
}
.com_tab .tabs li.active {
  border-radius: 5px 30px 30px 30px;
  border: 2px solid #00B4CD;
  background: #F5FEFF;
}
.com_tab svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -9997;
  max-width: 1200px;
  width: 100%;
  transform: translateX(-50%);
}

.tab_content {
  display: none;
  flex-direction: column;
  width: 100%;
}

.tab_content.active {
  display: block;
}

@media (max-width: 1440px) {
  .tab_content {
    gap: 50px;
  }
}
@media (max-width: 960px) {
  .com_tab .tabs {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .com_tab .tabs li {
    flex: auto;
    width: calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
    padding: 10px 15px;
  }
  .com_tab .tabs li::after {
    content: none;
  }
  .com_tab svg {
    display: none;
  }
}
@media (max-width: 640px) {
  .com_tab .tabs li {
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .com_tab svg {
    display: none;
  }
}
@media (max-width: 400px) {
  .com_tab .tabs li {
    width: 100%;
    max-width: 100%;
  }
  .com_tab svg {
    display: none;
  }
}