@font-face {
    font-family: "JetBrains Mono";
    src: url("fonts/webfonts/JetBrainsMono-Regular.woff2");
    src: url("fonts/webfonts/JetBrainsMono-Regular.woff2"),
    url("fonts/ttf/JetBrainsMono-Regular.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.col-4-5 {
    width: 75%;
    margin-right: auto;
    font-family: inherit;
}

.left {
    margin-right: auto;
}

.col-1-5 {
    width: 20%;
}

.paragraph-h2 {
    font-family: inherit;
    padding: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 31px;
    margin: 0 0 18px;
}

.img-center {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.paragraph-h3 {
    font-family: inherit;
    padding: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 31px;
    margin: 0 0 18px;
}

.paragraph:not(:last-child) {
    margin-bottom: 22px;
}

.paragraph {
    text-indent: 30px;
    font-weight: 400;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 110%;
    font-family: inherit;
}

.paragraph pre {
    text-indent: 0;
}

.paragraph p img {
    margin-top: 30px;
}

.two-columns {
    flex-direction: row;
    align-items: center;
}

.paragraph-ol {
    text-indent: 0;
    gap: 5px;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
}

.paragraph .paragraph-ol {
    padding-top: 10px;
}

.paragraph-ol {
    text-indent: 5px;
    gap: 3px;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
	counter-reset: num;
    list-style: unset;
}

.navigation-ol {
    text-indent: 0;
    gap: 8px;
    display: flex;
    flex-direction: column;
    padding-left: 25px;
    counter-reset: item;
}

.navigation-ol li .navigation-ol {
    padding-top: 10px;
}

.navigation-ol li:before {
    counter-increment: item;
    content: counters(item, ".", decimal) " ";
}

.code-wrapper {
    border-radius: 12px;
}

.arm-theme {
    background-color: #C9C9C9;
    padding: 15px 20px;
    border-radius: 12px;
}

.image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.paragraph-img {
    width: 100%;
    border-radius: 12px;
}

.image-title-down {
    font-size: 14px;
    text-align: center;
    text-indent: 0;
    display: block;
    margin-bottom: 30px;
}

.rel-link {
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.rel-link:hover {
    color: #01929c;
}

.paragraph-navigation-link {
    text-decoration: underline;
}

.navigation {
    margin-bottom: 36px;
    padding-left: 12px;
    border-left: 1px solid #2a2f36;
}

.navigation-title {
    padding: 0;
    margin: 0 0 16px;
}

.img-center {
    margin: 5px auto;
}

.img-30 {
    width: 30%;
}

.img-70 {
    width: 70%;
}


@media (max-width: 577px) {
    .img-30 {
        width: 60%;
    }
}

@media (max-width: 1280px) {
    .two-columns {
        flex-direction: column;
    }

    .col-4-5 {
        width: 100%;
    }

    .col-1-5 {
        width: 100%;
    }

    .paragraph-ol li {
        font-size: 16px;
    }

    .paragraph ol {
        font-size: 16px;
    }

    .paragraph pre {
        font-size: 14px;
    }

    .adaptive-reverse {
        flex-direction: column-reverse;
    }
}

@media (orientation: landscape) {
    .col-1-5 {
        width: 20%;
    }

    .col-4-5 {
        width: 75%;
        margin-right: auto;
        font-family: inherit;
    }

    .two-columns {
        flex-direction: row;
    }
}

