section.provider-hero .provider-hero-carousel-wrapper {
  position: relative;
}
section.provider-hero .provider-hero-carousel {
  position: relative;
  width: 100%;
  height: 700px;
}
section.provider-hero .provider-hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
section.provider-hero .provider-hero-carousel-item {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
section.provider-hero .provider-hero-carousel-item.active {
  display: block;
  opacity: 1;
  position: relative;
}
section.provider-hero .provider-hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
section.provider-hero .provider-hero-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
section.provider-hero .provider-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
section.provider-hero .provider-hero-quote-wrapper {
  position: absolute;
  bottom: 56px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  z-index: 10;
  gap: 16px;
}
section.provider-hero .provider-hero-quote-card {
  flex: 1;
  background-color: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
section.provider-hero .provider-hero-quote-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: #242932;
  margin: 0 0 12px;
}
section.provider-hero .provider-hero-quote-text .provider-hero-quote-highlight {
  color: #7C7A49;
  font-weight: 600;
}
section.provider-hero .provider-hero-quote-separator {
  width: 100%;
  height: 1px;
  background-color: #D5D7DA;
  margin: 0 0 12px;
}
section.provider-hero .provider-hero-quote-author {
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #242932;
  margin: 0 0 4px;
}
section.provider-hero .provider-hero-quote-role {
  font-family: "Albert Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #717680;
  margin: 0;
}
section.provider-hero .provider-hero-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
  position: relative;
  z-index: 11;
}
section.provider-hero .provider-hero-nav-btn i {
  font-size: 16px;
  color: #fff;
}
section.provider-hero .provider-hero-nav-btn:hover {
  background-color: #C56B0A;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
section.provider-hero .provider-hero-nav-btn:active {
  transform: scale(0.95);
}
section.provider-hero .provider-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
section.provider-hero .provider-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 240px;
  border: none;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
section.provider-hero .provider-hero-dot.active {
  background-color: #8F9A67;
  width: 70px;
  border-radius: 240px;
}
section.provider-hero .provider-hero-text-wrapper {
  display: flex;
  align-items: center;
}
section.provider-hero .provider-hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  margin: 0;
}
section.provider-hero .provider-hero-pre-heading {
  color: #717680;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
section.provider-hero .provider-hero-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 0px;
  color: #242932;
  margin: 0 0 24px;
}
section.provider-hero .provider-hero-title .provider-hero-title-highlight {
  color: #7C7A49;
}
section.provider-hero .provider-hero-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
  margin: 0 0 40px;
}
section.provider-hero .provider-hero-description strong {
  font-weight: 700;
}
section.provider-hero .provider-hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}
section.provider-hero .provider-hero-primary-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
section.provider-hero .provider-hero-primary-btn {
  width: auto;
}
section.provider-hero .provider-hero-button-subtext {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #717680;
  margin: 0;
}
section.provider-hero .provider-hero-button-subtext strong {
  font-weight: 700;
}
section.provider-hero .provider-hero-secondary-btn {
  width: auto;
}

