﻿@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    src: local(""), url("../font/inter-v8-latin-regular.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    src: local(""), url("../font/inter-v8-latin-700.woff2") format("woff2");
    font-display: swap
}

:root {
    --page-margin: 6vmin;
    --page-width: 38rem;
    --content-width: 100%;
    --sidebar-width: 13rem;
    --aside-width: 12rem;
    --header-height: 4.6rem;
    --submenu-width: 20rem;
    --border-radius: 6px;
    --shadow: 0 -1px 3px 0 hsl(var(--hsl-dark), 18%, 3%), 0 1px 2px -5px hsl(var(--hsl-dark), 18%, 3%), 0 2px 5px -5px hsl(var(--hsl-dark), 18%, 4%), 0 4px 12px -5px hsl(var(--hsl-dark), 18%, 6%), 0 12px 15px -5px hsl(var(--hsl-dark), 18%, 8%);
    --space-unit: 1rem;
    --space-xs: calc(0.5 * var(--space-unit));
    --space-sm: calc(0.75 * var(--space-unit));
    --space-md: calc(1.25 * var(--space-unit));
    --space-lg: calc(2 * var(--space-unit));
    --space-xl: calc(3.25 * var(--space-unit));
    --space-2xl: calc(5.25 * var(--space-unit));
    --space-3xl: calc(8.5 * var(--space-unit));
    --body-font: "Inter", sans-serif;
    --heading-font: "Inter", sans-serif;
    --line-height: 1.6;
    --letter-spacing: -0.02em;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --headings-weight: 700;
    --headings-letter-spacing: -0.04em;
    --headings-transform: none;
    --text-shadow: 0 0 1px var(--link-color);
    --white: hsl(360, 100%, 100%);
    --black: hsl(0, 0%, 0%);
    --hsl-blue: 212, 100%;
    --hsl-pink: 345, 97%;
    --hsl-green: 180, 64%;
    --hsl-gray: 225, 29%;
    --hsl-dark: 225, 40%;
    --blue: hsl(var(--hsl-blue), 47%);
    --green: #69DA58;
    --yellow: #F6C144;
    --red: #C7403E;
    --dark: hsl(var(--hsl-dark), 18%);
    --light: hsl(var(--hsl-dark), 98%);
    --color: hsl(var(--hsl-blue), 47%);
    --color-light: hsl(var(--hsl-blue), 97%);
    --text-color: hsl(var(--hsl-dark), 18%);
    --text-color-light: hsla(var(--hsl-dark), 18%, 70%);
    --headings-color: hsl(var(--hsl-dark), 18%);
    --button-color: var(--white);
    --link-color: hsl(var(--hsl-blue), 47%);
    --link-color-hover: hsl(var(--hsl-dark), 18%);
    --code-color: #C7403E;
    --code-bg: 199, 64, 62;
    --bg-color: 66, 133, 244;
    --border-color: hsl(var(--hsl-dark), 88%);
    --icon-bg: hsl(var(--hsl-blue), 97%);
    --icon-fill: hsl(var(--hsl-blue), 47%)
}

@media all and (min-width:56.25em) {
    :root {
        --page-width: 1280px;
        --space-unit: 1.2rem
    }
}

@media all and (min-width:75em) {
    :root {
        --header-height: 5.6rem;
        --space-unit: 1.4rem
    }
}

@media all and (min-width:87.5em) {
    :root {
        --space-unit: 1.6rem
    }
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

article,
aside,
footer,
header,
hgroup,
main,
nav,
section {
    display: block
}

li {
    list-style: none
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: top
}

button,
input,
select,
textarea {
    font: inherit
}

address {
    font-style: normal
}

::-moz-selection {
    background: var(--color);
    color: var(--white)
}

::selection {
    background: var(--color);
    color: var(--white)
}

html {
    font-size: clamp(1rem, 1rem + .125 * (100vw - 20rem) / 58, 1.125rem);
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem
}

html.no-scroll {
    overflow: hidden
}

body {
    background: var(--white);
    color: var(--text-color);
    font-family: var(--body-font);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height);
    -ms-scroll-chaining: none;
    overscroll-behavior: none
}

a {
    color: var(--link-color);
    text-decoration: none;
    -webkit-transition: all .14s ease-out;
    transition: all .14s ease-out
}

