:root {
    --primary-color: #f8ce5f;
    --white: #fff;
    --light-gray: #f0f0f0;
    --lighten-blue: #eaecef;
    --light-blue: #e4e6eb;
    --blue-gray: #697177;
    --gray: #9e9e9e;
    --dark: #111;
    --dark-blue: #1e2943;
    --background-color: var(--white);
    --background-alt-color: var(--lighten-blue);
    --background-alt-color-2: var(--light-blue);
    --text-color: var(--dark);
    --text-alt-color: var(--blue-gray);
    --heading-font-color: var(--dark);
    --link-color: var(--dark);
    --link-color-hover: var(--dark);
    --button-color: #320101;
    --button-background-color: var(--primary-color);
    --button-background-hover: #edc352;
    --border-color: var(--light-blue);
    --border-alt-color: var(--white);
    --th-color: var(--light-gray);
    --tr-color: var(--light-gray);
    --syntax-highlighting-background: var(--light-gray)
}

:root[dark] {
    --primary-color: #fbdab1;
    --white: #fff;
    --light-gray: #f5f5f5;
    --gray: #9a9a9a;
    --dark: #2a2b2d;
    --dark-blue: #181818;
    --background-color: var(--dark-blue);
    --background-alt-color: var(--dark);
    --background-alt-color-2: #262729;
    --text-color: var(--gray);
    --text-alt-color: var(--gray);
    --heading-font-color: var(--light-gray);
    --link-color: var(--light-gray);
    --link-color-hover: var(--light-gray);
    --button-color: var(--dark);
    --button-background-color: var(--primary-color);
    --button-background-hover: #d3b795;
    --border-color: #333;
    --border-alt-color: #333;
    --th-color: var(--dark);
    --tr-color: var(--dark);
    --syntax-highlighting-background: var(--dark)
}

