@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap&subset=cyrillic);
@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&display=swap&subset=cyrillic);

html {
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent;
    text-decoration: none
}

abbr[title] {
    border-bottom: none;
    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: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    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
}

/* =========================================================
   ДИЗАЙН-СИСТЕМА / ПЕРЕМЕННЫЕ
   ========================================================= */
:root {
    --c-primary: #607D8B;
    --c-primary-dark: #455A64;
    --c-primary-light: #CFD8DC;
    --c-accent: #FF5722;
    --c-accent-2: #E26D48;
    --c-reveal: #777c82;
    --c-text: #212121;
    --c-text-soft: #757575;
    --c-surface: #ffffff;
    --c-bg: #F3F6F7;

    --gradient-accent: linear-gradient(135deg, #FF7A45 0%, #FF5722 55%, #E26D48 100%);
    --gradient-dark: linear-gradient(135deg, #455A64 0%, #37474F 100%);
    --gradient-header: linear-gradient(120deg, rgba(69, 90, 100, .92) 0%, rgba(96, 125, 139, .88) 55%, rgba(226, 109, 72, .85) 130%);

    --radius-s: 12px;
    --radius-m: 20px;
    --radius-l: 28px;
    --radius-pill: 999px;

    --shadow-s: 0 2px 10px rgba(38, 50, 56, .08);
    --shadow-m: 0 10px 30px rgba(38, 50, 56, .12);
    --shadow-l: 0 20px 45px rgba(38, 50, 56, .18);
    --shadow-accent: 0 10px 24px rgba(255, 87, 34, .30);

    --font-head: 'Manrope', 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

::selection {
    background: var(--c-accent);
    color: #fff;
}

/* =========================================================
   ХЕДЕР (моб.)
   ========================================================= */
.header {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-header);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    height: 56px;
    z-index: 1000;
    box-sizing: border-box;
    top: 0;
    padding-left: 20px;
    padding-right: 20px;
    opacity: 0;
    box-shadow: var(--shadow-s);
    transition: all .35s ease-out;
    transform: translateY(-100%)
}

.header.show {
    opacity: 1;
    transform: translateY(0)
}

.header__logo img {
    margin-top: 2px;
    width: 60px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

.header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24px;
    cursor: pointer;
    transform: rotate(-45deg)
}

.header__menu__line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    left: 0
}

.header__menu__line_first {
    transition: all .15s linear;
    margin-left: 0;
    opacity: 1
}

.header__menu__line_second {
    margin-top: 4px;
    width: 60%;
    transition: all .2s linear;
    margin-left: 0;
    opacity: 1
}

.header__menu__line_third {
    margin-top: 4px;
    width: 30%;
    transition: all .3s linear;
    margin-left: 0;
    opacity: 1
}

.header__menu.open .header__menu__line_first,
.header__menu.open .header__menu__line_second,
.header__menu.open .header__menu__line_third {
    margin-left: 60px;
    opacity: 0
}

/* =========================================================
   HERO / ROCKSTAR
   ========================================================= */
.rockstar {
    margin-top: 56px;
    padding: 24px 20px 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: auto 450px;
    background-position-y: center;
    min-height: 500px
}

.rockstar__content {
    width: 100%;
    margin-top: 24px;
}

.rockstar__content__descr,
.rockstar__content__text,
.rockstar__content__title {
    opacity: 0;
    transition: opacity 1s ease .3s;
    width: 78%
}

.rockstar__content__title {
    margin-top: 16px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: .01em;
    text-transform: uppercase;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rockstar__content__descr {
    font-weight: 500;
    color: var(--c-text);
}

.rockstar__content__text {
    display: none;
    color: var(--c-text-soft);
}

.rockstar__content .flex-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.rockstar__content__download {
    flex: 1 0 100%;
    max-width: 100%;
    opacity: 0;
    transition: opacity 1s ease .3s;
    position: relative
}

.rockstar__content__download .btn-download {
    transition: opacity .3s linear, transform .2s ease, box-shadow .2s ease;
    display: inline-block;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    min-width: 200px;
    line-height: 120%;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-align: center;
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 22px;
    outline: none
}

.rockstar__content__download .btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255, 87, 34, .38);
}

.rockstar__content__download .btn-download.disabled {
    background: var(--c-primary);
    box-shadow: none;
}

.rockstar__content__download .btn-download .link {
    color: #fff
}

.rockstar__content__download .version {
    display: block;
    font-size: 13px;
    margin-top: 8px;
    margin-left: 6px;
    color: var(--c-text-soft);
    width: 64%
}

.rockstar__content__more {
    opacity: 0;
    transition: opacity 1s ease .3s;
    position: relative;
    flex: 1 0 100%;
    max-width: 100%;
    margin-top: 6px
}

.rockstar__content__more .btn-more {
    width: 180px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.rockstar__content__more .btn-more p {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    text-transform: uppercase;
    color: var(--c-primary-dark);
    margin: 0 0 5px
}

.rockstar__content__more .btn-more #more-arrows {
    width: 60px;
    height: 52px
}

.rockstar__content__more svg line {
    stroke: var(--c-accent);
    transition: stroke .2s ease;
}

.rockstar__content.show .rockstar__content__descr,
.rockstar__content.show .rockstar__content__download,
.rockstar__content.show .rockstar__content__more,
.rockstar__content.show .rockstar__content__text,
.rockstar__content.show .rockstar__content__title {
    opacity: 1
}

.rockstar__action {
    transition: all .2s linear
}

.rockstar__action span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-140%, -26%);
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 500;
    color: var(--c-primary-dark);
    text-transform: uppercase;
    z-index: 400
}

.rockstar__action__swipe {
    position: absolute;
    z-index: 400;
    top: 50%;
    left: 50%;
    height: 50px;
    transform: translateX(-50%);
    opacity: 1
}

.rockstar__action__swipe .arrow {
    height: 20px;
    width: 20px;
    border: 1px solid rgba(255, 87, 34, .6);
    border-width: 4px 4px 0 0;
    border-radius: 2px;
    transform: rotate(45deg)
}

.rockstar__action__swipe .arrow:after,
.rockstar__action__swipe .arrow:before {
    content: "";
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    border-width: 4px 4px 0 0
}

.rockstar__action__swipe .arrow:before {
    border: 1px solid rgba(255, 87, 34, .3);
    border-width: 4px 4px 0 0;
    top: 10px;
    left: -13px
}

.rockstar__action__swipe .arrow:after {
    border: 1px solid #ff5722;
    border-width: 4px 4px 0 0;
    top: -18px;
    left: 15px
}

.rockstar__action.hide .rockstar__action__swipe,
.rockstar__action.hide span {
    animation: slideRightOff 1s ease-out normal forwards
}

.rockstar__mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    opacity: .8
}

.rockstar__mask.hide {
    animation: hideMask .5s ease-out normal forwards
}

@keyframes hideMask {
    0% {
        opacity: .8
    }

    to {
        opacity: 0
    }
}

@keyframes slideRightOff {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        margin-left: 100px
    }
}

@keyframes showFade {

    0%,
    90% {
        opacity: 0
    }

    25%,
    75% {
        opacity: 1
    }
}

/* =========================================================
   BANNER / DESKTOP HERO
   ========================================================= */