a:hover {
    color: var(--link-color-hover);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

a:active {
    color: var(--link-color-hover)
}

a:focus {
    color: var(--link-color-hover)
}

.invert {
    color: var(--link-color-hover);
    text-decoration: none;
    -webkit-transition: all .14s ease-out;
    transition: all .14s ease-out
}

.invert:hover {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

.invert:active {
    color: var(--link-color)
}

.invert:focus {
    color: var(--link-color)
}

dl,
ol,
p,
pre,
ul {
    margin-top: 1.6rem
}

blockquote,
hr {
    margin-top: 2.6666666667rem;
    margin-bottom: 2.6666666667rem
}

figure {
    margin-top: 2.1333333333rem
}

table {
    margin-top: 1.6rem;
    margin-bottom: 2.1333333333rem
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headings-color);
    font-family: var(--heading-font);
    font-weight: var(--headings-weight);
    letter-spacing: var(--headings-letter-spacing);
    line-height: 1.3;
    margin-top: 2.1333333333rem;
    text-transform: var(--headings-transform)
}

.h1,
h1 {
    line-height: 1.2;
    font-size: clamp(1.6018066406rem, 1.6018066406rem + .4254798889 * (100vw - 20rem) / 58, 2.0272865295rem)
}

.h2,
h2 {
    font-size: clamp(1.423828125rem, 1.423828125rem + .3782043457 * (100vw - 20rem) / 58, 1.8020324707rem)
}

.h3,
h3 {
    font-size: clamp(1.265625rem, 1.265625rem + .3361816406 * (100vw - 20rem) / 58, 1.6018066406rem)
}

.h4,
h4 {
    font-size: clamp(1.125rem, 1.125rem + .298828125 * (100vw - 20rem) / 58, 1.423828125rem)
}

.h5,
h5 {
    font-size: clamp(1rem, 1rem + .265625 * (100vw - 20rem) / 58, 1.265625rem)
}

.h6,
h6 {
    font-size: clamp(1rem, 1rem + .125 * (100vw - 20rem) / 58, 1.125rem)
}

h2+*,
h3+*,
h4+*,
h5+*,
h6+* {
    margin-top: 1.0666666667rem
}

b,
strong {
    font-weight: var(--font-weight-bold)
}

blockquote {
    background: rgba(var(--bg-color), .03);
    border-radius: 6px;
    padding: .8rem 1.6rem 2.1333333333rem;
    position: relative;
    text-align: center;
    font-size: clamp(1.125rem, 1.125rem + .140625 * (100vw - 20rem) / 58, 1.265625rem)
}

blockquote::before {
    color: var(--color);
    content: "“";
    font: normal 360%/1 Georgia, Times, Times New Roman, serif;
    position: relative;
    bottom: -1.0666666667rem
}

blockquote>:first-child {
    margin-top: 0
}

ol,
ul {
    margin-left: 2rem
}

ol>li,
ul>li {
    list-style: inherit;
    padding: 0 0 .5333333333rem .5333333333rem
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: .5333333333rem;
    margin-top: .5333333333rem
}

dl dt {
    font-weight: var(--font-weight-bold)
}

code {
    background-color: rgba(var(--code-bg), .08);
    border-radius: 2px;
    color: var(--code-color);
    font-size: .7901234568rem;
    font-family: Menlo, Monaco, Consolas, Courier New, monospace;
    padding: .2666666667rem .5333333333rem
}

pre {
    background-color: var(--light);
    border-radius: 3px;
    font-size: .7901234568rem;
    padding: 1.6rem;
    white-space: pre-wrap !important;
    word-wrap: break-word;
    width: 100%
}

pre code {
    background-color: var(--light);
    color: inherit !important;
    font-size: inherit;
    padding: 0
}

table {
    border: 1px solid var(--border-color);
    border-collapse: collapse;
    border-spacing: 0;
    vertical-align: top;
    text-align: left;
    width: 100%
}

table th {
    font-weight: var(--font-weight-bold);
    padding: .6666666667rem 1.0666666667rem
}

table td {
    border-top: 1px solid var(--border-color);
    padding: .6666666667rem 1.0666666667rem
}

.table-striped tr:nth-child(2n) {
    background: var(--light)
}

.table-bordered td,
.table-bordered th {
    border: 1px solid var(--border-color)
}

.table-title th {
    background: var(--light)
}

figcaption {
    color: var(--text-color-light);
    font-family: var(--body-font);
    font-weight: var(--font-weight-normal);
    font-size: .7023319616rem;
    font-style: italic;
    margin-top: .8rem;
    text-align: center
}

kbd {
    background: var(--dark);
    border-radius: 2px;
    color: var(--white);
    font-family: Menlo, Monaco, Consolas, Courier New, monospace;
    font-size: .8888em;
    padding: .1333333333rem .4rem
}

sub,
sup {
    font-size: 65%
}

small {
    font-size: .7901234568rem
}

.separator,
hr {
    background: 0 0;
    border: none;
    height: auto;
    line-height: 1;
    max-width: none;
    text-align: center
}

.separator::before,
hr::before {
    content: "···";
    color: var(--headings-color);
    font-size: 2.0272865295rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 1.265625rem;
    padding-left: 1.265625rem
}

.separator--dot::before {
    content: "·";
    color: var(--headings-color);
    font-size: 2.0272865295rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 1.265625rem;
    padding-left: 1.265625rem
}

.separator--long-line {
    position: relative
}

.separator--long-line::before {
    content: "";
    height: 1.423828125rem
}

.separator--long-line::after {
    border-top: 1px solid var(--border-color);
    content: "";
    height: 1px;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0
}

.btn,
[type=button],
[type=submit],
button {
    background: var(--color);
    border: 1px solid var(--color);
    border-radius: var(--border-radius);
    -webkit-box-shadow: 0 4px 14px 0 rgba(0, 118, 255, .1);
    box-shadow: 0 4px 14px 0 rgba(0, 118, 255, .1);
    color: var(--button-color);
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: .8888888889rem;
    font-weight: var(--font-weight-normal);
    padding: .4666666667rem .9333333333rem;
    vertical-align: middle;
    text-align: center;
    -webkit-transition: all .24s ease;
    transition: all .24s ease;
    will-change: transform;
    --button-shadow: 0 4px 14px 0 rgb(0, 118, 255, 0.1);
    --button-shadow-hover: 0 3px 14px 0rgb(0 118 255 / 10%);
    --button-shadow-active: 0 3px 14px 0rgb(0 118 255 / 8%)
}

@media all and (max-width:29.9375em) {

    .btn,
    [type=button],
    [type=submit],
    button {
        width: 80%
    }
}

.btn:active,
.btn:focus,
.btn:hover,
[type=button]:active,
[type=button]:focus,
[type=button]:hover,
[type=submit]:active,
[type=submit]:focus,
[type=submit]:hover,
button:active,
button:focus,
button:hover {
    color: var(--button-color);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    text-decoration: none !important
}

@media all and (max-width:29.9375em) {

    .btn+.btn,
    .btn+[type=button],
    .btn+[type=submit],
    .btn+button,
    [type=button]+.btn,
    [type=button]+[type=button],
    [type=button]+[type=submit],
    [type=button]+button,
    [type=submit]+.btn,
    [type=submit]+[type=button],
    [type=submit]+[type=submit],
    [type=submit]+button,
    button+.btn,
    button+[type=button],
    button+[type=submit],
    button+button {
        margin-top: .8rem
    }
}

@media all and (min-width:30em) {

    .btn+.btn,
    .btn+[type=button],
    .btn+[type=submit],
    .btn+button,
    [type=button]+.btn,
    [type=button]+[type=button],
    [type=button]+[type=submit],
    [type=button]+button,
    [type=submit]+.btn,
    [type=submit]+[type=button],
    [type=submit]+[type=submit],
    [type=submit]+button,
    button+.btn,
    button+[type=button],
    button+[type=submit],
    button+button {
        margin-left: .5333333333rem
    }
}

.btn--icon {
    --fill: var(--white);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    white-space: nowrap
}

@media all and (max-width:37.4375em) {
    .btn--icon {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

.btn--icon>svg {
    fill: var(--fill);
    margin-right: .5333333333rem;
    vertical-align: middle;
    -webkit-transition: inherit;
    transition: inherit
}

.btn--outline {
    --fill: var(--dark);
    background: 0 0;
    border-color: var(--dark);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--dark)
}

.btn--outline:active,
.btn--outline:focus,
.btn--outline:hover {
    --fill: var(--link-color);
    background: 0 0;
    border-color: var(--link-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--link-color)
}

.btn:disabled,
[type=button]:disabled,
[type=submit]:disabled,
button:disabled {
    border-color: var(--border-color);
    background: 0 0;
    color: var(--border-color);
    cursor: not-allowed
}

[type=button],
[type=submit],
button {
    -webkit-appearance: none;
    -moz-appearance: none
}

.top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: var(--header-height);
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media all and (min-width:56.25em) {
    .top {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.top__logo {
    margin-right: auto;
    position: relative;
    z-index: 99
}

.top__logo:hover {
    text-decoration: none
}

.top__logo>svg {
    fill: var(--dark);
    max-height: 2rem;
    max-width: 4.8rem;
    vertical-align: middle;
    background-image: url(../picture/header-logo.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.top__download {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--color);
    border-radius: var(--border-radius);
    color: var(--white);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: .7901234568rem;
    margin-left: 1.0666666667rem;
    padding: .48rem .8rem
}

@media all and (max-width:56.1875em) {
    .top__download {
        display: none
    }
}

.top__download:active,
.top__download:focus,
.top__download:hover {
    color: var(--white);
    text-decoration: none
}

.top__download>svg {
    fill: var(--white);
    margin-right: .2666666667rem
}

.navbar {
    position: relative;
    z-index: 100
}

.navbar .navbar__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0
}

@media all and (max-width:56.1875em) {
    .navbar .navbar__menu {
        display: none
    }
}

.navbar .navbar__menu li {
    display: block;
    font-size: .8888888889rem;
    line-height: var(--line-height);
    padding: 0;
    position: relative
}

.navbar .navbar__menu li a,
.navbar .navbar__menu li span[aria-haspopup=true] {
    color: var(--dark);
    display: block;
    padding: 0 .8rem;
    -webkit-transition: all .24s ease-out;
    transition: all .24s ease-out;
    text-decoration: none
}

.navbar .navbar__menu li a:active,
.navbar .navbar__menu li a:focus,
.navbar .navbar__menu li a:hover,
.navbar .navbar__menu li span[aria-haspopup=true]:active,
.navbar .navbar__menu li span[aria-haspopup=true]:focus,
.navbar .navbar__menu li span[aria-haspopup=true]:hover {
    color: var(--link-color)
}

.navbar .navbar__menu>li {
    line-height: var(--header-height);
    margin-left: .2666666667rem
}

.navbar .navbar__menu>li:hover>a,
.navbar .navbar__menu>li:hover>span[aria-haspopup=true] {
    color: var(--link-color);
    text-shadow: var(--text-shadow)
}

.navbar .navbar__menu>li:hover>[aria-haspopup=true] {
    -webkit-box-shadow: none;
    box-shadow: none
}

.navbar .navbar__menu>li:hover.has-submenu::after {
    content: "";
    border-color: var(--link-color)
}

.navbar .navbar__menu>li.has-submenu {
    position: relative;
    padding-right: 1.0666666667rem
}

.navbar .navbar__menu>li.has-submenu::after {
    content: "";
    border-bottom: 1px solid var(--dark);
    border-left: 1px solid var(--dark);
    height: 6px;
    position: absolute;
    right: .9333333333rem;
    top: 47%;
    -webkit-transform: rotate(-45deg) translate(0, -46%);
    -ms-transform: rotate(-45deg) translate(0, -46%);
    transform: rotate(-45deg) translate(0, -46%);
    width: 6px;
    -webkit-transition: all .24s ease-out;
    transition: all .24s ease-out
}

.navbar .has-submenu:active>.navbar__submenu,
.navbar .has-submenu:focus>.navbar__submenu,
.navbar .has-submenu:hover>.navbar__submenu {
    left: 0;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    visibility: visible;
    margin-top: -1.0666666667rem
}

.navbar .has-submenu:active>.navbar__submenu.is-right-submenu,
.navbar .has-submenu:focus>.navbar__submenu.is-right-submenu,
.navbar .has-submenu:hover>.navbar__submenu.is-right-submenu {
    left: auto;
    right: 0;
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.navbar .has-submenu .has-submenu:active>.navbar__submenu,
.navbar .has-submenu .has-submenu:focus>.navbar__submenu,
.navbar .has-submenu .has-submenu:hover>.navbar__submenu {
    left: var(--submenu-width);
    top: 0;
    margin-top: 0
}

.navbar .has-submenu .has-submenu:active>.navbar__submenu.is-right-submenu,
.navbar .has-submenu .has-submenu:focus>.navbar__submenu.is-right-submenu,
.navbar .has-submenu .has-submenu:hover>.navbar__submenu.is-right-submenu {
    top: 0;
    margin-top: 0
}

.navbar .navbar__submenu {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border: 1px solid hsl(var(--hsl-dark), 92%);
    border-radius: var(--border-radius);
    left: -9999px;
    list-style-type: none;
    margin: 0 0 .8rem;
    padding: 1.0666666667rem 1.6rem;
    position: absolute;
    width: var(--submenu-width);
    text-align: left;
    visibility: hidden;
    z-index: 1;
    opacity: 0;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    -webkit-transform-origin: 0 top;
    -ms-transform-origin: 0 top;
    transform-origin: 0 top;
    -webkit-transition: opacity .15s, -webkit-transform .3s cubic-bezier(.275, 1.375, .8, 1);
    transition: opacity .15s, -webkit-transform .3s cubic-bezier(.275, 1.375, .8, 1);
    transition: opacity .15s, transform .3s cubic-bezier(.275, 1.375, .8, 1);
    transition: opacity .15s, transform .3s cubic-bezier(.275, 1.375, .8, 1), -webkit-transform .3s cubic-bezier(.275, 1.375, .8, 1);
    will-change: transform
}

.navbar .navbar__submenu__submenu {
    z-index: 2
}

.navbar__submenu li {
    line-height: 1.5;
    font-weight: var(--font-weight-normal);
    padding: 0 .2666666667rem;
    position: relative;
    text-transform: none
}

.navbar__submenu li:last-child {
    border: none
}

.navbar__submenu li a[aria-haspopup=true] {
    padding: .5333333333rem 0;
    -webkit-transition: all .24s ease;
    transition: all .24s ease
}

.navbar__submenu li span {
    color: var(--headings-color);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--headings-letter-spacing);
    line-height: 1.2;
    margin: 0
}

.navbar__submenu li p {
    color: var(--text-color-light);
    font-size: .7901234568rem;
    margin-top: .1333333333rem
}

@media all and (min-width:56.25em) {
    .navbar__submenu li p {
        margin-top: .2666666667rem
    }
}

.navbar .navbar__toggle {
    background: 0 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: block;
    line-height: 1;
    overflow: visible;
    padding-right: 0;
    text-transform: none;
    z-index: 2004
}

@media all and (min-width:56.25em) {
    .navbar .navbar__toggle {
        display: none
    }
}

.navbar .navbar__toggle:focus,
.navbar .navbar__toggle:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.navbar .navbar__toggle__box {
    width: 26px;
    height: 18px;
    display: inline-block;
    position: relative
}

.navbar .navbar__toggle__inner {
    display: block;
    top: 50%;
    text-indent: -9999999em
}

.navbar .navbar__toggle__inner::before {
    content: "";
    display: block;
    top: -6px
}

.navbar .navbar__toggle__inner::after {
    content: "";
    display: block;
    bottom: -6px
}

.navbar .navbar__toggle__inner,
.navbar .navbar__toggle__inner::after,
.navbar .navbar__toggle__inner::before {
    width: 30px;
    height: 2px;
    background-color: var(--dark);
    position: absolute;
    right: 0;
    -webkit-transition: opacity .14s ease-out, -webkit-transform;
    transition: opacity .14s ease-out, -webkit-transform;
    transition: transform, opacity .14s ease-out;
    transition: transform, opacity .14s ease-out, -webkit-transform
}

.navbar .navbar__toggle__inner {
    -webkit-transition-duration: 75ms;
    transition-duration: 75ms;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}

.navbar .navbar__toggle__inner::before {
    -webkit-transition: top 75ms ease .12s, opacity 75ms ease;
    transition: top 75ms ease .12s, opacity 75ms ease
}

.navbar .navbar__toggle__inner::after {
    right: 0;
    -webkit-transition: bottom 75ms ease .12s, -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);
    transition: bottom 75ms ease .12s, -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19), -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);
    width: 20px
}

.navbar .navbar__toggle.is-active .navbar__toggle__inner {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0.12s;
    transition-delay: 0.12s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}

.navbar .navbar__toggle.is-active .navbar__toggle__inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 75ms ease, opacity 75ms ease .12s;
    transition: top 75ms ease, opacity 75ms ease .12s
}

