/* Font-Face */

/* Styled text  */

.styled-txt p {
    margin-bottom: 15px;
    -epub-word-break: hyphenate;
    -ms-word-break: hyphenate;
    word-break: normal;
    word-wrap: normal;
    -webkit-hyphens: manual;
    -epub-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
}

.styled-txt a:not([class]) {
    text-decoration: underline;
}

@media (hover: hover) {
    .styled-txt a:not([class]):hover {
        color: #f00;
    }
}

.styled-txt h1,
.styled-txt h2 {
    font-family: var(--serif);
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 22px;
}
.styled-txt h2 {
    margin-bottom: 27px;
}
@media screen and (min-width: 768px) {
    .styled-txt h1,
    .styled-txt h2 {
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 57px;
    }

    .styled-txt h2 {
        margin-bottom: 29px;
    }
}

.styled-txt h3 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 10px;
}

.styled-txt h4 {
    font-size: 17px;
    color: #aaa8a4;
    line-height: 23px;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .styled-txt h4 {
        font-size: 18px;
    }
}
.styled-txt h5 {
    font-size: 18px;
    line-height: 1.3;
}

.styled-txt h6 {
    font-size: 18px;
    line-height: 1.3;
}

.styled-txt ol {
    list-style: decimal;
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.styled-txt ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

.styled-txt ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

.styled-txt li ol > li {
    margin: 0;
}

.styled-txt li ol > li:before {
    content: counters(item, ".") " ";
}

.styled-txt ul {
    list-style: disc;
    margin-left: 20px;
}

.styled-txt li {
    position: relative;
    margin-bottom: 8px;
}

nav ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

nav a {
    text-decoration: none;
}

.styled-txt blockquote p {
    font-family: var(--serif);
    font-size: 34px;
    color: #000000;
    line-height: 40px;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
}
