ol {
             
    counter-reset: item;
    font-weight:600  
}

ol li {
   
    display: block;
    margin-left: 20px;
    line-height: 30px;
    
}

ol li ol li {
    display: block;
    margin-left: 20px;
    line-height: 25px;
    font-weight: 500;
    
}

ul li {
    margin-left: 20px;
    list-style-type: disc;
    line-height: 25px;
}


ol li:before {
    content: counters(item, ".") " - ";
    counter-increment: item;  
}


ol li ol li:before {
    content: counters(item, ".") " ";
    counter-increment: item; 
    word-spacing: 20px;
    font-weight: 700
}

dt {
    font-weight: bold;
    line-height:24px;
    font-size:14px;
}


dt,dl{
   /* margin:15px 0; */ 
}

a {
    font-weight: 500;
    color: var(--action);
    opacity: .8;
    text-decoration:none;
}

a:hover {
    opacity: 1; 
}

a:visited { 
    color: var(--action);
}

a:active { 
    color: var(--action);
}

blockquote { 
    font-size:18px; 
    font-weight:var(--regular); 
    text-align:right; 
    border-right:2px solid var(--gray70); 
    padding:40px;
}

blockquote .auther { 
    margin-top:25px;
}