.navbar .navbar__toggle.is-active .navbar__toggle__inner::after {
    bottom: 0;
    left: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s, -webkit-transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    width: 30px
}

@media all and (min-width:56.25em) {
    .navbar__icon:hover::before {
        background-color: var(--icon-bg);
        border-radius: var(--border-radius);
        content: "";
        display: block;
        left: -.5333333333rem;
        right: -.5333333333rem;
        position: absolute;
        height: 100%;
        top: 0
    }
}

.navbar__icon a {
    padding: .5333333333rem 0 .5333333333rem 56px !important;
    position: relative
}

@media all and (min-width:56.25em) {
    .navbar__icon a {
        padding: .9333333333rem 0 .9333333333rem 56px !important
    }
}

.navbar__icon a::after {
    background-color: var(--icon-fill);
    content: "";
    display: block;
    height: 26px;
    left: 7px;
    -webkit-mask: var(--icon-url) no-repeat;
    mask: var(--icon-url) no-repeat;
    position: absolute;
    top: calc(.5333333333rem + 7px);
    -webkit-transition: background-color .24s ease-out;
    transition: background-color .24s ease-out;
    width: 26px;
    z-index: 2
}

@media all and (min-width:56.25em) {
    .navbar__icon a::after {
        top: calc(.9333333333rem + 7px)
    }
}

.navbar__icon a::before {
    background-color: var(--icon-bg);
    border-radius: var(--border-radius);
    content: "";
    display: block;
    left: 0;
    position: absolute;
    height: 38px;
    top: .5333333333rem;
    width: 38px
}

@media all and (min-width:56.25em) {
    .navbar__icon a::before {
        top: .9333333333rem
    }
}

@media all and (min-width:56.25em) {
    .navbar__icon--showcase:hover::before {
        content: none
    }
}

@media all and (max-width:56.1875em) {
    .navbar__icon--showcase a {
        color: var(--dark);
        font-weight: var(--font-weight-bold);
        padding-top: .9333333333rem !important
    }
}

@media all and (min-width:56.25em) {
    .navbar__icon--showcase a {
        padding: 0 1.0666666667rem !important
    }

    .navbar__icon--showcase a::after,
    .navbar__icon--showcase a::before {
        content: none
    }
}

.navbar__icon--writing {
    --icon-bg: hsl(var(--hsl-pink), 98%);
    --icon-fill: hsl(var(--hsl-pink), 65%);
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='M3 19c3.333-2 5-4 5-6 0-3-1-3-2-3s-2.032 1.085-2 3c.034 2.048 1.658 2.877 2.5 4C8 19 9 19.5 10 18c.667-1 1.167-1.833 1.5-2.5 1 2.333 2.333 3.5 4 3.5H18M20 17V5c0-1.121-.879-2-2-2s-2 .879-2 2v12l2 2 2-2zM16 7h4'/%3e%3c/svg%3e")
}

.navbar__icon--privacy {
    --icon-bg: hsl(var(--hsl-blue), 97%);
    --icon-fill: hsl(var(--hsl-blue), 47%);
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='m9 12 2 2 4-4'/%3e%3cpath d='M12 3a12 12 0 0 0 8.5 3A12 12 0 0 1 12 21 12 12 0 0 1 3.5 6 12 12 0 0 0 12 3'/%3e%3c/svg%3e")
}

.navbar__icon--seo {
    --icon-bg: hsl(var(--hsl-green), 95%);
    --icon-fill: hsl(var(--hsl-green), 39%);
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='M4 13a8 8 0 0 1 7 7 6 6 0 0 0 3-5 9 9 0 0 0 6-8 3 3 0 0 0-3-3 9 9 0 0 0-8 6 6 6 0 0 0-5 3'/%3e%3cpath d='M7 14a6 6 0 0 0-3 6 6 6 0 0 0 6-3'/%3e%3ccircle cx='15' cy='9' r='1'/%3e%3c/svg%3e")
}

.navbar__icon--docs {
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='M19 4v16H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h12z'/%3e%3cpath d='M19 16H7a2 2 0 0 0-2 2M9 8h6'/%3e%3c/svg%3e")
}

.navbar__icon--devs {
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='m7 8-4 4 4 4M17 8l4 4-4 4M14 4l-4 16'/%3e%3c/svg%3e")
}

.navbar__icon--forum {
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='m3 20 1.3-3.9A9 8 0 1 1 7.7 19L3 20M12 12v.01M8 12v.01M16 12v.01'/%3e%3c/svg%3e")
}

.navbar__icon--support {
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3ccircle cx='12' cy='12' r='4'/%3e%3ccircle cx='12' cy='12' r='9'/%3e%3cpath d='m15 15 3.35 3.35M9 15l-3.35 3.35M5.65 5.65 9 9M18.35 5.65 15 9'/%3e%3c/svg%3e")
}