.list-reset {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.clearfix ::before, .clearfix::after {
    content: "";
    display: table;
    clear: both
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

pre {
    font-family: monospace, monospace
}

a {
    background-color: transparent;
    text-decoration: none;
    color: var(--link-color)
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b, strong {
    font-weight: bolder
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
    outline: ButtonText dotted 1px
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

[hidden], template {
    display: none
}

blockquote, body, dd, dl, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, legend, ol, p, pre, ul {
    margin: 0;
    padding: 0
}

li > ol, li > ul {
    margin-bottom: 0
}

address, blockquote, dl, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, ol, p, pre, table, ul {
    margin-bottom: 32px
}

dd, ol, ul {
    margin-left: 16px
}

ol li, ul li {
    margin-bottom: 8px
}

.highlight {
    margin-bottom: 32px;
    border-radius: 4px;
    background: var(--syntax-highlighting-background)
}

.highlighter-rouge .highlight {
    background: var(--syntax-highlighting-background)
}

.highlight .c {
    color: #998;
    font-style: italic
}

.highlight .err {
    color: #a61717;
    background-color: #e3d2d2
}

.highlight .k, .highlight .o {
    font-weight: 700
}

.highlight .cm {
    color: #998;
    font-style: italic
}

.highlight .cp {
    color: #999;
    font-weight: 700
}

.highlight .c1 {
    color: #998;
    font-style: italic
}

.highlight .cs {
    color: #999;
    font-weight: 700;
    font-style: italic
}

.highlight .gd {
    color: #000;
    background-color: #fdd
}

.highlight .gd .x {
    color: #000;
    background-color: #faa
}

.highlight .ge {
    font-style: italic
}

.highlight .gr {
    color: #a00
}

.highlight .gh {
    color: #999
}

.highlight .gi {
    color: #000;
    background-color: #dfd
}

.highlight .gi .x {
    color: #000;
    background-color: #afa
}

.highlight .go {
    color: #888
}

.highlight .gp {
    color: #555
}

.highlight .gs {
    font-weight: 700
}

.highlight .gu {
    color: #aaa
}

.highlight .gt {
    color: #a00
}

.highlight .kc, .highlight .kd, .highlight .kp, .highlight .kr {
    font-weight: 700
}

.highlight .kt {
    color: #5d76bf;
    font-weight: 700
}

.highlight .m {
    color: #099
}

.highlight .s {
    color: #ec2355
}

.highlight .na {
    color: teal
}

.highlight .nb {
    color: #0086b3
}

.highlight .nc {
    color: #5d76bf;
    font-weight: 700
}

.highlight .no {
    color: teal
}

.highlight .ni {
    color: purple
}

.highlight .ne, .highlight .nf {
    color: #900;
    font-weight: 700
}

.highlight .nn {
    color: #555
}

.highlight .nt {
    color: #4d65dc
}

.highlight .nv {
    color: teal
}

.highlight .ow {
    font-weight: 700
}

.highlight .w {
    color: #bbb
}

.highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo {
    color: #099
}

.highlight .s2, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx {
    color: #ec2355
}

.highlight .sr {
    color: #009926
}

.highlight .s1 {
    color: #ec2355
}

.highlight .ss {
    color: #990073
}

.highlight .bp {
    color: #999
}

.highlight .vc, .highlight .vg, .highlight .vi {
    color: teal
}

.highlight .il {
    color: #099
}

.container {
    max-width: 1332px;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto
}

.container-big {
    max-width: 100%;
    margin: 0 auto;
    padding-left: calc(16px * 2);
    padding-right: calc(16px * 2)
}

@media (max-width: 576px) {
    .container-big {
        max-width: 480px;
        padding-left: calc(16px + 4px);
        padding-right: calc(16px + 4px)
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 1000px;
        padding-left: 16px;
        padding-right: 16px
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 740px
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 560px
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 480px;
        padding-left: calc(16px + 4px);
        padding-right: calc(16px + 4px)
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    flex: 0 1 auto;
    flex-direction: row;
    box-sizing: border-box;
    margin-left: -16px;
    margin-right: -16px
}

.col {
    padding-left: 16px;
    padding-right: 16px
}

[class^=col-] {
    flex: auto
}

.col-0 {
    width: calc(0 / 12 * 100%)
}

.col-1 {
    width: calc(1 / 12 * 100%)
}

.col-2 {
    width: calc(2 / 12 * 100%)
}

.col-3 {
    width: calc(3 / 12 * 100%)
}

.col-4 {
    width: calc(4 / 12 * 100%)
}

.col-5 {
    width: calc(5 / 12 * 100%)
}

.col-6 {
    width: calc(6 / 12 * 100%)
}

.col-7 {
    width: calc(7 / 12 * 100%)
}

.col-8 {
    width: calc(8 / 12 * 100%)
}

.col-9 {
    width: calc(9 / 12 * 100%)
}

.col-10 {
    width: calc(10 / 12 * 100%)
}

.col-11 {
    width: calc(11 / 12 * 100%)
}

.col-12 {
    width: calc(12 / 12 * 100%)
}

.push-0 {
    margin-left: calc(0 / 12 * 100%)
}

.push-1 {
    margin-left: calc(1 / 12 * 100%)
}

.push-2 {
    margin-left: calc(2 / 12 * 100%)
}

.push-3 {
    margin-left: calc(3 / 12 * 100%)
}

.push-4 {
    margin-left: calc(4 / 12 * 100%)
}

.push-5 {
    margin-left: calc(5 / 12 * 100%)
}

.push-6 {
    margin-left: calc(6 / 12 * 100%)
}

.push-7 {
    margin-left: calc(7 / 12 * 100%)
}

.push-8 {
    margin-left: calc(8 / 12 * 100%)
}

.push-9 {
    margin-left: calc(9 / 12 * 100%)
}

.push-10 {
    margin-left: calc(10 / 12 * 100%)
}

.push-11 {
    margin-left: calc(11 / 12 * 100%)
}

.push-12 {
    margin-left: calc(12 / 12 * 100%)
}

.pull-0 {
    margin-right: calc(0 / 12 * 100%)
}

.pull-1 {
    margin-right: calc(1 / 12 * 100%)
}

.pull-2 {
    margin-right: calc(2 / 12 * 100%)
}

.pull-3 {
    margin-right: calc(3 / 12 * 100%)
}

.pull-4 {
    margin-right: calc(4 / 12 * 100%)
}

.pull-5 {
    margin-right: calc(5 / 12 * 100%)
}

.pull-6 {
    margin-right: calc(6 / 12 * 100%)
}

.pull-7 {
    margin-right: calc(7 / 12 * 100%)
}

.pull-8 {
    margin-right: calc(8 / 12 * 100%)
}

.pull-9 {
    margin-right: calc(9 / 12 * 100%)
}

.pull-10 {
    margin-right: calc(10 / 12 * 100%)
}

.pull-11 {
    margin-right: calc(11 / 12 * 100%)
}

.pull-12 {
    margin-right: calc(12 / 12 * 100%)
}

@media (max-width: 1400px) {
    .col-w-0 {
        width: calc(0 / 12 * 100%)
    }

    .col-w-1 {
        width: calc(1 / 12 * 100%)
    }

    .col-w-2 {
        width: calc(2 / 12 * 100%)
    }

    .col-w-3 {
        width: calc(3 / 12 * 100%)
    }

    .col-w-4 {
        width: calc(4 / 12 * 100%)
    }

    .col-w-5 {
        width: calc(5 / 12 * 100%)
    }

    .col-w-6 {
        width: calc(6 / 12 * 100%)
    }

    .col-w-7 {
        width: calc(7 / 12 * 100%)
    }

    .col-w-8 {
        width: calc(8 / 12 * 100%)
    }

    .col-w-9 {
        width: calc(9 / 12 * 100%)
    }

    .col-w-10 {
        width: calc(10 / 12 * 100%)
    }

    .col-w-11 {
        width: calc(11 / 12 * 100%)
    }

    .col-w-12 {
        width: calc(12 / 12 * 100%)
    }

    .push-w-0 {
        margin-left: calc(0 / 12 * 100%)
    }

    .push-w-1 {
        margin-left: calc(1 / 12 * 100%)
    }

    .push-w-2 {
        margin-left: calc(2 / 12 * 100%)
    }

    .push-w-3 {
        margin-left: calc(3 / 12 * 100%)
    }

    .push-w-4 {
        margin-left: calc(4 / 12 * 100%)
    }

    .push-w-5 {
        margin-left: calc(5 / 12 * 100%)
    }

    .push-w-6 {
        margin-left: calc(6 / 12 * 100%)
    }

    .push-w-7 {
        margin-left: calc(7 / 12 * 100%)
    }

    .push-w-8 {
        margin-left: calc(8 / 12 * 100%)
    }

    .push-w-9 {
        margin-left: calc(9 / 12 * 100%)
    }

    .push-w-10 {
        margin-left: calc(10 / 12 * 100%)
    }

    .push-w-11 {
        margin-left: calc(11 / 12 * 100%)
    }

    .push-w-12 {
        margin-left: calc(12 / 12 * 100%)
    }

    .pull-w-0 {
        margin-right: calc(0 / 12 * 100%)
    }

    .pull-w-1 {
        margin-right: calc(1 / 12 * 100%)
    }

    .pull-w-2 {
        margin-right: calc(2 / 12 * 100%)
    }

    .pull-w-3 {
        margin-right: calc(3 / 12 * 100%)
    }

    .pull-w-4 {
        margin-right: calc(4 / 12 * 100%)
    }

    .pull-w-5 {
        margin-right: calc(5 / 12 * 100%)
    }

    .pull-w-6 {
        margin-right: calc(6 / 12 * 100%)
    }

    .pull-w-7 {
        margin-right: calc(7 / 12 * 100%)
    }

    .pull-w-8 {
        margin-right: calc(8 / 12 * 100%)
    }

    .pull-w-9 {
        margin-right: calc(9 / 12 * 100%)
    }

    .pull-w-10 {
        margin-right: calc(10 / 12 * 100%)
    }

    .pull-w-11 {
        margin-right: calc(11 / 12 * 100%)
    }

    .pull-w-12 {
        margin-right: calc(12 / 12 * 100%)
    }
}

@media (max-width: 1024px) {
    .col-d-0 {
        width: calc(0 / 12 * 100%)
    }

    .col-d-1 {
        width: calc(1 / 12 * 100%)
    }

    .col-d-2 {
        width: calc(2 / 12 * 100%)
    }

    .col-d-3 {
        width: calc(3 / 12 * 100%)
    }

    .col-d-4 {
        width: calc(4 / 12 * 100%)
    }

    .col-d-5 {
        width: calc(5 / 12 * 100%)
    }

    .col-d-6 {
        width: calc(6 / 12 * 100%)
    }

    .col-d-7 {
        width: calc(7 / 12 * 100%)
    }

    .col-d-8 {
        width: calc(8 / 12 * 100%)
    }

    .col-d-9 {
        width: calc(9 / 12 * 100%)
    }

    .col-d-10 {
        width: calc(10 / 12 * 100%)
    }

    .col-d-11 {
        width: calc(11 / 12 * 100%)
    }

    .col-d-12 {
        width: calc(12 / 12 * 100%)
    }

    .push-d-0 {
        margin-left: calc(0 / 12 * 100%)
    }

    .push-d-1 {
        margin-left: calc(1 / 12 * 100%)
    }

    .push-d-2 {
        margin-left: calc(2 / 12 * 100%)
    }

    .push-d-3 {
        margin-left: calc(3 / 12 * 100%)
    }

    .push-d-4 {
        margin-left: calc(4 / 12 * 100%)
    }

    .push-d-5 {
        margin-left: calc(5 / 12 * 100%)
    }

    .push-d-6 {
        margin-left: calc(6 / 12 * 100%)
    }

    .push-d-7 {
        margin-left: calc(7 / 12 * 100%)
    }

    .push-d-8 {
        margin-left: calc(8 / 12 * 100%)
    }

    .push-d-9 {
        margin-left: calc(9 / 12 * 100%)
    }

    .push-d-10 {
        margin-left: calc(10 / 12 * 100%)
    }

    .push-d-11 {
        margin-left: calc(11 / 12 * 100%)
    }

    .push-d-12 {
        margin-left: calc(12 / 12 * 100%)
    }

    .pull-d-0 {
        margin-right: calc(0 / 12 * 100%)
    }

    .pull-d-1 {
        margin-right: calc(1 / 12 * 100%)
    }

    .pull-d-2 {
        margin-right: calc(2 / 12 * 100%)
    }

    .pull-d-3 {
        margin-right: calc(3 / 12 * 100%)
    }

    .pull-d-4 {
        margin-right: calc(4 / 12 * 100%)
    }

    .pull-d-5 {
        margin-right: calc(5 / 12 * 100%)
    }

    .pull-d-6 {
        margin-right: calc(6 / 12 * 100%)
    }

    .pull-d-7 {
        margin-right: calc(7 / 12 * 100%)
    }

    .pull-d-8 {
        margin-right: calc(8 / 12 * 100%)
    }

    .pull-d-9 {
        margin-right: calc(9 / 12 * 100%)
    }

    .pull-d-10 {
        margin-right: calc(10 / 12 * 100%)
    }

    .pull-d-11 {
        margin-right: calc(11 / 12 * 100%)
    }

    .pull-d-12 {
        margin-right: calc(12 / 12 * 100%)
    }
}

.animate {
    -webkit-animation: .5s cubic-bezier(.3, .45, .45, .95) animateElement;
    animation: .5s cubic-bezier(.3, .45, .45, .95) animateElement;
    will-change: transform
}

@-webkit-keyframes animateElement {
    0% {
        -webkit-transform: translate(0, 50px);
        transform: translate(0, 50px)
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@keyframes animateElement {
    0% {
        -webkit-transform: translate(0, 50px);
        transform: translate(0, 50px)
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

*, ::after, ::before {
    box-sizing: border-box
}

body {
    font-family: Poppins, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body.search-is-visible {
    overflow: hidden;
    -webkit-overflow-scrolling: auto
}

body.disable-animation *, body.disable-animation ::after, body.disable-animation ::before {
    transition: none !important
}

@media (max-width: 768px) {
    .col-t-0 {
        width: calc(0 / 12 * 100%)
    }

    .col-t-1 {
        width: calc(1 / 12 * 100%)
    }

    .col-t-2 {
        width: calc(2 / 12 * 100%)
    }

    .col-t-3 {
        width: calc(3 / 12 * 100%)
    }

    .col-t-4 {
        width: calc(4 / 12 * 100%)
    }

    .col-t-5 {
        width: calc(5 / 12 * 100%)
    }

    .col-t-6 {
        width: calc(6 / 12 * 100%)
    }

    .col-t-7 {
        width: calc(7 / 12 * 100%)
    }

    .col-t-8 {
        width: calc(8 / 12 * 100%)
    }

    .col-t-9 {
        width: calc(9 / 12 * 100%)
    }

    .col-t-10 {
        width: calc(10 / 12 * 100%)
    }

    .col-t-11 {
        width: calc(11 / 12 * 100%)
    }

    .col-t-12 {
        width: calc(12 / 12 * 100%)
    }

    .push-t-0 {
        margin-left: calc(0 / 12 * 100%)
    }

    .push-t-1 {
        margin-left: calc(1 / 12 * 100%)
    }

    .push-t-2 {
        margin-left: calc(2 / 12 * 100%)
    }

    .push-t-3 {
        margin-left: calc(3 / 12 * 100%)
    }

    .push-t-4 {
        margin-left: calc(4 / 12 * 100%)
    }

    .push-t-5 {
        margin-left: calc(5 / 12 * 100%)
    }

    .push-t-6 {
        margin-left: calc(6 / 12 * 100%)
    }

    .push-t-7 {
        margin-left: calc(7 / 12 * 100%)
    }

    .push-t-8 {
        margin-left: calc(8 / 12 * 100%)
    }

    .push-t-9 {
        margin-left: calc(9 / 12 * 100%)
    }

    .push-t-10 {
        margin-left: calc(10 / 12 * 100%)
    }

    .push-t-11 {
        margin-left: calc(11 / 12 * 100%)
    }

    .push-t-12 {
        margin-left: calc(12 / 12 * 100%)
    }

    .pull-t-0 {
        margin-right: calc(0 / 12 * 100%)
    }

    .pull-t-1 {
        margin-right: calc(1 / 12 * 100%)
    }

    .pull-t-2 {
        margin-right: calc(2 / 12 * 100%)
    }

    .pull-t-3 {
        margin-right: calc(3 / 12 * 100%)
    }

    .pull-t-4 {
        margin-right: calc(4 / 12 * 100%)
    }

    .pull-t-5 {
        margin-right: calc(5 / 12 * 100%)
    }

    .pull-t-6 {
        margin-right: calc(6 / 12 * 100%)
    }

    .pull-t-7 {
        margin-right: calc(7 / 12 * 100%)
    }

    .pull-t-8 {
        margin-right: calc(8 / 12 * 100%)
    }

    .pull-t-9 {
        margin-right: calc(9 / 12 * 100%)
    }

    .pull-t-10 {
        margin-right: calc(10 / 12 * 100%)
    }

    .pull-t-11 {
        margin-right: calc(11 / 12 * 100%)
    }

    .pull-t-12 {
        margin-right: calc(12 / 12 * 100%)
    }

    body {
        font-size: 16px
    }
}

.global-wrap.is-active {
    overflow-x: hidden;
    overflow-y: scroll
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Serif", "Times New Roman", Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: normal;
    color: var(--heading-font-color)
}

h1 {
    font-size: 36px
}

h2 {
    font-size: 28px
}

h3 {
    font-size: 24px
}

h4 {
    font-size: 20px
}

h5 {
    font-size: 18px
}

h6 {
    font-size: 16px
}

blockquote {
    position: relative;
    margin: 48px 0;
    padding-left: 32px;
    font-family: "Noto Serif", "Times New Roman", Georgia, serif;
    font-size: 30px;
    line-height: 1.6;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    color: var(--heading-font-color)
}

blockquote p {
    margin-bottom: 0
}

blockquote cite {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    color: var(--heading-font-color)
}

@media (max-width: 1400px) {
    blockquote {
        margin: 40px 0;
        font-size: 28px
    }

    .footer__inner .row .col:first-child {
        width: 100%;
        margin-bottom: 64px
    }
}

@media (max-width: 768px) {
    blockquote {
        font-size: 22px
    }
}

@media (max-width: 576px) {
    .col-m-0 {
        width: calc(0 / 12 * 100%)
    }

    .col-m-1 {
        width: calc(1 / 12 * 100%)
    }

    .col-m-2 {
        width: calc(2 / 12 * 100%)
    }

    .col-m-3 {
        width: calc(3 / 12 * 100%)
    }

    .col-m-4 {
        width: calc(4 / 12 * 100%)
    }

    .col-m-5 {
        width: calc(5 / 12 * 100%)
    }

    .col-m-6 {
        width: calc(6 / 12 * 100%)
    }

    .col-m-7 {
        width: calc(7 / 12 * 100%)
    }

    .col-m-8 {
        width: calc(8 / 12 * 100%)
    }

    .col-m-9 {
        width: calc(9 / 12 * 100%)
    }

    .col-m-10 {
        width: calc(10 / 12 * 100%)
    }

    .col-m-11 {
        width: calc(11 / 12 * 100%)
    }

    .col-m-12 {
        width: calc(12 / 12 * 100%)
    }

    .push-m-0 {
        margin-left: calc(0 / 12 * 100%)
    }

    .push-m-1 {
        margin-left: calc(1 / 12 * 100%)
    }

    .push-m-2 {
        margin-left: calc(2 / 12 * 100%)
    }

    .push-m-3 {
        margin-left: calc(3 / 12 * 100%)
    }

    .push-m-4 {
        margin-left: calc(4 / 12 * 100%)
    }

    .push-m-5 {
        margin-left: calc(5 / 12 * 100%)
    }

    .push-m-6 {
        margin-left: calc(6 / 12 * 100%)
    }

    .push-m-7 {
        margin-left: calc(7 / 12 * 100%)
    }

    .push-m-8 {
        margin-left: calc(8 / 12 * 100%)
    }

    .push-m-9 {
        margin-left: calc(9 / 12 * 100%)
    }

    .push-m-10 {
        margin-left: calc(10 / 12 * 100%)
    }

    .push-m-11 {
        margin-left: calc(11 / 12 * 100%)
    }

    .push-m-12 {
        margin-left: calc(12 / 12 * 100%)
    }

    .pull-m-0 {
        margin-right: calc(0 / 12 * 100%)
    }

    .pull-m-1 {
        margin-right: calc(1 / 12 * 100%)
    }

    .pull-m-2 {
        margin-right: calc(2 / 12 * 100%)
    }

    .pull-m-3 {
        margin-right: calc(3 / 12 * 100%)
    }

    .pull-m-4 {
        margin-right: calc(4 / 12 * 100%)
    }

    .pull-m-5 {
        margin-right: calc(5 / 12 * 100%)
    }

    .pull-m-6 {
        margin-right: calc(6 / 12 * 100%)
    }

    .pull-m-7 {
        margin-right: calc(7 / 12 * 100%)
    }

    .pull-m-8 {
        margin-right: calc(8 / 12 * 100%)
    }

    .pull-m-9 {
        margin-right: calc(9 / 12 * 100%)
    }

    .pull-m-10 {
        margin-right: calc(10 / 12 * 100%)
    }

    .pull-m-11 {
        margin-right: calc(11 / 12 * 100%)
    }

    .pull-m-12 {
        margin-right: calc(12 / 12 * 100%)
    }

    blockquote {
        margin: 32px 0;
        padding-left: 20px;
        font-size: 20px
    }
}

pre {
    overflow: auto;
    padding: 15px;
    margin-bottom: 0;
    font-size: 14px;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-all;
    color: var(--heading-font-color)
}

.lightense-wrap, img {
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

.gallery + em, .lightense-wrap + em, img + em {
    display: block;
    margin-top: 16px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400
}

.gallery + em a, .lightense-wrap + em a, img + em a {
    font-weight: 500;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px
}

.gallery + em a:hover, .lightense-wrap + em a:hover, img + em a:hover {
    -webkit-text-decoration-color: var(--link-color);
    text-decoration-color: var(--link-color)
}

hr {
    box-sizing: content-box;
    overflow: visible;
    width: 100%;
    height: 1px;
    margin: 64px 0;
    border: 0;
    background-color: var(--border-color)
}

.table-container {
    display: block;
    max-width: 100%;
    overflow-x: auto
}

table {
    border-spacing: 0;
    font-size: 12px;
    color: var(--dark);
    width: 100%;
    border-width: 1px;
    border-color: var(--background-alt-color);
    border-collapse: collapse;
    color: var(--heading-font-color)
}

table th {
    padding: 10px;
    font-size: 16px;
    text-align: left;
    border: 1px solid var(--th-color);
    color: var(--heading-font-color);
    font-weight: 700
}

table tr {
    background-color: var(--tr-color);
    transition: .3s
}

table tr:nth-child(2n) {
    background-color: transparent
}

table td {
    padding: 10px;
    font-size: 14px;
    border: 1px solid var(--background-alt-color)
}

.lazy {
    /*opacity: 0;*/
    /*transition: opacity .3s*/
}

.lazy.loaded {
    opacity: 1
}

.lightense-backdrop {
    background-color: var(--background-color) !important
}

.header .header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px
}

.logo__link {
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px
}

.logo__image, .logo__image__dark {
    max-height: 50px
}

.dark-mode .logo__image, .logo__image__dark {
    display: none
}

.dark-mode .logo__image__dark {
    display: block
}

.main-nav {
    display: flex;
    flex: 1 0;
    align-items: center
}

@media (max-width: 1024px) {
    .main-nav {
        position: absolute;
        top: 68px;
        right: 16px;
        z-index: -1;
        display: block;
        min-width: 160px;
        padding: 20px 24px;
        border-radius: 16px;
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        opacity: 0;
        visibility: hidden;
        background-color: var(--background-color);
        box-shadow: 0 8px 40px -8px rgba(0, 0, 0, .22);
        transition: .2s
    }

    .main-nav.is-visible {
        z-index: 100;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    .main-nav .nav__list {
        flex-direction: column;
        width: 100%
    }

    .main-nav .nav__list .nav__item {
        display: block;
        width: 100%;
        margin: 0
    }

    .main-nav .nav__list .nav__item.dropdown .dropdown-toggle {
        display: none
    }

    .main-nav .nav__list .nav__item .dropdown-menu {
        position: relative;
        left: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        transform: scale(1);
        min-width: auto;
        border: none;
        box-shadow: none;
        background-color: inherit
    }

    .main-nav .nav__list .nav__item .dropdown-menu .nav__link {
        display: block;
        padding: 7px 0;
        font-size: 16px
    }

    .main-nav .nav__list .nav__item .nav__link {
        display: block;
        padding: 7px 0;
        font-size: 16px;
        text-align: right;
        transition: color .2s
    }
}

.main-nav__box {
    display: flex;
    align-items: center;
    margin-left: 32px
}

@media (max-width: 1024px) {
    .main-nav__box {
        display: block
    }

    .dark-mode .main-nav {
        background-color: var(--background-alt-color)
    }
}

.nav__list {
    display: flex;
    align-items: center
}

.nav__list .nav__item {
    display: inline-block;
    margin-right: 24px;
    margin-bottom: 0
}

.nav__list .nav__item:last-child {
    margin-right: 0
}

.nav__list .nav__item .nav__link {
    position: relative;
    padding: 12px 0;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    will-change: transform
}

.nav__list .nav__item .nav__link.active-link, .nav__list .nav__item .nav__link:hover {
    -webkit-text-decoration-color: var(--link-color);
    text-decoration-color: var(--link-color)
}

.nav__list .nav__item.dropdown {
    position: relative
}

.nav__list .nav__item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.nav__list .nav__item.dropdown .arrow-down {
    vertical-align: middle
}

.nav__list .nav__item.dropdown .dropdown-toggle {
    text-decoration: none;
    color: var(--link-color);
    cursor: pointer
}

.nav__list .nav__item .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -32px;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 100;
    min-width: 150px;
    display: block;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    border-radius: 16px;
    box-shadow: 0 8px 40px -8px rgba(0, 0, 0, .22);
    background-color: var(--background-color)
}

.nav__list .nav__item .dropdown-menu .nav__link {
    position: relative;
    display: block;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 1;
    will-change: transform
}

.nav__list .nav__item .dropdown-menu .nav__link:last-child {
    margin-bottom: 0
}

.home-page .nav__item .nav__link.active-link {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent
}

.home-page .nav__item .nav__link.active-link:hover {
    -webkit-text-decoration-color: var(--link-color);
    text-decoration-color: var(--link-color)
}

.dark-mode .main-nav .dropdown-menu {
    background-color: var(--background-alt-color)
}

.hamburger {
    width: 28px;
    height: 28px;
    display: none;
    cursor: pointer
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
        align-items: center
    }
}

.hamburger div, .hamburger div:after, .hamburger div:before {
    width: 28px;
    height: 4px;
    border-radius: 10px;
    transition: .15s linear;
    background-color: var(--heading-font-color)
}

.hamburger div:after, .hamburger div:before {
    content: "";
    position: absolute
}

.hamburger div:before {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%)
}

.hamburger div:after {
    -webkit-transform: translateY(200%);
    transform: translateY(200%)
}

.hamburger.is-open div {
    background: 0 0
}

.hamburger.is-open div:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.hamburger.is-open div:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.nav-button {
    display: flex;
    align-items: center;
    margin-left: auto
}

.nav-button .search-button {
    display: flex;
    align-items: center;
    color: var(--link-color);
    cursor: pointer
}

.nav-button .search-button:hover .search-button__text {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px
}

.nav-button .search-button .search-button__icon {
    font-size: 20px
}

.nav-button .search-button .search-button__text {
    margin-left: 8px;
    font-size: 16px;
    line-height: 1;
    font-weight: 500
}

.nav-button .cta-button {
    margin-left: 24px
}

.search, .search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0
}

.search-modal.is-visible, .search.is-visible {
    z-index: 100;
    opacity: 1
}

.search-modal.is-visible .search__overlay, .search.is-visible .search__overlay {
    z-index: 10;
    opacity: 1;
    transition: .2s
}

.search-modal.is-visible .search__box, .search.is-visible .search__box {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px)
}

.search__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    background: linear-gradient(320deg, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .1) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px)
}

.search__box {
    position: relative;
    z-index: 100;
    max-width: 540px;
    margin: 100px auto 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    background-color: var(--background-color);
    overflow: hidden;
    will-change: transform;
    transition: .2s
}

@media (max-width: 1024px) {
    .nav-button {
        flex-direction: column;
        align-items: end
    }

    .nav-button .search-button {
        padding-top: 7px
    }

    .nav-button .search-button .search-button__text {
        margin-left: 4px;
        font-size: 16px
    }

    .nav-button .cta-button {
        padding: 6px 12px;
        margin-top: 14px;
        margin-left: 0;
        font-size: 15px
    }

    .search__box {
        margin: 80px auto 0
    }
}

.search__group {
    position: relative
}

.search__group .search-input-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    color: var(--heading-font-color)
}

.search__group .icon__search__close {
    position: absolute;
    right: 24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    font-size: 21px;
    line-height: 1;
    color: var(--heading-font-color);
    cursor: pointer
}

.search__group .search__text {
    width: 100%;
    padding: 24px 44px 24px 50px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    color: var(--heading-font-color);
    background-color: var(--background-color);
    outline: 0;
    transition: .2s
}

.search__group .search__text::-webkit-input-placeholder {
    font-weight: 500;
    color: var(--heading-font-color)
}

.search__group .search__text::-ms-input-placeholder {
    font-weight: 500;
    color: var(--heading-font-color)
}

.search__group .search__text::placeholder {
    font-weight: 500;
    color: var(--heading-font-color)
}

.search__group .search__text::-ms-clear {
    display: none
}

@media (max-width: 576px) {
    .gallery + em, .lightense-wrap + em, img + em {
        margin-top: 12px
    }

    hr {
        margin: 48px 0
    }

    .search__group .icon__search__close {
        display: block
    }
}

.search-results-list {
    max-height: 68vh;
    min-height: 77px;
    white-space: normal;
    overflow: auto
}

.search-results-list .search-results__item {
    display: flex;
    align-items: center;
    margin-left: 24px;
    margin-right: 24px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color)
}

.search-results-list .search-results__item:first-child {
    padding-top: 24px
}

.search-results-list .search-results__item:last-child {
    padding-bottom: 12px;
    border-bottom: 0
}

.search-results-list .search-results__image {
    position: relative;
    display: inline-block;
    margin-right: 16px;
    min-width: 100px;
    height: 90px;
    border-radius: 22px;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    will-change: transform;
    background-size: cover;
    background-color: var(--background-alt-color);
    background-position: center;
    background-repeat: no-repeat
}

.search-results-list .search-results__image:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px)
}