@media (max-width: 1024px) {
  section.provider-hero {
    padding: 0;
  }
  section.provider-hero .provider-hero-content {
    flex-direction: column;
    gap: 0;
  }
  section.provider-hero .provider-hero-carousel-wrapper {
    width: 100%;
    margin-left: 0;
    order: 2;
  }
  section.provider-hero .provider-hero-carousel {
    height: 500px;
  }
  section.provider-hero .provider-hero-text-wrapper {
    width: 100%;
    order: 1;
  }
  section.provider-hero .provider-hero-text {
    width: 100%;
    padding: 48px 0;
  }
  section.provider-hero .provider-hero-title {
    font-size: 36px;
    line-height: 44px;
  }
  section.provider-hero .provider-hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  section.provider-hero .provider-hero-primary-button-wrapper {
    width: 100%;
  }
  section.provider-hero .provider-hero-primary-btn,
section.provider-hero .provider-hero-secondary-btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  section.provider-hero .provider-hero-carousel {
    height: 400px;
  }
  section.provider-hero .provider-hero-text {
    padding: 40px 0;
  }
  section.provider-hero .provider-hero-title {
    font-size: 32px;
    line-height: 40px;
  }
  section.provider-hero .provider-hero-description {
    font-size: 16px;
  }
  section.provider-hero .provider-hero-quote-card {
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 24px;
  }
  section.provider-hero .provider-hero-nav-btn {
    display: none;
  }
}
section.provider-journey {
  padding: 80px 0;
  background-color: #FAF9F9;
  position: relative;
  overflow: visible;
}
section.provider-journey .container {
  overflow: visible;
  position: relative;
}
section.provider-journey .provider-journey-content {
  display: flex;
  gap: 80px;
  align-items: stretch;
  position: relative;
}
section.provider-journey .provider-journey-steps {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
section.provider-journey .provider-journey-step {
  display: flex;
  gap: 32px;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.3s;
}
section.provider-journey .provider-journey-step.active {
  opacity: 1;
}
section.provider-journey .provider-journey-step-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}
section.provider-journey .provider-journey-step-icon {
  width: 56px;
  height: 56px;
  background-color: #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
section.provider-journey .provider-journey-step-icon i {
  font-size: 24px;
  color: #9FA5B0;
  transition: color 0.3s;
}
section.provider-journey .provider-journey-step.active .provider-journey-step-icon {
  background-color: #7C7A49;
}
section.provider-journey .provider-journey-step.active .provider-journey-step-icon i {
  color: #fff;
}
section.provider-journey .provider-journey-step-line {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background-color: #E5E5E5;
  transition: background-color 0.3s;
}
section.provider-journey .provider-journey-step.active .provider-journey-step-icon {
  background-color: #7C7A49;
}
section.provider-journey .provider-journey-step.active ~ .provider-journey-step .provider-journey-step-line,
section.provider-journey .provider-journey-step.active .provider-journey-step-line {
  background-color: #7C7A49;
}
section.provider-journey .provider-journey-step-content {
  flex: 1;
  padding-bottom: 32px;
  border: 1px solid #D5D7DA;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}
section.provider-journey .provider-journey-step-number-inner {
  display: inline-flex;
  background-color: #FAF9F9;
  border-radius: 2px;
  margin: 0 0 16px;
  padding: 4px 8px;
  width: fit-content;
}
section.provider-journey .provider-journey-step-number {
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  color: #717680;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin: 0;
  padding: 0;
}
section.provider-journey .provider-journey-step.active .provider-journey-step-number {
  color: #7C7A49;
}
section.provider-journey .provider-journey-step-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0px;
  color: #9FA5B0;
  margin: 0 0 8px;
  transition: color 0.3s;
}
section.provider-journey .provider-journey-step.active .provider-journey-step-title {
  color: #242932;
}
section.provider-journey .provider-journey-step-description {
  font-family: Font/Family/font-secondary;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
  margin: 0;
}
section.provider-journey .provider-journey-step-cta {
  margin-top: 16px;
}
section.provider-journey .provider-journey-sticky {
  width: 50%;
  position: relative;
  flex-shrink: 0;
  align-self: stretch;
}
section.provider-journey .provider-journey-sticky-content {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: 100%;
}
section.provider-journey .provider-journey-label {
  color: #7C7A49;
  margin: 0 0 16px;
}
section.provider-journey .provider-journey-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  color: #242932;
  margin: 0 0 24px;
}
section.provider-journey .provider-journey-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
  margin: 0 0 24px;
}
section.provider-journey .provider-journey-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0;
}

