.row.new-style1 {
  display: flex;
  row-gap: 1em;
}
.row.new-style1 > div {
  padding: 1rem 2rem;
  border-radius: 2em;
}
.row.new-style1 > div p {
  margin: 0.5rem auto;
}
.row.new-style1 > div::before {
  position: absolute;
  content: "";
  width: calc(100% - 2rem);
  height: 100%;
  top: 0;
  border: 1px solid rgba(21, 21, 21, 0.1);
  left: 1rem;
  border-radius: 4px;
}
.faq-list {
  position: relative;
  padding-left: 0;
  list-style: none;
}
.faq-list > * {
  position: relative;
  border-bottom: 1px solid rgba(255, 21, 121, 0.1);
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.faq-list > * .question {
  position: relative;
  cursor: pointer;
  padding-left: 2.5em;
  transition: all ease-in-out 0.4s;
  font-weight: bold;
}
.faq-list > * .question:hover {
  color: #e68124;
}
.faq-list > * .question::before {
  position: absolute;
  content: "❔";
  font-family: "icomoon";
  left: 0;
  top: 0;
  color: #fff;
  background-color: #e68124;
  width: 2em;
  height: 2em;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 0.9em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-list > * .answer {
  position: relative;
  display: none;
  padding-left: 2.5em;
}
.faq-list > * .answer.show {
  display: block;
}
.faq-list > * .answer::before {
  position: absolute;
  content: "💬";
  left: 0;
  top: 4px;
  color: #fff;
  background-color: #e68124;
  width: 2em;
  height: 2em;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 0.9em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.related-list {
  position: relative;
  list-style: none;
  padding-left: 0;
}
.related-list > li {
  position: relative;
  padding: 0.3em 1em 0.3em 2.5em;
  background: linear-gradient(to right, #b6c2d1, #96afcd);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  --color: #163354;
}
.related-list > li::before {
  position: absolute;
  content: "▶";
  left: 1em;
  height: 100%;
  display: flex;
  align-items: center;
  top: 0;
}
.related-list > li:hover {
  background: linear-gradient(to right, #7f97b3, #6e8aaa);
  --color: #163354;
}
.related-list > li a[href] {
  color: var(--color);
  display: block;
}

.tabs {
  position: relative;
  margin: 1em 0;
}
.tabs .tab {
  position: relative;
  padding-left: 0;
  list-style: none;
  border-bottom: 1px solid rgba(21, 21, 21, 0.2);
}
.tabs .panel {
  background: none;
}
.tabs .tab > li {
  position: relative;
  padding: 0.5em 1em;
  color: #888;
  font-weight: bold;
  text-align: center;
  font-size: 1.1em;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
  margin: 0;
  z-index: 2;
  font-family: "Oswald", sans-serif;
}
.tabs .tab > li.active {
  color: #111 !important;
}
.tabs .tab > li:hover {
  color: --yellow-color;
}
.tabs .tab > li.tab-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  z-index: 10;
  padding: 0;
  background-color: #163354 !important;
  margin: 0 !important;
  border: none;
}
.tabs .tabs-content {
  position: relative;
  display: none;
}

@media screen and (min-width: 1081px) {
  .tabs .tab {
    position: sticky;
    top: 150px;
    z-index: 10;
    display: flex;
    margin: 1em auto;
  }
  .tabs .tab.center {
    margin-left: auto;
    margin-right: auto;
    width: -moz-max-content;
    width: max-content;
  }
  .tabs .tab.center > li {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
  .tabs .tab.between {
    justify-content: space-between;
  }
  .tabs .tab.right {
    justify-content: flex-end;
  }
}
.tabs.new-tab {
  position: relative;
}
.tabs.new-tab .tab {
  position: relative;
  top: 0;
  gap: 0.5em;
}
.tabs.new-tab .tab > li {
  font-size: 1em;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  color: var(--white-color);
  background-color: #8d949c;
}
.tabs.new-tab .tab > li.active {
  position: relative;
  background-color: var(--orange-color);
  color: var(--white-color) !important;
}
