 /* Sticky блок - замените на Id блока который должен прилипнуть */
 #rec578120215  {
  position: sticky;
  position: -webkit-sticky;
  z-index: 999;
  top: 0px;
 }
#t-header {
  position: sticky;
  position: -webkit-sticky;
  z-index: 999;
  top: 0px;
 }
.t-records {
  overflow: unset !important;
}

/* Этапы работы */
.how-we-work_header, .how-we-work_header * {
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: normal;
    font-size: 42px;
}
.how-we-work_label {
    margin-bottom: 20px;
    
}
.how-we-work_step {
    display: flex;
    gap: 30px;
}
.how-we-work_before {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.how-we-work_before::after {
    content: '';
    display: block;
    height: 100%;
    border-left: 1px solid #0aa340;
    width: 1px;
}
.how-we-work_icon {
    width: 47px;
    height: 47px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #0aa340;
    display: flex;
    justify-content: center;
    align-items: center;
}
.how-we-work_icon span {
    font-size: 20px;
    color: white;
}
.how-we-work-content {
    font-size: 20px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 30px;
    max-width: 80%;
}
.how-we-work-content li, .how-we-work-content p {
    font-size: 16px;
}

/* Часто задаваемые вопросы */
.faq_header, .faq_header * {
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: normal;
    font-size: 42px;
}
.faq-question {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 30px 10px 10px;
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid;
  line-height: 30px;
}
.faq-question:active, 
.faq-question.active,
.faq-question.active::after {
    cursor: pointer;
    font-weight: bold;
}
.faq-question.active {
  border-bottom: 3px solid;
  font-weight: bold;
}
.faq-question::after {
  content: '+';
  position: absolute;
  float: right;
  right: 1rem;
  font-size: 30px;
  width: 30px;
  height: 30px;
  text-align: right;
}
.faq-question.active::after {
  content: '-';
}
.faq-answer {
  display: none;
  opacity: 0;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease 0.15s;
}
.faq-answer.active {
  display: block; 
  opacity: 1;
  padding: 20px;
  max-height: 100%;
  transition: all 0.35s ease 0.15s;
}
.faq a {
    color: black !important;
}
@media (max-width: 768px) {
    .faq-question {
  max-width: 85%;
}
}
@media (hover: hover) {
    .faq-question:hover,
    .faq-question:hover::after {
        cursor: pointer;
        font-weight: bold;
    }
}

.bold_text {
    font-weight: bold;
}