.search-results-list .search-results__link {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--heading-font-color)
}

.search-results-list .search-results__link:hover .search-results-title {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

.search-results-list .search-results-title {
    font-family: "Noto Serif", "Times New Roman", Georgia, serif;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px
}

.search-results-list .search-results-date {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-alt-color)
}

.search-results-list .no-results {
    width: 100%;
    margin: 0;
    padding: 24px;
    font-size: 18px;
    font-weight: 500;
    color: var(--heading-font-color)
}

.dark-mode .search__box, .dark-mode .search__text {
    background-color: var(--background-alt-color)
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px
}

.footer__inner {
    padding: 64px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color)
}

.footer__inner .row .col {
    flex-grow: 1
}

@media (max-width: 1024px) {
    .footer__inner .row .col, .footer__inner .row .col:first-child {
        margin-bottom: 48px
    }

    .footer__inner .row .col:last-child {
        margin-bottom: 0
    }
}

@media (max-width: 576px) {
    .search-results-list .search-results__link {
        font-size: 15px
    }

    .footer__inner {
        padding: 48px 0
    }
}

.footer__disclaimer {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-alt-color)
}

.widget-title {
    margin-bottom: 24px;
    font-size: 32px
}

@media (max-width: 1400px) {
    .widget-title {
        font-size: 28px
    }
}

