section {
    margin: 0
}

.hero {
    margin-top: 50px;
    padding: 32px 0 64px 0
}

.hero h1 {
    font-size: 34px;
    line-height: 110%;
    width: 50%;
    margin-right: auto;
    margin-bottom: 32px
}

.hero .faqs-wrap, .hero .faqs-wrap .faq .question, .hero .faqs-wrap .faq .question .arrow {
    display: flex;
    align-items: center;
    justify-content: center
}

.hero .faqs-wrap {
    flex-direction: column;
    gap: 16px
}

.hero .faqs-wrap .faq {
    width: 100%;
    padding: 20px 32px;
    background-color: #FFF;
    border-radius: 16px;
    box-shadow: 0 5px 15px 0 #2D3F8F1A;
    cursor: pointer
}

.hero .faqs-wrap.anim .faq * {
    transition: all 0.5s ease
}

.hero .faqs-wrap .faq .answer {
    display: none
}

.hero .faqs-wrap .faq .question {
    gap: 30px
}

.hero .faqs-wrap .faq .question h2 {
    flex: 1;
    font-size: 24px;
    line-height: 120%
}

.hero .faqs-wrap .faq .question .arrow {
    border-radius: 8px;
    border: 1px solid #EE6129;
    width: 44px;
    height: 44px
}

.hero .faqs-wrap .faq .question .arrow img {
    width: 12px;
    height: 7px;
    transform: rotate(180deg)
}

.hero .faqs-wrap .faq.opened .question .arrow img {
    transform: rotate(0)
}

.hero .faqs-wrap .faq.opened .question {
    margin-bottom: 16px
}

.register h2 {
    text-align: center
}

.register .leadform {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 32px;
    max-width: 610px;
    margin: auto
}

.register .leadform input {
    padding: 15px 17px 14px 17px;
    border: 1px solid gray;
    width: 100%;
    margin-bottom: 5px;
    border-radius: 8px;
    color: #010E12
}

.register .leadform input::placeholder {
    color: #757575
}

.register .leadform .orange-btn {
    line-height: 16px;
    margin: 5px 0 20px 0
}

.register .leadform .consent-text {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 18px
}

.register .leadform .consent-text a {
    font-size: inherit;
    font-weight: inherit;
    color: inherit
}