.page_introduce {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 50px;
}

.page_introduce h1 {
    font-size: 1.5em;
    font-weight: 400;
    margin: 0;
    padding: 0;
}
.page_introduce h2 {
    font-size: 1.25em;
    font-weight: 200;
    margin: 0;
    padding: 0;
}

.index_product {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    margin-bottom: 70px;
}

.index_product:before {
    content: '';
    display: block;
    width: 324px;
    height: 177px;
    border-radius: 200px;
    box-shadow: -9px 9px 9px #29672c70 inset, -2px 2px 9px #fcfae82e;
    margin-bottom: 20px;
    transform: translate(35px, 0px);
}


.index_product .ip_label {}
.index_product h3 {
    font-size: 4em;
    margin: 13px 0 18px 0;
    font-weight: 500;
    line-height: 1em;
}
.index_product h4 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 400;
}

.ip_label {
    /* padding: 3px 10px; */
    font-size: 0.9em;
    font-weight: bold;
}
.ip_label.important {
    background-color: var(--accent-dark-color);
    color: white;
    /* font-weight: bold; */
    padding: 3px 10px;
    transform: translate(-3px, 0);
    /* font-size: 0.9em; */
}
.ip_link {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .index_product:before {
        transform: none;
    }
}

@media (max-width: 530px) {
    .index_product h3 {
        font-size: 3em;
    }

    .index_product h4 {
        font-size: 1.3em;
    }
}

.ip_calc:before {
    background: url('/local/assets/images/calc_ico_bar.png') no-repeat left top;
}
.ip_consults:before {
    background: url('/local/assets/images/consult_ico_bar.png') no-repeat left top;
}

.ip_consults .ip_label {
    /* left: 290px; */
}

.ip_consults .ip_link a {
    color: var(--accent-dark-color);
}

.ip_consults .ip_link a:hover {
    color: var(--text-color);
}

@media (max-width: 675px) {
    .ip_calc:before {
        left: 10px;
        top: -212px;
    }

    .ip_calc {
        /* margin-top: 270px; */
    }

    .ip_consults:before {
        top: -216px;
        left: 20px;
    }

    .ip_consults .ip_label {
        left: 0;
    }

    .ip_consults {
        /* margin-top: 290px; */
    }
}