@import 'carousel.css';

@media (prefers-color-scheme: light) {
    :root {
        --bg: #F5F5F7;
        --g900: rgba(0, 0, 0, 0.9);
        --g630: rgba(0, 0, 0, 0.63);
        --g600: rgba(0, 0, 0, 0.6);
        --g400: rgba(0, 0, 0, 0.4);
        --g200: rgba(0, 0, 0, 0.2);
        --g003: rgba(0, 0, 0, 0.03);
        --callout-bg: #FFFCEB;
        --callout-border: #E0DBBC;
        --callout-text: #7A6700;
        --theme: #fff;
        --opposit: #000;
    }
}
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #000;
        --g900: #fff;
        --g630: rgba(255, 255, 255, 0.51);
        --g600: rgba(255, 255, 255, 0.48);
        --g400: rgba(255, 255, 255, 0.4);
        --g200: rgba(255, 255, 255, 0.16);
        --g003: rgba(255, 255, 255, 0.08);
        --callout-bg: #2E2C1F;
        --callout-border: #525045;
        --callout-text: #CCC7AB;
        --theme: rgba(255, 255, 255, 0.08);
        --opposit: rgba(255, 255, 255, 0.08);
    }
}
@font-face {
    font-family: "SF Pro Display";
    src: local("SF Pro Display"), url("../fonts/SFProDisplay-Regular.woff2") format("woff2"), url("../fonts/SFProDisplay-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "SF Pro Display";
    src: local("SF Pro Display"), url("../fonts/SFProDisplay-Medium.woff2") format("woff2"), url("../fonts/SFProDisplay-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "SF Pro Display";
    src: local("SF Pro Display"), url("../fonts/SFProDisplay-Semibold.woff2") format("woff2"), url("../fonts/SFProDisplay-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "SF Pro Text";
    src: local("SF Pro Text"), url("../fonts/SFProText-Regular.woff2") format("woff2"), url("../fonts/SFProText-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "SF Pro Text";
    src: local("SF Pro Text"), url("../fonts/SFProText-Medium.woff2") format("woff2"), url("../fonts/SFProText-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "SF Pro Text";
    src: local("SF Pro Text"), url("../fonts/SFProText-Semibold.woff2") format("woff2"), url("../fonts/SFProText-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*::after,
*::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

ul,
ol {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
}

address {
    font-style: normal;
}

.basicLightbox {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0.01;
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    z-index: 1000;
    will-change: opacity;
}

.basicLightbox--visible {
    opacity: 1;
}

.basicLightbox__placeholder {
    max-width: 100%;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    z-index: 1;
    will-change: transform;
}

.basicLightbox__placeholder > iframe:first-child:last-child, .basicLightbox__placeholder > img:first-child:last-child, .basicLightbox__placeholder > video:first-child:last-child {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 95%;
    max-height: 95%;
}

.basicLightbox__placeholder > iframe:first-child:last-child, .basicLightbox__placeholder > video:first-child:last-child {
    pointer-events: auto;
}

.basicLightbox__placeholder > img:first-child:last-child, .basicLightbox__placeholder > video:first-child:last-child {
    width: auto;
    height: auto;
}

.basicLightbox--iframe .basicLightbox__placeholder, .basicLightbox--img .basicLightbox__placeholder, .basicLightbox--video .basicLightbox__placeholder {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.basicLightbox--visible .basicLightbox__placeholder {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

html,
body {
    height: 100%;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--bg);
    font-family: "SF Pro Text", Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4705882353;
    letter-spacing: -0.022em;
    color: var(--g600);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    color-scheme: light;
}
@media (prefers-color-scheme: dark) {
    body {
        color-scheme: dark;
    }
}

main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 16px;
}
@media (max-width: 767px) {
    main {
        padding-top: 8px;
    }
}

.container {
    max-width: 1920px;
    padding: 0 32px;
    margin: 0 auto;
}
@media (max-width: 1023px) {
    .container {
        padding: 0 24px;
    }
}
@media (max-width: 479px) {
    .container {
        padding: 0 16px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: normal;
}

button {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "SF Pro Display", Helvetica, Arial, sans-serif;
}

.title1 {
    font-family: "SF Pro Display", Helvetica, Arial, sans-serif;
    font-size: 1.8823529412rem;
    font-weight: 600;
    line-height: 1.125;
    letter-spacing: 0.013em;
    color: var(--g900);
}
@media (max-width: 479px) {
    .title1 {
        font-size: 28px;
    }
}

.title2 {
    font-family: "SF Pro Display", Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.264px;
    color: var(--g900);
}

.title3 {
    font-family: "SF Pro Display", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.46px;
    color: var(--g900);
}

.a {
    font-weight: 500;
    color: var(--g900);
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    -webkit-transition: border-color 0.2s;
    -o-transition: border-color 0.2s;
    transition: border-color 0.2s;
}
@media (prefers-color-scheme: dark) {
    .a {
        border-color: rgba(255, 255, 255, 0.2);
    }
}
@media (min-width: 1024px) {
    .a:hover {
        border-color: var(--g600);
    }
}

.dark {
    color: var(--g900);
}

.note {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 24px 16px 26px;
    border-radius: 24px;
    border: 1px solid var(--callout-border);
    background-color: var(--callout-bg);
    color: var(--callout-text);
}
@media (max-width: 479px) {
    .note {
        padding: 12px 16px 12px 18px;
        border-radius: 12px;
    }
}
.note svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 7px;
    margin-right: 14px;
}
.note svg .fill {
    fill: var(--g630);
}
.note svg .stroke {
    stroke: var(--g630);
}

.app-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 18px;
    border-radius: 14px;
    background-color: var(--g003);
    color: var(--g630);
}
@media (max-width: 767px) {
    .app-link {
        padding: 16px;
        border-radius: 12px;
    }
}
.app-link__image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.app-link__image img {
    width: 100%;
    height: 100%;
    border-radius: 14px !important;
    -o-object-fit: contain;
    object-fit: contain;
}
.app-link__title {
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}
.app-link__descr {
    display: block;
    margin-top: 4px;
}
.app-link svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 20px;
    height: 20px;
    stroke: var(--g600);
    margin-left: auto;
    -webkit-transition: stroke 0.2s;
    -o-transition: stroke 0.2s;
    transition: stroke 0.2s;
}
@media (min-width: 1024px) {
    .app-link:hover .app-link__image {
        opacity: 0.8;
    }
    .app-link:hover .app-link__title {
        color: var(--g600);
    }
    .app-link:hover svg {
        stroke: var(--g900);
    }
}

mark {
    font-family: "SF Mono", monospace;
    letter-spacing: normal;
    background-color: transparent;
    color: inherit;
    word-wrap: break-word;
    padding: 2px 4px;
    border-radius: 4px;
    border: 1px solid var(--g200);
    background-color: var(--g003);
}

.app {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 0 0.08em;
}
.app img {
    -o-object-fit: contain;
    object-fit: contain;
}

.basicLightbox {
    -webkit-transition: opacity 0.1s ease;
    -o-transition: opacity 0.1s ease;
    transition: opacity 0.1s ease;
}
.basicLightbox img {
    border-radius: 16px;
}

.basicLightbox__placeholder {
    -webkit-transition: -webkit-transform 0.1s ease;
    transition: -webkit-transform 0.1s ease;
    -o-transition: transform 0.1s ease;
    transition: transform 0.1s ease;
    transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

@media (max-width: 1399px) {
    .menu {
        width: calc(100% - 140px);
        position: relative;
    }
    .menu::after {
        content: "";
        width: 48px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background-image: -webkit-gradient(linear, right top, left top, from(#F5F5F7), color-stop(11.79%, rgba(245, 245, 247, 0.991615)), color-stop(21.38%, rgba(245, 245, 247, 0.967585)), color-stop(29.12%, rgba(245, 245, 247, 0.9296)), color-stop(35.34%, rgba(245, 245, 247, 0.879348)), color-stop(40.37%, rgba(245, 245, 247, 0.818519)), color-stop(44.56%, rgba(245, 245, 247, 0.7488)), color-stop(48.24%, rgba(245, 245, 247, 0.671881)), color-stop(51.76%, rgba(245, 245, 247, 0.589452)), color-stop(55.44%, rgba(245, 245, 247, 0.5032)), color-stop(59.63%, rgba(245, 245, 247, 0.414815)), color-stop(64.66%, rgba(245, 245, 247, 0.325985)), color-stop(70.88%, rgba(245, 245, 247, 0.2384)), color-stop(78.62%, rgba(245, 245, 247, 0.153748)), color-stop(88.21%, rgba(245, 245, 247, 0.0737185)), to(rgba(245, 245, 247, 0)));
        background-image: -o-linear-gradient(right, #F5F5F7 0%, rgba(245, 245, 247, 0.991615) 11.79%, rgba(245, 245, 247, 0.967585) 21.38%, rgba(245, 245, 247, 0.9296) 29.12%, rgba(245, 245, 247, 0.879348) 35.34%, rgba(245, 245, 247, 0.818519) 40.37%, rgba(245, 245, 247, 0.7488) 44.56%, rgba(245, 245, 247, 0.671881) 48.24%, rgba(245, 245, 247, 0.589452) 51.76%, rgba(245, 245, 247, 0.5032) 55.44%, rgba(245, 245, 247, 0.414815) 59.63%, rgba(245, 245, 247, 0.325985) 64.66%, rgba(245, 245, 247, 0.2384) 70.88%, rgba(245, 245, 247, 0.153748) 78.62%, rgba(245, 245, 247, 0.0737185) 88.21%, rgba(245, 245, 247, 0) 100%);
        background-image: linear-gradient(270deg, #F5F5F7 0%, rgba(245, 245, 247, 0.991615) 11.79%, rgba(245, 245, 247, 0.967585) 21.38%, rgba(245, 245, 247, 0.9296) 29.12%, rgba(245, 245, 247, 0.879348) 35.34%, rgba(245, 245, 247, 0.818519) 40.37%, rgba(245, 245, 247, 0.7488) 44.56%, rgba(245, 245, 247, 0.671881) 48.24%, rgba(245, 245, 247, 0.589452) 51.76%, rgba(245, 245, 247, 0.5032) 55.44%, rgba(245, 245, 247, 0.414815) 59.63%, rgba(245, 245, 247, 0.325985) 64.66%, rgba(245, 245, 247, 0.2384) 70.88%, rgba(245, 245, 247, 0.153748) 78.62%, rgba(245, 245, 247, 0.0737185) 88.21%, rgba(245, 245, 247, 0) 100%);
    }
}
@media (max-width: 1399px) and (prefers-color-scheme: dark) {
    .menu::after {
        background-image: -webkit-gradient(linear, right top, left top, from(#000000), color-stop(11.79%, rgba(0, 0, 0, 0.991615)), color-stop(21.38%, rgba(0, 0, 0, 0.967585)), color-stop(29.12%, rgba(0, 0, 0, 0.9296)), color-stop(35.34%, rgba(0, 0, 0, 0.879348)), color-stop(40.37%, rgba(0, 0, 0, 0.818519)), color-stop(44.56%, rgba(0, 0, 0, 0.7488)), color-stop(48.24%, rgba(0, 0, 0, 0.671881)), color-stop(51.76%, rgba(0, 0, 0, 0.589452)), color-stop(55.44%, rgba(0, 0, 0, 0.5032)), color-stop(59.63%, rgba(0, 0, 0, 0.414815)), color-stop(64.66%, rgba(0, 0, 0, 0.325985)), color-stop(70.88%, rgba(0, 0, 0, 0.2384)), color-stop(78.62%, rgba(0, 0, 0, 0.153748)), color-stop(88.21%, rgba(0, 0, 0, 0.0737185)), to(rgba(0, 0, 0, 0)));
        background-image: -o-linear-gradient(right, #000000 0%, rgba(0, 0, 0, 0.991615) 11.79%, rgba(0, 0, 0, 0.967585) 21.38%, rgba(0, 0, 0, 0.9296) 29.12%, rgba(0, 0, 0, 0.879348) 35.34%, rgba(0, 0, 0, 0.818519) 40.37%, rgba(0, 0, 0, 0.7488) 44.56%, rgba(0, 0, 0, 0.671881) 48.24%, rgba(0, 0, 0, 0.589452) 51.76%, rgba(0, 0, 0, 0.5032) 55.44%, rgba(0, 0, 0, 0.414815) 59.63%, rgba(0, 0, 0, 0.325985) 64.66%, rgba(0, 0, 0, 0.2384) 70.88%, rgba(0, 0, 0, 0.153748) 78.62%, rgba(0, 0, 0, 0.0737185) 88.21%, rgba(0, 0, 0, 0) 100%);
        background-image: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0.991615) 11.79%, rgba(0, 0, 0, 0.967585) 21.38%, rgba(0, 0, 0, 0.9296) 29.12%, rgba(0, 0, 0, 0.879348) 35.34%, rgba(0, 0, 0, 0.818519) 40.37%, rgba(0, 0, 0, 0.7488) 44.56%, rgba(0, 0, 0, 0.671881) 48.24%, rgba(0, 0, 0, 0.589452) 51.76%, rgba(0, 0, 0, 0.5032) 55.44%, rgba(0, 0, 0, 0.414815) 59.63%, rgba(0, 0, 0, 0.325985) 64.66%, rgba(0, 0, 0, 0.2384) 70.88%, rgba(0, 0, 0, 0.153748) 78.62%, rgba(0, 0, 0, 0.0737185) 88.21%, rgba(0, 0, 0, 0) 100%);
    }
}
@media (max-width: 1399px) and (max-width: 1023px) {
    .menu::after {
        display: none;
    }
}
@media (max-width: 1399px) {
    .menu--hint::before {
        content: "";
        width: 8px;
        height: 14px;
        background-image: url(./../images/icons/arrow-right.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        z-index: 5;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 0;
    }
}
@media (max-width: 1399px) and (prefers-color-scheme: dark) {
    .menu--hint::before {
        background-image: url(./../images/icons/arrow-right-light.svg);
    }
}
@media (max-width: 1399px) and (max-width: 1023px) {
    .menu--hint::before {
        display: none;
    }
}
@media (max-width: 1399px) {
    .menu--transparent {
        opacity: 0;
        visibility: hidden;
    }
}
.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 1399px) {
    .menu__list {
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-left: 32px;
        margin-left: -32px;
    }
    .menu__list::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
}
@media (max-width: 1023px) {
    .menu__list {
        padding: 0 24px;
        margin-right: -24px;
        margin-left: -24px;
    }
}
@media (max-width: 479px) {
    .menu__list {
        padding: 0 16px;
        margin-left: -16px;
        margin-right: -16px;
    }
}
.menu__item {
    position: relative;
}
.menu__item:not(:last-child) {
    margin-right: 6px;
}
.menu__item.active .menu__link {
    background-color: var(--theme);
}
.menu__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 16px;
    border-radius: 26px;
    font-weight: 500;
    color: var(--g900);
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: background-color 0.2s, color 0.2s;
    -o-transition: background-color 0.2s, color 0.2s;
    transition: background-color 0.2s, color 0.2s;
}
@media (min-width: 1024px) {
    .menu__link:hover {
        background-color: var(--theme);
        color: var(--g600);
    }
}
.menu__emoji {
    width: 22px;
    height: 22px;
    line-height: 1;
    font-size: 22px;
    margin-right: 8px;
}
.menu__emoji svg,
.menu__emoji img {
    width: 100%;
    height: 100%;
}
.menu__emoji img {
    -o-object-fit: contain;
    object-fit: contain;
}

.search {
    max-width: 532px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
@media (max-width: 1399px) {
    .search {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
@media (max-width: 1023px) {
    .search {
        max-width: none;
        width: calc(100% - 76px);
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}
.search__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 24px 12px 18px;
    border-radius: 26px;
    background-color: var(--theme);
}
@media (max-width: 1399px) and (min-width: 1024px) {
    .search__box {
        position: absolute;
        left: 70px;
        top: 0;
        right: 80px;
        opacity: 0;
        visibility: hidden;
    }
}
@media (max-width: 1023px) {
    .search__box {
        width: 100%;
        position: relative;
    }
}
@media (max-width: 479px) {
    .search__box {
        padding: 12px;
    }
}
.search__btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 10px;
}
.search__btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--g900);
    -webkit-transition: stroke 0.2s;
    -o-transition: stroke 0.2s;
    transition: stroke 0.2s;
}
@media (min-width: 1024px) {
    .search__btn:hover svg {
        stroke: var(--g600);
    }
}
.search__input {
    border: none;
    padding: 0;
    background-color: transparent;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: inline-block;
    max-width: 400px;
    width: 100%;
    font-weight: 500;
    color: var(--g900);
    outline: transparent;
    margin-right: 12px;
}
@media (max-width: 1399px) {
    .search__input {
        max-width: none;
        margin-right: 30px;
    }
}
@media (max-width: 479px) {
    .search__input {
        margin-right: 20px;
    }
}
.search__input::-webkit-input-placeholder {
    color: var(--g900);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.search__input::-moz-placeholder {
    color: var(--g900);
    -moz-transition: color 0.2s;
    transition: color 0.2s;
}
.search__input:-ms-input-placeholder {
    color: var(--g900);
    -ms-transition: color 0.2s;
    transition: color 0.2s;
}
.search__input::-ms-input-placeholder {
    color: var(--g900);
    -ms-transition: color 0.2s;
    transition: color 0.2s;
}
.search__input::placeholder {
    color: var(--g900);
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}
.search__input:hover::-webkit-input-placeholder, .search__input:focus::-webkit-input-placeholder {
    color: var(--g600);
}
.search__input:hover::-moz-placeholder, .search__input:focus::-moz-placeholder {
    color: var(--g600);
}
.search__input:hover:-ms-input-placeholder, .search__input:focus:-ms-input-placeholder {
    color: var(--g600);
}
.search__input:hover::-ms-input-placeholder, .search__input:focus::-ms-input-placeholder {
    color: var(--g600);
}
.search__input:hover::placeholder, .search__input:focus::placeholder {
    color: var(--g600);
}
.search__input:hover ~ .search__hint, .search__input:focus ~ .search__hint {
    opacity: 0;
    visibility: hidden;
}
.search__hint {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 44px;
    height: 20px;
    margin-left: auto;
    -webkit-transition: opacity 0.2s, visibility 0.2s;
    -o-transition: opacity 0.2s, visibility 0.2s;
    transition: opacity 0.2s, visibility 0.2s;
}
@media (max-width: 1399px) {
    .search__hint {
        display: none;
    }
}
.search__hint svg {
    width: 100%;
    height: 100%;
}
.search__hint svg .stroke {
    stroke: var(--g200);
}
.search__hint svg .fill {
    fill: var(--g200);
}
.search__reset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 19px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s, visibility 0.2s;
    -o-transition: opacity 0.2s, visibility 0.2s;
    transition: opacity 0.2s, visibility 0.2s;
}
@media (max-width: 479px) {
    .search__reset {
        width: 20px;
        height: 20px;
        right: 12px;
    }
}
.search__reset svg {
    width: 12px;
    height: 12px;
    stroke: rgba(0, 0, 0, 0.32);
}
@media (prefers-color-scheme: dark) {
    .search__reset svg {
        stroke: rgba(255, 255, 255, 0.24);
    }
}
.search__reset.active {
    opacity: 1;
    visibility: visible;
}
.search__trigger {
    display: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--theme);
    font-weight: 500;
    color: var(--g900);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
}
.search__trigger svg {
    width: 20px;
    height: 20px;
    stroke: var(--g900);
    -webkit-transition: stroke 0.2s;
    -o-transition: stroke 0.2s;
    transition: stroke 0.2s;
}
.search__trigger span {
    width: 0;
    visibility: hidden;
}
@media (max-width: 1399px) and (min-width: 1024px) {
    .search__trigger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
@media (min-width: 1024px) {
    .search__trigger:hover {
        color: var(--g600);
    }
    .search__trigger:hover svg {
        stroke: var(--g600);
    }
}
.search--open {
    z-index: 4;
}
.search--open .search__box {
    opacity: 1;
    visibility: visible;
}
.search--open .search__trigger {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: transparent;
}
.search--open .search__trigger svg {
    width: 0;
    visibility: hidden;
}
.search--open .search__trigger span {
    width: auto;
    visibility: visible;
}

.header {
    padding: 16px 0;
}
@media (max-width: 767px) {
    .header {
        padding: 8px 0;
    }
}
.header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
@media (max-width: 1023px) {
    .header__wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.header__logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 48px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 30px;
    -webkit-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
    position: relative;
    z-index: 3;
}
@media (max-width: 1399px) {
    .header__logo {
        margin-right: 20px;
    }
}
.header__logo:hover {
    opacity: 0.7;
}
.header__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.header .search {
    margin-left: 24px;
}
@media (max-width: 1399px) {
    .header .search {
        margin-left: 0;
    }
}
.header .menu {
    margin-right: auto;
}
@media (max-width: 1023px) {
    .header .menu {
        -webkit-box-ordinal-group: 100;
        -ms-flex-order: 99;
        order: 99;
        width: 100%;
        margin-top: 16px;
    }
}

.footer-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 1399px) {
    .footer-menu__list {
        max-width: 90%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .footer-menu__list {
        max-width: 100%;
    }
}
@media (max-width: 479px) {
    .footer-menu__list {
        display: block;
        margin-bottom: 20px;
    }
}
@media (min-width: 1024px) {
    .footer-menu__item:not(:last-child) {
        margin-right: 75px;
    }
}
@media (min-width: 1024px) and (max-width: 1759px) {
    .footer-menu__item:not(:last-child) {
        margin-right: 24px;
    }
}
@media (min-width: 1024px) {
    .footer-menu__item:first-child .footer-menu__link {
        padding-left: 0;
        border-radius: 0 26px 26px 0;
    }
}
@media (max-width: 1399px) {
    .footer-menu__item {
        padding: 0 4px;
        margin-bottom: 16px;
    }
}
@media (max-width: 479px) {
    .footer-menu__item {
        padding: 0;
        text-align: center;
        margin-bottom: 8px;
    }
}
.footer-menu__link {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 26px;
    font-weight: 600;
    text-align: center;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}
@media (min-width: 1024px) {
    .footer-menu__link:hover {
        color: rgba(255, 255, 255, 0.6);
    }
}

.socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.socials__item {
    position: relative;
}
.socials__item:not(:last-child) {
    margin-right: 12px;
}
.socials__item:hover .socials__sublist {
    opacity: 1;
    visibility: visible;
}
.socials__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 52px;
    height: 52px;
}
.socials__link svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    -webkit-transition: fill 0.2s;
    -o-transition: fill 0.2s;
    transition: fill 0.2s;
}
.socials__link:hover svg {
    fill: rgba(255, 255, 255, 0.6);
}
.socials__sublist {
    padding-bottom: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 1023px) {
    .socials__sublist {
        display: none;
    }
}
.socials__sublist-wrap {
    min-width: 170px;
    padding: 10px;
    border-radius: 12px;
    background-color: var(--bg);
    -webkit-box-shadow: 0px 0px 4px rgba(27, 29, 31, 0.04), 0px 4px 24px rgba(27, 29, 31, 0.08);
    box-shadow: 0px 0px 4px rgba(27, 29, 31, 0.04), 0px 4px 24px rgba(27, 29, 31, 0.08);
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
@media (prefers-color-scheme: dark) {
    .socials__sublist-wrap {
        background-color: #202020;
    }
}
.socials__sublist-link {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--g600);
    -webkit-transition: background-color 0.2s, color 0.2s;
    -o-transition: background-color 0.2s, color 0.2s;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
}
.socials__sublist-link:hover {
    background-color: var(--g003);
    color: var(--g900);
}

.footer {
    padding: 64px 0 16px;
    background-color: var(--opposit);
    color: #fff;
    position: relative;
}
@media (prefers-color-scheme: dark) {
    .footer {
        background-color: var(--g003);
    }
}
.footer::before {
    content: "";
    height: 48px;
    width: 100%;
    border-radius: 0 0 24px 24px;
    background-color: var(--bg);
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width: 479px) {
    .footer::before {
        height: 32px;
    }
}
.footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}
@media (max-width: 1399px) {
    .footer__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.footer__lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    padding-left: 0;
    font-weight: 600;
    position: relative;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    cursor: pointer;
    margin-right: 24px;
}
@media (max-width: 1399px) {
    .footer__lang {
        -webkit-box-ordinal-group: 100;
        -ms-flex-order: 99;
        order: 99;
        margin: 16px 0 0;
    }
}
@media (max-width: 389px) {
    .footer__lang {
        padding: 8px;
    }
}
.footer__lang::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("./../images/icons/lang-icon.svg");
    margin-right: 12px;
}
@media (max-width: 389px) {
    .footer__lang::before {
        margin-right: 6px;
    }
}
.footer__lang:hover {
    opacity: 0.6;
}
.footer .socials {
    margin-left: 75px;
}
@media (max-width: 1759px) {
    .footer .socials {
        margin-left: 24px;
    }
}
@media (max-width: 1399px) {
    .footer .socials {
        margin-left: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.go-to-top {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--theme);
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    transition: background-color 0.2s;
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 10;
    -webkit-transition: opacity 0.2s, visibility 0.2s;
    -o-transition: opacity 0.2s, visibility 0.2s;
    transition: opacity 0.2s, visibility 0.2s;
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 767px) {
    .go-to-top {
        width: 48px;
        height: 48px;
        right: 16px;
        bottom: 40px;
    }
}
@media (prefers-color-scheme: dark) {
    .go-to-top {
        background-color: #141414;
        -webkit-box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.1);
    }
}
.go-to-top svg {
    display: block;
    stroke: var(--g900);
    -webkit-transition: stroke 0.2s;
    -o-transition: stroke 0.2s;
    transition: stroke 0.2s;
    width: 45%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1, -1);
    -ms-transform: translate(-50%, -50%) scale(1, -1);
    transform: translate(-50%, -50%) scale(1, -1);
}
.go-to-top:hover svg {
    stroke: var(--g630);
}
.go-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.breadcrumbs {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: -0.24px;
    color: var(--g600);
    margin-bottom: 12px;
}
.breadcrumbs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (max-width: 1023px) {
    .breadcrumbs__list {
        display: none;
    }
}
.breadcrumbs__item {
    padding-right: 32px;
    position: relative;
}
.breadcrumbs__item::after {
    content: "";
    width: 9px;
    height: 9px;
    background-image: url("./../images/icons/big-arrow-r.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (prefers-color-scheme: dark) {
    .breadcrumbs__item::after {
        background-image: url("./../images/icons/big-arrow-r-light.svg");
    }
}
.breadcrumbs__item:last-child::after {
    display: none;
}
.breadcrumbs__link {
    display: inline-block;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}
.breadcrumbs span.breadcrumbs__link {
    cursor: default;
    color: var(--g400);
}
.breadcrumbs__prevpage {
    display: none;
    padding: 5px 0 5px 26px;
    position: relative;
}
.breadcrumbs__prevpage::before {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url("./../images/icons/big-arrow-r.svg");
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-57%) rotate(180deg);
    -ms-transform: translateY(-57%) rotate(180deg);
    transform: translateY(-57%) rotate(180deg);
}
@media (prefers-color-scheme: dark) {
    .breadcrumbs__prevpage::before {
        background-image: url("./../images/icons/big-arrow-r-light.svg");
    }
}
@media (max-width: 1023px) {
    .breadcrumbs__prevpage {
        display: inline-block;
    }
}

@media (min-width: 1024px) {
    a.breadcrumbs__link:hover {
        color: var(--g900);
    }
}
.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -6px;
}
@media (max-width: 479px) {
    .grid {
        display: block;
    }
}
.grid li {
    padding: 0 6px;
    margin-bottom: 12px;
    width: 100%;
}
@media (max-width: 389px) {
    .grid li {
        padding: 0 10px;
    }
}
.grid li > * {
    height: 100%;
}
.grid--col2 li {
    width: 50%;
}
@media (max-width: 767px) {
    .grid--col2 li {
        width: 100%;
    }
}
.grid--col3 li {
    width: 33.3%;
}
@media (max-width: 1023px) {
    .grid--col3 li {
        width: 50%;
    }
}
@media (max-width: 479px) {
    .grid--col3 li {
        width: 100%;
    }
}
.grid--col4 li {
    width: 25%;
}
@media (max-width: 1023px) {
    .grid--col4 li {
        width: 33.3%;
    }
}
@media (max-width: 767px) {
    .grid--col4 li {
        width: 50%;
    }
}
@media (max-width: 479px) {
    .grid--col4 li {
        width: 100%;
    }
}

.article-card {
    display: block;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--theme);
}
@media (min-width: 1024px) {
    .article-card:hover .article-card__title {
        color: var(--g600);
    }
    .article-card:hover .article-card__image {
        opacity: 0.8;
    }
}
.article-card__info {
    font-size: 15px;
    line-height: 1.33;
    letter-spacing: -0.24px;
    color: var(--g600);
}
.article-card__info > *:not(:last-child) {
    margin-right: 16px;
    position: relative;
}
.article-card__info > *:not(:last-child)::after {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--g600);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -8px;
}
.article-card__title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.264px;
    color: var(--g900);
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    margin-bottom: 8px;
}
@media (max-width: 479px) {
    .article-card__title {
        font-size: 20px;
        letter-spacing: -0.46px;
    }
}
.article-card__text {
    margin-bottom: 16px;
}
.article-card__image {
    border-radius: 12px;
    margin-bottom: 24px;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
@media (max-width: 1023px) {
    .article-card__image {
        height: auto;
    }
}
.article-card__image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover;
}

.feature-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 120px;
    padding: 16px;
    border-radius: 16px;
    background-color: #ff7c5e;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.feature-card:hover {
    opacity: 0.9;
}
.feature-card__icon {
    width: 32px;
    height: 32px;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 12px;
}
.feature-card__icon svg,
.feature-card__icon img {
    width: 100%;
    height: 100%;
}
.feature-card__icon img {
    -o-object-fit: contain;
    object-fit: contain;
}
.feature-card__title {
    display: block;
    color: #fff;
    margin-top: auto;
}