@media (max-width: 1024px) {
  section.provider-journey .provider-journey-content {
    flex-direction: column;
    gap: 48px;
  }
  section.provider-journey .provider-journey-steps {
    width: 100%;
  }
  section.provider-journey .provider-journey-sticky {
    width: 100%;
  }
  section.provider-journey .provider-journey-sticky-content {
    position: relative;
    top: 0;
  }
  section.provider-journey .provider-journey-title {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 768px) {
  section.provider-journey {
    padding: 48px 0;
  }
  section.provider-journey .provider-journey-title {
    font-size: 32px;
    line-height: 40px;
  }
}
section.values {
  background-color: #FBF6ED;
}
section.values .values-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  position: relative;
}
section.values .values-left {
  max-width: 411px;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 0;
}
section.values .values-label {
  color: #7C7A49;
}
section.values .values-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 0px;
  color: #242932;
  margin-bottom: 24px;
}
section.values .values-title span {
  font-weight: 200;
  color: #7C7A49;
}
section.values .values-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
}
section.values .values-description span {
  font-weight: 600;
  color: #242932;
}
section.values .values-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
section.values .values-cta-button i {
  font-size: 16px;
  color: #C56B0A;
}
section.values .values-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
}
section.values .values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 0;
  padding-bottom: 64px;
  flex: 1;
}
section.values .value-card {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section.values .value-card-icon {
  width: 48px;
  height: 48px;
  background-color: #F4E7CA;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
section.values .value-card-icon i {
  font-size: 24px;
  color: #C56B0A;
}
section.values .value-card-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0px;
  color: #242932;
  margin: 0;
}
section.values .divider {
  width: 100%;
  height: 1px;
  background-color: #D5D7DA;
}
section.values .value-card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
  margin: 0;
}

@media (max-width: 1024px) {
  section.values .values-content {
    flex-direction: column;
    gap: 48px;
  }
  section.values .values-left {
    max-width: 100%;
    padding-bottom: 0;
  }
  section.values .values-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media (max-width: 768px) {
  section.values .values-title {
    font-size: 32px;
    line-height: 40px;
  }
  section.values .values-description {
    font-size: 16px;
    line-height: 24px;
  }
  section.values .values-cta-button {
    font-size: 16px;
    padding: 12px 16px;
  }
  section.values .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  section.values .values-content {
    gap: 40px;
  }
  section.values .values-left {
    padding-bottom: 0;
  }
  section.values .values-grid {
    margin-bottom: 0;
    padding-bottom: 64px;
  }
  section.values .value-card {
    padding: 0;
  }
}
section.values.provider-values-bg {
  background-color: #FBF6ED;
  background-image: url("../images/components/values_providers_bkg.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

section.provider-page-cta {
  position: relative;
  overflow: hidden;
}

.provider-page-cta-background {
  position: relative;
  background-size: cover;
  background-position: center 75%;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-top: 64px;
  padding-bottom: 0;
}

.provider-page-cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(255.4deg, rgba(30, 32, 19, 0) 13.61%, #1E2013 86.06%), linear-gradient(164.63deg, rgba(30, 32, 19, 0) -5.7%, #1E2013 74.64%);
  z-index: 1;
}

.provider-page-cta-background .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 0;
}

.provider-page-cta-content {
  display: flex;
  gap: 80px;
  align-items: flex-end;
  color: #fff;
}

.provider-page-cta-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.provider-page-cta-label {
  color: #7C7A49;
  margin-bottom: 8px;
}

.provider-page-cta-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 0px;
  color: #fff;
  margin: 0 0 24px;
}
.provider-page-cta-title .provider-page-cta-title-highlight {
  color: #7C7A49;
}

.provider-page-cta-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #fff;
  margin: 0;
}

.provider-page-cta-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.provider-page-cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.provider-page-cta-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-align: left;
}

.provider-page-cta-benefit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.provider-page-cta-white-container {
  background-color: #fff;
  padding: 24px 32px;
  border-radius: 8px;
  margin-top: 64px;
  margin-bottom: 64px;
  position: relative;
  z-index: 3;
}

.provider-page-cta-white-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.provider-page-cta-white-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #242932;
  margin: 0;
  flex: 1;
}
.provider-page-cta-white-text strong {
  font-weight: 700;
}

