.hero_description_container {
    display: flex;
    margin: 30px 0 90px 0;
    gap: 30px;
    flex-direction: column;
    @media (min-width: 480px) {
        flex-direction: row;
    }
}
.hero_text_container {
    max-width: 630px;
}
.hero_description_container .hero_text_container:nth-child(2) {
    @media (min-width: 480px) {
        padding-left: 30px;
        border-left: 2px solid var(--orange-700);

    }
}

.questions {
    padding: 100px 15px;
    background: var(--grey-25);
    @media (min-width: 1300px) {
        padding: 100px 0;
    }
}

.erp_system {
    background: var(--grey-50);
}

.erp_system:nth-child(odd) {
    background: var(--grey-25);
}

.erp_system_content_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.erp_system_item {
    display: flex;
    gap: 10px;
    img {
        margin-top: 5px;
        width: 23px;
        height: 18px;
    }
}
.erp_system_item_text_container {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.erp_system_item_second_variant {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.erp_system_card_container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.erp_system_card {
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 15px;
    max-width: 637px;
    width: 100%;
    min-height: 123px;
    flex: 1;
    min-width: 270px;
    @media (min-width: 768px) {
        min-width: 360px;
    }
    @media (min-width: 1055px) {
        max-width: 637px;
        min-width: 500px;
    }
    @media (min-width: 1300px) {
        max-width: 637px;
    }
}
.erp_system_card_button {
    max-width: 170px;
    flex-shrink: 0;
    margin-top: 15px;
}

.erp_system_card_second_variant {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 637px;
    min-width: 270px;
    width: 100%;
    flex: 1;
    min-height: 123px;
    padding: 15px;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
    background: var(--white);
    border-radius: 6px;
    @media (min-width: 1000px) {
        max-width: 637px;
        min-width: 500px;
    }
}

.erp_system_questions_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}