.navbar__icon--blog {
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='M4 20h4L18.5 9.5a1.5 1.5 0 0 0-4-4L4 16v4M13.5 6.5l4 4'/%3e%3c/svg%3e")
}

.navbar__icon--market {
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='m3 12 3 3 3-3-3-3zM15 12l3 3 3-3-3-3zM9 6l3 3 3-3-3-3zM9 18l3 3 3-3-3-3z'/%3e%3c/svg%3e")
}

.navbar__icon--themes {
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='M12 21a9 9 0 1 1 0-18 9 8 0 0 1 9 8 4.5 4 0 0 1-4.5 4H14a2 2 0 0 0-1 3.75A1.3 1.3 0 0 1 12 21'/%3e%3ccircle cx='7.5' cy='10.5' r='.5' fill='currentColor'/%3e%3ccircle cx='12' cy='7.5' r='.5' fill='currentColor'/%3e%3ccircle cx='16.5' cy='10.5' r='.5' fill='currentColor'/%3e%3c/svg%3e")
}

.navbar__icon--plugins {
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='m7 12 5 5-1.5 1.5a3.536 3.536 0 1 1-5-5L7 12zM17 12l-5-5 1.5-1.5a3.536 3.536 0 1 1 5 5L17 12zM3 21l2.5-2.5M18.5 5.5 21 3M10 11l-2 2M13 14l-2 2'/%3e%3c/svg%3e")
}

.navbar__icon--services {
    --icon-bg: hsl(var(--hsl-pink), 98%);
    --icon-fill: hsl(var(--hsl-pink), 65%);
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='m12 3 8 4.5v9L12 21l-8-4.5v-9L12 3M12 12l8-4.5M12 12v9M12 12 4 7.5M16 5.25l-8 4.5'/%3e%3c/svg%3e")
}

.navbar__icon--showcase {
    --icon-url: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M0 0h24v24H0z' stroke='none'/%3e%3cpath d='M3 19h18'/%3e%3crect x='5' y='6' width='14' height='10' rx='1'/%3e%3c/svg%3e")
}

.navbar__icon--comparison {
    --icon-bg: hsl(var(--hsl-gray), 96%);
    --icon-fill: hsl(var(--hsl-gray), 39%);
    --icon-url: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z'/%3e%3cpath d='m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z'/%3e%3cpath d='M7 21h10'/%3e%3cpath d='M12 3v18'/%3e%3cpath d='M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2'/%3e%3c/svg%3e")
}

.navbar_mobile_overlay {
    background: var(--white);
    bottom: 0;
    left: 0;
    opacity: 1;
    overflow: auto;
    pointer-events: auto;
    position: fixed;
    top: var(--header-height);
    padding-bottom: 1.6rem;
    -webkit-transition: all .3s cubic-bezier(0, 0, .3, 1);
    transition: all .3s cubic-bezier(0, 0, .3, 1);
    width: 100%;
    z-index: 1001
}

.navbar_mobile_overlay.is-hidden {
    opacity: 0;
    pointer-events: none
}

.navbar_mobile_overlay .navbar__menu {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin)
}

.navbar_mobile_overlay .navbar__menu li {
    list-style: none;
    margin: 0;
    padding: 0
}

.navbar_mobile_overlay .navbar__menu li a,
.navbar_mobile_overlay .navbar__menu li span {
    display: block;
    position: relative
}

.navbar_mobile_overlay .navbar__menu li a:hover,
.navbar_mobile_overlay .navbar__menu li span:hover {
    text-decoration: none
}

.navbar_mobile_overlay .navbar__menu li .is-separator {
    border-top: 1px solid var(--border-color);
    color: var(--text-color-light);
    font-size: .7023319616rem;
    font-weight: var(--font-weight-bold);
    padding: 1.0666666667rem 0 .8rem;
    text-transform: uppercase
}

.navbar_mobile_overlay .navbar__menu li+.has-submenu {
    margin-top: 1.6rem
}

.navbar_mobile_overlay .navbar__submenu {
    margin: 0;
    padding: 0;
    visibility: hidden
}

.navbar_mobile_overlay .navbar__submenu[aria-hidden=false] {
    visibility: visible
}

.navbar_mobile_overlay .navbar__submenu_wrapper {
    height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all .3s cubic-bezier(.275, 1.375, .8, 1);
    transition: all .3s cubic-bezier(.275, 1.375, .8, 1)
}

.navbar_mobile_overlay .navbar__submenu_wrapper.is-active {
    height: auto;
    opacity: 1
}

.topbar {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr auto;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "menutoggle logo search";
    height: 3.8rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1
}

@media all and (min-width:37.5em) {
    .topbar {
        -ms-grid-columns: auto 1fr auto auto;
        grid-template-columns: auto 1fr auto auto;
        grid-template-areas: "menutoggle logo search links"
    }
}

@media all and (min-width:56.25em) {
    .topbar {
        -ms-grid-columns: var(--sidebar-width) 2rem 1fr 2rem auto;
        grid-template-columns: var(--sidebar-width) 1fr auto;
        grid-template-areas: "logo search links";
        gap: 2rem
    }
}

@media all and (min-width:75em) {
    .topbar {
        -ms-grid-columns: var(--sidebar-width) 3rem minmax(-webkit-min-content, var(--content-width)) 3rem auto;
        -ms-grid-columns: var(--sidebar-width) 3rem minmax(min-content, var(--content-width)) 3rem auto;
        grid-template-columns: var(--sidebar-width) minmax(-webkit-min-content, var(--content-width)) auto;
        grid-template-columns: var(--sidebar-width) minmax(min-content, var(--content-width)) auto;
        grid-template-areas: "logo search links";
        gap: 3rem
    }
}