.widget-footer__desc {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-alt-color)
}

.widget-info {
    width: 360px
}

.widget-info .logo-footer__link {
    display: inline-flex;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -1px
}

.widget-info .logo-footer__image, .widget-info .logo-footer__image__dark {
    max-height: 50px
}

.widget-info .logo-footer__image__dark {
    display: none
}

@media (max-width: 1400px) {
    .widget-info {
        width: 100%
    }
}

.dark-mode .logo-footer__image {
    display: none
}

.dark-mode .logo-footer__image__dark {
    display: block
}

.social .social__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.social .social__list .social__item:first-child > .social__link {
    padding-left: 0
}

.social .social__item {
    margin-bottom: 0;
    margin-right: 16px
}

.social .social__item:last-child {
    margin-right: 0
}

.social .social__link {
    display: flex;
    align-items: center;
    padding: 4px;
    font-size: 22px;
    color: var(--heading-font-color);
    will-change: transform;
    transition: .2s
}

.social .social__link:hover {
    -webkit-transform: scale(1.15);
    transform: scale(1.15)
}

.widget-recent-posts__title {
    font-size: 28px
}

.recent-posts {
    position: relative;
    display: flex;
    margin-bottom: 20px
}

.recent-posts:last-child {
    margin-bottom: 0
}