.banner {
    position: relative
}

.banner.banner-desk {
    overflow: hidden
}

.banner.banner-desk:after {
    background: var(--gradient-header);
    transition: all 1s ease;
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    top: -13%;
    left: -10%;
    z-index: -10;
    transform: rotate(-5deg);
    box-shadow: 0 4px 30px rgba(38, 50, 56, .25)
}

.banner.banner-desk .header {
    max-width: 1460px;
    width: 100%;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    box-sizing: border-box;
    position: fixed;
    height: 64px;
    z-index: 1000;
    flex-flow: row nowrap;
    padding: 20px 50px;
    transition: all .3s ease-out;
    transform: translateY(-100%);
    opacity: 0
}

.banner.banner-desk .header.offset {
    background: var(--gradient-header);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-s);
}

.banner.banner-desk .header.show {
    transform: translateY(0);
    opacity: 1
}

.banner.banner-desk .header__logo img {
    width: 78px;
    height: auto
}

.banner.banner-desk .header__nav {
    display: flex;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.banner.banner-desk .header__nav_item {
    position: relative;
    display: block;
    text-transform: uppercase;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .18em;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    transition: background-color .2s ease;
}

.banner.banner-desk .header__nav_item:hover {
    background-color: rgba(255, 255, 255, .14);
}

.banner.banner-desk .header__nav_item:after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: #fff;
    opacity: 0;
    width: 0;
    bottom: 2px;
    left: 14px;
    transition: all .2s linear
}

.banner.banner-desk .header__nav_item.active:after,
.banner.banner-desk .header__nav_item:hover:after {
    content: "";
    width: calc(100% - 28px);
    opacity: 1
}

.banner.banner-desk .rockstar {
    opacity: 1;
    background: none;
    margin-top: 90px;
    margin-left: 50px;
    margin-right: 50px;
    padding-left: 0;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: right;
    background-size: contain;
    min-height: 550px
}

.banner.banner-desk .rockstar__content .flex-container,
.banner.banner-desk .rockstar__content__descr,
.banner.banner-desk .rockstar__content__text,
.banner.banner-desk .rockstar__content__title {
    opacity: 1;
    animation: none;
    color: #fff;
    width: calc(100% - 300px);
    max-width: 850px;
    background: none;
    -webkit-text-fill-color: initial;
}

.banner.banner-desk .rockstar__content__title {
    font-size: 60px;
    line-height: 1.12;
    letter-spacing: .01em;
    font-weight: 800;
    margin-bottom: 24px;
    -webkit-text-fill-color: #fff;
}

.banner.banner-desk .rockstar__content__descr {
    font-size: 32px;
    font-weight: 500;
    margin: 0
}

.banner.banner-desk .rockstar__content__text {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 12px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, .85);
}

.banner.banner-desk .rockstar__content__download {
    color: #fff;
    position: relative;
    opacity: 1;
    animation: none;
    flex: 0 0 auto
}

.banner.banner-desk .rockstar__content__download .btn-download {
    width: 100%;
    padding: 0;
    background: #fff;
    background: var(--gradient-accent);
}

.banner.banner-desk .rockstar__content__download .btn-download.disabled {
    background: rgba(255, 255, 255, .25);
}

.banner.banner-desk .rockstar__content__download .btn-download:after {
    content: "";
    position: absolute;
    right: -14px;
    top: -14px;
    background-image: url(/assets/images/info.png);
    background-size: contain;
    height: 17px;
    width: 17px;
    cursor: pointer;
    z-index: 100;
    opacity: .7;
    filter: drop-shadow(0 0 2px rgba(0,0,0,.4));
}

.banner.banner-desk .rockstar__content__download .btn-download:hover:after {
    opacity: 1
}

.banner.banner-desk .rockstar__content__download .btn-download .link {
    width: auto;
    display: block;
    padding: 15px 28px
}

.banner.banner-desk .rockstar__content__download .version {
    width: 100%;
    color: rgba(255, 255, 255, .8);
}

.banner.banner-desk .rockstar__content__more {
    color: #fff;
    display: flex;
    justify-content: center;
    font-weight: 300;
    margin-top: 0;
    flex: 1 0 auto;
    width: auto;
    opacity: 1;
    animation: none
}

.banner.banner-desk .rockstar__content__more p,
.banner.banner-desk .rockstar__content__more svg {
    cursor: pointer
}

.banner.banner-desk .rockstar__content__more p {
    color: #fff;
}

.banner.banner-desk .rockstar__content__more svg line {
    stroke: #fff;
    stroke-width: 1.5
}

.banner.banner-desk .banner__canvas {
    position: absolute;
    top: 0;
    z-index: -1
}

/* =========================================================
   ПОЛНОЭКРАННОЕ МЕНЮ
   ========================================================= */
.menu_nav {
    position: fixed;
    top: 0;
    background: var(--gradient-dark);
    width: 100%;
    display: none;
    transform: scaleY(0);
    transform-origin: top;
    z-index: 1000;
    height: 100dvh;
    height: 100vh
}

.menu_nav.show {
    display: block;
    animation: slideOn .3s ease-in .2s forwards
}

.menu_nav.show .menu_nav__header__logo {
    animation: fadeIn .4s ease-out .6s forwards
}

.menu_nav.show .menu_nav__links nav a:nth-child(odd) {
    animation: rightToLeftIn .4s ease-out .6s forwards
}

.menu_nav.show .menu_nav__links nav a:nth-child(2n) {
    animation: leftToRightIn .4s ease-out .6s forwards
}

.menu_nav.show .menu_nav__links nav a:first-of-type {
    animation-delay: .5s
}

.menu_nav.show .menu_nav__links nav a:nth-of-type(2) {
    animation-delay: .6s
}

.menu_nav.show .menu_nav__links nav a:nth-of-type(3) {
    animation-delay: .7s
}

.menu_nav.show .menu_nav__links nav a:nth-of-type(4) {
    animation-delay: .8s
}

.menu_nav.show .menu_nav__links nav a:nth-of-type(5) {
    animation-delay: .9s
}

.menu_nav.show .menu_nav__links nav a:nth-of-type(6) {
    animation-delay: 1s
}

.menu_nav.show .menu_nav__rights {
    animation: fadeIn .8s ease-out .8s forwards
}

.menu_nav.hide {
    display: block;
    transform: scaleY(1);
    animation: slideOff .3s ease-out .6s forwards
}

.menu_nav.hide .menu_nav__header__logo {
    animation: fadeOff .4s ease-out forwards
}

.menu_nav.hide .menu_nav__links nav a:nth-child(odd) {
    animation: rightToLeftOff ease-out forwards
}

.menu_nav.hide .menu_nav__links nav a:nth-child(2n) {
    animation: leftToRightOff ease-out forwards
}

.menu_nav.hide .menu_nav__links nav a:last-of-type {
    animation-duration: .5s
}

.menu_nav.hide .menu_nav__links nav a:nth-last-of-type(2) {
    animation-duration: .6s
}

.menu_nav.hide .menu_nav__links nav a:nth-last-of-type(3) {
    animation-duration: .7s
}

.menu_nav.hide .menu_nav__links nav a:nth-last-of-type(4) {
    animation-duration: .8s
}

