.px-faqs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .px-faqs {
    flex-direction: column-reverse;
  }
}
.px-faqs .px-faq-questions {
  width: 52.5%;
  counter-reset: faq-counter;
}
@media only screen and (max-width: 1024px) {
  .px-faqs .px-faq-questions {
    width: 100%;
  }
}
.px-faqs .px-faq-questions .faq-question {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: clamp(1.875rem, 1.0304054054rem + 4.222972973vw, 5rem);
  position: relative;
}
.px-faqs .px-faq-questions .faq-question:last-child {
  margin-bottom: 0;
}
.px-faqs .px-faq-questions .faq-question .question {
  display: flex;
  align-items: center;
  gap: 15px;
}
.px-faqs .px-faq-questions .faq-question .question .number-badge {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.px-faqs .px-faq-questions .faq-question .question .number-badge img {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: block;
}
.px-faqs .px-faq-questions .faq-question .question .number-badge::after {
  counter-increment: faq-counter;
  content: counter(faq-counter);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--fontColor);
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
}
.px-faqs .px-faq-questions .faq-question .question-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.px-faqs .px-faq-questions .faq-question .question-title::before {
  counter-increment: faq-counter;
  content: counter(faq-counter);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  justify-self: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  color: var(--fontColor);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.px-faqs .px-faq-questions .faq-question .question-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../../../img/list_background.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.px-faqs .px-faq-questions .faq-question .question p {
  font-weight: 700;
  line-height: 1.56;
  color: var(--text-color);
}
.px-faqs .px-faq-questions .faq-question .answer ul {
  list-style: disc;
  padding-left: 20px;
}
.px-faqs .px-faq-questions .faq-answer {
  padding-left: 65px;
}
.px-faqs .px-faq-questions .faq-answer p {
  color: var(--text-color);
}
.px-faqs aside {
  width: 33.4%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 20vh;
}
@media only screen and (max-width: 1200px) {
  .px-faqs aside {
    width: 38.4%;
  }
}
@media only screen and (max-width: 1024px) {
  .px-faqs aside {
    width: 100%;
    position: static;
  }
}
.px-faqs .faq-nav,
.px-faqs .faq-teaser {
  padding: clamp(1.25rem, 1.0810810811rem + 0.8445945946vw, 1.875rem);
  border-radius: 0 20px 20px 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15);
}
.px-faqs .faq-nav .faq-nav-title {
  color: #A5A5A5;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  display: block;
  margin-bottom: 15px;
}
.px-faqs .faq-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: faq-nav-counter;
}
.px-faqs .faq-nav ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  margin-top: 5px;
}
.px-faqs .faq-nav ul li::before {
  counter-increment: faq-nav-counter;
  content: counter(faq-nav-counter);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  justify-self: center;
  width: 50px;
  height: 50px;
  color: var(--fontColor);
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
}
.px-faqs .faq-nav ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../../../img/list_background.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.px-faqs .faq-nav ul li a {
  display: flex;
  flex: 1;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-color);
  line-height: normal;
  transition: none;
}
.px-faqs .faq-nav ul li a:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}
.px-faqs .faq-teaser {
  background: linear-gradient(to bottom, #C0DDF0 0%, #fff 100%);
}
.px-faqs .faq-teaser .faq-teaser-inner {
  background: var(--glasslook);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--contrastColorInverted);
  border-radius: 0 20px 20px 20px;
  box-shadow: var(--boxShadowSmall);
  padding: clamp(1.25rem, 1.0810810811rem + 0.8445945946vw, 1.875rem);
}
.px-faqs .faq-teaser .faq-teaser-text {
  color: var(--primary-dark);
}
.px-faqs .faq-teaser .faq-teaser-c2a a.btn {
  background-color: var(--main-color);
}
.px-faqs .faq-teaser .faq-teaser-c2a a.btn:hover {
  background-color: var(--primary-dark);
}