.recent-posts__image {
    position: relative;
    display: block;
    -webkit-transform: translate(0);
    transform: translate(0);
    min-width: 180px;
    aspect-ratio: 4/3;
    margin-right: 20px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--background-alt-color)
}

.recent-posts__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@supports not (aspect-ratio:4/3) {
    .recent-posts__image {
        height: 0;
        padding-bottom: 75%
    }
}

.recent-posts__image .video-icon {
    width: 48px;
    height: 48px
}

.recent-posts__image .video-icon svg {
    width: 36px
}

.recent-posts__content .article__tags .article__tag {
    padding: 3px 12px
}

.recent-posts__content .recent-posts__title {
    font-size: 16px;
    line-height: 1.4;
    margin: 8px 0
}

.recent-posts__content .recent-posts__title a {
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    color: var(--heading-font-color)
}

.recent-posts__content .recent-posts__title a:hover {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

@media (max-width: 576px) {
    .recent-posts {
        flex-direction: column;
        margin-bottom: 32px
    }

    .recent-posts__image {
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        border-radius: 16px
    }

    .recent-posts__image .video-icon {
        width: 68px;
        height: 68px
    }

    .recent-posts__image .video-icon svg {
        width: 44px
    }

    .recent-posts__content .article__tags .article__tag {
        padding: 6px 16px
    }

    .recent-posts__content .recent-posts__title {
        font-size: 23px
    }

    .recent-posts__content .recent-posts__title a {
        text-decoration-thickness: 1.5px;
        text-underline-offset: 3px
    }
}

.widget-subscribe {
    width: 380px;
    margin-left: auto
}

.widget-subscribe .subscribe-form {
    display: flex
}

.widget-subscribe .subscribe-email {
    width: 100%;
    height: 54px;
    flex: 1 0 220px;
    margin-right: 8px;
    padding: 20px;
    font-size: 14px;
    line-height: 1.3;
    border: 1px solid var(--border-color);
    border-radius: 60px;
    outline: 0;
    color: var(--heading-font-color);
    background-color: var(--background-alt-color)
}

.widget-subscribe .subscribe-email::-webkit-input-placeholder {
    color: var(--heading-font-color)
}

.widget-subscribe .subscribe-email::-ms-input-placeholder {
    color: var(--heading-font-color)
}

.widget-subscribe .subscribe-email::placeholder {
    color: var(--heading-font-color)
}

@media (max-width: 1400px) {
    .widget-subscribe {
        width: 100%
    }
}

@media (max-width: 576px) {
    .widget-subscribe .subscribe-form {
        flex-direction: column
    }

    .widget-subscribe .subscribe-email {
        flex: 1 0 auto;
        margin-right: 0;
        margin-bottom: 12px
    }
}

.footer__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 32px 0
}

@media (max-width: 768px) {
    .footer__info {
        flex-direction: column;
        align-items: flex-start
    }
}

.footer__info__right {
    display: flex;
    align-items: center
}

.copyright {
    margin-right: auto;
    font-size: 14px;
    color: var(--heading-font-color)
}

.copyright a {
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    color: var(--heading-font-color)
}

.copyright a:hover {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

.footer__version {
    padding: 5px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 8px;
    text-align: end
}

.toggle-theme {
    margin-right: 24px;
    line-height: 1;
    color: var(--heading-font-color);
    cursor: pointer
}

.toggle-theme:hover .toggle-text {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

.toggle-theme .toggle-text {
    margin-left: 8px;
    font-size: 15px;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px
}

@media (max-width: 768px) {
    .toggle-theme {
        margin-right: 16px
    }

    .toggle-theme .toggle-text {
        font-size: 14px
    }
}

.toggle-moon, .toggle-sun {
    display: flex;
    align-items: center;
    font-size: 16px
}

.toggle-sun {
    display: none
}

.dark-mode .toggle-sun {
    display: flex
}

.dark-mode .toggle-moon {
    display: none
}

.gallery-box {
    margin: 32px 0
}

.gallery {
    display: grid;
    grid-template-columns:repeat(3, auto);
    justify-content: center;
    align-content: center;
    grid-gap: 16px
}

.gallery .gallery__image {
    background: var(--background-color)
}

.gallery .gallery__image img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.hero {
    margin: 48px 0
}

.hero .hero__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.hero .hero__title {
    margin-bottom: 20px;
    font-size: 60px;
    line-height: 1.15;
    color: var(--heading-font-color)
}

.hero .hero__description {
    margin: 0 auto;
    max-width: 560px;
    font-size: 20px;
    color: var(--text-alt-color)
}

.hero.hero--left .hero__title {
    margin-bottom: 0;
    font-size: 48px
}

@media (max-width: 1024px) {
    .hero .hero__title {
        font-size: 48px
    }
}

@media (max-width: 768px) {
    .hero {
        margin: 16px 0 32px
    }

    .hero .hero__title {
        font-size: 35px
    }

    .hero .hero__description {
        font-size: inherit
    }

    .hero.hero--left .hero__title {
        font-size: 35px
    }
}

@media (max-width: 576px) {
    .hero .hero__inner {
        text-align: left
    }

    .hero .hero__title {
        margin-bottom: 16px;
        font-size: 32px
    }

    .hero .hero__description {
        font-size: 16px
    }

    .hero.hero--left .hero__title {
        font-size: 32px
    }
}

.article {
    position: relative;
    margin-bottom: 32px
}

.article.article--big .article__title {
    margin-bottom: 16px;
    font-size: 35px;
    line-height: 1.3
}

.article.article--big .article__title a {
    text-decoration-thickness: 2px
}

.row .col:last-child > .article {
    flex-grow: 1
}

.article__head {
    position: relative;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.article__head:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px)
}

.article__head:hover .video-icon {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1)
}

