@layer reset, base, page, custom;
:root {
  --l-H-hero: 680px;
  --l-header: 80px;
  --l-header-: -80px;
  --l-header--mobile: 56px;
  --l-header--mobile-: -56px;
  --l-services-logo: 44px;
  --l-btnH: 36px;
  --l-h-sec-footer: 150px;
  --c-text: #201E1F;
  --c-heading: #1e1e1e;
  --c-nav: #494949;
  --c-brand-text: #848492;
  --c-primary: #B47860;
  --c-secondary: #1e3659;
  --c-hightlight: #ec4e00;
  --c-primary-start: #f0da98;
  --c-primary-stop: #cfab3b;
  --c-secondary-start: #ffdc23;
  --c-secondary-stop: #ffe972;
  --f-services-title: 18px;
  --f-services-title-lh: 20px;
  --f-services-title--ch: 13px;
  --f-services-title--ch-lh: 16px;
  --z-nav: 10;
  --z-hero: 8;
  --z-main: 9;
  --c-sdg1: #c74140;
  --c-sdg2: #cfa94d;
  --c-sdg3: #6b9e47;
  --c-sdg4: #aa3433;
  --c-sdg5: #df5330;
  --c-sdg6: #71b8e0;
  --c-sdg7: #edc843;
  --c-sdg8: #8d2c44;
  --c-sdg9: #df7538;
  --c-sdg10: #bf3767;
  --c-sdg11: #e6a441;
  --c-sdg12: #b28f40;
  --c-sdg13: #567c4b;
  --c-sdg14: #5794d5;
  --c-sdg15: #7fbc45;
  --c-sdg16: #3d669a;
  --c-sdg17: #2f4768;
  --c-zdg1: #a47903;
  --c-zdg2: #be9115;
  --c-zdg3: #d7aa2d;
}

:root {
  --l-inner: 1280px;
}

@keyframes slide-f-right {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-left {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-f-top {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-up-20 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.p-faq .faq-content {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 60px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(167, 117, 83, 0.2);
  position: relative;
}
@media only screen and (max-width: 678px) {
  .p-faq .faq-content {
    padding: 20px;
  }
}
.p-faq .faq-content .faq-filter {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
.p-faq .faq-content .faq-filter::before {
  content: "";
  position: absolute;
  display: block;
  width: 110px;
  height: 110px;
  background: url(../images/deco_faq.png) no-repeat center center/contain;
  z-index: 1;
  top: 100%;
  right: 10%;
}
.p-faq .faq-content .faq-filter .tag-btn {
  border: none;
  padding: 7px 15px;
  border-radius: 10px;
  border: 1px solid #B47860;
  background-color: rgba(180, 120, 96, 0.05);
  color: #B47860;
  font-weight: 500;
  transition: background-color 300ms;
}
.p-faq .faq-content .faq-filter .tag-btn:hover {
  background-color: rgba(180, 120, 96, 0.15);
}
.p-faq .faq-content .faq-filter .tag-btn.active {
  background-color: #B47860;
  color: #fff;
  box-shadow: 0 5px 15px rgba(180, 120, 96, 0.25);
}
.p-faq .faq-content .faq-count {
  color: #4A4245;
  font-size: 16px;
  position: relative;
  z-index: 5;
}
.p-faq .faq-content .faq-item {
  display: block;
  background-color: #fff;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(167, 117, 83, 0.2);
  border: 1px solid rgba(188, 131, 108, 0);
  transition: border-color 300ms;
  position: relative;
  z-index: 5;
}
.p-faq .faq-content .faq-item:has(.faq-toggle:checked) {
  border-color: #BC836C;
}
.p-faq .faq-content .faq-item .faq-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.p-faq .faq-content .faq-item .faq-header {
  position: relative;
  padding: 20px;
  font-weight: bold;
  font-size: 18px;
  color: #201E1F;
}
.p-faq .faq-content .faq-item .faq-header::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 16px;
  background: url(../images/chevron-up.png) no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.25s ease;
}
.p-faq .faq-content .faq-item .faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 16px;
  font-weight: 400;
  color: #201E1F;
}
.p-faq .faq-content .faq-item .faq-toggle:checked ~ .faq-header::after {
  transform: translateY(-50%) rotate(0deg);
}
.p-faq .faq-content .faq-item .faq-tags {
  display: none;
}

/*# sourceMappingURL=faq.css.map */
