#constrict-block {
    background: var(--bg);
    padding-bottom: 40px;
}
#constrict-block .text ol,
#constrict-block .text ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
#constrict-block .text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--text);
}
#constrict-block .text ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--text);
}
#constrict-block .text ul li {
    padding-left: 18px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--text);
    position: relative;
}
#constrict-block .text ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    top: 9px;
    left: 2px;
    position: absolute;
    background: var(--main);
}
#constrict-block .text ol li::marker {
    color: var(--main);
    font-weight: 600;
}