.menu_nav.hide .menu_nav__links nav a:nth-last-of-type(5) {
    animation-duration: .9s
}

.menu_nav.hide .menu_nav__rights {
    animation: fadeOff .4s ease-out forwards
}

.menu_nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding-left: 20px;
    padding-right: 20px
}

.menu_nav__header__logo {
    opacity: 0
}

.menu_nav__header__logo img {
    width: 60px
}

.menu_nav__header__sandwich {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24px;
    cursor: pointer;
    transform: rotate(-45deg)
}

.menu_nav__header__sandwich .line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    left: 0
}

.menu_nav__header__sandwich .line_first {
    transition: all .15s linear;
    margin-left: 60px;
    opacity: 0
}

.menu_nav__header__sandwich .line_second {
    margin-top: 4px;
    width: 60%;
    transition: all .2s linear;
    margin-left: 60px;
    opacity: 0
}

.menu_nav__header__sandwich .line_third {
    margin-top: 4px;
    width: 30%;
    transition: all .3s linear;
    margin-left: 60px;
    opacity: 0
}

.menu_nav__header__sandwich.open .line_first,
.menu_nav__header__sandwich.open .line_second,
.menu_nav__header__sandwich.open .line_third {
    margin-left: 0;
    opacity: 1
}

.menu_nav__links {
    height: calc(100vh - 120px);
    justify-content: center
}

.menu_nav__links,
.menu_nav__links nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.menu_nav__links nav {
    flex-direction: column
}

.menu_nav__links nav a {
    flex: 1 0 auto;
    width: auto;
    display: inline-block;
    color: #fff;
    font-family: var(--font-head);
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 20px;
    opacity: 0
}

.menu_nav__links nav a:nth-child(odd) {
    transform: translateX(100%)
}

.menu_nav__links nav a:nth-child(2n) {
    transform: translateX(-100%)
}

.menu_nav__links nav a:after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: var(--c-accent);
    opacity: 0;
    width: 0;
    bottom: -5px;
    left: 0;
    transition: all .2s linear
}

.menu_nav__links nav a.active:after {
    content: "";
    width: 100%;
    opacity: 1
}

.menu_nav__rights {
    opacity: 0
}

.menu_nav__rights p {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    margin: 20px;
    text-align: right
}

.menu_nav__rights p span {
    color: var(--c-accent);
    font-weight: 700
}

@keyframes slideOn {
    0% {
        transform: scaleY(0)
    }

    to {
        transform: scaleY(1)
    }
}

@keyframes slideOff {
    0% {
        transform: scaleY(1)
    }

    to {
        transform: scaleY(0)
    }
}

@keyframes fadeOff {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes leftToRightIn {
    0% {
        opacity: 0;
        transform: translateX(-100%)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes leftToRightOff {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(-100%)
    }
}

@keyframes rightToLeftIn {
    0% {
        opacity: 0;
        transform: translateX(100%)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes rightToLeftOff {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(100%)
    }
}

/* =========================================================
   О НАС
   ========================================================= */
.about {
    padding: 40px 20px 0;
}

.about__title {
    margin-top: 0;
    font-family: var(--font-head);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: var(--c-primary-dark);
}

.about__content {
    display: flex;
    flex-flow: row wrap;
    gap: 24px;
    background: var(--c-surface);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-m);
    padding: 24px;
    box-sizing: border-box;
}

.about__content__image {
    flex: 0 0 100%;
    max-width: 100%;
}

.about__content__image img {
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-m)
}

.about__content__desc {
    flex: 0 0 100%;
    max-width: 100%;
    color: var(--c-text-soft);
    line-height: 1.7;
    white-space: pre-line;
}

.about.about-desk {
    margin-top: 110px;
    padding-left: 50px;
    padding-right: 50px
}

.about.about-desk .about__content {
    padding: 40px;
    flex-wrap: nowrap;
}

.about.about-desk .about__title {
    font-size: 44px;
    letter-spacing: .04em;
    margin-bottom: 30px;
}

.about.about-desk .about__content__image {
    flex: 0 0 40%;
    max-width: 40%
}

.about.about-desk .about__content__image img {
    width: 100%;
    display: block;
}

.about.about-desk .about__content__desc {
    flex: 0 0 60%;
    max-width: 60%;
    font-size: 17px;
    align-self: center;
}

/* =========================================================
   ПРОЕКТЫ
   ========================================================= */
.projects {
    margin-bottom: 60px;
    padding-top: 40px;
}

.projects__title {
    font-family: var(--font-head);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: var(--c-primary-dark);
}

.projects__slider_item {
    outline: none;
    margin-left: 15px;
    margin-right: 15px
}

.projects__slider_item:before {
    white-space: pre;
    font-family: var(--font-head);
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: .01em;
    font-weight: 700;
    display: inline-block;
    width: calc(100% - 20px);
    min-height: 200px;
    padding: 14px 0 10px 20px;
    text-transform: uppercase;
    color: #fff;
    background-image: url(/assets/images/project_header.png);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-m);
}

.projects__slider_item:after,
.projects__slider_item:before {
    opacity: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain
}

.projects__slider_item:after {
    content: "";
    bottom: 0;
    width: 100%;
    min-height: 100px;
    background-image: url(/assets/images/project_footer.png);
    background-position-y: bottom
}

.projects__slider_item img {
    display: block;
    width: auto;
    height: 280px;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 14px 24px rgba(38, 50, 56, .2));
}

.projects__slider_item.slick-current {
    position: relative
}

.projects__slider_item.slick-current:after,
.projects__slider_item.slick-current:before {
    opacity: 1
}

.projects__slider[data-title-project=social] .projects__slider_item:before {
    content: "Social \A robot \A android"
}

.projects__slider[data-title-project=user] .projects__slider_item:before {
    content: "Social \A parser \A android"
}

.projects__desc {
    transition: opacity .1s linear;
    opacity: 1;
    margin-top: 34px;
    max-width: 320px;
    max-height: 200px
}

.projects__desc,
.projects__download {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.subtitle {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--c-primary-dark);
}

.excerpt {
    color: var(--c-text-soft);
}

.projects__download {
    position: relative;
    margin-top: 24px;
    width: 320px;
    max-width: 100%;
    background: var(--c-surface);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-m);
    padding: 24px 20px 20px;
    box-sizing: border-box;
}

.projects__download .btn-download {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: .06em;
    text-align: center;
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
    border: none;
    border-radius: var(--radius-pill);
    padding: 0;
    outline: none;
    transition: transform .2s ease, box-shadow .2s ease
}

.projects__download .btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255, 87, 34, .38);
}

.projects__download .btn-download.disabled {
    background: var(--c-primary);
    box-shadow: none;
}

.projects__download .btn-download .link {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    width: auto;
    display: block;
    padding: 13px 26px
}

.projects__download .version {
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
    margin-top: 10px;
    color: var(--c-text-soft);
}

.projects__download .subtitle {
    font-size: 15px;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 4px
}

.projects__download .excerpt {
    font-size: 14px;
}

.qr-code {
    width: 0;
    height: 0;
    border-radius: 10px;
    background: #fff;
    padding: 4px;
    box-shadow: var(--shadow-s);
    margin-top: 14px;
}