.topbar__logo {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: logo;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.topbar__logo>a {
    color: var(--heading-color) !important;
    display: inline-block;
    font-family: var(--logo-font);
    font-weight: var(--font-weight-bold)
}

.topbar__search {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: search;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.topbar__links {
    grid-area: links;
    font-size: .7901234568rem
}

@media all and (max-width:37.4375em) {
    .topbar__links {
        display: none;
        visibility: hidden
    }
}

.topbar__links>a {
    display: inline-block;
    margin-left: .5333333333rem;
    vertical-align: middle
}

.topbar__links .github {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--dark);
    border-radius: var(--border-radius);
    color: var(--white);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 1.0666666667rem;
    padding: .2666666667rem .5333333333rem
}

.topbar__links .github>svg {
    fill: var(--white);
    margin-right: .2666666667rem
}

.topbar__menu-toggle {
    margin-left: 1.9rem
}

@media all and (min-width:56.25em) {
    .topbar__menu-toggle {
        height: 100%;
        line-height: 4.2666666667rem;
        position: absolute;
        right: 1.3rem;
        top: 0
    }

    .topbar__menu-toggle:before {
        content: "";
        border-left: 1px solid var(--border-color);
        left: -1.6rem;
        height: 100%;
        position: absolute
    }
}

.search svg {
    fill: var(--dark);
    vertical-align: middle
}

.search__trigger {
    background: 0 0;
    color: var(--text-color-light);
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: auto
}

@media all and (max-width:37.4375em) {
    .search__trigger {
        padding-right: 0
    }
}

@media all and (min-width:37.5em) and (max-width:56.1875em) {
    .search__trigger {
        border-right: 1px solid var(--border-color);
        margin-right: .5333333333rem
    }
}

.search__trigger>span {
    padding-left: .5333333333rem
}

@media all and (max-width:56.1875em) {
    .search__trigger>span {
        display: none;
        visibility: hidden
    }
}

.search__trigger:active,
.search__trigger:focus,
.search__trigger:hover {
    color: inherit;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.search__trigger:active>svg,
.search__trigger:focus>svg,
.search__trigger:hover>svg {
    fill: var(--color)
}

@media all and (min-width:56.25em) {
    .search__trigger {
        padding-left: 0
    }
}

.asidebar {
    margin: 0;
    position: sticky;
    top: 5rem
}

.asidebar .asidebar__menu {
    margin: 0
}

@media all and (max-width:56.1875em) {
    .asidebar .asidebar__menu {
        display: none
    }
}

.asidebar .asidebar__menu li {
    font-family: var(--menu-font);
    font-size: .7901234568rem;
    font-weight: var(--font-weight-bold);
    list-style: none;
    padding: 0 0 .2666666667rem;
    position: relative
}

.asidebar .asidebar__menu li a {
    color: var(--text-color-light);
    display: block;
    padding: .2666666667rem 0
}

.asidebar .asidebar__menu li a:active,
.asidebar .asidebar__menu li a:focus,
.asidebar .asidebar__menu li a:hover {
    color: var(--link-color);
    text-decoration: none
}

.asidebar .asidebar__menu li span {
    color: var(--link-color-hover);
    cursor: default;
    display: block;
    padding: .2666666667rem 0
}

.asidebar .asidebar__menu li.active>a {
    color: var(--link-color);
    text-shadow: var(--text-shadow)
}

.asidebar .asidebar__menu li.active>a:active,
.asidebar .asidebar__menu li.active>a:hover {
    color: var(--link-color)
}

.asidebar .asidebar__submenu {
    border-left: 1px solid var(--border-color);
    display: none;
    margin: .8rem 0 .8rem 0;
    visibility: hidden
}

.asidebar .asidebar__submenu li {
    border: none;
    font-size: .7901234568rem;
    font-weight: var(--font-weight-normal);
    padding: 0 0 0 1.0666666667rem
}

.asidebar .asidebar__submenu li.active::before {
    content: "";
    background: var(--link-color);
    display: block;
    height: 100%;
    left: -1px;
    width: 2px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.asidebar .active-parent>.asidebar__submenu,
.asidebar .active>.asidebar__submenu {
    display: block;
    visibility: visible
}

.asidebar .has-submenu {
    position: relative
}

.asidebar .has-submenu>a,
.asidebar .has-submenu>span {
    position: relative
}

.asidebar .has-submenu>a::after,
.asidebar .has-submenu>span::after {
    border-right: 1px solid var(--text-color-light);
    border-bottom: 1px solid var(--text-color-light);
    content: "";
    display: block;
    height: 6px;
    left: 98%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 6px
}

.asidebar .active-parent>a::after,
.asidebar .active-parent>span::after,
.asidebar .active.has-submenu>a::after,
.asidebar .active.has-submenu>span::after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg)
}

.asidebar__toggle {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
    display: block;
    left: 0;
    line-height: 1;
    grid-area: menutoggle;
    height: 100%;
    margin: 0;
    overflow: visible;
    padding: 0 1.0666666667rem 0 0;
    width: auto;
    text-transform: none;
    z-index: 997
}

@media all and (min-width:37.5em) {
    .topbar__logo {
        -ms-grid-row: 1;
        -ms-grid-column: 2
    }

    .topbar__search {
        -ms-grid-row: 1;
        -ms-grid-column: 3
    }

    .topbar__links {
        -ms-grid-row: 1;
        -ms-grid-column: 4
    }

    .asidebar__toggle {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }
}

@media all and (min-width:56.25em) {
    .topbar__logo {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }

    .topbar__search {
        -ms-grid-row: 1;
        -ms-grid-column: 3
    }

    .topbar__links {
        -ms-grid-row: 1;
        -ms-grid-column: 5
    }
}

@media all and (min-width:75em) {
    .topbar__logo {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }

    .topbar__search {
        -ms-grid-row: 1;
        -ms-grid-column: 3
    }

    .topbar__links {
        -ms-grid-row: 1;
        -ms-grid-column: 5
    }
}

@media all and (min-width:56.25em) {
    .asidebar__toggle {
        display: none
    }
}

.asidebar__toggle:focus,
.asidebar__toggle:hover {
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.asidebar__toggle-box {
    width: 20px;
    height: 12px;
    display: inline-block;
    position: relative
}

.asidebar__toggle-inner {
    display: block;
    top: 50%;
    text-indent: -9999999em
}

.asidebar__toggle-inner::before {
    content: "";
    display: block;
    top: -5px
}

.asidebar__toggle-inner::after {
    content: "";
    display: block;
    bottom: -5px
}

.asidebar__toggle-inner,
.asidebar__toggle-inner::after,
.asidebar__toggle-inner::before {
    width: 18px;
    height: 2px;
    background-color: var(--dark);
    position: absolute;
    -webkit-transition: opacity .14s ease-out, -webkit-transform;
    transition: opacity .14s ease-out, -webkit-transform;
    transition: transform, opacity .14s ease-out;
    transition: transform, opacity .14s ease-out, -webkit-transform
}

.asidebar__toggle-inner {
    -webkit-transition-duration: 75ms;
    transition-duration: 75ms;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}

.asidebar__toggle-inner::before {
    -webkit-transition: top 75ms ease .12s, opacity 75ms ease;
    transition: top 75ms ease .12s, opacity 75ms ease
}

.asidebar__toggle-inner::after {
    -webkit-transition: bottom 75ms ease .12s, -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);
    transition: bottom 75ms ease .12s, -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19), -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19)
}

.asidebar__toggle.is-active .asidebar__toggle-inner {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-delay: 0.12s;
    transition-delay: 0.12s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}

.asidebar__toggle.is-active .asidebar__toggle-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 75ms ease, opacity 75ms ease .12s;
    transition: top 75ms ease, opacity 75ms ease .12s
}

.asidebar__toggle.is-active .asidebar__toggle-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s, -webkit-transform 75ms cubic-bezier(.215, .61, .355, 1) .12s
}

.asidebar_mobile_overlay {
    background: var(--white);
    height: calc(100vh - var(--header-height));
    left: 0;
    opacity: 1;
    overflow: auto;
    pointer-events: auto;
    position: fixed;
    top: var(--header-height);
    -webkit-transition: all .3s cubic-bezier(0, 0, .3, 1);
    transition: all .3s cubic-bezier(0, 0, .3, 1);
    width: 100%;
    z-index: 998
}

.asidebar_mobile_overlay.is-hidden {
    opacity: 0;
    pointer-events: none
}

.asidebar_mobile_overlay .asidebar__menu {
    margin: 24px
}

.asidebar_mobile_overlay .asidebar__menu li {
    font-size: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center
}

.asidebar_mobile_overlay .asidebar__menu li .is-separator,
.asidebar_mobile_overlay .asidebar__menu li a {
    color: var(--dark);
    display: block;
    padding: 10px 20px 10px 0;
    position: relative
}

.asidebar_mobile_overlay .asidebar__menu li .is-separator:active,
.asidebar_mobile_overlay .asidebar__menu li .is-separator:focus,
.asidebar_mobile_overlay .asidebar__menu li .is-separator:hover,
.asidebar_mobile_overlay .asidebar__menu li a:active,
.asidebar_mobile_overlay .asidebar__menu li a:focus,
.asidebar_mobile_overlay .asidebar__menu li a:hover {
    color: var(--dark)
}

.asidebar_mobile_overlay .asidebar__menu li .is-separator[aria-haspopup=true]::after,
.asidebar_mobile_overlay .asidebar__menu li a[aria-haspopup=true]::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: var(--text-color-light) transparent transparent transparent;
    left: .5333333333rem;
    top: 14px;
    position: relative
}

.asidebar_mobile_overlay .asidebar__submenu {
    margin: 0;
    padding: 0;
    visibility: hidden
}

.asidebar_mobile_overlay .asidebar__submenu[aria-hidden=false] {
    visibility: visible
}

.asidebar_mobile_overlay .asidebar__submenu_wrapper {
    height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all .3s cubic-bezier(.275, 1.375, .8, 1);
    transition: all .3s cubic-bezier(.275, 1.375, .8, 1)
}

.asidebar_mobile_overlay .asidebar__submenu_wrapper.is-active {
    height: auto;
    opacity: 1
}

.asidebar_mobile_sidebar {
    background: var(--white);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .25);
    box-shadow: 0 0 5px rgba(0, 0, 0, .25);
    height: 100vh;
    left: 0;
    max-width: 400px;
    overflow: auto;
    position: fixed;
    top: 0;
    -webkit-transition: all .3s cubic-bezier(0, 0, .3, 1);
    transition: all .3s cubic-bezier(0, 0, .3, 1);
    width: 80%;
    z-index: 998
}

.asidebar_mobile_sidebar.is-hidden {
    left: -400px
}

.asidebar_mobile_sidebar .asidebar__menu {
    margin: 24px
}

.asidebar_mobile_sidebar .asidebar__menu li {
    font-size: 16px;
    list-style: none;
    line-height: 1.3;
    margin: 0;
    padding: 0
}

.asidebar_mobile_sidebar .asidebar__menu li .is-separator,
.asidebar_mobile_sidebar .asidebar__menu li a {
    color: var(--dark);
    display: block;
    padding: 10px 20px 10px 0;
    position: relative
}

.asidebar_mobile_sidebar .asidebar__menu li .is-separator:active,
.asidebar_mobile_sidebar .asidebar__menu li .is-separator:focus,
.asidebar_mobile_sidebar .asidebar__menu li .is-separator:hover,
.asidebar_mobile_sidebar .asidebar__menu li a:active,
.asidebar_mobile_sidebar .asidebar__menu li a:focus,
.asidebar_mobile_sidebar .asidebar__menu li a:hover {
    color: var(--dark)
}

.asidebar_mobile_sidebar .asidebar__menu li .is-separator[aria-haspopup=true]::after,
.asidebar_mobile_sidebar .asidebar__menu li a[aria-haspopup=true]::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: var(--text-color-light) transparent transparent transparent;
    right: 0;
    top: 18px;
    position: absolute
}