.provider-page-cta-white-buttons {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

.provider-page-cta-primary-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.provider-page-cta-button-subtext {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #717680;
  margin: 0;
}
.provider-page-cta-button-subtext strong {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .provider-page-cta-content {
    flex-direction: column;
    gap: 48px;
  }

  .provider-page-cta-left,
.provider-page-cta-right {
    width: 100%;
  }

  .provider-page-cta-right {
    align-items: flex-start;
  }

  .provider-page-cta-benefits {
    align-items: flex-start;
  }

  .provider-page-cta-benefit-item {
    text-align: left;
  }

  .provider-page-cta-white-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .provider-page-cta-white-buttons {
    width: 100%;
    flex-direction: column;
  }

  .provider-page-cta-primary-button-wrapper,
.provider-page-cta-white-buttons .btn {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .provider-page-cta-background {
    min-height: 400px;
  }

  .provider-page-cta-title {
    font-size: 32px;
    line-height: 40px;
  }

  .provider-page-cta-description {
    font-size: 16px;
  }
}
section.faq {
  background: linear-gradient(0deg, #FAF9F9, #FAF9F9), radial-gradient(43.01% 43.01% at 50% 100%, #FDFFF5 0%, #FDFFF5 100%);
}
section.faq .faq-header {
  max-width: 628px;
  margin: 0 auto 32px;
  text-align: center;
}
section.faq .faq-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 0px;
  color: #242932;
  margin: 0 0 16px;
}
section.faq .faq-title .faq-title-highlight {
  color: #7C7A49;
}
section.faq .faq-description {
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
  margin: 0;
}
section.faq .faq-image-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 32px;
  border-radius: 0;
  overflow: hidden;
}
section.faq .faq-image-wrapper .faq-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
section.faq .faq-accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
section.faq .faq-accordion-grid .faq-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}
section.faq .faq-accordion-grid .faq-item:hover .faq-question {
  background-color: #F3F7FF;
}
section.faq .faq-accordion-grid .faq-item:hover .faq-answer {
  background-color: #F3F7FF;
}
section.faq .faq-accordion-grid .faq-item:hover .faq-icon {
  background-color: #6893E1;
  color: #fff;
}
section.faq .faq-accordion-grid .faq-item:hover .faq-icon i {
  color: #fff;
}
section.faq .faq-accordion-grid .faq-item .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: #fff;
  border: 1px solid #D5D7DA;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s;
}
section.faq .faq-accordion-grid .faq-item .faq-question .faq-question-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0px;
  color: #242932;
  flex: 1;
}
section.faq .faq-accordion-grid .faq-item .faq-question .faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D9E5FB;
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
}
section.faq .faq-accordion-grid .faq-item .faq-question .faq-icon .faq-icon-plus {
  font-size: 16px;
  color: #6893E1;
  transition: opacity 0.3s;
  opacity: 1;
}
section.faq .faq-accordion-grid .faq-item .faq-question .faq-icon .faq-icon-minus {
  font-size: 16px;
  color: #6893E1;
  transition: opacity 0.3s;
  opacity: 0;
  position: absolute;
}
section.faq .faq-accordion-grid .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  border: none;
  background-color: #fff;
  transition: max-height 0.3s ease-out, padding 0.3s, background-color 0.3s;
}
section.faq .faq-accordion-grid .faq-item .faq-answer .faq-answer-separator {
  height: 1px;
  background-color: #D5D7DA;
  margin: 0 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
section.faq .faq-accordion-grid .faq-item .faq-answer p {
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
  margin: 0;
  padding: 12px 16px 16px 16px;
}
section.faq .faq-accordion-grid .faq-item .faq-answer p strong {
  font-weight: 600;
}
section.faq .faq-accordion-grid .faq-item.active .faq-question {
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}
section.faq .faq-accordion-grid .faq-item.active .faq-question .faq-icon .faq-icon-plus {
  opacity: 0;
}
section.faq .faq-accordion-grid .faq-item.active .faq-question .faq-icon .faq-icon-minus {
  opacity: 1;
}
section.faq .faq-accordion-grid .faq-item.active .faq-answer {
  max-height: 1000px;
  padding-top: 0;
  border: 1px solid #D5D7DA;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}
section.faq .faq-accordion-grid .faq-item.active .faq-answer .faq-answer-separator {
  opacity: 1;
}
section.faq .faq-more {
  margin-top: 24px;
  text-align: center;
}

@media (max-width: 768px) {
  section.faq .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  section.faq .faq-header {
    margin-bottom: 48px;
  }
  section.faq .faq-header .faq-title {
    font-size: 32px;
    line-height: 40px;
  }
  section.faq .faq-header .faq-description {
    font-size: 14px;
  }
  section.faq .faq-accordion-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  section.faq .faq-column {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  section.faq .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  section.faq .faq-header .faq-title {
    font-size: 24px;
    line-height: 32px;
  }
  section.faq .faq-question {
    padding: 16px;
  }
  section.faq .faq-question .faq-question-text {
    font-size: 14px;
  }
}
section.contact {
  background-color: #fff;
}
section.contact .contact-form-wrapper {
  display: flex;
  flex-direction: column;
}
section.contact .contact-form-wrapper .contact-heading {
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 0px;
  color: #242932;
  margin: 0 0 24px;
}
section.contact .contact-form-wrapper .contact-heading .contact-heading-highlight {
  color: #7C7A49;
}
section.contact .contact-form-wrapper .contact-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
  margin: 0 0 32px;
}
section.contact .contact-image-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}
section.contact .contact-image-wrapper .contact-image {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  section.contact {
    overflow: hidden;
  }
  section.contact .container-50-50 .left-50 {
    padding-top: 64px;
  }
  section.contact .contact-image-wrapper {
    height: auto;
    min-height: 260px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: hidden;
  }
  section.contact .contact-image-wrapper .contact-image {
    height: auto;
    max-height: 200px;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  section.contact .contact-heading {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  section.contact .contact-heading {
    font-size: 24px;
    line-height: 32px;
  }
  section.contact .contact-description {
    font-size: 14px;
  }
}
section.reviews {
  background-color: #fff;
}
section.reviews .reviews-header {
  max-width: 668px;
  margin: 0 auto 80px;
  text-align: center;
}
section.reviews .reviews-header .reviews-title {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  font-weight: 300;
  margin-bottom: 16px;
  color: #242932;
}
section.reviews .reviews-header .reviews-title .highlight {
  color: #7C7A49;
}
section.reviews .reviews-header .reviews-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #717680;
  max-width: 800px;
  margin: 0 auto 40px;
}
section.reviews .reviews-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
section.reviews .reviews-carousel {
  position: relative;
  overflow: hidden;
}
section.reviews .reviews-carousel-track {
  display: flex;
  width: 100%;
  border-radius: 16px;
}
section.reviews .reviews-carousel-item {
  display: none;
  width: 100%;
  border-radius: 16px;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  align-items: stretch;
  justify-content: center;
}
section.reviews .reviews-carousel-item.active {
  display: flex;
  opacity: 1;
}
section.reviews .review-content {
  width: 50%;
  max-width: 628px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
section.reviews .review-card {
  background-color: #EDEBD2;
  border-radius: 16px;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
section.reviews .review-card .review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
section.reviews .review-card .review-stars i {
  font-size: 32px;
  color: #7C7A49;
}
section.reviews .review-card .review-rating {
  font-family: "Spline Sans Mono", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717680;
  margin-bottom: 16px;
}
section.reviews .review-card .review-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0px;
  line-height: 32px;
  color: #717680;
  margin-bottom: 64px;
  margin-top: 64px;
}
section.reviews .review-card .review-author {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: 0px;
  line-height: 32px;
  font-size: 24px;
  font-weight: 500;
  color: #242932;
  margin: 0 0 8px;
}
section.reviews .review-card .review-activity-label {
  font-family: "Spline Sans Mono", sans-serif;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  color: #717680;
  margin: 0 0 24px;
}
section.reviews .review-card .review-activity-label a {
  color: #717680;
  text-decoration: none;
}
section.reviews .review-card .review-activity-label a:hover {
  color: #B13F01;
  text-decoration: underline;
}
section.reviews .review-card .review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
section.reviews .review-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 50%;
  max-width: 628px;
  flex-shrink: 0;
  height: 100%;
}
section.reviews .review-image-wrapper .review-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
section.reviews .review-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  width: 100%;
}
section.reviews .review-navigation .review-dots {
  display: flex;
  gap: 8px;
  padding-left: 0;
}
section.reviews .review-navigation .review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #E5E5E5;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
section.reviews .review-navigation .review-dot.active {
  background-color: #7C7A49;
  width: 71px;
  height: 12px;
  border-radius: 240px;
}
section.reviews .review-navigation .review-dot:hover {
  background-color: #7C7A49;
  opacity: 0.7;
}
section.reviews .review-navigation .review-nav-buttons {
  display: flex;
  gap: 16px;
}
section.reviews .review-navigation .review-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #C56B0A;
  background-color: #fff;
  color: #6C6A36;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
section.reviews .review-navigation .review-nav-btn:hover {
  background-color: #FDFFF5;
  border-color: #7C7A49;
}
section.reviews .review-navigation .review-nav-btn i {
  font-size: 16px;
}

@media (max-width: 1024px) {
  section.reviews .reviews-carousel-item {
    flex-direction: column-reverse;
    gap: 32px;
    align-items: stretch;
  }
  section.reviews .review-content {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  section.reviews .review-card {
    flex: none;
  }
  section.reviews .review-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 400px;
  }
  section.reviews .review-image-wrapper .review-image {
    height: 100%;
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  section.reviews .reviews-header {
    margin-bottom: 40px;
  }
  section.reviews .reviews-header .reviews-title {
    font-size: 32px;
  }
  section.reviews .reviews-header .reviews-description {
    font-size: 14px;
  }
  section.reviews .reviews-carousel-item {
    flex-direction: column-reverse;
    gap: 24px;
  }
  section.reviews .review-content {
    width: 100%;
    height: auto;
  }
  section.reviews .review-card {
    padding: 24px;
    flex: none;
  }
  section.reviews .review-card .review-text {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  section.reviews .review-image-wrapper {
    width: 100%;
    height: auto;
    min-height: 300px;
  }
  section.reviews .review-image-wrapper .review-image {
    min-height: 300px;
  }
}
@media (max-width: 480px) {
  section.reviews .reviews-header .reviews-title {
    font-size: 28px;
  }
  section.reviews .reviews-carousel-item {
    flex-direction: column-reverse;
    gap: 16px;
  }
  section.reviews .review-content {
    width: 100%;
    height: auto;
  }
  section.reviews .review-card {
    padding: 20px;
    flex: none;
  }
  section.reviews .review-card .review-text {
    font-size: 14px;
  }
  section.reviews .review-image-wrapper {
    width: 100%;
    height: auto;
    min-height: 250px;
  }
  section.reviews .review-image-wrapper .review-image {
    min-height: 250px;
  }
}
section.values {
  background-color: #FBF6ED;
}
section.values .values-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  position: relative;
}
section.values .values-left {
  max-width: 411px;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 0;
}
section.values .values-label {
  color: #7C7A49;
}
section.values .values-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 0px;
  color: #242932;
  margin-bottom: 24px;
}
section.values .values-title span {
  font-weight: 200;
  color: #7C7A49;
}
section.values .values-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
}
section.values .values-description span {
  font-weight: 600;
  color: #242932;
}
section.values .values-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
section.values .values-cta-button i {
  font-size: 16px;
  color: #C56B0A;
}
section.values .values-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
}
section.values .values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 0;
  padding-bottom: 64px;
  flex: 1;
}
section.values .value-card {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section.values .value-card-icon {
  width: 48px;
  height: 48px;
  background-color: #F4E7CA;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
section.values .value-card-icon i {
  font-size: 24px;
  color: #C56B0A;
}
section.values .value-card-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0px;
  color: #242932;
  margin: 0;
}
section.values .divider {
  width: 100%;
  height: 1px;
  background-color: #D5D7DA;
}
section.values .value-card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
  margin: 0;
}

