/* Styled text  */

.styled-txt p {
    margin-bottom: 1.5em;
    -epub-word-break: hyphenate;
    -ms-word-break: hyphenate;
    word-break: normal;
    word-wrap: normal;
    -webkit-hyphens: auto;
    -epub-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

@media screen and (min-width: 768px) {
    .styled-txt p {
        margin-bottom: 1.524em;
    }
}

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

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

.styled-txt h1 {
    font-size: 20px;
    line-height: 1.2;
    color: #6e6e6e;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
    .styled-txt h1 {
        font-size: 30px;
        margin-bottom: 41px;
    }
}
.styled-txt h1 strong,
.styled-txt h1 b {
    color: #111111;
}
.styled-txt h2 {
    font-size: 20px;
    line-height: 1.2;
    color: #111111;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

@media screen and (min-width: 600px) {
    .styled-txt h2 {
        font-size: 30px;
        line-height: 37px;
        letter-spacing: 1px;
        margin-bottom: 42px;
    }
}

.styled-txt h3 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
    .styled-txt h3 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 6px;
    }
}
.styled-txt h4 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.39px;
    text-align: center;
    line-height: 32px;
}
@media screen and (min-width: 768px) {
    .styled-txt h4 {
        font-size: 17px;
        color: #c6183d;
        margin-bottom: 30px;
    }
}

.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;
}