.asidebar_mobile_sidebar .asidebar__submenu {
    margin: 0 0 0 24px;
    padding: 0;
    visibility: hidden
}

.asidebar_mobile_sidebar .asidebar__submenu[aria-hidden=false] {
    visibility: visible
}

.asidebar_mobile_sidebar .asidebar__submenu_wrapper {
    height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all .3s cubic-bezier(.275, 1.375, .8, 1);
    transition: all .3s cubic-bezier(.275, 1.375, .8, 1)
}

.asidebar_mobile_sidebar .asidebar__submenu_wrapper.is-active {
    height: auto;
    opacity: 1
}

.asidebar_mobile_sidebar__overlay {
    background: rgba(0, 0, 0, .5);
    height: 100%;
    opacity: 1;
    pointer-events: auto;
    position: fixed;
    top: 0;
    -webkit-transition: all .3s cubic-bezier(0, 0, .3, 1);
    transition: all .3s cubic-bezier(0, 0, .3, 1);
    width: 100%;
    z-index: 10
}

.asidebar_mobile_sidebar__overlay.is-hidden {
    opacity: 0;
    pointer-events: none
}

.page-wrap {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin)
}

.green {
    --border-color: hsl(var(--hsl-green), 88%);
    --color: hsl(var(--hsl-green), 39%);
    --color-light: hsl(var(--hsl-green), 95%);
    --link-color: var(--color);
    --shadow-color: hsl(var(--hsl-green), 94%);
    --icon-bg: hsl(var(--hsl-green), 95%);
    --icon-fill: hsl(var(--hsl-green), 39%)
}

.pink {
    --border-color: hsl(var(--hsl-pink), 93%);
    --color: hsl(var(--hsl-pink), 65%);
    --color-light: hsl(var(--hsl-pink), 98%);
    --link-color: var(--color);
    --shadow-color: hsl(var(--hsl-pink), 97%);
    --icon-bg: hsl(var(--hsl-pink), 98%);
    --icon-fill: hsl(var(--hsl-pink), 65%)
}

.gray {
    --color-light: hsl(var(--hsl-gray), 98%);
    --link-color: var(--color);
    --shadow-color: hsl(var(--hsl-gray), 97%);
    --icon-bg: hsl(var(--hsl-gray), 96%);
    --icon-fill: hsl(var(--hsl-gray), 39%);
    --text-shadow: 0 0 1px var(--link-color)
}

[role=doc-subtitle] {
    font-size: .8888888889rem;
    font-weight: var(--font-weight-bold);
    margin: 0 0 .8rem
}

.readmore {
    display: inline-block;
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing)
}

.section {
    margin-bottom: var(--space-2xl)
}

.section__header {
    margin-bottom: var(--space-xl)
}

.section__header--center {
    text-align: center
}

.section__header--center>* {
    margin-left: auto;
    margin-right: auto
}

@media all and (min-width:56.25em) {
    .section__header--grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 50% var(--space-lg) 50%;
        grid-template-columns: repeat(2, 50%);
        gap: 0 var(--space-lg)
    }

    .section__header--grid>h1 {
        -ms-grid-column-span: 2;
        grid-column: span 2
    }
}

.section__header>*>strong {
    color: var(--color)
}

.section__header>*+p {
    letter-spacing: var(--letter-spacing)
}

.section__btn {
    margin-top: 2.6666666667rem;
    padding: .6666666667rem 1.3333333333rem
}

@media all and (max-width:37.4375em) {
    .section__btn {
        width: 100%
    }
}

.section--border {
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-xl)
}

.main {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-areas: "content";
    font-size: 16px
}

@media all and (min-width:56.25em) {
    .main {
        -ms-grid-columns: var(--sidebar-width) 2rem 1fr;
        grid-template-columns: var(--sidebar-width) 1fr;
        grid-template-areas: "nav content";
        gap: 2rem
    }
}

@media all and (min-width:75em) {
    .main {
        -ms-grid-columns: var(--sidebar-width) 3rem auto;
        grid-template-columns: var(--sidebar-width) auto;
        grid-template-areas: "nav content";
        gap: 3rem
    }
}

.main__left {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: content;
    padding: 2.1333333333rem 0 2.6666666667rem
}

@media all and (max-width:56.1875em) {
    .main__left {
        padding: 2.1333333333rem 0;
        overflow: hidden
    }
}

@media all and (min-width:56.25em) {
    .main__left-inner {
        display: -ms-grid;
        display: grid
    }
}

@media all and (min-width:75em) {
    .main__left-inner {
        -ms-grid-columns: minmax(auto, var(--content-width)) 3rem var(--aside-width);
        grid-template-columns: minmax(auto, var(--content-width)) var(--aside-width);
        gap: 3rem
    }
}

.main__left-content {
    overflow: hidden
}

@media all and (max-width:74.9375em) {
    .main__left-aside {
        display: none
    }
}

.main__left-aside__inner {
    margin-top: .5333333333rem;
    position: sticky;
    top: 5.5333333333rem
}

.main__left-aside__inner h3 {
    color: var(--text-color);
    font-size: .624295077rem;
    letter-spacing: .09em;
    margin: 0;
    text-transform: uppercase
}

.main__right {
    grid-area: nav;
    padding: 2.1333333333rem 0 0
}

@media all and (min-width:56.25em) {
    .main__left {
        -ms-grid-row: 1;
        -ms-grid-column: 3
    }

    .main__right {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }
}

@media all and (min-width:75em) {
    .main__left {
        -ms-grid-row: 1;
        -ms-grid-column: 3
    }

    .main__right {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }
}

@media all and (max-width:56.1875em) {
    .main__right {
        display: none
    }
}

@media all and (min-width:56.25em) {
    .main__right-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        max-width: var(--sidebar-width);
        padding-bottom: 2.1333333333rem
    }
}

.aside-toc {
    margin: .8rem 0 0;
    overflow-y: auto
}

.aside-toc ol {
    list-style: none;
    margin: 0 0 .5333333333rem;
    padding: 0
}

.aside-toc ol li {
    font-size: .7023319616rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    padding: 0
}

.aside-toc ol li a {
    color: var(--text-color-light);
    display: block;
    padding: .2666666667rem 0
}

.aside-toc ol li a:active,
.aside-toc ol li a:hover {
    color: var(--link-color)
}

.aside-toc ol li a.active {
    color: var(--link-color)
}

.aside-toc ol ol {
    margin-left: 1rem
}

.listing+.listing {
    margin-top: var(--space-lg)
}

.listing h2 {
    margin: 0
}

.list {
    list-style: none;
    margin: .5333333333rem 0 0
}

.list__item {
    border-bottom: 1px solid var(--border-color);
    padding: 2.1333333333rem 0
}

.list__item--thin {
    padding: 1.0666666667rem 0
}

.list__item-title {
    font-size: 16px;
    margin: 0
}

.list__item-title sup {
    font-weight: var(--font-weight-normal)
}

.list__item-meta {
    color: var(--text-color-light);
    font-size: .7023319616rem;
    margin: .2666666667rem 0 0
}

.list__item-meta *+* {
    margin-left: .5rem
}

.list__item-meta *+::before {
    color: var(--border-color);
    content: "|";
    margin-right: .5rem
}

.list__item-excerpt {
    margin-top: 1.0666666667rem
}

.list__item:last-of-type {
    border: none
}

.post--on-frontpage+.listing {
    margin-top: 4.8rem
}

.post__title {
    margin-top: .2666666667rem
}

.post__featured-image {
    display: inline-block
}

.post__featured-image>img {
    display: inline-block
}

.post__image {
    display: inline-block
}

.post__image>img {
    display: inline-block
}

.post__image--left {
    float: left;
    margin-bottom: 1.6rem;
    margin-right: 1.6rem;
    max-width: 50%
}

.post__image--right {
    float: right;
    margin-bottom: 1.6rem;
    margin-left: 1.6rem;
    max-width: 50%
}

.post__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.post__entry {
    overflow: hidden
}

.post__entry h1,
.post__entry h2 {
    padding-top: 2.1333333333rem;
    position: relative
}

