Recently, bullets in bulleted list are not showing again

Hi!

Before I posed this question, after I read this discussion here:

After adding the code, I managed to shift the block of text slightly to the right which is a step in the right direction. But no bullets. Some tweaking with coding is all that is probably needed at this point. About a month ago, bullets on the entire website mysteriously disappeared. I waited thinking it will correct itself. No. Tried several ways to correct it in the editor. Nope. Here’s a webpage to see for yourself:

And here is the coding I added whereby I am using the theme Lyrical:

/* Unordered Lists */
ul li ul,
ul li ol {
margin-left: 1.25rem;
margin-bottom: 0; }

ul.square li ul, ul.circle li ul, ul.disc li ul {
list-style: inherit; }

ul.square {
list-style-type: square;
margin-left: 1.1rem; }

ul.circle {
list-style-type: circle;
margin-left: 1.1rem; }

ul.disc {
list-style-type: disc;
margin-left: 1.1rem; }

ul.no-bullet {
list-style: none; }

.fl-builder li {
list-style-type: disc;
}

.fl-builder ul {
list-style-position: inside;
padding-left: 30px;
}

li {
list-style-type: disc;
}

/* Ordered Lists */
ol {
margin-left: 1.4rem; }
ol li ul,
ol li ol {