.article__image {
    position: relative;
    -webkit-transform: translate(0);
    transform: translate(0);
    display: block;
    margin-bottom: 20px;
    aspect-ratio: 4/3;
    border-radius: 22px;
    outline: 0;
    overflow: hidden;
    background: var(--background-alt-color)
}

.article__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@supports not (aspect-ratio:4/3) {
    .article__image {
        padding-bottom: 75%
    }
}

@media (max-width: 576px) {
    .article__image {
        border-radius: 16px
    }
}

.video-icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    overflow: hidden;
    pointer-events: none;
    transition: .2s;
    will-change: transform
}

.video-icon svg {
    width: 44px;
    fill: var(--dark);
    stroke: var(--dark);
    stroke-linejoin: round;
    stroke-width: 8
}

.article__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -3px;
    margin-bottom: -3px
}

.article__tags {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap
}

.article__tags .article__tag {
    padding: 6px 16px;
    margin: 3px 6px 3px 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 60px;
    color: var(--heading-font-color);
    transition: .2s;
    background-color: var(--background-alt-color)
}

.article__tags .article__tag:hover {
    background-color: var(--background-alt-color-2)
}

.article__tags .article__tag:last-child {
    margin-right: 0
}

.article__date {
    display: flex;
    align-items: center;
    margin-left: 6px
}

.article__date time {
    margin-left: 6px;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-alt-color)
}

.article__estimated {
    display: flex;
    align-items: center;
    margin-left: 6px
}

.article__estimated span {
    margin-left: 6px;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-alt-color)
}

.article__title {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.4
}

.article__title a {
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    color: var(--heading-font-color)
}

.article__title a:hover {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

.article__excerpt {
    display: -webkit-box;
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--text-alt-color);
    overflow-y: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

.article__info {
    font-size: 12px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-alt-color)
}

.article__author__name {
    display: inline-block;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    color: var(--heading-font-color)
}

.article__author__name:hover {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

.form-box {
    margin-bottom: 64px
}

@media (max-width: 576px) {
    .form-box {
        margin-bottom: 48px
    }
}

.contact-head {
    margin-bottom: 32px
}

.contact-description {
    font-size: 18px
}

@media (max-width: 576px) {
    .contact-description {
        font-size: inherit
    }
}

.form__group {
    margin-bottom: 20px
}

.form__group:last-child {
    margin-bottom: 0
}

.form__input {
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-bottom: 1.5px solid var(--border-color);
    outline: 0;
    transition: .2s;
    resize: vertical;
    color: var(--heading-font-color);
    background: var(--background-color)
}

.form__input::-webkit-input-placeholder {
    color: var(--heading-font-color)
}

.form__input::-ms-input-placeholder {
    color: var(--heading-font-color)
}

.form__input::placeholder {
    color: var(--heading-font-color)
}

.form__input:focus {
    border-color: var(--primary-color)
}

.section {
    margin-bottom: 64px
}

@media (max-width: 576px) {
    .section {
        margin-bottom: 48px
    }
}

.section__inner {
    border-bottom: 1px solid var(--border-color)
}

.section__info {
    position: relative;
    margin-bottom: 32px
}

@media (max-width: 576px) {
    .section__info {
        margin-bottom: 24px
    }
}

.section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.section__title {
    margin-bottom: 0;
    font-size: 32px
}

.section__link {
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px
}

.section__link:hover {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

.sidebar-left .widget-sidebar {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color)
}

.sidebar-left .widget-sidebar:last-child {
    border-bottom: none
}

.sidebar-left .widget-sidebar-title {
    margin-bottom: 24px;
    font-size: 20px
}

@media (max-width: 1024px) {
    .sidebar-left {
        order: 1
    }

    .sidebar-left .widget-post-author {
        margin-bottom: 0
    }

    .sidebar-left .widget-featured-posts, .sidebar-left .widget-tags {
        display: none
    }
}

.widget-post-author .post-author-image {
    position: relative;
    -webkit-transform: translate(0);
    transform: translate(0);
    width: 128px;
    height: 128px;
    margin-bottom: 12px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--background-alt-color);
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.widget-post-author .post-author-image:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px)
}

.widget-post-author .post-author-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.widget-post-author .post-author-name {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700
}

.widget-post-author .post-author-name a {
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px
}

.widget-post-author .post-author-name a:hover {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

.widget-post-author .post-author-description {
    font-size: 15px;
    color: var(--text-alt-color)
}

.widget-post-author .post-author-description p {
    margin-bottom: 0
}

.widget-post-author .post-author-social {
    margin-top: 12px;
    line-height: 1
}

.widget-post-author .post-author-link {
    display: inline-block;
    margin-right: 8px;
    font-size: 20px;
    will-change: transform;
    transition: .2s
}

.widget-post-author .post-author-link:hover {
    -webkit-transform: scale(1.15);
    transform: scale(1.15)
}

.widget-post-author .post-author-link:last-child {
    margin-right: 0
}

@media (max-width: 1024px) {
    .widget-post-author {
        margin-top: 64px;
        padding-top: 32px;
        border-top: 1px solid var(--border-color)
    }

    .widget-post-author .post-author-description {
        font-size: 16px
    }
}

@media (max-width: 576px) {
    .section__title {
        font-size: 28px
    }

    .widget-post-author {
        margin-top: 48px
    }
}

.post-featured-content {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.post-featured-content:last-child {
    margin-bottom: 0
}

.post-featured-content .post-featured-image {
    position: relative;
    display: block;
    -webkit-transform: translate(0);
    transform: translate(0);
    min-width: 120px;
    aspect-ratio: 4/3;
    margin-right: 12px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--background-alt-color);
    will-change: transform;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.post-featured-content .post-featured-image:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px)
}

.post-featured-content .post-featured-image:hover .video-icon {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1)
}

.post-featured-content .post-featured-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@supports not (aspect-ratio:4/3) {
    .post-featured-content .post-featured-image {
        padding-bottom: 30%
    }
}

.post-featured-content .post-featured-image .video-icon {
    width: 36px;
    height: 36px
}

.post-featured-content .post-featured-image .video-icon svg {
    width: 24px
}

.post-featured-content .post-featured-title {
    margin: 0;
    font-size: 15px
}

.post-featured-content .post-featured-title a {
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    color: var(--heading-font-color)
}

.post-featured-content .post-featured-title a:hover {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

.tag-cloud {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    margin: -3px 0
}

.tag-cloud .tag-cloud-item {
    padding: 6px 16px;
    margin: 3px 6px 3px 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 60px;
    color: var(--heading-font-color);
    transition: .2s;
    background-color: var(--background-alt-color)
}

.tag-cloud .tag-cloud-item:hover {
    background-color: var(--background-alt-color-2)
}

.top {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--heading-font-color);
    cursor: pointer
}

