
.features_cards_container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}
.features_card {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    background: var(--grey-25);
    overflow: hidden;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
    padding-bottom: 32px;
    justify-content: space-between;
}
.features_card_img_content_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.features_card_content {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    h3 {
        text-align: center;
    }
}
.features_card_mark_container {
    display: flex;
    gap: 10px;
    height: 30px;
    align-items: center;
}
.features_card_img {
    width: 410px;
    height: 200px;
}
.lines_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 30px;
}
.orange_line {
    width: 142px;
    background: var(--orange-700);
    height: 2px;
    margin-left: 10px;
}
.grey_line {
    width: 142px;
    background: var(--grey-800);
    height: 2px;
    margin-right: 10px;
}