@media (max-width: 1024px) {
  section.values .values-content {
    flex-direction: column;
    gap: 48px;
  }
  section.values .values-left {
    max-width: 100%;
    padding-bottom: 0;
  }
  section.values .values-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media (max-width: 768px) {
  section.values .values-title {
    font-size: 32px;
    line-height: 40px;
  }
  section.values .values-description {
    font-size: 16px;
    line-height: 24px;
  }
  section.values .values-cta-button {
    font-size: 16px;
    padding: 12px 16px;
  }
  section.values .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  section.values .values-content {
    gap: 40px;
  }
  section.values .values-left {
    padding-bottom: 0;
  }
  section.values .values-grid {
    margin-bottom: 0;
    padding-bottom: 64px;
  }
  section.values .value-card {
    padding: 0;
  }
}
section.values.provider-values-bg {
  background-color: #FBF6ED;
  background-image: url("../images/components/values_providers_bkg.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

section.provider-plans {
  padding: 80px 0;
  background-color: #FAF9F9;
}
section.provider-plans .container {
  max-width: 1400px;
  align-items: center;
}

.provider-plans-header {
  text-align: center;
  align-items: center;
  margin-bottom: 40px;
  max-width: 628px;
  margin-left: auto;
  margin-right: auto;
}

.provider-plans-label {
  color: #717680;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.provider-plans-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: 0px;
  color: #242932;
  margin: 0 0 16px;
}
.provider-plans-title .provider-plans-title-highlight {
  color: #7C7A49;
}

.provider-plans-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.provider-plans-plan-button {
  padding: 8px 16px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #fff;
}

.provider-plans-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.provider-plans-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  overflow: hidden;
  background-color: transparent;
}

.provider-plans-header-row {
  background-color: transparent;
  border: none !important;
}

.provider-plans-feature-label {
  width: auto;
  min-width: 200px;
  padding: 16px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #717680;
  border-left: 1px solid #D5D7DA;
  border-right: 1px solid #D5D7DA;
  border-bottom: 1px solid #D5D7DA;
  vertical-align: top;
}

.provider-plans-header-row th.provider-plans-feature-label {
  border-top: none !important;
  border-left: none !important;
  border-bottom: none !important;
  border-right: 1px solid #D5D7DA !important;
  background-color: transparent !important;
}

.provider-plans-plan-header {
  width: 250px;
  min-width: 200px;
  padding: 0;
  vertical-align: bottom;
  position: relative;
  border-top: 1px solid #D5D7DA !important;
  border-left: none !important;
  border-bottom: 1px solid #D5D7DA !important;
  border-right: 1px solid #D5D7DA !important;
  padding-top: 64px;
  background-color: #fff;
}
.provider-plans-plan-header:last-child {
  border-right: 1px solid #D5D7DA !important;
}

.provider-plans-recommended-badge {
  position: absolute;
  top: 16px;
  left: 24px;
  background-color: #FBF6ED;
  color: #C56B0A;
  padding: 4px 8px;
  border: 1px solid #C56B0A;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  z-index: 10;
}
.provider-plans-recommended-badge i {
  font-size: 16px;
  color: #C56B0A;
}

.provider-plans-plan-card {
  padding: 16px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-bottom: 1px solid #D5D7DA;
}

.provider-plans-plan-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  color: #242932;
  margin: 0 0 8px;
  text-align: left;
  width: 100%;
}

.provider-plans-plan-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #717680;
  margin: 0 0 24px;
}

