#pk_flex_content .flex_layout.faq {
  max-width: 100%;
  position: relative;
  padding: clamp(
      40px,
      40px + (80 - 40) * ((100vw - 320px) / (1215 - 320)),
      80px
    )
    0;
}

#pk_flex_content .flex_layout.faq {
  position: relative;
}

#pk_flex_content .flex_layout.faq::before {
  content: '';
  position: absolute;
  top: 0;
  /* left: 0; */
  bottom: 0;
  right: 0;
  max-width: 1240px;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  aspect-ratio: 1240/668;
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('./bg-pattern.png');
}

/* Top Row */
#pk_flex_content .flex_layout.faq .pk-top__row {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  z-index: 1;
}

.flex_layout.faq .pk-top__row .pk-col__left {
  max-width: 700px;
  font-weight: 300;
}

.flex_layout.faq .pk-top__row .pk-col__left h2 {
  margin-bottom: 24px;
}

.flex_layout.faq .pk-top__row .pk-col__left a {
  text-decoration: underline;
  transition: opacity 0.5s ease-in-out;
}

.flex_layout.faq .pk-top__row .pk-col__left a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  #pk_flex_content .flex_layout.faq .pk-top__row {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
/* End Top row */

/* FAQ items Grid */
#pk_flex_content .flex_layout.faq .pk-bottom__row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 805px;
  margin-top: 48px;
  background: var(--white);
}

#pk_flex_content .flex_layout.faq .pk-faq__item {
  color: rgba(7, 36, 69, 0.8);
  width: 100%;
  padding: 16px 20px;
  padding-left: 34px;
  border: 1px solid #3c151814;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.flex_layout.faq .pk-faq__item .pk-faq__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
  cursor: pointer;
}

.flex_layout.faq .pk-faq__item .pk-faq__head h3 {
  font-weight: 400;
  line-height: 1;
}

.flex_layout.faq .pk-faq__item .pk-faq__head .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--gray);
}

.flex_layout.faq .pk-faq__item .pk-faq__head .icon svg {
  width: 10px;
  transition: all 0.5s ease-in-out;
}

.flex_layout.faq .pk-faq__item.open .pk-faq__head .icon svg {
  rotate: 45deg;
  transform-origin: center;
  transition: rotate 0.5s ease-in-out;
}

.flex_layout.faq .pk-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  padding-inline: 0px;
  transition: grid-template-rows 300ms ease-in-out,
    padding-block 300ms ease-in-out;
}

.flex_layout.faq .pk-faq__body .pk-faq__content {
  max-width: fit-content;
  max-width: 767px;
  overflow: hidden;
}

.flex_layout.faq .pk-faq__item.open .pk-faq__body {
  padding-block: 0px;
  grid-template-rows: 1fr;
  padding-top: 16px;
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 767px) {
}
