@charset "utf-8";
/* CSS Document */

.tab-titles {
  display: flex;
  margin: 10px 0 10px;
}

.tab-links {
  margin-right: 30px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
}

.tab-links::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #b8ca03;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}

.tab-links.active-link::after {
  width: 50%;
}

.tab-contents {
  display: none;
}

.tab-contents.active-tab {
  display: block;
}