.provider-plans-plan-button {
  width: 100%;
  max-width: 200px;
  align-self: flex-start;
  padding: 8px 16px;
}

.provider-plans-header-row-special {
  background-color: #FBF6ED !important;
  border-bottom: 1px solid #D5D7DA !important;
  border-top: 1px solid #D5D7DA !important;
  border-left: 1px solid #D5D7DA !important;
  border-right: 1px solid #D5D7DA !important;
}
.provider-plans-header-row-special .provider-plans-header-cell {
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #242932;
  padding: 12px 16px;
}

.provider-plans-header-cell {
  padding: 16px 16px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #242932;
  text-align: left;
  border: none !important;
  border-right: none !important;
}

.provider-plans-feature-row {
  border-bottom: 1px solid #D5D7DA;
  border-left: 1px solid #D5D7DA;
  border-right: 1px solid #D5D7DA;
  transition: background-color 0.3s;
  background-color: #fff;
}
.provider-plans-feature-row:last-child {
  border-bottom: 1px solid #D5D7DA;
}
.provider-plans-feature-row td {
  padding: 12px 16px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #242932;
}

.provider-plans-feature-value {
  width: 250px;
  min-width: 200px;
  padding: 16px 24px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #D5D7DA;
  border-bottom: 1px solid #D5D7DA;
}
.provider-plans-feature-value:last-child {
  border-right: 1px solid #D5D7DA;
}

.provider-plans-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #8F9A67;
  transform: rotate(45deg);
  position: relative;
  margin: 0 auto;
  border-radius: 2px;
}
.provider-plans-checkmark i {
  transform: rotate(-45deg);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.provider-plans-text-value {
  font-family: "Albert Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: #717680;
  text-align: center;
  vertical-align: middle;
}

.provider-plans-empty {
  color: #9FA5B0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
}

body.provider-home-page {
  overflow: visible !important;
}

/*# sourceMappingURL=provider-home.css.map */
