/*
 * text style template.
 */
.text-section {
    padding: 3em 15%;
    width: 100%;
    display: block;
    text-align: center;
    color: var(--black);
}

.text-section h1, .text-section h2 {
    margin-bottom: .5em;
}

.text-section h3 {
    font-weight: 700;
    margin-bottom: 2em;
    font-size: .9em;
}

.text-section p {
    margin-bottom: 2em;
}

.text-section ul {
    margin-bottom: 1em;
    list-style: disc;
    padding-left: 2em;
}

.text-section ul li {
    margin-bottom: .5em;
}

@media screen and (max-width: 576px) {
    .text-section {
        padding: 3em 10%;
    }
}