.top:hover .top__text {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

.top .top__text {
    margin-left: 8px;
    font-size: 15px;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    text-decoration: none;
    border-radius: 60px;
    border: none;
    outline: 0;
    color: var(--button-color);
    background: var(--button-background-color);
    transition: .2s;
    will-change: transform;
    cursor: pointer
}

.button:hover {
    color: var(--button-color);
    background: var(--button-background-hover)
}

.button--big {
    padding: 14px 24px
}

.button i {
    font-size: 14px;
    margin-left: 6px
}

.post__head {
    margin: 48px 0
}

@media (max-width: 768px) {
    .article.article--big .article__title {
        font-size: 22px;
        line-height: 1.4
    }

    .article.article--big .article__title a {
        text-decoration-thickness: 1.5px
    }

    .article.article--big .article__excerpt {
        display: none
    }

    .top .top__text {
        font-size: 14px
    }

    .post__head {
        margin: 16px 0 32px
    }
}

.post__meta {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px
}

.post__tags {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap
}

.post__tags .post__tag {
    padding: 6px 16px;
    margin: 3px 6px 3px 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 60px;
    color: var(--heading-font-color);
    transition: .2s;
    background-color: var(--background-alt-color)
}

.post__tags .post__tag:hover {
    background-color: var(--background-alt-color-2)
}

.post__tags .post__tag:last-child {
    margin-right: 0
}

.page__title, .post__title {
    margin-bottom: 24px;
    font-size: 60px
}

@media (max-width: 1024px) {
    .page__title, .post__title {
        margin-bottom: 20px;
        font-size: 48px
    }
}

@media (max-width: 768px) {
    .page__title, .post__title {
        font-size: 35px
    }
}

@media (max-width: 576px) {
    .page__title, .post__title {
        margin-bottom: 16px;
        font-size: 32px
    }
}

.page__description, .post__description {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--text-alt-color)
}

.page-image, .post-image {
    position: relative;
    -webkit-transform: translate(0);
    transform: translate(0);
    aspect-ratio: 4/3;
    margin-bottom: 5px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--background-alt-color)
}

.page-image img, .post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@supports not (aspect-ratio:4/3) {
    .page-image, .post-image {
        padding-bottom: 75%
    }
}

@media (max-width: 576px) {
    .page__description, .post__description {
        font-size: 16px
    }

    .page-image, .post-image {
        border-radius: 16px
    }
}

.post-image-caption {
    text-align: end;
    font-size: .75rem
}

.page-video, .post-video {
    margin-bottom: 32px;
    border-radius: 22px;
    overflow: hidden;
    -webkit-transform: translate(0);
    transform: translate(0);
    background-color: var(--background-alt-color)
}

.page-video .page-video__wrap, .page-video .post-video__wrap, .post-video .page-video__wrap, .post-video .post-video__wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%
}

.page-video .page-video__wrap iframe, .page-video .post-video__wrap iframe, .post-video .page-video__wrap iframe, .post-video .post-video__wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

@media (max-width: 576px) {
    .page-video, .post-video {
        border-radius: 16px
    }
}

.page, .post {
    color: var(--text-color)
}

.page a, .post a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px
}

.page .gallery + em a, .page .lightense-wrap + em a, .page img + em a, .post .gallery + em a, .post .lightense-wrap + em a, .post img + em a {
    text-decoration: none
}

.page .gallery + em a:hover, .page .lightense-wrap + em a:hover, .page img + em a:hover, .post .gallery + em a:hover, .post .lightense-wrap + em a:hover, .post img + em a:hover {
    text-decoration: underline;
    -webkit-text-decoration-color: var(--link-color);
    text-decoration-color: var(--link-color)
}

.page .js-reframe, .page img, .post .js-reframe, .post img {
    border-radius: 16px;
    overflow: hidden
}

.page .js-reframe.lightense-open, .page img.lightense-open, .post .js-reframe.lightense-open, .post img.lightense-open {
    border-radius: 0
}

.page .button, .post .button {
    border: none;
    text-decoration: none
}

.post__footer__meta {
    display: inline-flex;
    align-items: center;
    margin-bottom: 32px
}

.post__footer__tags {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap
}

.post__footer__tags .post__footer__tag {
    padding: 6px 16px;
    margin: 3px 6px 3px 0;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 60px;
    color: var(--heading-font-color);
    transition: .2s;
    background-color: var(--background-alt-color);
    text-decoration: none
}

.post__footer__tags .post__footer__tag:hover {
    background-color: var(--background-alt-color-2)
}

.post__footer__tags .post__footer__tag:last-child {
    margin-right: 0
}

.page {
    max-width: 780px;
    margin: 48px auto 64px
}

.page .page__description {
    margin-bottom: 32px
}

.page img[src$="#wide"] {
    display: block;
    width: 100vw;
    max-width: none;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media (max-width: 576px) {
    .page {
        margin: 48px auto
    }
}

.post__share {
    margin-top: 48px
}

.post__share .share__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: -3px 0
}

.post__share .share__item {
    margin: 3px;
    text-align: center
}

.post__share .share__link {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 15px 20px;
    line-height: 1;
    font-weight: 500;
    border-radius: 60px;
    text-decoration: none;
    color: var(--heading-font-color);
    background-color: var(--background-alt-color);
    transition: .2s
}

.post__share .share__link:hover {
    background-color: var(--background-alt-color-2)
}

.post__share .share__link .share-name::before {
    content: "";
    position: relative;
    top: 0;
    display: inline-block;
    margin: 0 8px;
    width: 1px;
    height: 10px;
    opacity: .2;
    background-color: var(--heading-font-color)
}

@media (max-width: 768px) {
    .post__share {
        margin-top: 0
    }

    .post__share .share__link {
        font-size: 13px
    }
}

@media (max-width: 576px) {
    .post__share .share__link {
        font-size: 16px;
        padding: 10px 25px
    }

    .post__share .share__link .share-name {
        display: none
    }
}

.post__navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 64px;
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color)
}

.post__navigation .post__next, .post__navigation .post__prev {
    display: flex;
    align-items: center;
    width: 48%;
    border: none
}

.post__navigation .next__image, .post__navigation .prev__image {
    position: relative;
    -webkit-transform: translate(0);
    transform: translate(0);
    display: block;
    min-width: 260px;
    aspect-ratio: 4/3;
    border-radius: 22px;
    overflow: hidden;
    background-color: var(--background-alt-color);
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

@supports not (aspect-ratio:4/3) {
    .post__navigation .next__image, .post__navigation .prev__image {
        padding-top: 31%
    }
}

.post__navigation .next__image:hover, .post__navigation .prev__image:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px)
}

.post__navigation .next__image:hover .video-icon, .post__navigation .prev__image:hover .video-icon {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1)
}

.post__navigation .next__image img, .post__navigation .prev__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.post__navigation .next__image .video-icon, .post__navigation .prev__image .video-icon {
    width: 60px;
    height: 60px;
    will-change: transform
}

.post__navigation .prev__box {
    margin-left: 20px
}

.post__navigation .next__box {
    margin-right: 20px
}

.post__navigation .post__nav {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: var(--text-alt-color)
}

.post__navigation .post__nav__title {
    margin-bottom: 0;
    font-size: 24px
}

.post__navigation .post__nav__title a {
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px
}

.post__navigation .post__nav__title a:hover {
    -webkit-text-decoration-color: var(--link-color-hover);
    text-decoration-color: var(--link-color-hover)
}

.post__navigation .post__next {
    text-align: right;
    margin-left: auto
}

@media (max-width: 1400px) {
    .post__navigation .next__image, .post__navigation .prev__image {
        min-width: 240px
    }

    @supports not (aspect-ratio:4/3) {
        .post__navigation .next__image, .post__navigation .prev__image {
            padding-top: 40%
        }
    }.post__navigation .post__nav__title {
         font-size: 22px
     }

    .related-posts .article__info, .related-posts .article__meta {
        display: none
    }

    .related-posts .article__title {
        font-size: 18px
    }
}

@media (max-width: 1024px) {
    .post__navigation {
        padding: 0 0 48px;
        border-top: none;
        border-bottom: 1px solid var(--border-color)
    }

    .post__navigation .post__next, .post__navigation .post__prev {
        align-items: normal;
        flex-direction: column
    }

    .post__navigation .next__image, .post__navigation .prev__image {
        margin-bottom: 12px
    }

    @supports not (aspect-ratio:4/3) {
        .post__navigation .next__image, .post__navigation .prev__image {
            padding-top: 75%
        }
    }.post__navigation .next__box, .post__navigation .prev__box {
         order: 1;
         margin: 0
     }
}

@media (max-width: 576px) {
    .post__navigation {
        flex-wrap: wrap;
        margin-top: 48px
    }

    .post__navigation .post__next, .post__navigation .post__prev {
        width: 100%
    }

    .post__navigation .next__image, .post__navigation .prev__image {
        border-radius: 16px
    }

    .post__navigation .next__image .video-icon, .post__navigation .prev__image .video-icon {
        width: 68px;
        height: 68px;
        will-change: transform
    }

    .post__navigation .post__prev {
        margin-bottom: 32px
    }

    .post__navigation .post__next {
        margin-left: 0
    }
}

