/* Bokai Custom Process Section */
.bokai_custom_process_main {
  position: relative;
  padding: var(--section-padding) 0;
  background-color: rgba(121, 232, 163, 0.1);
  overflow: hidden;
}

.bokai_custom_process_main .bokai_custom_process_container {
  position: relative;
  z-index: 1;
}

/* Header Section */
.bokai_custom_process_main .bokai_custom_process_header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 5rem;
}

.bokai_custom_process_main .bokai_custom_process_title {
  font-family: var(--title-font-family, Gabarito);
  font-weight: 700;
  font-size: var(--font-size-h1);
  line-height: 1.125;
  color: var(--title-text-color, #1e3f2a);
  margin: 0;
}

.bokai_custom_process_main .bokai_custom_process_subtitle {
  font-family: var(--font-family, Gabarito);
  font-weight: 400;
  font-size: var(--font-size-h4);
  line-height: 1.25;
  color: #9b9b9b;
  margin: 0;
  max-width: 100%;
}

/* Content Section */
.bokai_custom_process_main .bokai_custom_process_content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 5rem;
  margin-bottom: 5rem;
}

/* Quote Box */
.bokai_custom_process_main .bokai_custom_process_quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  width: 22.5rem;
  flex-shrink: 0;
  order: 2;
}

.bokai_custom_process_main .bokai_custom_process_quote_icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary, #36be6a);
  border-radius: 50%;
  font-size: max(var(--font-size-h1), 42px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
  padding-top: 0.35em;
}

.bokai_custom_process_main .bokai_custom_process_quote_text {
  font-family: var(--title-font-family, Gabarito);
  font-weight: 700;
  font-size: var(--font-size-h3);
  line-height: 1.222;
  color: var(--title-text-color, #1e3f2a);
  margin: 0;
  white-space: pre-line;
}

/* Card Item */
.bokai_custom_process_main .bokai_custom_process_card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 28.75rem;
}

.bokai_custom_process_main .bokai_custom_process_card:nth-child(2) {
  order: 1;
}

.bokai_custom_process_main .bokai_custom_process_card:nth-child(3) {
  order: 3;
  justify-content: flex-end;
}

.bokai_custom_process_main .bokai_custom_process_card_image {
  aspect-ratio: 46 / 34;
  width: 100%;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.bokai_custom_process_main .bokai_custom_process_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bokai_custom_process_main .bokai_custom_process_card_text {
  font-family: var(--font-family, Gabarito);
  font-weight: 400;
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--title-text-color, #1e3f2a);
  margin: 0;
}

/* Bottom Section */
.bokai_custom_process_main .bokai_custom_process_bottom {
  text-align: center;
}

.bokai_custom_process_main .bokai_custom_process_bottom_text {
  font-family: var(--title-font-family, Gabarito);
  font-weight: 700;
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--title-text-color, #1e3f2a);
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .bokai_custom_process_main .bokai_custom_process_content {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .bokai_custom_process_main .bokai_custom_process_quote {
    width: 100%;
  }

  .bokai_custom_process_main .bokai_custom_process_card {
    width: 100%;
  }

  .bokai_custom_process_main .bokai_custom_process_card_image {
    aspect-ratio: 16 / 9;
  }

  .bokai_custom_process_main .bokai_custom_process_header {
    margin-bottom: 3rem;
  }
}

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

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

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