/* --- новый блок: переход к инструкциям --- */
.projects__guides {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 18px auto 0;
    max-width: 420px;
}

.guide-link {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: center;
    color: var(--c-primary-dark);
    background: #fff;
    border: 2px solid var(--c-primary-light);
    border-radius: var(--radius-pill);
    padding: 10px 16px;
    box-shadow: var(--shadow-s);
    transition: all .2s ease;
}

.guide-link:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-m);
}

.guide-link.is-soon {
    opacity: .85;
}

.guide-link.is-soon .badge {
    background: var(--c-primary-light);
    color: var(--c-primary-dark);
    font-size: 10px;
    letter-spacing: .02em;
    border-radius: var(--radius-pill);
    padding: 2px 7px;
    margin-left: 2px;
}

.projects .gallery__slider {
    margin-top: 60px;
    min-height: 300px;
    transition: opacity .2s ease-in
}

.projects .gallery__slider .slick-list {
    padding-top: 30px;
    padding-bottom: 30px;
    height: 100%
}

.projects .gallery__slider .slick-dots li button:before {
    height: 10px;
    width: 10px;
    border: 2px solid var(--c-accent);
    border-radius: 100%;
    opacity: .4;
    content: ""
}

.projects .gallery__slider .slick-dots li.slick-active button:before {
    background-color: var(--c-accent);
    opacity: 1
}

.projects .gallery__slider_item {
    transition: all .15s linear;
    margin-left: 15px;
    margin-right: 15px;
    outline: none
}

.projects .gallery__slider_item img {
    width: auto;
    height: 280px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-m);
}

.projects .gallery__slider_item.slick-center {
    transform: scale(1.12)
}

.projects .gallery__desc {
    transition: opacity 1.2s linear;
    opacity: 1;
    margin-top: 30px;
    max-width: 320px;
    min-height: 80px;
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.projects .gallery__desc .subtitle {
    font-size: 18px;
    margin-bottom: 0
}

.projects .gallery__desc .excerpt {
    font-size: 14px
}

.projects__features {
    margin-top: 50px
}

.projects__features h1 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center;
    margin-bottom: 0;
    color: var(--c-primary-dark);
}

.projects__features__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 24px auto 0;
    gap: 16px;
}

.projects__features__container_item {
    flex: 0 0 44%;
    max-width: 170px;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    padding: 18px 10px;
    background: #fff;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-s);
    transition: transform .2s ease, box-shadow .2s ease;
}

.projects__features__container_item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-m);
}

.projects__features__container_item img {
    height: 44px;
    width: 44px;
    display: block;
    margin: 0 auto 6px;
    padding: 10px;
    box-sizing: content-box;
    background: var(--c-bg);
    border-radius: 50%;
}

.projects__features__container_item h5 {
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    color: var(--c-primary-dark);
}

.projects__features__container_item p {
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    color: var(--c-text-soft);
    max-width: 200px;
    margin-left: auto;
    margin-right: auto
}

.projects__subscriptions {
    margin: 50px 20px 0;
}

.projects__subscriptions h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    color: var(--c-primary-dark);
}

.projects__subscriptions__slider img {
    height: 340px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 14px 24px rgba(38, 50, 56, .18));
}

.projects__subscriptions__slider .slick-dots li button:before {
    height: 10px;
    width: 10px;
    border: 2px solid var(--c-accent);
    border-radius: 100%;
    opacity: .4;
    content: ""
}

.projects__subscriptions__slider .slick-dots li.slick-active button:before {
    background-color: var(--c-accent);
    opacity: 1
}

.projects__subscriptions__desc {
    min-height: 150px;
    margin-top: 30px;
    text-align: center
}

.projects__subscriptions__desc .subtitle {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-accent-2);
    margin-bottom: 0;
    letter-spacing: .06em;
    text-transform: uppercase
}

.projects__subscriptions__desc .benefits-list {
    list-style: none;
    padding-left: 0;
    padding-right: 0
}

.projects__subscriptions__desc .benefits-list li {
    margin-top: 14px;
    color: var(--c-text-soft);
    text-align: left;
    padding-left: 26px;
    position: relative;
}

.projects__subscriptions__desc .benefits-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient-accent);
}

.projects.projects-desk {
    margin-top: 110px
}

.projects.projects-desk .projects__title {
    font-size: 44px
}

.projects.projects-desk .projects__slider {
    margin-left: 50px;
    margin-right: 50px
}

.projects.projects-desk .projects__slider .slick-track {
    display: flex;
    justify-content: center;
    transform: translateZ(0) !important
}

.projects.projects-desk .projects__slider_item {
    max-width: 260px;
    margin-left: 30px;
    margin-right: 30px;
    cursor: pointer
}

.projects.projects-desk .projects__slider_item:before {
    font-size: 28px;
    line-height: 1.25
}

.projects.projects-desk .projects__slider_item img {
    width: 100%;
    height: auto;
    opacity: .55;
    margin-left: 0;
    margin-right: 0;
    filter: none;
}

.projects.projects-desk .projects__slider_item.slick-current img {
    opacity: 1
}

.projects.projects-desk .projects__slider_item:not(.slick-current) img:hover {
    opacity: .8
}

.projects.projects-desk .projects__desc {
    max-width: 100%;
    margin-left: 50px;
    margin-right: 50px
}

.projects.projects-desk .projects__desc .subtitle {
    font-size: 26px
}

.projects.projects-desk .projects__desc .excerpt {
    font-size: 18px
}

.projects.projects-desk .projects__download {
    width: 360px;
    padding: 32px 28px 26px;
}

.projects.projects-desk .projects__download .btn-download {
    font-size: 20px;
    cursor: pointer
}

.projects.projects-desk .projects__download .version {
    font-size: 15px
}

.projects.projects-desk .gallery__container {
    display: flex;
    flex-wrap: nowrap;
    box-sizing: border-box;
    min-height: 450px;
    margin-top: 70px;
    margin-left: 50px;
    margin-right: 50px
}

.projects.projects-desk .gallery__container.selected .gallery__slider {
    opacity: 1
}

.projects.projects-desk .gallery__container.selected .gallery__desc-left .list__item,
.projects.projects-desk .gallery__container.selected .gallery__desc-right .list__item {
    opacity: .5;
    transform: translateX(0)
}

.projects.projects-desk .gallery__container.selected .gallery__desc-left .list__item.active,
.projects.projects-desk .gallery__container.selected .gallery__desc-right .list__item.active {
    opacity: 1
}

.projects.projects-desk .gallery__container.selected .gallery__desc-left .list__item:hover,
.projects.projects-desk .gallery__container.selected .gallery__desc-right .list__item:hover {
    opacity: .8
}

.projects.projects-desk .gallery__slider {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    opacity: 0;
    transition: opacity 1s ease
}

.projects.projects-desk .gallery__slider_item {
    outline: none;
    height: 100%;
    display: flex;
    align-items: center
}

.projects.projects-desk .gallery__slider_item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-l);
}

.projects.projects-desk .gallery__slider_item.slick-current {
    transform: scale(1)
}

.projects.projects-desk .gallery__slider .slick-list {
    height: 100%;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0
}

.projects.projects-desk .gallery__slider .slick-track {
    height: 100%
}