.related-posts {
    margin: 64px auto 0
}

@media (max-width: 576px) {
    .related-posts {
        margin: 48px auto 0
    }
}

.show-comments {
    text-align: center
}

.disqus-button {
    margin: 64px 0
}

@media (max-width: 576px) {
    .disqus-button {
        margin: 48px 0
    }
}

.post__comments {
    max-width: 780px;
    margin: 0 auto
}

.post__comments.is-open {
    margin: 64px auto
}

@media (max-width: 576px) {
    .post__comments.is-open {
        margin: 48px auto
    }
}

.error {
    text-align: center
}

.error .error__title {
    margin-bottom: 24px;
    font-size: 140px;
    line-height: 1
}

.error .error__text {
    color: var(--text-alt-color)
}

@media (max-width: 576px) {
    .error .error__title {
        font-size: 100px
    }
}

.section-authors__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.section-authors__inner .section-authors__title {
    margin-bottom: 0;
    font-size: 48px;
    line-height: 1
}

.section-authors__inner .section-authors__box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: 48px
}

.section-authors__inner .section-authors__box .section-authors__image {
    position: relative;
    -webkit-transform: translate(0);
    transform: translate(0);
    width: 128px;
    height: 128px;
    border: 4px solid var(--border-alt-color);
    border-radius: 50%;
    overflow: hidden;
    margin-right: -48px;
    background-color: var(--background-alt-color);
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.section-authors__inner .section-authors__box .section-authors__image:first-child {
    z-index: 5
}

.section-authors__inner .section-authors__box .section-authors__image:nth-child(2) {
    z-index: 4
}

.section-authors__inner .section-authors__box .section-authors__image:nth-child(3) {
    z-index: 3
}

.section-authors__inner .section-authors__box .section-authors__image:nth-child(4) {
    z-index: 2
}

.section-authors__inner .section-authors__box .section-authors__image:nth-child(5) {
    z-index: 1
}

.section-authors__inner .section-authors__box .section-authors__image:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px)
}

.section-authors__inner .section-authors__box .section-authors__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.section-authors__inner .section-authors__link {
    display: block;
    margin-top: 12px;
    margin-right: 4px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-align: right;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px
}

.section-authors__inner .section-authors__link:hover {
    -webkit-text-decoration-color: var(--heading-font-color);
    text-decoration-color: var(--heading-font-color)
}

@media (max-width: 1024px) {
    .section-authors__inner {
        flex-direction: column;
        align-items: flex-start
    }

    .section-authors__inner .section-authors__title {
        margin-bottom: 20px;
        font-size: 35px
    }

    .section-authors__inner .section-authors__link {
        text-align: left
    }
}

@media (max-width: 768px) {
    .section-authors__inner .section-authors__box {
        margin-right: 50px
    }

    .section-authors__inner .section-authors__box .section-authors__image {
        width: 108px;
        height: 108px;
        margin-right: -50px
    }

    .section-authors__inner .section-authors__link {
        font-size: 12px
    }
}

@media (max-width: 576px) {
    .section-authors__inner {
        border-radius: 16px
    }

    .section-authors__inner .section-authors__title {
        font-size: 28px
    }

    .section-authors__inner .section-authors__box {
        margin-right: 36px
    }

    .section-authors__inner .section-authors__box .section-authors__image {
        width: 80px;
        height: 80px;
        margin-right: -36px;
        border-width: 3px
    }
}

.dark-mode .section-authors__box .section-authors__image {
    border-color: var(--border-alt-color)
}

.authors .authors__head {
    margin: 48px 0
}

.authors .authors__title {
    font-size: 48px
}

.authors .authors__info {
    padding: 32px;
    margin-bottom: 32px;
    border-radius: 22px;
    background-color: var(--background-alt-color)
}

.authors .authors__image {
    position: relative;
    -webkit-transform: translate(0);
    transform: translate(0);
    display: block;
    width: 108px;
    height: 108px;
    margin-bottom: 12px;
    border-radius: 50%;
    border: 4px solid var(--border-alt-color);
    overflow: hidden;
    background-color: var(--background-color);
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.authors .authors__image:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px)
}

.authors .authors__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.authors .authors__meta {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 8px
}

.authors .authors__name {
    display: inline-block;
    font-size: 20px;
    margin-right: 8px;
    margin-bottom: 0;
    line-height: 1.4
}

.authors .authors__name .authors__link {
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px
}

.authors .authors__name .authors__link:hover {
    -webkit-text-decoration-color: var(--link-color-hover);
    text-decoration-color: var(--link-color-hover)
}

.authors .authors__posts__count {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--heading-font-color)
}

.authors .authors__description {
    font-size: 16px;
    color: var(--text-alt-color)
}

.authors .authors__description p {
    margin-bottom: 0
}

@media (max-width: 768px) {
    .authors .authors__head {
        margin: 16px 0 32px
    }

    .authors .authors__title {
        font-size: 35px
    }
}

@media (max-width: 576px) {
    .authors .authors__title {
        font-size: 32px
    }

    .authors .authors__info {
        border-radius: 16px
    }

    .authors .authors__image {
        margin-bottom: 8px
    }
}

.author .author__content {
    margin: 48px 0 32px;
    padding-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-color)
}

.author .author__content p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-alt-color)
}

.author .author__image {
    position: relative;
    -webkit-transform: translate(0);
    transform: translate(0);
    width: 128px;
    height: 128px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--background-alt-color)
}

.author .author__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.author .author__name {
    margin-bottom: 20px;
    line-height: 1
}

.author .author__info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.author .author__info .author__social__item {
    padding: 6px 16px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 15px;
    border-radius: 60px;
    color: var(--link-color);
    background-color: var(--background-alt-color);
    transition: .2s
}

.author .author__info .author__social__item:hover {
    background-color: var(--background-alt-color-2)
}

.author .author__info .author__social__item:last-child {
    margin-right: 0
}

.author .author__info .author__social__item i {
    margin-right: 4px
}

.author .author__posts__count {
    margin-bottom: 20px;
    font-size: 18px
}

@media (max-width: 576px) {
    .author .author__content {
        margin: 16px 0 32px;
        padding-bottom: 32px
    }

    .author .author__content p {
        font-size: 16px
    }

    .author .author__name {
        font-size: 32px
    }

    .author .author__info .author__social__item {
        margin-right: 6px;
        margin-bottom: 6px;
        font-size: 14px
    }
}

.tag-image {
    margin-bottom: 32px;
    position: relative;
    -webkit-transform: translate(0);
    transform: translate(0);
    display: block;
    height: 0;
    padding-bottom: 62%;
    border: 10px solid var(--background-color);
    border-radius: 22px;
    background: var(--background-alt-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, .05);
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    overflow: hidden
}

.tag-image:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px)
}

.tag-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.tag-image .tag-name {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 1;
    max-width: 87%;
    display: inline-block;
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 30px;
    color: var(--heading-font-color);
    background: var(--background-color);
    pointer-events: none
}

.dark-mode .tag-image {
    border-color: var(--border-alt-color)
}

.tags__inner .tag__info {
    margin: 48px 0
}

.tags__inner .tag__title {
    position: relative;
    margin-bottom: 0;
    font-size: 48px;
    text-transform: capitalize
}

.tags__inner .tag__counter {
    position: absolute;
    top: -10px;
    padding: 3px 8px;
    min-width: 26px;
    min-height: 26px;
    font-family: Poppins, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
    border-radius: 40px;
    color: var(--heading-font-color);
    background-color: var(--background-alt-color)
}

@media (max-width: 768px) {
    .tags__inner .tag__info {
        margin: 16px 0 32px
    }

    .tags__inner .tag__title {
        font-size: 35px
    }

    .tags__inner .tag__counter {
        padding: 2px 6px;
        min-width: 20px;
        min-height: 20px;
        font-size: 12px;
        line-height: 1.3
    }
}

@media (max-width: 576px) {
    .tags__inner .tag__title {
        font-size: 32px
    }
}