.faq-section.bg-titanium{background: #F8F7F4;}

.faq-section {
    padding: 82px 0;
}

.faq-container {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(350px, 1.1fr);
    gap: 110px;
    align-items: flex-start;
}

.faq-left {
    position: sticky;
    top: 120px;
}

.faq-heading-content {
    margin: 0;
}

.faq-heading-content .rsg-heading-text-eyebrow {
    display: block;
    color: #a8663b;
    font-family: "JetBrains Mono", monospace;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.faq-heading-content .rsg-heading-text-title {
    color: #262626;
    font-size: 36px;
    line-height: 1.12;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.faq-heading-content .rsg-heading-text-title strong,
.faq-heading-content .rsg-heading-text-title b {
    font-weight: 700;
}

.faq-heading-content .rsg-heading-text-description {
    color: #262626;
}

.faq-heading-content .rsg-heading-text-description p {
    margin: 0 0 24px;
}

.faq-button {
    margin-top: 34px;
}

.faq-button .rsg-buttons {
    justify-content: flex-start;
}

.faq-right {
    position: relative;
}

.faq-list {
    position: relative;
    padding-right: 42px;
}

.faq-item {
    margin-bottom: 20px;
    position: relative;
    padding: 0 42px 34px 0;
}

.faq-item:after {
    content: '';
    position: absolute;
    right: -47px;
    top: 0;
    width: 6px;
    height: 48px;
    background: rgba(38, 38, 38, 0.28);
}

.faq-item.is-active:after {
    background: #34ccc0;
    height: 42px;
}
.faq-item:before {
    content: "";
    position: absolute;
    right: -45px;
    top: 42px;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, rgba(38, 38, 38, 0.28), transparent);
    animation: growLine 1s ease forwards;
}
.faq-item.is-active:before {
    content: '';
    position: absolute;
    right: -45px;
    top: 42px;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, #34CCBF, transparent);
    animation: growLine 1s ease forwards;
}

.faq-question {
    width: 100%;
    padding: 0;
    background: transparent !important;
    border: 0;
    text-align: left;
    color: rgba(38, 38, 38, 0.28);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    cursor: pointer;
    color: #262626;
}

.faq-item.is-active .faq-question {
    color: #34ccc0 !important;
}
.faq-item button.faq-question:hover {
    color: #34ccc0 !important;
}


@keyframes growLine {
  to {
    height: 86%;
  }
}

.faq-answer {
    display: none;
    color: #262626;
    font-size: 16px;
    line-height: 1.55;
    margin-top: 10px;
}

.faq-answer p {
    margin: 0 0 24px;
}

.faq-answer p:last-child {
    margin:0;
}

.faq-item.is-active .faq-answer {
    display: block;
}

@media (max-width: 991px) {
    .faq-container {
        grid-template-columns: 100%;
        gap: 50px;
    }
	.faq-item .faq-question {
    white-space: unset !important;
        color: #262626 !important;
}
	.faq-item button.faq-question:hover {
    color: #262626 !important;
}
	.faq-item {
    padding: 0 0 23px 0;
}

    .faq-left {
        position: relative;
        top: auto;
    }

    .faq-heading-content .rsg-heading-text-title {
        font-size: 30px;
    }


  .faq-section {
    padding: 60px 0;
  }

  .faq-container {
    display: block;
  }

  .faq-left {
    margin-bottom: 40px;
  }

  .faq-list {
    padding-right: 0;
  }

  .faq-item {
    margin: 0;
    padding: 13px 30px 13px 0;
    border-bottom: 1px solid #34ccc0;
  }

  .faq-item::before,
  .faq-item::after {
    display: none !important;
  }

  .faq-question {
    color: #262626 !important;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    position: relative;
  }

  .faq-question::after {
    content: "+";
    position: absolute;
    right: -28px;
    top: 0;
    color: #34ccc0;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
  }

  .faq-item.is-active .faq-question {
    color: #262626 !important;
  }

  .faq-item.is-active .faq-question::after {
    content: "−";
  }

  .faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.35;
    color: #262626;
  }

  .faq-item.is-active .faq-answer {
    display: block;
  }

  .faq-answer p {
    margin: 0 0 15px;
  }
}