.projects.projects-desk .gallery__slider .slick-dots {
    position: relative
}

.projects.projects-desk .gallery__slider .slick-dots li button:before {
    height: 10px;
    width: 10px;
    border: 2px solid var(--c-accent);
    border-radius: 100%;
    opacity: .4;
    content: ""
}

.projects.projects-desk .gallery__slider .slick-dots li.slick-active button:before {
    background-color: var(--c-accent);
    opacity: 1
}

.projects.projects-desk .gallery__desc-left,
.projects.projects-desk .gallery__desc-right {
    flex: 0 0 40%;
    max-width: 40%
}

.projects.projects-desk .gallery__desc-left .list,
.projects.projects-desk .gallery__desc-right .list {
    list-style: none;
    padding: 0
}

.projects.projects-desk .gallery__desc-left .list__item,
.projects.projects-desk .gallery__desc-right .list__item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-right: 20px;
    opacity: 0;
    transform: translateX(-150%);
    transition-timing-function: ease;
    transition-property: all
}

.projects.projects-desk .gallery__desc-left .list__item:first-child,
.projects.projects-desk .gallery__desc-right .list__item:first-child {
    transition-duration: .6s
}

.projects.projects-desk .gallery__desc-left .list__item:nth-child(2),
.projects.projects-desk .gallery__desc-right .list__item:nth-child(2) {
    transition-duration: .8s
}

.projects.projects-desk .gallery__desc-left .list__item:nth-child(3),
.projects.projects-desk .gallery__desc-right .list__item:nth-child(3) {
    transition-duration: 1s
}

.projects.projects-desk .gallery__desc-left .list__item__order,
.projects.projects-desk .gallery__desc-right .list__item__order {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    height: 100px;
    font-size: 72px;
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--c-accent);
    cursor: pointer
}

.projects.projects-desk .gallery__desc-left .list__item__desc,
.projects.projects-desk .gallery__desc-right .list__item__desc {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    margin-left: 10px;
    text-align: right
}

.projects.projects-desk .gallery__desc-left .list__item__desc .subtitle,
.projects.projects-desk .gallery__desc-right .list__item__desc .subtitle {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 8px;
    flex: 0 0 100%;
    max-width: 100%;
    cursor: pointer
}

.projects.projects-desk .gallery__desc-left .list__item__desc .excerpt,
.projects.projects-desk .gallery__desc-right .list__item__desc .excerpt {
    font-size: 16px;
    margin: 0;
    flex: 0 0 100%;
    max-width: 100%;
    cursor: pointer
}

.projects.projects-desk .gallery__desc-right .list__item {
    margin-left: 20px;
    margin-right: 0;
    transform: translateX(150%)
}

.projects.projects-desk .gallery__desc-right .list__item__order {
    order: 2
}

.projects.projects-desk .gallery__desc-right .list__item__desc {
    order: 1;
    text-align: left;
    margin-right: 10px;
    margin-left: 0
}

.projects.projects-desk .gallery__slider {
    flex: 0 0 20%;
    max-width: 20%
}

.projects.projects-desk .projects__features h1 {
    opacity: 0
}

.projects.projects-desk .projects__features.view h1 {
    animation-name: slideInDown;
    animation-duration: 1s;
    animation-fill-mode: forwards
}

.projects.projects-desk .projects__features.view .projects__features__container_item:first-child img {
    animation-delay: .4s
}

.projects.projects-desk .projects__features.view .projects__features__container_item:first-child h5,
.projects.projects-desk .projects__features.view .projects__features__container_item:first-child p {
    transition-delay: .4s
}

.projects.projects-desk .projects__features.view .projects__features__container_item:nth-child(2) img {
    animation-delay: .6s
}

.projects.projects-desk .projects__features.view .projects__features__container_item:nth-child(2) h5,
.projects.projects-desk .projects__features.view .projects__features__container_item:nth-child(2) p {
    transition-delay: .6s
}

.projects.projects-desk .projects__features.view .projects__features__container_item:nth-child(3) img {
    animation-delay: .8s
}

.projects.projects-desk .projects__features.view .projects__features__container_item:nth-child(3) h5,
.projects.projects-desk .projects__features.view .projects__features__container_item:nth-child(3) p {
    transition-delay: .8s
}

.projects.projects-desk .projects__features.view .projects__features__container_item:nth-child(4) img {
    animation-delay: 1s
}

.projects.projects-desk .projects__features.view .projects__features__container_item:nth-child(4) h5,
.projects.projects-desk .projects__features.view .projects__features__container_item:nth-child(4) p {
    transition-delay: 1s
}

.projects.projects-desk .projects__features.view .projects__features__container_item img {
    animation-name: bounceIn;
    animation-duration: 1s;
    animation-fill-mode: forwards
}

.projects.projects-desk .projects__features.view .projects__features__container_item h5,
.projects.projects-desk .projects__features.view .projects__features__container_item p {
    opacity: 1
}

.projects.projects-desk .projects__features__container {
    justify-content: center
}

.projects.projects-desk .projects__features__container_item {
    flex: 0 0 22%;
    max-width: 240px;
    padding: 26px 18px;
    box-sizing: border-box
}

.projects.projects-desk .projects__features__container_item img {
    opacity: 0;
    height: 60px;
    width: 60px;
    outline: none
}

.projects.projects-desk .projects__features__container_item h5,
.projects.projects-desk .projects__features__container_item p {
    opacity: 0;
    transition: opacity 1s cubic-bezier(.215, .61, .355, 1)
}

.projects.projects-desk .projects__features__container_item h5 {
    font-size: 14px;
    text-transform: uppercase;
    min-height: 40px
}

.projects.projects-desk .projects__features__container_item p {
    text-transform: none;
    font-weight: 400
}

.projects.projects-desk .projects__subscriptions {
    margin-top: 4em
}

.projects.projects-desk .projects__subscriptions.view h1 {
    animation: slideInDown 1s ease forwards
}

.projects.projects-desk .projects__subscriptions.view .subscriptions__slider {
    animation: fadeIn 1s ease forwards
}

.projects.projects-desk .projects__subscriptions.view .subscriptions__desc .subtitle {
    animation: fadeIn 2s ease forwards
}

.projects.projects-desk .projects__subscriptions.view .subscriptions__desc .list__item {
    animation: slideInRight 1s ease forwards
}

.projects.projects-desk .projects__subscriptions.view .subscriptions__desc .list__item:first-child {
    animation-delay: .4s
}

.projects.projects-desk .projects__subscriptions.view .subscriptions__desc .list__item:nth-child(2) {
    animation-delay: .6s
}

.projects.projects-desk .projects__subscriptions.view .subscriptions__desc .list__item:nth-child(3) {
    animation-delay: .8s
}

.projects.projects-desk .projects__subscriptions.view .subscriptions__desc .list__item:nth-child(4) {
    animation-delay: 1s
}

.projects.projects-desk .projects__subscriptions.view .subscriptions__desc .list__item:nth-child(5) {
    animation-delay: 1.2s
}

.projects.projects-desk .projects__subscriptions.view .subscriptions__desc .list__item:nth-child(6) {
    animation-delay: 1.4s
}

.projects.projects-desk .projects__subscriptions h1 {
    opacity: 0;
    font-size: 22px;
    letter-spacing: .04em
}