.post__entry h1::before,
.post__entry h2::before {
    background-color: var(--border-color);
    content: " ";
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.post__entry h3 {
    margin-top: 0;
    padding-top: 2.1333333333rem
}

.post__entry a:not(.btn):not([type=button]):not([type=submit]):not(button):hover {
    text-decoration: underline;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

.post__footer-top {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 3.2rem;
    position: relative
}

.post__meta {
    color: var(--text-color-light);
    font-size: .7023319616rem
}

@media all and (max-width:37.4375em) {
    .post__meta>*+span {
        display: block
    }
}

.post__meta>*+span::before {
    background: var(--border-color);
    border-radius: 50%;
    display: inline-block;
    height: 4px;
    margin-right: .75rem;
    vertical-align: middle;
    width: 4px
}

@media all and (min-width:37.5em) and (max-width:56.1875em) {
    .post__meta>*+span {
        margin-left: .75rem
    }

    .post__meta>*+span::before {
        content: ""
    }
}

@media all and (min-width:56.25em) and (max-width:74.9375em) {
    .post__meta>*+span {
        display: block
    }
}

@media all and (min-width:75em) {
    .post__meta>*+span {
        margin-left: .75rem
    }

    .post__meta>*+span::before {
        content: ""
    }
}

.post__share {
    margin-left: auto
}

.post__share-button {
    background: 0 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    width: auto;
    padding: 0
}

.post__share-button>svg {
    fill: var(--dark);
    height: 32px;
    opacity: .7;
    -webkit-transition: all .12s linear;
    transition: all .12s linear;
    width: 32px
}

.post__share-button:hover>svg {
    opacity: 1
}

.post__share-popup {
    background: var(--white);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .15);
    box-shadow: 0 0 8px rgba(0, 0, 0, .15);
    border-radius: 3px;
    bottom: 95%;
    display: none;
    padding: 1rem;
    position: absolute;
    right: 8px;
    text-align: left;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.post__share-popup.is-visible {
    display: block
}

.post__share-popup a {
    color: var(--text-color-light);
    display: block;
    font-size: 16px;
    padding: .2666666667rem .5333333333rem
}

.post__share-popup a:hover {
    background: var(--light);
    border-radius: 4px;
    text-decoration: none
}

.post__share-popup a>svg {
    display: inline-block;
    height: 1.0666666667rem;
    margin-right: .5333333333rem;
    pointer-events: none;
    vertical-align: middle;
    width: 1.0666666667rem
}

.post__footer-top+.post__footer-bottom {
    margin-top: 1.0666666667rem
}

.post__footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 3.2rem;
    padding-top: 1.0666666667rem
}

.post__tag {
    margin-left: 0
}

.post__tag li {
    display: inline-block;
    list-style: none;
    padding: 0 .2666666667rem .5333333333rem 0
}

.post__tag li a {
    background: var(--light);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    color: var(--dark);
    display: inline-block;
    font-size: .624295077rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: .03em;
    padding: .5333333333rem 1.3333333333rem;
    text-align: center;
    text-transform: uppercase
}

.post__tag li a:active,
.post__tag li a:focus,
.post__tag li a:hover {
    background: var(--dark);
    color: var(--white)
}

.post__bio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: .8888888889rem;
    margin-top: 2.1333333333rem
}

.post__bio * {
    margin: 0
}

.post__bio>img {
    border-radius: 50%;
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 3rem;
    width: 3rem;
    margin-right: 1.6rem
}

.post footer:after {
    content: " ";
    display: block;
    clear: both
}

.post footer>.post__bio {
    border-top: 1px solid var(--border-color);
    margin-top: 4.2666666667rem
}

.post__progress {
    height: 4px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100
}

.post__progress::after {
    background: -webkit-gradient(linear, left top, right top, from(var(--color)), color-stop(0, transparent));
    background: linear-gradient(to right, var(--color) var(--scroll), transparent 0);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%
}

