@font-face {
    font-family: "GT Walsheim Pro";
    src: url("/wp-content/themes/your-theme/assets/fonts/GT-Walsheim-Pro-Medium.woff2") format("woff2"),
         url("/wp-content/themes/your-theme/assets/fonts/GT-Walsheim-Pro-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

.section-hero {
    display: flex;
    flex-direction: column;
    gap: 52px;
    align-items: center;
    padding: 100px 105px 36px 105px;
    justify-content: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;

    background: var(--bg-color-primary);
}

.section-hero.has-fade {
    padding: 100px 105px 0 105px;
}

.hero-main.has-fade {
    margin-bottom: -240px;
}

.hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 46px;
    width: 100%;

    position: relative;
    z-index: 2;
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;

    width: 100%;
    max-width: 1200px;
}

.hero-main-content-badge {
    display: flex;
    flex-direction: row;
    padding: 7px 18px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 58px;
    border: 1px solid #E6E7EA;
    background: var(--color-white);
    box-shadow: 0 8px 23px -10px rgba(212, 212, 212, 0.30), 0 8px 24px -8px rgba(173, 173, 173, 0.20), 0 -4px 0 0 #F3F3F4 inset;
}

.hero-main-content-badge-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.hero-main-content-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 933px;
}

.hero-main-content-header-title {
    color: var(--Dark-Shade-blue-500);
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 80px;
    letter-spacing: -5%;
}

.hero-main-content-header-subtitle {
    color: var(--Dark-Shade-blue-300);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.hero-main-content-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}
.hero-main-content-image {
    width: 100%;
    max-width: 1200px;
    z-index: 10;
}

.hero-main-content-image img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.hero-main-content-image.has-fade {
    position: relative;
    overflow: hidden;
}

.hero-main-content-image.has-fade::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    pointer-events: none;

    background: linear-gradient(
            to bottom,
            rgba(244, 245, 249, 0) 0%,
            rgba(244, 245, 249, 0.75) 20%,
            var(--bg-color-primary) 100%
    );
}

.hero-main-content-main-text-wrapper {
    width: 100%;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 94px 70px;
    box-shadow: 0 4px 8px 0 rgba(123, 120, 137, 0.24);
}

.hero-main-content-main-text {
    color: var(--Dark-Shade-blue-500);
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.76px;
    line-height: 50px;
}

.hero-main-content-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 200px));
    justify-content: center;
    gap: 36px;
    width: 100%;
}

.feature-item {
    display: flex;
    padding: 8px;
    flex-direction: column;
    align-items: center;
    gap: 2px;

    border-radius: 8px;
    border: 1px solid var(--bg-color-secondary);
    background: var(--color-white);
    box-shadow: 0 3px 8px 0 rgba(123, 120, 137, 0.24);}

.feature-item-title {
    color: var(--Dark-Shade-blue-500);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    word-break: break-word;
}

.feature-item-text {
    color: var(--Dark-Shade-blue-200);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    word-break: break-word;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1 1 auto;
    width: 100%;
    align-self: stretch;
    min-width: 0;
    margin-top: 30px;
}

.faq-item-wrapper {
    display: flex;
    padding: 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 12px;
    /*border: 1px solid var(--bg-color-secondary);*/
    background: #EEEBFB;
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: 0 4px 8px 0 rgba(123, 120, 137, 0.24);
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}


.faq-item-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;

}

.faq-item-question-text {
    color: var(--Dark-Shade-blue-500);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    min-width: 0;
    flex: 1;
}

.faq-open {
    color: var(--Dark-Shade-blue-200);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /*display: inline-block;*/
    transition: transform 0.3s ease;
}

.faq-close {
    display: none;
}

.faq-item-question.open .faq-close {
    display: block;
}

.faq-item-question.open .faq-open {
    transform: rotate(45deg);
}

.faq-item-answer {
    color: rgba(63, 60, 74, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    word-break: break-word;
    width: 100%;
}

.pricing-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
}

.pricing-most-popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
}

.pricing-most-popular-badge-text {
    color: var(--color-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.pricing-item-wrapper {
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 20px;
}

.pricing-item-wrapper.is-popular {
    background: var(--Dark-Shade-blue-500);
}

.pricing-item {
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    background: var(--color-white);

    width: 285px;
    height: 618px;
    /*width: 100%;*/

    padding: 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.pricing-item-title {
    color: var(--Dark-Shade-blue-200);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.pricing-item-price {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;
    padding: 16px 0 12px 0;
}

.pricing-item-price-term {
    color: #B3B3C0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pricing-item-price-value {
    color: var(--Dark-Shade-blue-500);
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: -0.76px;
}

#pricing-item-button {
    margin: 4px 0;
    width: 100%;
}

.pricing-item-divider {
    width: 100%;
    height: 2px;
    margin: 16px 0;

    background: repeating-linear-gradient(
            to right,
            #ACAEAF 0px,
            #ACAEAF 2px,
            transparent 2px,
            transparent 8px
    );
}

.pricing-item-features {
    margin-top: 12px;
}

.pricing-item-features-title {
    color: #B3B3C0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.pricing-item-features-title-2 {
    color: #5335D9;
}

.pricing-item-features {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.pricing-item-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.pricing-item-feature-text {
    color: var(--Dark-Shade-blue-200);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

@media (max-width: 1240px) {
    .pricing-content {
        flex-direction: column;
        gap: unset;
    }
}

@media (max-width: 1100px) {
    .hero-main.has-fade {
        margin-bottom: -120px;
    }
}

@media (max-width: 768px) {
    .section-hero,
    .section-hero.has-fade {
        padding: 60px 20px 36px;
    }
    .hero-main-content-header-title {
        font-size: 34px;
        line-height: 42px;
        letter-spacing: -1.7px;
    }
    .hero-main-content-header-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    .hero-main-content-features {
        gap: 8px;
    }
    .feature-item {
        width: unset;
        padding: 8px;
        gap: 2px;
    }
    .feature-item-text {
        font-size: 11px;
    }
    .hero-main-content-main-text-wrapper {
        padding: 24px;
    }
    .hero-main-content-main-text {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 400px) {
    .hero-main-content-buttons {
        flex-direction: column;
        width: 100%;
        margin-bottom: unset;
    }
    #hero-first-button,
    #hero-second-button {
        width: 100%;
    }
}