.widget-data.html .widget-header {
    margin-bottom: 1.875rem;
    text-align: left;
}
.widget-data.html h2 {
    margin-top: 3.75rem;
    margin-bottom: 1.875rem;
}
.widget-data.html h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 3.75rem;
    margin-bottom: 1.875rem;
}
.widget-data.html p,
.widget-data.html li {
    font-size: 1.125rem;
}
.widget-data.html ul,
.widget-data.html ol {
    margin-bottom: 1.875rem;
}
.widget-data.html ul:last-child,
.widget-data.html ol:last-child {
    margin-bottom: 0;
}
.widget-data.html ul {
    list-style: none;
    padding: 0;
}
.widget-data.html ul li {
    position: relative;
    padding-left: 1.625rem;
    margin-bottom: 1.25rem;
}
.widget-data.html ul li:last-child {
    margin-bottom: 0;
}
.widget-data.html ul li:before {
    content: '';
    position: absolute;
    display: block;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--red-orange);
}
.widget-data.html ol {
    padding-left: 0;
    counter-reset: item;
}
.widget-data.html ol:not(.nav,.list-unstyled) ol {
    padding-left: 1rem;
}
.widget-data.html ol:not(.nav,.list-unstyled)>li {
    display: block;
    padding-left: 0;
    margin-bottom: 1.25rem;
}
.widget-data.html ol>li:before {
    content: counters(item,".") ". ";
    counter-increment: item;
    margin-right: 0.5rem;
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--red-orange);
}
.widget-data.html h2:first-child {
    margin-top: 0;
}
.widget-data.html p:last-child {
    margin-bottom: 0;
}