.projects.projects-desk .projects__subscriptions__container {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 60px;
    gap: 40px;
    align-items: center;
}

.projects.projects-desk .projects__subscriptions__container__slider {
    flex: 0 0 50%;
    max-width: 50%
}

.projects.projects-desk .projects__subscriptions__container__slider .subscriptions__slider {
    opacity: 0;
    width: 60%;
    margin-left: auto;
    margin-right: auto
}

.projects.projects-desk .projects__subscriptions__container__slider .subscriptions__slider_item {
    margin-left: 20px;
    margin-right: 20px;
    outline: none;
    width: 240px
}

.projects.projects-desk .projects__subscriptions__container__slider .subscriptions__slider_item img {
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
    width: 100%;
    filter: drop-shadow(0 14px 24px rgba(38, 50, 56, .18));
}

.projects.projects-desk .projects__subscriptions__container__slider .slick-dots {
    position: relative
}

.projects.projects-desk .projects__subscriptions__container__slider .slick-dots li button:before {
    height: 10px;
    width: 10px;
    border: 2px solid var(--c-accent);
    border-radius: 100%;
    opacity: .4;
    content: ""
}

.projects.projects-desk .projects__subscriptions__container__slider .slick-dots li.slick-active button:before {
    background-color: var(--c-accent);
    opacity: 1
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc {
    flex: 0 0 50%;
    max-width: 50%
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc .subtitle {
    opacity: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--c-accent-2);
    text-align: center;
    margin: 0
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc .list {
    list-style: none;
    padding: 0
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc .list__item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-right: 20px;
    opacity: 0
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc .list__item__order {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    height: 80px;
    font-size: 56px;
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--c-accent)
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc .list__item__desc {
    font-size: 20px;
    color: var(--c-text-soft);
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    margin-left: 20px
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc .list__item__desc .benefit {
    margin: 0
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc.change .subtitle {
    opacity: 1;
    animation: fadeOut 1s ease forwards
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc.change .list__item {
    opacity: 1;
    animation: slideOutRight .6s ease forwards
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc.change .list__item:first-child {
    animation-delay: .3s
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc.change .list__item:nth-child(2) {
    animation-delay: .5s
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc.change .list__item:nth-child(3) {
    animation-delay: .7s
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc.change .list__item:nth-child(4) {
    animation-delay: .9s
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc.change .list__item:nth-child(5) {
    animation-delay: 1.1s
}

.projects.projects-desk .projects__subscriptions__container .subscriptions__desc.change .list__item:nth-child(6) {
    animation-delay: 1.3s
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-150%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(150%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1
    }

    to {
        transform: translateX(150%);
        opacity: 0
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

/* =========================================================
   НОВОСТИ
   ========================================================= */
.news {
    margin: 0 20px;
}

.news__title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
    color: var(--c-primary-dark);
}

.news__container .news__item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
    background: #fff;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-s);
    padding: 20px;
    box-sizing: border-box;
}

.news__container .news__item__date {
    flex: 1 0 100%;
    max-width: 100%;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--c-accent-2);
    margin: 0
}

.news__container .news__item__excerpt {
    flex: 1 0 100%;
    max-width: 100%;
    font-weight: 700;
    font-size: 18px;
    color: var(--c-primary-dark);
    margin-top: 8px;
    margin-bottom: 8px
}

.news__container .news__item__extra {
    opacity: 0;
    transition: all .5s ease-in;
    color: var(--c-text-soft);
}

.news__container .news__item__extra .text .link {
    font-weight: 700;
    color: var(--c-accent-2);
    border-bottom: 1px solid var(--c-accent-2)
}

.news__container .news__item__extra .news__gallery {
    max-width: 100%
}

.news__container .news__item__extra .news__gallery.alone-item .item {
    width: 100%;
    max-width: none;
    float: none
}

.news__container .news__item__extra .news__gallery .item {
    width: calc(50% - 20px);
    max-width: 300px;
    float: left;
    margin-bottom: 10px
}

.news__container .news__item__extra .news__gallery .item__image_link {
    display: block;
    text-decoration: none;
    outline: 0;
    line-height: 0
}

.news__container .news__item__extra .news__gallery .item__image {
    display: block;
    width: 100%;
    border-radius: var(--radius-s)
}

.news__container .news__item .more {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--c-accent-2);
    display: block;
    max-width: 130px;
    text-transform: uppercase;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    text-align: center;
    letter-spacing: .04em;
    padding: 10px 16px;
    border: 2px solid var(--c-accent-2);
    border-radius: var(--radius-pill);
    transition: all .2s ease
}

.news__container .news__item .more.show {
    max-width: 90px
}

.news .btn-more,
.news__container .news__item .more:hover {
    color: #fff;
    background-color: var(--c-accent-2)
}

.news .btn-more {
    display: block;
    margin-left: auto;
    margin-right: auto;
    outline: none;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-m);
    cursor: pointer
}

.news.news-desk {
    margin-top: 110px;
    margin-left: 50px;
    margin-right: 50px
}

.news.news-desk .news__title {
    font-size: 44px
}

.news.news-desk .news__item {
    display: flex;
    flex-wrap: wrap;
    padding: 32px
}

.news.news-desk .news__item__date {
    flex: 1 0 50%;
    max-width: 50%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px
}

.news.news-desk .news__item__date h3 {
    font-size: 22px;
    margin: 0;
    text-align: right
}

.news.news-desk .news__item__content {
    flex: 1 0 50%;
    max-width: 50%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box
}

.news.news-desk .news__item__content__excerpt {
    margin: 0;
    font-size: 22px
}

.news.news-desk .news__item__content__text {
    margin: 20px 0;
    font-size: 17px
}

.news.news-desk .news__item__content__text .link {
    position: relative;
    font-weight: 700;
    color: var(--c-accent-2)
}

.news.news-desk .news__item__content__text .link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    opacity: 0;
    height: 2px;
    background-color: var(--c-accent-2);
    transition: all .3s ease
}

.news.news-desk .news__item__content__text .link:hover:after {
    content: "";
    width: 100%;
    opacity: 1
}

.news.news-desk .news__item__content__gallery {
    opacity: 0;
    transition: all .5s ease-in;
    max-width: 100%;
    margin-bottom: 30px
}

.news.news-desk .news__item__content__gallery.alone-item .item {
    width: 100%;
    max-width: none;
    float: none
}

.news.news-desk .news__item__content__gallery .item {
    width: calc(50% - 20px);
    max-width: 300px;
    float: left;
    margin-bottom: 10px
}

.news.news-desk .news__item__content__gallery .item__image_link {
    display: block;
    text-decoration: none;
    outline: 0;
    line-height: 0
}

.news.news-desk .news__item__content__gallery .item__image {
    display: block;
    width: 100%;
    border-radius: var(--radius-s)
}

.news.news-desk .news__item__content .more:before {
    height: 40px
}

.news.news-desk .news__container .more {
    margin: 20px 0 0 auto
}

.news.news-desk .btn-more {
    margin-top: 50px;
    margin-left: calc(50% + 20px)
}

/* =========================================================
   КОНТАКТЫ
   ========================================================= */
.contacts {
    margin: 50px 20px;
}

.contacts__title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
    color: var(--c-primary-dark);
}

.contacts__support {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.contacts__support_faq,
.contacts__support_mail,
.contacts__support_tg {
    flex: 1 0 100%;
    max-width: 280px;
    width: 100%;
    background: var(--gradient-dark);
    box-shadow: var(--shadow-m);
    border-radius: var(--radius-l);
    box-sizing: border-box;
    padding-top: 26px;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
    margin-left: 12px;
    margin-right: 12px
}

.contacts__support_faq {
    background: linear-gradient(160deg, #607D8B, #455A64);
}

.contacts__support_tg {
    background: var(--gradient-accent);
}

.contacts__support_faq .icon,
.contacts__support_mail .icon,
.contacts__support_tg .icon {
    height: 52px;
    width: 52px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, .16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts__support_faq .icon img,
.contacts__support_mail .icon img,
.contacts__support_tg .icon img {
    width: 56%;
    height: auto;
    filter: brightness(0) invert(1);
}

.contacts__support_faq .title,
.contacts__support_mail .title,
.contacts__support_tg .title {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .12em;
    margin-top: 16px;
    margin-bottom: 14px
}

.contacts__support_faq .subtitle,
.contacts__support_mail .subtitle,
.contacts__support_tg .subtitle {
    margin: 0 20px 20px;
    color: rgba(255, 255, 255, .85);
    font-weight: 400;
}

.contacts__support_faq .action,
.contacts__support_mail .action,
.contacts__support_tg .action {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    position: relative
}

.contacts__support_faq .action__text,
.contacts__support_mail .action__text,
.contacts__support_tg .action__text {
    margin: 0
}

.contacts__support_faq .action__link,
.contacts__support_mail .action__link,
.contacts__support_tg .action__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block
}

.contacts-desk {
    margin-top: 110px;
    margin-left: 50px;
    margin-right: 50px
}

.contacts-desk .contacts__title {
    font-size: 44px;
    margin-bottom: 40px
}

.contacts-desk .contacts__support {
    justify-content: space-around
}

.contacts-desk .contacts__support_faq,
.contacts-desk .contacts__support_mail,
.contacts-desk .contacts__support_tg {
    transition: all .2s ease;
    cursor: pointer
}

.contacts-desk .contacts__support_faq:hover,
.contacts-desk .contacts__support_mail:hover,
.contacts-desk .contacts__support_tg:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-l)
}

.contacts-desk .contacts__support .icon {
    height: 72px;
    width: 72px
}

.contacts-desk .contacts__support .title {
    font-size: 20px
}

/* =========================================================
   МОДАЛКИ
   ========================================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(38, 50, 56, .55);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center
}

.modal.show {
    display: flex
}

.modal .modal-request,
.modal .modal-response {
    z-index: 1001;
    padding: 24px;
    background-color: #fff;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-l);
    text-align: center;
    max-width: 90%;
    box-sizing: border-box;
    position: relative;
    animation-name: slideTop;
    animation-duration: .4s
}

.modal .modal-request .title,
.modal .modal-response .title {
    margin-top: 0;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--c-primary-dark);
}

.modal .modal-request form .form-group,
.modal .modal-response form .form-group {
    margin-bottom: 12px
}

.modal .modal-request form input,
.modal .modal-request form textarea,
.modal .modal-response form input,
.modal .modal-response form textarea {
    display: block;
    width: 100%;
    max-width: 300px;
    height: 40px;
    font-size: 16px;
    font-family: var(--font-body);
    background-color: #fff;
    border: 2px solid var(--c-primary-light);
    border-radius: var(--radius-s);
    outline: none;
    box-sizing: border-box;
    height: auto;
    padding: 11px;
    transition: border-color .2s ease
}

.modal .modal-request form input:focus,
.modal .modal-request form textarea:focus,
.modal .modal-response form input:focus,
.modal .modal-response form textarea:focus {
    border-color: var(--c-accent)
}

.modal .modal-request form input.empty,
.modal .modal-request form textarea.empty,
.modal .modal-response form input.empty,
.modal .modal-response form textarea.empty {
    animation: flicker .5s ease-out 2 both
}

.modal .modal-request form .error,
.modal .modal-response form .error {
    display: block;
    min-height: 15px;
    text-align: left;
    color: #E64A19;
    margin: 4px 5px
}

.modal .modal-request form button,
.modal .modal-response form button {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gradient-accent);
    padding: 11px 18px;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-accent);
    cursor: pointer;
    display: inline
}

.modal .modal-request form button.btn-send,
.modal .modal-response form button.btn-send {
    outline: none
}

.modal .modal-request form button.btn-cancel,
.modal .modal-response form button.btn-cancel {
    display: none;
    outline: none
}

.modal.modal-desk .modal-request,
.modal.modal-desk .modal-response {
    padding: 50px;
    max-width: 500px
}

.modal.modal-desk .modal-request .title,
.modal.modal-desk .modal-response .title {
    font-size: 24px
}

.modal.modal-desk .modal-request .body-response,
.modal.modal-desk .modal-response .body-response {
    font-size: 18px;
    color: var(--c-text-soft);
}

.modal.modal-desk .modal-request .icon-response,
.modal.modal-desk .modal-response .icon-response {
    cursor: pointer;
    width: 54px;
    height: 54px
}

.modal.modal-desk .modal-request form .form-group,
.modal.modal-desk .modal-response form .form-group {
    margin-bottom: 20px
}

.modal.modal-desk .modal-request form .form-group input,
.modal.modal-desk .modal-request form .form-group textarea,
.modal.modal-desk .modal-response form .form-group input,
.modal.modal-desk .modal-response form .form-group textarea {
    max-width: 100%
}

.modal.modal-desk .modal-request form button,
.modal.modal-desk .modal-response form button {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 14px 28px;
    cursor: pointer
}

.modal.modal-desk .modal-request form button.btn-send,
.modal.modal-desk .modal-response form button.btn-send {
    margin-right: 20px
}

.modal.modal-desk .modal-request form button.btn-cancel,
.modal.modal-desk .modal-response form button.btn-cancel {
    display: inline-block;
    background: var(--c-primary)
}

.modal.modal-desk .modal-response {
    padding: 30px 20px 20px
}

.modal.modal-desk .modal-response .title {
    margin-bottom: 0
}

@keyframes slideTop {
    0% {
        top: -200%;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes flicker {
    0% {
        border-color: var(--c-primary)
    }

    to {
        border-color: var(--c-accent-2)
    }
}

/* =========================================================
   ФУТЕР
   ========================================================= */
footer {
    position: relative;
    overflow: hidden;
    min-height: 90px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    background: var(--gradient-dark);
}

footer .first_column,
footer .second_column {
    flex-basis: 0;
    flex-grow: 1;
    width: 100%;
    max-width: 100%;
    text-align: right;
    margin: 10px 0 0;
    font-weight: 300;
    color: rgba(255, 255, 255, .85);
}

footer .first_column p,
footer .second_column p {
    margin: 0
}

footer .first_column {
    padding-right: 10px
}

footer .first_column .user-convention {
    max-width: 122px;
    display: block;
    margin-left: auto
}

footer .second_column {
    padding-left: 10px;
    text-align: left
}

footer .second_column .git-link {
    color: var(--c-accent);
    margin-left: 5px;
    font-weight: 500
}

footer .politic-conf,
footer .user-convention {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
}

/* =========================================================
   ОБЩИЕ / ПРЕЛОАДЕР
   ========================================================= */
html {
    line-height: 1.5;
    font-size: 14px;
    color: var(--c-text);
    height: 100%;
    font-family: var(--font-body);
    scroll-behavior: smooth;
    background: var(--c-bg);
}

html .LAYOUT-APP {
    max-width: 1460px;
    margin-left: auto;
    margin-right: auto;
    background: var(--c-bg);
}

html .preloader {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999
}

html .preloader .loader-circle {
    width: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 87, 34, .35)
}

html .preloader .loader-circle,
html .preloader .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px
}

html .preloader .loader-line-mask {
    width: 60px;
    overflow: hidden;
    transform-origin: 60px 60px;
    animation: rotate 1.2s linear infinite
}

html .preloader .loader-line-mask .loader-line {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border-width: 3px;
    box-shadow: inset 0 0 0 2px var(--c-accent)
}

html .preloader .loader-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -30px;
    margin-top: -30px;
    animation: frickle 3s linear infinite;
    opacity: .5
}

html .preloader.done {
    display: none
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes frickle {

    0%,
    to {
        opacity: .4
    }

    50% {
        opacity: .9
    }
}

/* =========================================================
   МЕДИА-ЗАПРОСЫ
   ========================================================= */
@media (min-width:768px) {
    .rockstar__content__title {
        font-size: 36px;
        line-height: 1.15
    }

    .rockstar__content__text {
        display: block;
        opacity: 0;
        width: 50%
    }

    .rockstar__content__download .btn-download {
        width: auto
    }

    .about__content__image {
        flex: 0 0 50%;
        max-width: 50%;
        order: 2
    }

    .about__content__desc {
        flex: 0 0 50%;
        max-width: 50%;
        order: 1
    }
}

@media (min-width:320px) {
    .rockstar__content__descr {
        font-size: 22px
    }
}

@media (min-width:1090px) {
    .banner.banner-desk:after {
        top: -14%
    }
}

@media (min-width:1160px) {
    .banner.banner-desk:after {
        top: -16%
    }
}

@media (min-width:1300px) {
    .banner.banner-desk:after {
        top: -18%
    }
}

@media (min-width:1284px) {
    .banner.banner-desk .rockstar__content__title {
        margin-top: 10px;
        margin-bottom: 50px
    }

    .banner.banner-desk .rockstar__content__descr {
        margin-top: 10px;
        line-height: 1.5em
    }

    .banner.banner-desk .rockstar__content .flex-container {
        margin-top: 80px
    }
}

@media (min-width:1080px) {
    .banner.banner-desk .rockstar__content__text {
        margin-bottom: 50px
    }
}

@media (min-width:392px) {
    .menu_nav__links {
        height: calc(100vh - 122px)
    }
}

@media (min-width:1000px) {
    .projects__subscriptions__slider img {
        height: 360px
    }

    footer {
        padding-left: 50px;
        padding-right: 50px
    }
}

@media (min-width:500px) {

    .modal .modal-request,
    .modal .modal-response {
        padding: 32px
    }
}

@media (min-width:460px) {
    footer {
        min-height: 80px
    }

    footer .first_column,
    footer .second_column {
        margin-top: 0;
    }

    footer .first_column .user-convention {
        max-width: 100%;
        display: inline-block
    }

    footer .second_column {
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }
}

@media (min-width:1001px) {

    footer .first_column,
    footer .second_column {
        font-size: 16px
    }
}

/* QR-код: аккуратно показываем на всех размерах, без "мигания" из старой вёрстки */
@media (min-width:480px) {
    .qr-code {
        width: 96px;
        height: 96px;
    }
}

@media (min-width:1000px) {
    .qr-code {
        width: 140px;
        height: 140px;
    }
}

@media (max-width:479px) {
    .qr-code {
        width: 76px;
        height: 76px;
    }
}

/* =========================================================
   SLICK SLIDER (библиотека — без изменений)
   ========================================================= */
.slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list,
.slick-slider {
    position: relative;
    display: block
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    transform: translateZ(0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ""
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

@charset "UTF-8";
.slick-loading .slick-list {
    background: #fff url(/assets/images/ajax-loader.gif) 50% no-repeat
}

@font-face {
    font-family: slick;
    font-weight: 400;
    font-style: normal;
    src: url(/fonts/slick.eot);
    src: url(/fonts/slick.eot?#iefix) format("embedded-opentype"), url(/fonts/slick.woff) format("woff"), url(/fonts/slick.ttf) format("truetype"), url(/assets/images/slick.svg#slick) format("svg")
}

.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translateY(-50%);
    cursor: pointer;
    border: none
}

.slick-next,
.slick-next:focus,
.slick-next:hover,
.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
    color: transparent;
    outline: none;
    background: transparent
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before,
.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: var(--c-accent);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: "←"
}

[dir=rtl] .slick-prev:before {
    content: "→"
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: "→"
}

[dir=rtl] .slick-next:before {
    content: "←"
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0
}

.slick-dots li,
.slick-dots li button {
    width: 20px;
    height: 20px;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 5px;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity: 1
}

.slick-dots li button:before {
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #000
}

/* =========================================================
   LIGHTBOX2 (библиотека — без изменений)
   ========================================================= */
.lb-loader,
.lightbox {
    text-align: center;
    line-height: 0;
    position: absolute;
    left: 0
}

body.lb-disable-scrolling {
    overflow: hidden
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #000;
    filter: alpha(Opacity=80);
    opacity: .8;
    display: none
}

.lightbox {
    width: 100%;
    z-index: 10000;
    font-weight: 400;
    outline: 0
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;
    border: 4px solid #fff
}

.lightbox a img {
    border: none
}

.lb-outerContainer {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
    background-color: #fff
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both
}

.lb-loader {
    top: 43%;
    height: 25%;
    width: 100%
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(/assets/images/loading.gif) no-repeat
}

.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10
}

.lb-container>.nav {
    left: 0
}

.lb-nav a {
    outline: 0;
    background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)
}

.lb-next,
.lb-prev {
    height: 100%;
    cursor: pointer;
    display: block
}

.lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(/assets/images/prev.png) left 48% no-repeat;
    filter: alpha(Opacity=0);
    opacity: 0;
    transition: opacity .6s
}

.lb-nav a.lb-prev:hover {
    filter: alpha(Opacity=100);
    opacity: 1
}

.lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(/assets/images/next.png) right 48% no-repeat;
    filter: alpha(Opacity=0);
    opacity: 0;
    transition: opacity .6s
}

.lb-nav a.lb-next:hover {
    filter: alpha(Opacity=100);
    opacity: 1
}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both
}

.lb-data {
    padding: 0 4px;
    color: #ccc
}

.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: 700;
    line-height: 1em
}

.lb-data .lb-caption a {
    color: #4ae
}

.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(/assets/images/close.png) 100% 0 no-repeat;
    text-align: right;
    outline: 0;
    filter: alpha(Opacity=70);
    opacity: .7;
    transition: opacity .2s
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: alpha(Opacity=100);
    opacity: 1
}