.masonry-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px -16px;
    opacity: 0;
}
@media (max-width: 1023px) {
    .masonry-grid {
        display: block;
        margin: 0 0 -24px;
    }
}
@media (max-width: 479px) {
    .masonry-grid {
        margin: 0 -16px -16px;
    }
}
.masonry-grid__item {
    width: 33.33%;
    padding: 0 8px 16px;
}
@media (max-width: 1023px) {
    .masonry-grid__item {
        width: 100%;
        padding: 0 0 24px;
    }
}
@media (max-width: 479px) {
    .masonry-grid__item {
        padding-bottom: 16px;
    }
}

@media (max-width: 1023px) {
    .media-carousel {
        max-width: calc(100% - 100px);
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .media-carousel {
        max-width: none;
    }
}
.media-carousel .splide__track {
    -webkit-transition: height 0.4s;
    -o-transition: height 0.4s;
    transition: height 0.4s;
}
.media-carousel .splide__list {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.media-carousel .splide__arrow {
    width: 50px;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
}
.media-carousel .splide__arrow--prev {
    left: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
.media-carousel .splide__arrow--prev svg {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
.media-carousel .splide__arrow--next {
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}
.media-carousel .splide__arrow svg {
    width: 20px;
    height: 20px;
    fill: var(--g900);
}
.media-carousel .splide__pagination {
    margin-top: 16px;
}
.media-carousel .splide__pagination li:not(:last-child) {
    margin-right: 4px;
}
.media-carousel .splide__pagination button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 30px;
    border: none;
    background-color: var(--g200);
    -webkit-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}
@media (prefers-color-scheme: dark) {
    .media-carousel .splide__pagination button {
        background-color: var(--g400);
    }
}
.media-carousel .splide__pagination button.is-active {
    width: 16px;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 8px;
}
@media (max-width: 389px) {
    .pagination__list {
        margin: 0 4px;
    }
}
.pagination__item {
    display: inline-block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    -webkit-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
@media (max-width: 389px) {
    .pagination__item {
        width: 44px;
        height: 44px;
    }
}
.pagination__item.current {
    background-color: var(--theme);
}
.pagination__item:hover {
    background-color: var(--theme);
}
.pagination__item:hover > a {
    color: var(--g600);
}
.pagination__item:not(:last-child) {
    margin-right: 8px;
}
@media (max-width: 389px) {
    .pagination__item:not(:last-child) {
        margin-right: 4px;
    }
}
.pagination__item > * {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 500;
    color: var(--g900);
    text-align: center;
}
.pagination__item > a {
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}
.pagination__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    -webkit-transition: backgrond-color 0.2s;
    -o-transition: backgrond-color 0.2s;
    transition: backgrond-color 0.2s;
}
@media (max-width: 389px) {
    .pagination__arrow {
        width: 44px;
        height: 44px;
    }
}
.pagination__arrow svg {
    width: 9px;
    height: 12px;
    stroke: var(--g900);
    -webkit-transition: stroke 0.2s;
    -o-transition: stroke 0.2s;
    transition: stroke 0.2s;
}
@media (min-width: 1024px) {
    .pagination__arrow:hover {
        background-color: var(--theme);
    }
    .pagination__arrow:hover svg {
        stroke: var(--g600);
    }
}

.news-list .pagination {
    margin-top: 48px;
}
@media (max-width: 479px) {
    .news-list .pagination {
        margin-top: 32px;
    }
}

.search-result__head {
    padding-top: 32px;
    text-align: center;
    margin-bottom: 64px;
}
@media (max-width: 479px) {
    .search-result__head {
        padding-top: 24px;
        margin-bottom: 40px;
    }
}
.search-result__head .title1 {
    font-size: 48px;
    font-weight: 500;
}
@media (max-width: 767px) {
    .search-result__head .title1 {
        font-size: 36px;
    }
}
@media (max-width: 479px) {
    .search-result__head .title1 {
        font-size: 28px;
    }
}
.search-result__caption {
    display: inline-block;
    font-size: 15px;
    line-height: 1.33;
    letter-spacing: -0.24px;
}
@media (max-width: 479px) {
    .search-result__caption {
        margin-bottom: 4px;
    }
}
.search-result .pagination {
    margin-top: 48px;
}
@media (max-width: 479px) {
    .search-result .pagination {
        margin-top: 32px;
    }
}

.content {
    max-width: 680px;
    padding: 32px 0 16px;
    margin: 0 auto;
}
.content--wide {
    max-width: 880px;
}
@media (max-width: 1023px) {
    .content {
        max-width: none;
        padding: 8px 0 0;
    }
}
@media (max-width: 767px) {
    .content {
        padding-top: 16px;
    }
}
.content .breadcrumbs {
    margin-bottom: 12px;
}
.content__title {
    font-size: 2.3529411765rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--g900);
    letter-spacing: -0.374px;
    margin-bottom: 12px;
}
@media (max-width: 767px) {
    .content__title {
        font-size: 28px;
    }
}
.content__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 15px;
    line-height: 1.3333733333;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
@media (max-width: 479px) {
    .content__info {
        margin-bottom: 20px;
    }
}
.content__info > *:not(:last-child) {
    margin-right: 16px;
}
.content__main {
    color: #333;
}
@media (prefers-color-scheme: dark) {
    .content__main {
        color: #c1c1c1;
    }
}
.content__main > * {
    margin-bottom: 32px;
}
@media (max-width: 1023px) {
    .content__main > * {
        margin-bottom: 24px;
    }
}
.content__main img:not(.app) {
    width: 100%;
    border-radius: 24px;
    background-color: var(--g003);
}
@media (max-width: 479px) {
    .content__main img:not(.app) {
        border-radius: 12px;
    }
}
.content__main img:not(.app).img--high {
    max-height: 650px;
    padding: 16px;
    -o-object-fit: contain;
    object-fit: contain;
}
.content__main video {
    max-width: 100%;
    border-radius: 6px;
}
.content__main figure {
    background-color: var(--g003);
    padding: 10px;
    border-radius: 16px;
}
@media (max-width: 479px) {
    .content__main figure {
        border-radius: 12px;
    }
}
.content__main figure img:not(.app) {
    width: auto;
    border-radius: 12px;
    margin: 0 auto;
    background-color: transparent;
}
.content__main figure img:not(.app).img--high {
    padding: 0;
}
.content__main figure figcaption {
    font-size: 17px;
    font-style: italic;
    text-align: center;
    letter-spacing: -0.442px;
    opacity: 0.6;
    margin-top: 8px;
}
.content__main > .title1, .content__main > .title2 {
    margin: 48px 0 16px;
}
.content__main > .title1 + .title2, .content__main > .title1 + .title3, .content__main > .title2 + .title2, .content__main > .title2 + .title3 {
    margin-top: 20px;
}
.content__main > .title3 {
    margin: 36px 0 16px;
}
.content__main .default-list li {
    padding-left: 20px;
    position: relative;
}
.content__main .default-list li::before {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--g600);
    position: absolute;
    top: 13px;
    left: 8px;
}
.content__main .default-list li:not(:last-child),
.content__main ol li:not(:last-child) {
    margin-bottom: 4px;
}
.content__footer {
    text-align: right;
}

.wallpaper-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.wallpaper-card img {
    border-radius: inherit !important;
}
.wallpaper-card__overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    pointer-events: none;
}
.wallpaper-card__overlay svg {
    fill: white;
}
.wallpaper-card:hover .wallpaper-card__overlay {
    opacity: 1;
}

.video-card__media {
    height: 0;
    padding-top: 56.25%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.video-card__media iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.video-card__media img {
    width: 100%;
    position: absolute;
    top: -16.84%;
    left: 0;
}
.video-card__play {
    width: 96px;
    height: 72px;
    background-image: url(./../images/icons/youtube.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.video-card__title {
    margin-top: 8px;
}