:root {
    --color-text: #313131;
    --color-dark: #1f1f1f;
    --color-accent: #f54932;
    --color-yellow: #fbce51;
    --color-blue: #3057a2;
    --color-border: #d0d0d0;
    --color-muted: #d6d6d6;
    --color-paper: #e9ded4;
    --font-text: "Golos Text", sans-serif;
    --font-display: "Merriweather", serif;
    --container: 1222px;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-text);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    overflow-x: hidden;
}

.page--loading {
    overflow: hidden;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: -ms-grid;
    display: grid;
    place-items: center;
    color: var(--color-text);
    background-color: var(--color-paper);
    -webkit-transition: opacity 0.45s ease, visibility 0.45s ease;
    -o-transition: opacity 0.45s ease, visibility 0.45s ease;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
}

.preloader__spinner {
    width: 56px;
    height: 56px;
    border: 4px solid rgba(49, 49, 49, 0.18);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    -webkit-animation: preloader-spin 0.8s linear infinite;
            animation: preloader-spin 0.8s linear infinite;
}

.preloader__text {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
}

@-webkit-keyframes preloader-spin {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes preloader-spin {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .preloader__spinner {
        -webkit-animation: none;
                animation: none;
    }
}

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

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

button {
    border: 0;
    padding: 0;
    font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
    margin: 0;
}

ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 0;
    min-height: 72px;
    padding: 14px 48px;
    border: 1px solid var(--color-dark);
    border-radius: 66px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    -webkit-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    -o-transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button--dark {
    color: #ffffff;
    background-color: var(--color-dark);
}

.button--dark:hover {
    color: var(--color-dark);
    border-color: var(--color-yellow);
    background-color: var(--color-yellow);
}

.button--light {
    color: var(--color-dark);
    background-color: transparent;
}

.button--light:hover {
    color: #ffffff;
    background-color: var(--color-dark);
}

.section-title,
.section-heading {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--color-text);
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.section-title {
    font-size: 36px;
    line-height: 1.35;
}

.section-title__accent {
    font-weight: 700;
    color: var(--color-accent);
}

.section-heading {
    font-size: 54px;
    line-height: 1.2;
}

.hero {
    position: relative;
    padding: 26px 0 132px;
    overflow: hidden;
}

.hero__scene--container {
    position: absolute;
    width: 1624px;
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 3;
}

.hero__scene {
    --scene-scale: 1;

    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(var(--scene-scale));
        -ms-transform: scale(var(--scene-scale));
            transform: scale(var(--scene-scale));
    -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
            transform-origin: right bottom;
    pointer-events: none;
}

.hero__color-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: var(--color-paper);
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.hero__texture {
    position: absolute;
    inset: 0;
    z-index: 4;
    background-image: url("../img/hero-bg--bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: color-burn;
    pointer-events: none;
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.hero__circle {
    position: absolute;
    top: -44px;
    right: 150px;
    z-index: 2;
    width: 660px;
    height: 660px;
}

.hero__circle-base,
.hero__circle-text,
.hero__city,
.hero__piece {
    position: absolute;
    display: block;
    max-width: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.hero__circle-base {
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__circle-text {
    top: 13px;
    left: 13px;
    width: 634px;
    height: 634px;
    -webkit-animation: hero-circle-spin 24s linear infinite;
            animation: hero-circle-spin 24s linear infinite;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    mix-blend-mode: overlay;
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
            transform: rotate(15deg);
}

.hero__city {
    right: 0;
    bottom: -23px;
    z-index: 3;
    width: 1624px;
}

.hero__piece {
    height: auto;
}

.hero__piece--rook-left {
    bottom: 170px;
    right: 646px;
    z-index: 2;
    width: 104px;
    -webkit-animation: hero-rook-rise-left 900ms ease-out 250ms both;
            animation: hero-rook-rise-left 900ms ease-out 250ms both;
}

.hero__piece--rook-right {
    bottom: 276px;
    right: 293px;
    z-index: 2;
    width: 113px;
    -webkit-animation: hero-rook-rise-right 900ms ease-out 420ms both;
            animation: hero-rook-rise-right 900ms ease-out 420ms both;
}

.hero__piece--horse {
    right: 473px;
    bottom: -39px;
    z-index: 5;
    width: 154px;
    -webkit-animation: hero-horse-drop 800ms cubic-bezier(0.22, 1, 0.36, 1) 650ms both;
            animation: hero-horse-drop 800ms cubic-bezier(0.22, 1, 0.36, 1) 650ms both;
}

.hero__piece--pawn {
    right: 162px;
    bottom: 19px;
    z-index: 5;
    width: 83px;
    -webkit-animation: hero-pawn-slide 950ms cubic-bezier(0.22, 1, 0.36, 1) 800ms both;
            animation: hero-pawn-slide 950ms cubic-bezier(0.22, 1, 0.36, 1) 800ms both;
}

.page:not(.page--ready) .hero__circle-text,
.page:not(.page--ready) .hero__piece {
    -webkit-animation: none;
            animation: none;
}

.page:not(.page--ready) .hero__piece {
    opacity: 0;
}

.hero__container {
    position: relative;
    z-index: 5;
}

@-webkit-keyframes hero-circle-spin {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes hero-circle-spin {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@-webkit-keyframes hero-rook-rise-left {
    from {
        opacity: 0;
        -webkit-transform: translateY(90px) rotate(-6deg);
                transform: translateY(90px) rotate(-6deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0) rotate(-6deg);
                transform: translateY(0) rotate(-6deg);
    }
}

@keyframes hero-rook-rise-left {
    from {
        opacity: 0;
        -webkit-transform: translateY(90px) rotate(-6deg);
                transform: translateY(90px) rotate(-6deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0) rotate(-6deg);
                transform: translateY(0) rotate(-6deg);
    }
}

@-webkit-keyframes hero-rook-rise-right {
    from {
        opacity: 0;
        -webkit-transform: translateY(90px) rotate(8deg);
                transform: translateY(90px) rotate(8deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0) rotate(8deg);
                transform: translateY(0) rotate(8deg);
    }
}

@keyframes hero-rook-rise-right {
    from {
        opacity: 0;
        -webkit-transform: translateY(90px) rotate(8deg);
                transform: translateY(90px) rotate(8deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0) rotate(8deg);
                transform: translateY(0) rotate(8deg);
    }
}

@-webkit-keyframes hero-horse-drop {
    from {
        opacity: 0;
        -webkit-transform: translateY(-140px) scale(0.96) rotate(-11deg);
                transform: translateY(-140px) scale(0.96) rotate(-11deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1) rotate(-11deg);
                transform: translateY(0) scale(1) rotate(-11deg);
    }
}

@keyframes hero-horse-drop {
    from {
        opacity: 0;
        -webkit-transform: translateY(-140px) scale(0.96) rotate(-11deg);
                transform: translateY(-140px) scale(0.96) rotate(-11deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1) rotate(-11deg);
                transform: translateY(0) scale(1) rotate(-11deg);
    }
}

@-webkit-keyframes hero-pawn-slide {
    from {
        opacity: 0;
        -webkit-transform: translateX(120px);
                transform: translateX(120px);
    }

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

@keyframes hero-pawn-slide {
    from {
        opacity: 0;
        -webkit-transform: translateX(120px);
                transform: translateX(120px);
    }

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

@-webkit-keyframes stages-plane-in {
    from {
        opacity: 0;
        -webkit-transform: translateX(180px) rotate(-15deg);
                transform: translateX(180px) rotate(-15deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(-15deg);
                transform: translateX(0) rotate(-15deg);
    }
}

@keyframes stages-plane-in {
    from {
        opacity: 0;
        -webkit-transform: translateX(180px) rotate(-15deg);
                transform: translateX(180px) rotate(-15deg);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(-15deg);
                transform: translateX(0) rotate(-15deg);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero__circle-text,
    .hero__piece,
    .stages.is-visible .stages__item--airport::after {
        -webkit-animation: none;
                animation: none;
    }

    .stages__item--airport::after {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(-15deg);
            -ms-transform: translateX(0) rotate(-15deg);
                transform: translateX(0) rotate(-15deg);
    }
}

.hero__logo {
    display: block;
    width: 245px;
    margin-bottom: 62px;
}

.hero__content {
    width: min(100%, 542px);
}

.hero__title {
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text);
    text-transform: uppercase;
}

.hero__title-line {
    display: block;
    text-align: center;
}

.hero__lead {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
}

.hero__actions {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hero__button {
    width: 100%;
}

.ticker {
    width: 100%;
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    background-color: var(--color-accent);
}

.ticker__track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    will-change: transform;
}

.ticker__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-right: 12px;
}

@media (prefers-reduced-motion: reduce) {
    .ticker__track {
        -webkit-transform: none !important;
            -ms-transform: none !important;
                transform: none !important;
        will-change: auto;
    }
}

.main {
    overflow: hidden;
    padding: 80px 0 140px;
}


.support__intro,
.support__session {
    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;
}
.support__intro {
    gap: 64px;
}
.support__session {
    gap: 90px;
}

.support__title {
    width: min(100%, 764px);
}

.support__title-part {
    display: inline;
}

.support__intro-image {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 394px;
            flex: 0 0 394px;
    aspect-ratio: 394 / 250;
    isolation: isolate;
    overflow: hidden;
}

.support__intro-base {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #fff;
}

.support__intro-paper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 3;
    width: 807px;
    min-width: 807px;
    height: 370px;
    -o-object-fit: cover;
       object-fit: cover;
    mix-blend-mode: color-burn;
    opacity: 0.78;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.support__intro-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    border-radius: 0;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='394' height='250' viewBox='0 0 394 250' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='197' cy='125' rx='197' ry='125' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='394' height='250' viewBox='0 0 394 250' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='197' cy='125' rx='197' ry='125' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-mode: alpha;
    mask-mode: alpha;
}

.support__intro-mask::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/chessLecture/chessLecture--img.webp") center -44px / cover no-repeat;
    -webkit-animation: support-intro-photo-scale 4.2s ease-in-out infinite;
            animation: support-intro-photo-scale 4.2s ease-in-out infinite;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    will-change: transform;
}

.support__intro:not(.is-background-ready) .support__intro-mask::before {
    background-image: none;
}

@-webkit-keyframes support-intro-photo-scale {
    0%,
    100% {
        -webkit-transform: scale(1.03);
                transform: scale(1.03);
    }

    50% {
        -webkit-transform: scale(1.14);
                transform: scale(1.14);
    }
}

@keyframes support-intro-photo-scale {
    0%,
    100% {
        -webkit-transform: scale(1.03);
                transform: scale(1.03);
    }

    50% {
        -webkit-transform: scale(1.14);
                transform: scale(1.14);
    }
}

.support__session {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 64px;
}

.support__session-image {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 406px;
            flex: 0 0 406px;
    aspect-ratio: 406 / 438;
    overflow: visible;
}

.support__session-layer {
    position: absolute;
    display: block;
    max-width: none;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.support__session-layer--bg {
    inset: 0;
    z-index: 1;
}

.support__session-layer--banknote {
    top: -16px;
    right: -46px;
    z-index: 2;
    height: 241px;
    width: 122px;
}

.support__session-layer--men-bg {
    top: -66px;
    left: -50px;
    z-index: 3;
    width: 529px;
    -webkit-animation: session-men-bg-shake 5.6s ease-in-out infinite;
            animation: session-men-bg-shake 5.6s ease-in-out infinite;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
}

.support__session-layer--men {
    top: 50px;
    left: 53px;
    z-index: 4;
    width: 339px;
}

.support__session-layer--horse {
    left: -38px;
    bottom: -50px;
    z-index: 5;
    width: 248px;
    -webkit-animation: session-horse-shake 5.6s ease-in-out infinite;
            animation: session-horse-shake 5.6s ease-in-out infinite;
    -webkit-transform-origin: 50% 80%;
        -ms-transform-origin: 50% 80%;
            transform-origin: 50% 80%;
}

.support__session-layer--hand {
    right: -4px;
    bottom: -118px;
    z-index: 6;
    width: 174px;
    -webkit-transform: rotate(40deg);
        -ms-transform: rotate(40deg);
            transform: rotate(40deg);
    -webkit-animation: session-hand-hit 5.6s ease-in-out infinite;
            animation: session-hand-hit 5.6s ease-in-out infinite;
}

.support__session-layer--texture {
    inset: 0;
    z-index: 7;
    width: 528px;
    height: 609px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    mix-blend-mode: color-burn;
    pointer-events: none;
}
.support__session-layer--bg-color {
    background-color: #fff;
    width: 529px;
    height: 610px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.support__session:not(.is-animated) .support__session-layer--men-bg,
.support__session:not(.is-animated) .support__session-layer--horse,
.support__session:not(.is-animated) .support__session-layer--hand {
    -webkit-animation: none;
            animation: none;
}

@-webkit-keyframes session-hand-hit {
    0%,
    10%,
    24%,
    100% {
        -webkit-transform: translate3d(0, 0, 0) rotate(40deg);
                transform: translate3d(0, 0, 0) rotate(40deg);
    }

    12% {
        -webkit-transform: translate3d(10px, 12px, 0) rotate(22deg);
                transform: translate3d(10px, 12px, 0) rotate(22deg);
    }

    16% {
        -webkit-transform: translate3d(-12px, -14px, 0) rotate(35deg);
                transform: translate3d(-12px, -14px, 0) rotate(35deg);
    }

    19% {
        -webkit-transform: translate3d(-5px, -7px, 0) rotate(38deg);
                transform: translate3d(-5px, -7px, 0) rotate(38deg);
    }
}

@keyframes session-hand-hit {
    0%,
    10%,
    24%,
    100% {
        -webkit-transform: translate3d(0, 0, 0) rotate(40deg);
                transform: translate3d(0, 0, 0) rotate(40deg);
    }

    12% {
        -webkit-transform: translate3d(10px, 12px, 0) rotate(22deg);
                transform: translate3d(10px, 12px, 0) rotate(22deg);
    }

    16% {
        -webkit-transform: translate3d(-12px, -14px, 0) rotate(35deg);
                transform: translate3d(-12px, -14px, 0) rotate(35deg);
    }

    19% {
        -webkit-transform: translate3d(-5px, -7px, 0) rotate(38deg);
                transform: translate3d(-5px, -7px, 0) rotate(38deg);
    }
}

@-webkit-keyframes session-horse-shake {
    0%,
    15%,
    33%,
    100% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
                transform: translate3d(0, 0, 0) rotate(0deg);
    }

    18% {
        -webkit-transform: translate3d(-4px, 1px, 0) rotate(-4deg);
                transform: translate3d(-4px, 1px, 0) rotate(-4deg);
    }

    21% {
        -webkit-transform: translate3d(5px, -2px, 0) rotate(4deg);
                transform: translate3d(5px, -2px, 0) rotate(4deg);
    }

    24% {
        -webkit-transform: translate3d(-3px, 1px, 0) rotate(-3deg);
                transform: translate3d(-3px, 1px, 0) rotate(-3deg);
    }

    27% {
        -webkit-transform: translate3d(3px, 0, 0) rotate(2deg);
                transform: translate3d(3px, 0, 0) rotate(2deg);
    }
}

@keyframes session-horse-shake {
    0%,
    15%,
    33%,
    100% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
                transform: translate3d(0, 0, 0) rotate(0deg);
    }

    18% {
        -webkit-transform: translate3d(-4px, 1px, 0) rotate(-4deg);
                transform: translate3d(-4px, 1px, 0) rotate(-4deg);
    }

    21% {
        -webkit-transform: translate3d(5px, -2px, 0) rotate(4deg);
                transform: translate3d(5px, -2px, 0) rotate(4deg);
    }

    24% {
        -webkit-transform: translate3d(-3px, 1px, 0) rotate(-3deg);
                transform: translate3d(-3px, 1px, 0) rotate(-3deg);
    }

    27% {
        -webkit-transform: translate3d(3px, 0, 0) rotate(2deg);
                transform: translate3d(3px, 0, 0) rotate(2deg);
    }
}

@-webkit-keyframes session-men-bg-shake {
    0%,
    30%,
    47%,
    100% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
                transform: translate3d(0, 0, 0) rotate(0deg);
    }

    33% {
        -webkit-transform: translate3d(-3px, 2px, 0) rotate(-1.5deg);
                transform: translate3d(-3px, 2px, 0) rotate(-1.5deg);
    }

    36% {
        -webkit-transform: translate3d(4px, -2px, 0) rotate(1.5deg);
                transform: translate3d(4px, -2px, 0) rotate(1.5deg);
    }

    39% {
        -webkit-transform: translate3d(-2px, 1px, 0) rotate(-1deg);
                transform: translate3d(-2px, 1px, 0) rotate(-1deg);
    }

    42% {
        -webkit-transform: translate3d(2px, 0, 0) rotate(0.6deg);
                transform: translate3d(2px, 0, 0) rotate(0.6deg);
    }
}

@keyframes session-men-bg-shake {
    0%,
    30%,
    47%,
    100% {
        -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
                transform: translate3d(0, 0, 0) rotate(0deg);
    }

    33% {
        -webkit-transform: translate3d(-3px, 2px, 0) rotate(-1.5deg);
                transform: translate3d(-3px, 2px, 0) rotate(-1.5deg);
    }

    36% {
        -webkit-transform: translate3d(4px, -2px, 0) rotate(1.5deg);
                transform: translate3d(4px, -2px, 0) rotate(1.5deg);
    }

    39% {
        -webkit-transform: translate3d(-2px, 1px, 0) rotate(-1deg);
                transform: translate3d(-2px, 1px, 0) rotate(-1deg);
    }

    42% {
        -webkit-transform: translate3d(2px, 0, 0) rotate(0.6deg);
                transform: translate3d(2px, 0, 0) rotate(0.6deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .support__intro-mask::before,
    .support__session-layer--men-bg,
    .support__session-layer--horse,
    .support__session-layer--hand {
        -webkit-animation: none;
                animation: none;
    }
}
.support__details {
    width: min(100%, 704px);
}

.support__details-title {
    margin-bottom: 60px;
}

.support__table {
    width: 100%;
}

.support__table-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 306px 1fr;
    grid-template-columns: 306px 1fr;
    border-bottom: 2px solid var(--color-border);
}

.support__table-row:last-child {
    border-bottom: 0;
}

.support__table-term,
.support__table-value {
    padding: 16px;
    line-height: 1.2;
}

.support__table-term {
    padding-left: 0;
    border-right: 2px solid var(--color-border);
    opacity: 0.7;
}

.support__table-value {
    font-weight: 600;
}

.support__old-price {
    text-decoration: line-through;
    -webkit-text-decoration-color: var(--color-accent);
            text-decoration-color: var(--color-accent);
    text-decoration-thickness: 2px;
}

.support__appeal {
    display: inline-block;
    margin-top: 48px;
    line-height: 1.2;
    color: var(--color-blue);
}

.stages {
    position: relative;
    padding: 200px 0;
}

.stages__header {
    max-width: 806px;
    margin-bottom: 54px;
}

.stages__subtitle {
    display: inline-block;
    width: min(100%, 280px);
    margin-left: 14px;
    font-family: var(--font-text);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-blue);
    text-transform: none;
}

.stages__viewport {
    overflow: visible;
}

.stages__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(112px, auto);
    gap: 20px;
}

.stages__group {
    display: contents;
}

.stages__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    min-height: 112px;
    padding: 20px;
    background: url("../img/steps.webp") center / cover no-repeat;
}

.stages:not(.is-background-ready) .stages__item {
    background-image: none;
}

.stages__item--agriculture {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row-span: 2;
    grid-row: span 2;
}

.stages__item--airport {
    position: relative;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
}

.stages__item--airport::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -51px;
    width: 377px;
    /* width: min(400px, 54%); */
    height: 140px;
    background: url("../img/plane.webp") right center / contain no-repeat;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(180px) rotate(-15deg);
        -ms-transform: translateX(180px) rotate(-15deg);
            transform: translateX(180px) rotate(-15deg);
}

.stages:not(.is-background-ready) .stages__item--airport::after {
    background-image: none;
}

.stages.is-visible .stages__item--airport::after {
    -webkit-animation: stages-plane-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
            animation: stages-plane-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
}

.stages__item--airport .stages__text {
    max-width: 446px;
}

.stages__number {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36px;
            flex: 0 0 36px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 600;
    line-height: 1;
    background-color: #ffffff;
}

.stages__text {
    font-weight: 500;
    line-height: 1.2;
}

.stages__controls {
    display: none;
}

.participants {
    position: relative;
}

.participants__header {
    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;
    gap: 24px;
    margin-bottom: 60px;
}

.participants__controls {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
}

.participants__counter {
    min-width: 48px;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
}

.participants__viewport {
    overflow: hidden;
}

.participants__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.participants__card[hidden] {
    display: none;
}

.participants__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 3);
            flex: 0 0 calc((100% - 40px) / 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}

.participants__photo {
    position: relative;
    width: min(100%, 320px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}

.participants__photo::after {
    content: "";
    position: absolute;
    top: -50px;
    left: -295px;
    width: 806px;
    height: 403px;
    background: url("../img/back-men.jpeg") center / contain no-repeat;
    mix-blend-mode: color;
    pointer-events: none;
}

.participants:not(.is-background-ready) .participants__photo::after {
    background-image: none;
}

.participants__photo img {
    position: relative;
    z-index: 1;
    width: 293px;
    margin: 21px auto 0;
}

.participants__name {
    margin-top: 28px;
    margin-bottom: 6px;
    font-family: var(--font-text);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

.participants__status {
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0.6;
}

.participants__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 35px;
    padding: 7px 12px;
    border: 1px solid var(--color-blue);
    border-radius: 62px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-blue);
    -webkit-transition: color 0.25s ease, background-color 0.25s ease;
    -o-transition: color 0.25s ease, background-color 0.25s ease;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.participants__link:hover {
    color: #ffffff;
    background-color: var(--color-blue);
}

.participants__control,
.stages__control {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    background-color: var(--color-text);
    cursor: pointer;
}

.participants__control:not(.is-disabled):hover,
.stages__control:not(.is-disabled):hover {
    background-color: var(--color-yellow);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.participants__control:not(.is-disabled):hover circle,
.stages__control:not(.is-disabled):hover circle {
    fill: var(--color-yellow);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.participants__control--prev .participants__control-icon,
.stages__control--prev .stages__control-icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.participants__control.is-disabled,
.stages__control.is-disabled {
    background-color: var(--color-muted);
    cursor: not-allowed;
}

.participants__control.is-disabled circle,
.stages__control.is-disabled circle {
    fill: var(--color-muted);
}

.footer {
    padding: 40px 0 72px;
    background-color: var(--color-paper);
}

.footer__text {
    font-size: 16px;
    line-height: 1.2;
    opacity: 0.6;
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {
    .hero__content {
        zoom: 0.85;
    }

    .section-title {
        font-size: 30px;
    }

    .stages {
        padding: 120px 0;
    }

    .stages__item--airport::after {
        right: -26px;
        top: -123px;
        width: 320px;
    }

    .participants__card {
        -ms-flex-preferred-size: calc((100% - 20px) / 2);
            flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 992px) {
    .button {
        padding: 18px 20px;
        min-height: 47px;
        line-height: 1;
    }
    .hero__title {
        font-size: 50px;
    }

    .hero__actions {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .hero__color-bg,
    .hero__texture {
        top: 0;
    }
    .hero__scene--container {
        width: 875px;

    }
    .hero__circle {
        width: 298px;
        height: 298px;
        top: auto;
        bottom: 67px;
        right: 144px;
    }

    .hero__circle-text {
        height: 286px;
        width: 286px;
        top: 6px;
        left: 6px;
    }

    .hero__piece--rook-left {
        width: 48px;
        bottom: 114px;
        right: 356px;
    }

    .hero__piece--rook-right {
        width: 47px;
        bottom: 167px;
        right: 189px;
    }

    .hero__city {
        width: 875px;
        right: 0;
        bottom: -11px;
    }

    .hero__piece--horse {
        width: 77px;
        right: 239px;
        bottom: -15px;
    }

    .hero__piece--pawn {
        display: none;
    }

    .button--light {
        border-color: #ffffff;
        background-color: #ffffff;
    }

    .support__session {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin-top: 82px;
    }

    .support__intro {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support__title {
        display: contents;
    }

    .support__title-part {
        display: block;
    }

    .support__title-part--lead {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .support__title-part--lecture {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }

    .support__intro-image {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        -ms-grid-column-align: center;
            justify-self: center;
    }

    .support__intro-image {
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
        width: 100%;
        max-width: 474px;
        margin: 0 auto;
    }
    
    .support__session-image {
        margin: 0 auto;
        min-height: 438px;
    }
    .support__intro-image {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 335px;
                flex: 0 0 335px;
        aspect-ratio: 335 / 213;
        /* max-width: 335px; */
    }
    .support__details {
        margin: 0 auto;
    }
    .stages__title {
        margin-bottom: 0;
    }

    .stages__header {
        margin-bottom: 0;
    }

    .stages__viewport {
        position: relative;
        overflow: hidden;
        padding-top: 148px;
    }

    .stages__viewport::before {
        content: "";
        position: absolute;
        top: 55px;
        right: -3px;
        z-index: 2;
        width: 317px;
        height: 124px;
        background: url("../img/plane.webp") right center / contain no-repeat;
        pointer-events: none;
        -webkit-transform: rotate(-19deg);
            -ms-transform: rotate(-19deg);
                transform: rotate(-19deg);
    }

    .stages:not(.is-background-ready) .stages__viewport::before {
        background-image: none;
    }

    .stages__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0;
        -webkit-transition: -webkit-transform 0.35s ease;
        transition: -webkit-transform 0.35s ease;
        -o-transition: transform 0.35s ease;
        transition: transform 0.35s ease;
        transition: transform 0.35s ease, -webkit-transform 0.35s ease;
        will-change: transform;
    }

    .stages__group {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 28px;
        min-height: 300px;
        padding: 62px 20px 20px;
        background: url("../img/steps.webp") center / cover no-repeat;
    }

    .stages:not(.is-background-ready) .stages__group {
        background-image: none;
    }

    .stages__item {
        min-height: 0;
        padding: 0;
        background: none;
    }

    .stages__item--airport::after {
        display: none;
    }

    .stages__controls {
        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;
        gap: 16px;
        margin-top: 28px;
    }

    .stages__pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 6px;
    }

    .stages__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #d9d9d9;
        cursor: pointer;
    }

    .stages__dot.is-active {
        background-color: var(--color-text);
    }

}

@media (max-width: 768px) {
    .container {
        width: min(100% - 40px, 720px);
    }

    .hero {
        padding: 26px 0 291px;
        background-color: var(--color-paper);
    }
    .hero__scene--container {
        left: auto;
        right: -100px;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }
    .section-title {
        font-size: 28px;
    }

    .section-heading {
        font-size: 36px;
    }

    .ticker {
        padding: 10px 0;
        font-size: 16px;
    }

    .main {
        padding: 48px 0 100px;
    }

    .support__details-title {
        margin-bottom: 44px;
    }

    .support__table-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding: 16px 0;
    }
    .support__table-row:nth-child(1) {
        padding-top: 0;
    }
    .support__table-row:last-child {
        padding-bottom: 0;
    }
    .support__appeal {
        margin-top: 40px;
    }
    .support__table-term,
    .support__table-value {
        padding: 0;
        border-right: 0;
    }

    .support__table-term {
        margin-bottom: 12px;
    }

    .stages__title {
        margin-bottom: 0;
    }

    .stages__subtitle {
        display: block;
        margin: 12px 0 0;
    }

    .participants__header {
        display: block;
        margin-bottom: 40px;
    }

    .participants__controls {
        position: static;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-top: 40px;
    }

    .participants__card {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        width: min(100% - 40px, 540px);
    }

    .hero__logo {
        width: 213px;
        margin-bottom: 40px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__lead {
        text-align: left;
    }

    .hero__button {
        min-height: 47px;
        padding: 11px 16px;
    }
    .support__appeal,
    .stages__subtitle,
    .stages__text {
        font-size: 18px;
    }
    .support__session-image {
            -webkit-box-flex: 0;
                -ms-flex: 0 0 287px;
                    flex: 0 0 287px;
        aspect-ratio: 287 / 309;
            min-height: 309px;
    }
    .support__session-layer--bg {
        width: 100%;
    }
    .support__session-layer--banknote {
        top: -12px;
        right: -33px;
        height: 170px;
        width: 86px;
    }
    .support__session-layer--men-bg {
        top: -47px;
        left: -35px;
        width: 374px;
    }
    .support__session-layer--men {
        top: 35px;
    left: 38px;
    width: 240px;
    }
    .support__session-layer--horse {
        left: -27px;
    bottom: -36px;
    width: 176px;
    }
    .support__session-layer--hand {
        right: -3px;
    bottom: -84px;
    width: 123px;
    }
    .support__session-layer--bg-color {
        width: 375px;
        height: 421px;
    }
    .support__session-layer--texture {
        width: 374px;
        height: 420px;
    }
    .participants__control, .stages__control,
    .participants__control svg, .stages__control svg {
        width: 36px;
        height: 36px;
    }
    .footer {
        padding: 40px 0 60px;
    }
}