.post__iframe,
.post__video {
    position: relative;
    display: block;
    margin-top: 2.1333333333rem;
    margin-bottom: 2.1333333333rem;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.post__iframe::before,
.post__video::before {
    display: block;
    content: "";
    padding-top: var(--embed-aspect-ratio)
}

.post__iframe iframe,
.post__iframe video,
.post__video iframe,
.post__video video {
    border: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%
}

.post__toc h3 {
    font-size: clamp(1.125rem, 1.125rem + .140625 * (100vw - 20rem) / 58, 1.265625rem)
}

.post__toc ul {
    counter-reset: item;
    list-style: decimal;
    margin: .5333333333rem 0 0 1.0666666667rem
}

.post__toc ul li {
    counter-increment: item;
    padding: 0
}

.post__toc ul ul {
    margin-top: 0
}

.post__toc ul ul li {
    display: block
}

.post__toc ul ul li:before {
    content: counters(item, ".") ". ";
    margin-left: -1.0666666667rem
}

.post__note {
    border-radius: 2px;
    border: 1px solid var(--border-color);
    margin-top: 1.6rem;
    padding: 1.6rem
}

@media all and (min-width:37.5em) {
    .post__note {
        float: right;
        font-size: .8888888889rem;
        margin: 1.6rem 0 1.0666666667rem 1.6rem;
        max-width: 40%;
        position: relative;
        z-index: 1
    }
}

.post__note>:first-child {
    margin: 0;
    padding: 0
}

.post__note>:first-child::before {
    content: none
}

@media all and (min-width:37.5em) {
    .post__note--left {
        float: left;
        margin: .5333333333rem 1.6rem 1.0666666667rem 0
    }
}

.posts-nav {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-top: 1px solid var(--border-color);
    color: var(--text-color-light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
    margin-left: 0;
    margin-top: 2.1333333333rem;
    padding: 2.1333333333rem 0 0
}

@media all and (max-width:37.4375em) {
    .posts-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media all and (min-width:75em) and (max-width:87.4375em) {
    .posts-nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.posts-nav__next,
.posts-nav__prev {
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    width: 100%;
    padding-left: 0
}

@media all and (max-width:37.4375em) {

    .posts-nav__next,
    .posts-nav__prev {
        margin: .2666666667rem 0
    }
}

@media all and (min-width:75em) and (max-width:87.4375em) {

    .posts-nav__next,
    .posts-nav__prev {
        margin: .2666666667rem 0
    }
}

.posts-nav__next>span,
.posts-nav__prev>span {
    display: block;
    font-size: .624295077rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: .03em;
    margin-bottom: .2666666667rem;
    text-transform: uppercase
}

.posts-nav__next {
    text-align: right
}

@media all and (max-width:37.4375em) {
    .posts-nav__next {
        text-align: left
    }
}

@media all and (min-width:75em) and (max-width:87.4375em) {
    .posts-nav__next {
        text-align: left
    }
}

.post-comments {
    margin-top: 3.2rem
}

.banner--after-post {
    margin-top: 4rem
}

.page__header {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2.1333333333rem;
    padding-bottom: 1.6rem
}

.page__header+.list {
    margin-top: -1.6rem
}

.page__title {
    margin-top: .2666666667rem
}

.page__title sup {
    font-weight: var(--font-weight-normal)
}

.page__desc {
    color: var(--text-color-light);
    margin-top: .2666666667rem
}

.page--author__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.page--author__avatar {
    border-radius: 50%;
    display: block;
    height: 4rem;
    width: 4rem;
    margin: .8rem 0 0 1.6rem
}

.page--author__website {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 1.6rem
}

.page--author__website a {
    margin-left: .4rem
}

.page--error {
    max-width: 44rem;
    margin-top: var(--space-2xl);
    margin-left: auto;
    margin-right: auto
}

.page--error__title {
    margin-top: 0;
    font-size: clamp(1.8020324707rem, 1.8020324707rem + 1.4452885548 * (100vw - 20rem) / 58, 3.2473210255rem)
}

.align-left {
    text-align: left
}

.align-right {
    text-align: right
}

.align-center {
    text-align: center
}

.align-justify {
    text-align: justify
}

.ordered-list {
    counter-reset: listCounter
}

.ordered-list li {
    counter-increment: listCounter;
    list-style: none;
    position: relative
}

.ordered-list li::before {
    color: var(--color);
    content: counter(listCounter, decimal-leading-zero) ".";
    font-weight: var(--font-weight-bold);
    left: -2rem;
    position: absolute
}

.msg {
    border-left: 4px solid transparent;
    padding: 1.0666666667rem 2.1333333333rem
}

.msg--highlight {
    background-color: #fff8e6;
    border-color: #e2ac4f
}

.msg--info {
    background-color: #f6fafd;
    border-color: var(--blue)
}

.msg--success {
    background: #f7fbf6;
    border-color: #5ab44b
}

.msg--warning {
    background: #fff3f3;
    border-color: #c06367;
    color: #a94442
}

.dropcap:first-letter {
    float: left;
    font-family: var(--heading-font);
    font-size: 5.2015803828rem;
    font-weight: var(--font-weight-bold);
    line-height: .7;
    margin-right: .2666666667rem;
    padding: .5333333333rem .5333333333rem .5333333333rem 0
}

.pec-wrapper {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.pec-overlay {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--border-color);
    font-size: 14px;
    display: none;
    height: inherit;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.4;
    padding: 1rem;
    position: relative;
    text-align: center
}

@media all and (min-width:37.5em) {
    .pec-overlay {
        font-size: 16px;
        line-height: var(--line-height);
        padding: 1rem 2rem
    }
}

.pec-overlay.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.pec-overlay-inner p {
    margin: 0 0 1rem
}

.breadcrump {
    margin-bottom: .5333333333rem
}

.breadcrump ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0
}

.breadcrump ol>li {
    color: var(--text-color-light);
    margin-right: .3rem;
    padding: 0;
    font-size: .7901234568rem
}

.breadcrump ol>li a {
    color: var(--text-color-light);
    text-decoration: none;
    -webkit-transition: all .14s ease-out;
    transition: all .14s ease-out
}

.breadcrump ol>li a:hover {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

.breadcrump ol>li a:active {
    color: var(--link-color)
}

.breadcrump ol>li a:focus {
    color: var(--link-color)
}

.breadcrump ol>li+li::before {
    content: "›";
    margin-right: .3rem
}

.pagination {
    border-top: 1px solid var(--border-color);
    padding-top: 1.6rem
}

.pagination a+a {
    margin-left: 1.0666666667rem
}

.cta {
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-2xl)
}

.cta__title {
    margin-top: 0;
    font-size: clamp(1.8020324707rem, 1.8020324707rem + 1.4452885548 * (100vw - 20rem) / 58, 3.2473210255rem)
}

.cta__steps {
    list-style: none;
    margin: 2rem 0 0
}

.cta__steps li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0
}

@media all and (max-width:37.4375em) {
    .cta__steps li {
        font-size: .8888888889rem;
        margin: var(--space-xs) 0
    }
}

.cta__steps li span {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--color-light);
    border: 1px solid var(--color);
    border-radius: 50%;
    color: var(--color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    height: 22px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: .5333333333rem;
    width: 22px
}

@media all and (min-width:20em) {
    .cta__steps li span {
        font-size: 16px;
        height: 26px;
        width: 26px
    }
}

.cta__steps li+li {
    margin-left: var(--space-sm)
}

@media all and (min-width:20em) {
    .cta__steps li+li {
        margin-left: var(--space-md)
    }
}

.cta__desc {
    margin-bottom: 1.6rem
}

.footer {
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    padding-top: var(--space-lg)
}

.footer a {
    color: var(--dark);
    text-decoration: none;
    -webkit-transition: all .14s ease-out;
    transition: all .14s ease-out
}

.footer a:hover {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

.footer a:active {
    color: var(--link-color)
}

.footer a:focus {
    color: var(--link-color)
}

.footer__bottom {
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    margin-top: var(--space-lg);
    padding-top: var(--space-md)
}

@media all and (max-width:56.1875em) {
    .footer__bottom {
        padding-top: var(--space-lg);
        text-align: center
    }
}

@media all and (min-width:56.25em) {
    .footer__bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.footer__social a {
    color: var(--text-color-light);
    display: inline-block;
    margin: 1.6rem .4rem
}

@media all and (min-width:56.25em) {
    .footer__social a {
        margin: 0 .4rem
    }
}

.footer__social a:active,
.footer__social a:focus,
.footer__social a:hover {
    color: var(--text-color)
}

.footer__social a>svg {
    fill: currentColor
}

.footer__menu {
    list-style: none;
    margin: 0
}

@media all and (min-width:56.25em) {
    .footer__menu {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (auto)[5];
        grid-template-columns: repeat(5, auto);
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.footer__menu>li>span {
    display: block;
    font-weight: var(--font-weight-bold);
    margin-bottom: .8rem;
    position: relative
}

@media all and (max-width:56.1875em) {
    .footer__menu>li>span {
        cursor: pointer;
        pointer-events: initial
    }
}

@media all and (min-width:56.25em) {
    .footer__menu>li>span {
        cursor: pointer;
        pointer-events: none
    }
}

@media all and (max-width:56.1875em) {
    .footer__menu>li>span::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.footer__menu>li>ul {
    pointer-events: initial
}

@media all and (max-width:56.1875em) {
    .footer__menu>li>ul {
        height: auto;
        max-height: 0;
        overflow: hidden
    }
}

@media all and (max-width:56.1875em) {
    .footer__menu>li.is-open>span::after {
        content: "-"
    }

    .footer__menu>li.is-open>ul {
        max-height: 100%;
        margin: 0 0 1.0666666667rem
    }
}

.footer__menu ul {
    margin: 0
}

.footer__menu li {
    display: block;
    padding: .4rem 0 0
}

.footer__menu-icon-heart>a {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M15.635,5.668c0,1.157-.451,2.245-1.27,3.063l-5.894,5.894c-.13,.13-.301,.195-.471,.195s-.341-.065-.471-.195L1.635,8.731c-1.69-1.689-1.69-4.439,0-6.129,1.69-1.69,4.44-1.69,6.13,0l.235,.235,.235-.235c1.693-1.69,4.441-1.689,6.13,0h0c.818,.82,1.269,1.908,1.269,3.066Z' fill='%23ff000d'/%3e%3c/svg%3e") no-repeat 0 50%;
    background-size: 16px;
    padding-left: 24px
}

.gallery {
    margin: 2.6666666667rem -.2666666667rem
}

@media all and (min-width:20em) {
    .gallery {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

@media all and (min-width:20em) {
    .gallery[data-columns="1"] .gallery__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%
    }
}

@media all and (min-width:30em) {
    .gallery[data-columns="2"] .gallery__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%
    }
}

@media all and (min-width:37.5em) {
    .gallery[data-columns="3"] .gallery__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 33.333%;
        flex: 1 0 33.333%
    }
}

@media all and (min-width:56.25em) {
    .gallery[data-columns="4"] .gallery__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 25%;
        flex: 0 1 25%
    }
}

@media all and (min-width:56.25em) {
    .gallery[data-columns="5"] .gallery__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 20%;
        flex: 0 1 20%
    }
}

@media all and (min-width:56.25em) {
    .gallery[data-columns="6"] .gallery__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 16.666%;
        flex: 0 1 16.666%
    }
}

@media all and (min-width:56.25em) {
    .gallery[data-columns="7"] .gallery__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 14.285%;
        flex: 1 0 14.285%
    }
}

@media all and (min-width:56.25em) {
    .gallery[data-columns="8"] .gallery__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 12.5%;
        flex: 1 0 12.5%
    }
}

.gallery__item {
    margin: 0;
    padding: .2666666667rem;
    position: relative
}

@media all and (min-width:20em) {
    .gallery__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%
    }
}

@media all and (min-width:30em) {
    .gallery__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 33.333%;
        flex: 1 0 33.333%
    }
}

@media all and (min-width:37.5em) {
    .gallery__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 25%;
        flex: 1 0 25%
    }
}

.gallery__item a {
    display: block;
    height: 100%;
    width: 100%
}

.gallery__item a::after {
    background: -webkit-gradient(linear, left bottom, left top, from(black), to(transparent));
    background: linear-gradient(to top, #000, transparent);
    bottom: .2666666667rem;
    content: "";
    display: block;
    opacity: 0;
    left: .2666666667rem;
    height: calc(100% - .5333333333rem);
    position: absolute;
    right: .2666666667rem;
    top: .2666666667rem;
    -webkit-transition: all .24s ease-out;
    transition: all .24s ease-out;
    width: calc(100% - .5333333333rem)
}

.gallery__item a:hover::after {
    opacity: .4
}

.gallery__item img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.gallery__item figcaption {
    bottom: 1.2rem;
    color: var(--white);
    left: 50%;
    opacity: 0;
    position: absolute;
    text-align: center;
    -webkit-transform: translate(-50%, 1.2rem);
    -ms-transform: translate(-50%, 1.2rem);
    transform: translate(-50%, 1.2rem);
    -webkit-transition: all .24s ease-out;
    transition: all .24s ease-out
}

.gallery__item:hover figcaption {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

.pswp--dark .pswp__bg {
    background: #000
}

.pswp--light .pswp__bg {
    background: var(--white)
}

.pswp--light .pswp__counter {
    color: #000
}

.pswp--light .pswp__caption__center {
    color: var(--text-color-light)
}

img[loading] {
    opacity: 0
}

img.is-loaded {
    opacity: 1;
    transition: opacity 1s cubic-bezier(.215, .61, .355, 1)
}

.grid {
    display: grid;
    grid-gap: 1rem;
    margin: 2.66667rem 0 0
}

@media screen and (min-width:37.4375em) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.grid>div {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 0 1.8666rem 1.8666rem 1.8666rem
}

.grid figure {
    float: right;
    margin-left: 2rem;
    max-width: 10rem
}

@media screen and (min-width:37.4375em) {
    .grid div:first-child {
        grid-column: span 2
    }
}

:root {
    --pss-results-title-font-weight: 600;
    --pss-results-excerpt-line-height: 1.3
}

.pss-results__list__link:hover {
    text-decoration: none
}