@charset "UTF-8";
/* VENDOR */
/* GLOBAL */
@keyframes fade-in-out {
    0% {
        opacity: 0;
        transform: translateX(-100%), rotate(30deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%), rotate(30deg);
    }
}
body, html {
    height: 100%;
    min-height: 100%;
    min-width: 320px;
    scroll-behavior: smooth;
    position: relative;
}

body {
    padding: 0px;
    margin: 0px;
    color: #fff;
    line-height: 1.66;
    font-size: 18px;
    font-family: "Gilroy", Arial, Helvetica, sans-serif;
    background: #284045;
    font-weight: 500;
    overflow-y: auto;
    scrollbar-width: thin;
}

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

*,
*:before,
*:after {
    box-sizing: border-box;
    touch-action: manipulation;
}

a:not(.button) {
    text-decoration: underline;
    color: inherit;
}

a:not(.button):hover {
    text-decoration: none;
}

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

b {
    font-weight: 700;
}

p {
    margin: 0 0 0.5em;
}

p:last-child {
    margin-bottom: 0;
}

.center {
    text-align: center;
}

.nowrap {
    white-space: nowrap;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.container {
    max-width: 1475px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

@media (max-width: 1279px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 1023px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}
.wrapper {
    position: relative;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #173C40;
    z-index: 50;
    padding: 33px 0;
    font-size: 14px;
    line-height: 1.42;
}
.header a {
    text-decoration: none;
    transition: color 0.15s ease;
}

@media (hover: hover) {
    .header a:hover {
        color: #C96;
    }
}
.header__container {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
}

.header__logo {
    display: block;
    margin-right: 40px;
    width: 166px;
}
.header__logo img {
    display: block;
    max-width: 100%;
}

.menu__list {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
}
.menu__list li + li {
    margin-left: 28px;
}

.header__phone {
    margin-left: auto;
}

.open-menu {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 0 none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 30px;
    right: 24px;
    display: none;
    font-size: 0px;
    color: transparent;
    z-index: 51;
}

.open-menu span {
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    left: 50%;
    margin-left: -13px;
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: background 0.1s;
}

.open-menu span:before,
.open-menu span:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.open-menu span:before {
    top: -7px;
    transition: top 0.1s linear 0.1s, transform 0.1s linear 0s, border-radius 0.1s linear 0s;
}

.open-menu span:after {
    bottom: -7px;
    transition: bottom 0.1s linear 0.1s, transform 0.1s linear 0s, border-radius 0.1s linear 0s;
}

.open-menu.close-mode span {
    background: none;
}

.open-menu.close-mode span:before {
    top: 0;
    transform: rotate(45deg);
    transition: top 0.1s linear 0s, transform 0.1s linear 0.1s, border-radius 0.1s linear 0.1s;
}

.open-menu.close-mode span:after {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 0.1s linear 0s, transform 0.1s linear 0.1s, transform 0.1s linear 0.1s;
}

@media (max-width: 1279px) {
    .header {
        padding: 72px 0 20px;
        font-size: 18px;
        line-height: 1.2;
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.2s linear;
    }
    .header.opened {
        grid-template-rows: 1fr;
        border-radius: 0 0 24px 24px;
    }
    .header__container {
        display: block;
        overflow: hidden;
        padding: 0 40px;
        width: 100%;
    }
    .header__logo {
        position: absolute;
        top: 35px;
        left: 24px;
    }
    .open-menu {
        display: block;
    }
    .menu__list {
        display: block;
        padding-top: 20px;
        margin-bottom: 48px;
    }
    .menu__list li + li {
        margin-left: 0;
        margin-top: 32px;
    }
    .header__phone {
        margin-bottom: 28px;
    }
}
.page {
    padding-top: 92px;
    background-color: #284045;
    background-image: -webkit-image-set(url("../images/photos/bg-final-1@1x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/bg-final-1@1x.webp") type("image/webp"));
    background-image: url("../images/photos/bg-final-1@1x.jpg"); /* Fallback */
    background-position: top left;
    background-size: 100% auto;
    position: relative;
}
@media (min-resolution: 2dppx) {
    .page {
        background-image: -webkit-image-set(url("../images/photos/bg-final-1@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/bg-final-1@2x.webp") type("image/webp"));
        background-image: url("../images/photos/bg-final-1@2x.jpg");
    }
}

.screen {
    position: relative;
}

.footer {
    background: #184145;
    position: relative;
}

.footer__top {
    background: #173C40;
    padding: 35px 0;
    font-size: 14px;
    line-height: 1.35;
}
.footer__top a {
    text-decoration: none;
}
.footer__top b {
    font-weight: 600;
    font-size: 16px;
}

.footer__container {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
}

.footer__logo,
.footer__contacts {
    margin-right: 60px;
}

.footer__consult a {
    text-decoration: underline;
}

.footer__soc {
    margin-left: auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.footer__soc p {
    margin: 0 15px 0 0;
}

.footer__tg {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: url(../images/icons/icon-tg.svg) no-repeat center center/25px 25px #fff;
    transition: background-color 0.15s ease;
}

@media (hover: hover) {
    .footer__tg:hover {
        background-color: rgba(255, 255, 255, 0.9);
    }
}
.footer__subscribe {
    position: relative;
    margin-left: 30px;
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    padding: 10px 20px 10px 45px;
    border-radius: 12px;
    white-space: nowrap;
    transition: background-color 0.15s ease;
}
.footer__subscribe::before {
    position: absolute;
    top: 12px;
    left: 18px;
    width: 17px;
    height: 11px;
    background: url(../images/icons/icon-subscribe.svg) no-repeat center transparent;
    content: "";
}

@media (hover: hover) {
    .footer__subscribe:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}
.footer__disclaimer {
    padding: 35px 0 50px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}
.footer__disclaimer p {
    margin-bottom: 1.5em;
}
.footer__disclaimer p:last-child {
    margin-bottom: 0;
}
.footer__disclaimer p.footer__disclaimer-text--large {
    font-size: 16px;
}

@media (max-width: 1279px) {
    .footer__top {
        padding: 32px 0;
    }
    .footer__container {
        padding-top: 60px;
        position: relative;
        justify-content: space-between;
        flex-flow: row wrap;
        gap: 24px 10px;
    }
    .footer__logo {
        margin: 0;
        position: absolute;
        top: 0;
        left: 24px;
    }
    .footer__contacts {
        margin-right: 0;
        flex: 1 1 calc(100% - 190px);
    }
    .footer__soc {
        margin-left: 0;
    }
    .footer__soc p {
        display: none;
    }
    .footer__subscribe {
        margin-left: 0;
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-Bold.woff2") format("woff2"), url("../fonts/gilroy/Gilroy-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/gilroy/Gilroy-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-Medium.woff2") format("woff2"), url("../fonts/gilroy/Gilroy-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-Regular.woff2") format("woff2"), url("../fonts/gilroy/Gilroy-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "PSB Prosperity Sans";
    src: url("../fonts/PSB-prosperity-sans/PSB%20Prosperity%20Sans-Regular.woff2") format("woff2"), url("../fonts/PSB-prosperity-sans/PSB%20Prosperity%20Sans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "PSB Prosperity Sans";
    src: url("../fonts/PSB-prosperity-sans/PSB%20Prosperity%20Sans-Bold.woff2") format("woff2"), url("../fonts/PSB-prosperity-sans/PSB%20Prosperity%20Sans-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
}

form {
    margin: 0;
    padding: 0;
}

button,
input,
select,
textarea {
    margin: 0;
    font-size: 100%;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

label,
select,
button,
input[type=button],
input[type=reset],
input[type=submit],
input[type=radio],
input[type=checkbox] {
    cursor: pointer;
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

input::-ms-clear {
    display: none;
}

/* ELEMENTS */
.button {
    margin: 0;
    padding: 18px 16px 14px;
    display: inline-block;
    max-width: 100%;
    min-width: 215px;
    font-size: 16px;
    text-decoration: none;
    line-height: 150%;
    text-align: center;
    border: 1px solid #b2804c;
    font-family: "Gilroy", Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 12px;
    white-space: nowrap;
    background: #b2804c;
    color: #fff;
    transition: background-color 0.15s ease;
}
@media (max-width: 1023px) {
    .button {
        font-size: 14px;
    }
}
.button:hover, .button:focus {
    background: #8e663d;
}
.button:active {
    background: #6b4d2d;
}
.button--inverted {
    color: #b2804c;
    background: #fff;
}
.button--inverted:hover, .button--inverted:focus {
    background: #e6e6e6;
}
.button--inverted:active {
    background: #cccccc;
}
.button--transparent {
    padding: 14px 14px 10px;
    font-size: 14px;
    color: #b2804c;
    background: transparent;
}
.button--transparent:hover, .button--transparent:focus {
    color: #8e663d;
    background: transparent;
    border-color: #8e663d;
}
.button--transparent:active {
    color: #6b4d2d;
}

.button--100 {
    width: 100%;
}

.button[disabled] {
    pointer-events: none;
}

/* BLOCKS */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #173C40 url("../images/photos/bg_pattern_top@2x.png") no-repeat center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader__loader {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: inline-block;
    background: url("../images/photos/bg-pattern-effect-full@2x.png") no-repeat center;
    background-size: cover;
}
.preloader__loader::before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, transparent 0%, rgba(23, 60, 64, 0.8) 50%, rgba(23, 60, 64, 0) 99%, rgba(23, 60, 64, 0) 100%);
    box-shadow: 50px 50px 100px 50px rgba(23, 60, 64, 0.8);
    animation: fade-in-out 2s ease infinite;
    content: "";
}
.preloader img {
    width: 100%;
}
.preloader--shown {
    opacity: 1;
    visibility: visible;
}

.start {
    position: relative;
    /*height: fit-content;*/
    /*transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;*/
}
.start--hidden {
    /*height: 0;*/
    /*opacity: 0;
    visibility: hidden;
    pointer-events: none;*/
    display: none;
}
@media (max-width: 1023px) {
    .start__container {
        /*padding-top: 174px;*/
        padding-top: 74px;
        padding-bottom: 64px;
    }
}
@media (max-width: 767px) {
    .start__container {
        padding-top: 44px;
        padding-bottom: 44px;
    }
}
.start__content-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 128px 0 68px;
    /*max-width: 960px;*/
    text-align: center;
    z-index: 5;
}
@media (max-width: 1600px) {
    .start__content-wrapper {
        padding: 80px 0 48px;
    }
}
@media (max-width: 1023px) {
    .start__content-wrapper {
        padding: 10px 0 48px;
    }
}
@media (max-width: 767px) {
    .start__content-wrapper {
        padding: 0 0 30px;
    }
}
.start__title {
    margin: 0 auto 20px;
    max-width: 400px;
    font-family: "PSB Prosperity Sans", Arial, Helvetica, sans-serif;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px;
    color: #b2804c;
}
@media (max-width: 1023px) {
    .start__title {
        margin: 0 auto 12px;
        font-size: 20px;
        letter-spacing: 2px;
    }
}
@media (max-width: 362px) {
    .start__title {
        max-width: 300px;
    }
}
.start__greeting {
    margin: 0 auto 34px;
    font-size: 96px;
    line-height: 87%;
    font-weight: 600;
}
@media (max-width: 1600px) {
    .start__greeting {
        font-size: 72px;
    }
}
@media (max-width: 1023px) {
    .start__greeting {
        margin: 0 auto 16px;
        font-size: 60px;
    }
}
@media (max-width: 767px) {
    .start__greeting {
        margin: 0 auto 16px;
        font-size: 35px;
    }
}
.start__text-wrapper {
    margin: 0 auto 40px;
    max-width: 600px;
}
@media (max-width: 1023px) {
    .start__text-wrapper {
        margin: 0 auto 32px;
    }
}
.start__text {
    margin: 0 auto;
    font-size: 24px;
    line-height: 135%;
    font-weight: 500;
    max-width: 600px;
    text-align: left;
    padding-left: 30px;
}
@media (max-width: 1600px) {
    .start__text {
        font-size: 20px;
    }
}
.start__text_center {
    text-align: center;
    max-width: 650px;
}
@media (max-width: 1023px) {
    .start__text {
        font-size: 16px;
        padding-left: 0;
    }
}
.start__text--selected {
    padding: 0 12px;
    position: relative;
}
.start__text--selected::after {
    content: "";
    position: absolute;
    background: url("../images/photos/bg_text@2x.png") no-repeat;
    width: 100%;
    height: 160%;
    background-size: 100% auto;
    top: -5px;
    left: 0;
    z-index: -1;
}
.start__subtitle {
    font-family: "PSB Prosperity Sans", Arial, Helvetica, sans-serif;
    font-size: 64px;
    line-height: 115%;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 6.4px;
    color: #b2804c;
    max-width: 850px;
    margin: 0 auto;
    padding: 160px 0 62px;
}
@media (max-width: 1600px) {
    .start__subtitle {
        font-size: 54px;
        padding: 120px 0 52px;
    }
}
@media (max-width: 1023px) {
    .start__subtitle {
        font-size: 40px;
        letter-spacing: 2px;
        text-align: left;
        padding: 46px 0 12px;
    }
}
@media (max-width: 767px) {
    .start__subtitle {
        font-size: 28px;
        padding: 30px 0 12px;
    }
}
.start__list-wrapper {
    margin: 0 auto 32px;
    max-width: 620px;
}
.start__list {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    gap: 16px;
    justify-content: center;
}
@media (max-width: 1023px) {
    .start__list {
        grid-template-columns: 100%;
    }
}
.start__li-item {
    margin: 0 auto;
    padding: 24px 16px;
    text-align: center;
    background-color: #F5F3F0;
    border-radius: 24px;
}
@media (max-width: 1023px) {
    .start__li-item {
        max-width: 480px;
    }
}
@media (max-width: 362px) {
    .start__li-item {
        padding: 16px 16px 24px;
        max-width: 300px;
    }
}
.start__li-number {
    margin: 0 auto 16px;
    padding-bottom: 10px;
    display: block;
    max-width: 160px;
    font-family: "PSB Prosperity Sans", Arial, Helvetica, sans-serif;
    font-size: 48px;
    line-height: 100%;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    color: #b2804c;
    border-bottom: 1px solid #D1B494;
}
@media (max-width: 1023px) {
    .start__li-number {
        margin: 0 auto 12px;
        padding-bottom: 6px;
        font-size: 40px;
    }
}
.start__li-text {
    font-size: 16px;
    line-height: 135%;
    font-weight: 500;
    color: #3E3E59;
}
@media (max-width: 1023px) {
    .start__li-text {
        font-size: 14px;
    }
}
.start__text-final {
    font-size: 24px;
    line-height: 120%;
    font-weight: 500;
}
@media (max-width: 1023px) {
    .start__text-final {
        font-size: 20px;
    }
}
.start__button-wrapper {
    margin: 40px auto 50px;
}
@media (max-width: 1023px) {
    .start__button-wrapper {
        margin: 40px auto 0;
    }
}
.start__button {
    width: 100%;
    max-width: 363px;
}
.start__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}
@media (max-width: 1600px) {
    .start__grid {
        max-width: 900px;
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .start__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}
.start__grid_image {
    grid-column: 1/3;
    grid-row: 1/3;
}
@media (max-width: 767px) {
    .start__grid_image {
        grid-column: auto;
        grid-row: auto;
    }
}
.start__grid_image picture {
    display: block;
    width: 100%;
    height: 100%;
}
.start__grid_image picture img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.start__grid_text {
    grid-column: 2/3;
    grid-row: 2/3;
}
@media (max-width: 767px) {
    .start__grid_text {
        grid-column: auto;
        grid-row: auto;
    }
}
.start__image-center {
    max-width: 960px;
    margin: 0 auto;
    padding-bottom: 26px;
}
@media (max-width: 1600px) {
    .start__image-center {
        max-width: 650px;
    }
}
.start__image-center picture {
    width: 100%;
    height: 100%;
}
.start__image-center picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.start__image-center_big {
    max-width: 1170px;
    padding-bottom: 36px;
}
@media (max-width: 1600px) {
    .start__image-center_big {
        max-width: 750px;
    }
}
.start__grid-second {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 40% 40% 30%;
    position: relative;
    padding-bottom: 100px;
}
@media (max-width: 1600px) {
    .start__grid-second {
        max-width: 1000px;
        margin: 0 auto;
    }
}
@media (max-width: 1023px) {
    .start__grid-second {
        padding-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .start__grid-second {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}
.start .start__grid-second_image {
    grid-column: 1/-1;
    grid-row: 1/-1;
    z-index: 1;
    padding-top: 50px;
}
@media (max-width: 767px) {
    .start .start__grid-second_image {
        grid-column: auto;
        grid-row: auto;
    }
}
.start .start__grid-second_image picture,
.start .start__grid-second_image img {
    width: 100%;
    height: 100%;
}
.start .start__grid-second_image img {
    object-fit: contain;
}
.start .start__grid_text-first {
    grid-column: 2/3;
    grid-row: 1/2;
    z-index: 2;
}
@media (max-width: 767px) {
    .start .start__grid_text-first {
        grid-column: auto;
        grid-row: auto;
    }
}
.start .start__grid_text-second {
    grid-column: 1/2;
    grid-row: 3/4;
    z-index: 2;
}
@media (max-width: 767px) {
    .start .start__grid_text-second {
        grid-column: auto;
        grid-row: auto;
    }
}

.screen {
    overflow: hidden;
    background-image: -webkit-image-set(url("../images/photos/bg_pattern_3@1x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/bg_pattern_3@1x.webp") type("image/webp"));
    background-image: url("../images/photos/bg_pattern_3@1x.png"); /* Fallback */
    background-size: 100% auto;
    background-repeat: repeat;
    background-position: top center;
}
@media (min-resolution: 2dppx) {
    .screen {
        background-image: -webkit-image-set(url("../images/photos/bg_pattern_3@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/bg_pattern_3@2x.webp") type("image/webp"));
        background-image: url("../images/photos/bg_pattern_3@2x.png");
    }
}

.game {
    /*height: fit-content;*/
    /*transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;*/
    background-color: #F4ECE0;
    background-image: -webkit-image-set(url("../images/photos/bg_pattern_2@2x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/bg_pattern_2@2x.webp") type("image/webp"));
    background-image: url("../images/photos/bg_pattern_2@2x.png"); /* Fallback */
    background-size: cover;
    background-repeat: repeat;
    background-position: top center;
    text-align: center;
}
.game--hidden {
    /*height: 0;*/
    /*opacity: 0;
    visibility: hidden;
    pointer-events: none;*/
    display: none;
}
.game__container {
    padding: 64px 0px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 1023px) {
    .game__container {
        padding: 40px 0 0;
    }
}
.game__body {
    position: relative;
    margin: 0 auto;
    width: 100%;
    /*max-width: 760px;*/
    /*min-height: 788px;*/
}
@media (max-width: 1023px) {
    .game__body {
        /*min-height: fit-content;*/
    }
}
.game__subtitle {
    margin: 0 auto 24px;
    font-family: "PSB Prosperity Sans", Arial, Helvetica, sans-serif;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px;
    color: #b2804c;
    max-width: 850px;
}
@media (max-width: 1023px) {
    .game__subtitle {
        font-size: 20px;
        letter-spacing: 2px;
    }
}
.game__text {
    margin: 0 auto;
    font-size: 24px;
    line-height: 135%;
    font-weight: 500;
    color: #3E3E59;
    max-width: 700px;
    margin: 0 auto;
}
.game__text--secondary {
    font-size: 20px;
    padding-top: 16px;
    color: rgba(62, 62, 89, 0.8);
}
@media (max-width: 1023px) {
    .game__text {
        font-size: 16px;
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .game__text {
        padding: 0 10px;
    }
}
.game__button-wrapper {
    margin: 32px auto 0;
    width: 100%;
    max-width: 363px;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease, margin 0.3s ease;
}
@media (max-width: 1023px) {
    .game__button-wrapper {
        margin: 16px auto 0;
    }
}
@media (max-width: 400px) {
    .game__button-wrapper {
        max-width: 300px;
    }
}
.game__button {
    width: 100%;
    cursor: pointer;
    z-index: 100;
    position: relative;
}
.game__clue-wrapper {
    display: none;
    max-width: 292px;
    background-color: #183035;
    border-radius: 0 0 32px 32px;
    padding: 22px 10px 22px 72px;
    text-align: left;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 100;
}
@media (max-width: 767px) {
    .game__clue-wrapper {
        padding: 20px 10px 20px 45px;
        border-radius: 0 0 26px 26px;
    }
}
.game__clue-wrapper p {
    color: #fff;
    font-family: "Gilroy", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 135%;
}
@media (max-width: 767px) {
    .game__clue-wrapper p {
        font-size: 16px;
    }
}
.game__clue-wrapper::after {
    position: absolute;
    content: "";
    background-image: url("../images/photos/img-eye@2x.png");
    width: 56px;
    height: 56px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    top: 8px;
    left: 4px;
}
@media (max-width: 767px) {
    .game__clue-wrapper::after {
        width: 36px;
        height: 36px;
        top: 14px;
        left: 3px;
    }
}
.game__list-wrapper {
    position: relative;
    /*overflow: hidden;*/
    /*margin-top: 300px;*/
}
.game-swiper {
    overflow: visible;
}
.game__cards-list {
    position: relative;
    width: 100%;
    height: 1200px;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (max-width: 1600px) {
    .game__cards-list {
        height: 1070px;
    }
}
@media (max-width: 767px) {
    .game__cards-list {
        height: 1000px;
    }
}
.game__card {
    /*max-width: 320px;*/
    touch-action: manipulation;
    position: absolute;
    top: 25%;
    left: 50%;
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.15s linear;
    width: 320px;
    flex-shrink: 0;
    border-radius: 24px;
    background-color: #FFFCF7;
    border: 10px solid #B2804C;
    will-change: transform;
    cursor: pointer;
}
@media (max-width: 1600px) {
    .game__card {
        width: 282px;
    }
}
@media (max-width: 1023px) {
    .game__card {
        width: 290px;
    }
}
@media (max-width: 767px) {
    .game__card {
        width: 224px;
        top: 22%;
    }
}
.game__card:hover {
    background-color: #F5F2E9;
    box-shadow: 0 159px 44px 0 rgba(82, 46, 5, 0), 0 102px 41px 0 rgba(82, 46, 5, 0.01), 0 57px 34px 0 rgba(82, 46, 5, 0.04), 0 25px 25px 0 rgba(82, 46, 5, 0.07), 0 6px 14px 0 rgba(82, 46, 5, 0.09);
}
.game__card img {
    padding: 0 16px;
    width: 100%;
    margin: 0 auto;
}
.game__card::after {
    content: "";
    position: absolute;
    width: calc(100% - 14px);
    height: calc(100% - 16px);
    border: 1px solid #B2804C;
    border-radius: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.game__card-title {
    font-family: "PSB Prosperity Sans", Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #B2804C;
    margin: 24px 14px 0;
    height: 64px;
    vertical-align: middle;
}
@media (max-width: 767px) {
    .game__card-title {
        font-size: 22px;
        height: 44px;
        margin: 16px 10px 0;
    }
}
.game__card-text {
    font-family: "Gilroy", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 135%;
    font-weight: 500;
    color: #3E3E59;
    padding: 16px 16px 32px;
    border-top: 1px solid #B2804C;
    max-width: 288px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1600px) {
    .game__card-text {
        max-width: 266px;
    }
}
@media (max-width: 1023px) {
    .game__card-text {
        max-width: 258px;
        padding: 14px 16px 24px;
    }
}
@media (max-width: 767px) {
    .game__card-text {
        font-size: 11.2px;
        padding: 10px 16px 16px;
        max-width: 190px;
    }
}
.game__suitcase-wrapper {
    margin-top: -600px;
}
.game__img-wrapper {
    margin: 0 auto;
    background: url("../images/photos/img-suitcase-mobile@2x.png");
    width: 730px;
    height: 344px;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    /*& picture{
        display: block;
        width: 100%;
        height: 100%;
        & img{
            display: block;
            width: 100%;
            height:auto;
            object-fit: cover;
        }
    }*/
}
@media (max-width: 1600px) {
    .game__img-wrapper {
        width: 560px;
        height: 264px;
    }
}
@media (max-width: 767px) {
    .game__img-wrapper {
        width: 400px;
        height: 189px;
    }
}
@media (max-width: 400px) {
    .game__img-wrapper {
        width: 350px;
        height: 165px;
    }
}
.game__nav-arrow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid #B2804C;
    background-color: #F4ECE0;
    transform: translateY(-50%);
    z-index: 10;
    bottom: -40px;
    cursor: pointer;
}
@media (max-width: 1600px) {
    .game__nav-arrow {
        width: 130px;
        height: 130px;
    }
}
@media (max-width: 1023px) {
    .game__nav-arrow {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 767px) {
    .game__nav-arrow {
        width: 40px;
        height: 40px;
        background-color: #B2804C;
        bottom: 30px;
    }
}
.game__nav-arrow:hover {
    opacity: 0.9;
}
.game__nav-arrow::before {
    content: "";
    border-radius: 50%;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: #B2804C;
    background-size: 22px 48px;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 1600px) {
    .game__nav-arrow::before {
        width: 70px;
        height: 70px;
        background-size: 20px 44px;
    }
}
@media (max-width: 1023px) {
    .game__nav-arrow::before {
        width: 70px;
        height: 70px;
        background-size: 18px 40px;
    }
}
@media (max-width: 767px) {
    .game__nav-arrow::before {
        width: 40px;
        height: 40px;
        background-size: 11px 18px;
    }
}
.game__nav-arrow--prev {
    left: -44px;
}
@media (max-width: 1600px) {
    .game__nav-arrow--prev {
        left: -38px;
    }
}
@media (max-width: 1023px) {
    .game__nav-arrow--prev {
        left: -36px;
    }
}
@media (max-width: 767px) {
    .game__nav-arrow--prev {
        left: 10px;
    }
}
@media (max-width: 400px) {
    .game__nav-arrow--prev {
        left: 20px;
    }
}
.game__nav-arrow--prev::before {
    background-image: url("../images/icons/images/nav.svg");
}
.game__nav-arrow--next {
    right: -44px;
}
@media (max-width: 1600px) {
    .game__nav-arrow--next {
        right: -38px;
    }
}
@media (max-width: 1023px) {
    .game__nav-arrow--next {
        right: -36px;
    }
}
@media (max-width: 767px) {
    .game__nav-arrow--next {
        right: 10px;
    }
}
@media (max-width: 400px) {
    .game__nav-arrow--next {
        right: 20px;
    }
}
.game__nav-arrow--next::before {
    background-image: url("../images/icons/images/nav_r.svg");
}
.game__card-wrapper {
    position: absolute;
    bottom: 66px;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 1600px) {
    .game__card-wrapper {
        bottom: 40px;
    }
}
@media (max-width: 767px) {
    .game__card-wrapper {
        bottom: 35px;
    }
}
@media (max-width: 400px) {
    .game__card-wrapper {
        bottom: 25px;
    }
}
.game__card-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}
.game__card-column {
    width: 80px;
    background-color: #B2804C;
    border: 1px solid #502B16;
    border-radius: 16px;
    aspect-ratio: 1/1.5;
}
@media (max-width: 1600px) {
    .game__card-column {
        width: 70px;
    }
}
@media (max-width: 767px) {
    .game__card-column {
        width: 48px;
    }
}
.game__tooltip-wrapper {
    background-color: #FFFCF7;
    border-radius: 16px;
    max-width: 412px;
    width: 100%;
    text-align: center;
    padding: 18px 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    z-index: 100;
    font-family: "Gilroy", Arial, Helvetica, sans-serif;
    color: #3E3E59;
    border: 2px solid #B2804C;
    display: none;
}
@media (max-width: 767px) {
    .game__tooltip-wrapper {
        padding: 14px 16px;
        max-width: 280px;
        top: -40px;
    }
}
.game__tooltip-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    width: 44px;
    height: 22px;
    background: #B2804C;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.game__tooltip-wrapper::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 42px;
    height: 20px;
    background: #FFFCF7;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.game__tooltip-wrapper p:first-child {
    font-size: 22px;
    line-height: 135%;
    font-weight: 700;
    margin: 0;
}
@media (max-width: 767px) {
    .game__tooltip-wrapper p:first-child {
        font-size: 16px;
    }
}
.game__tooltip-wrapper p:last-child {
    font-size: 16px;
    line-height: 135%;
    font-weight: 500;
}
@media (max-width: 767px) {
    .game__tooltip-wrapper p:last-child {
        font-size: 14px;
    }
}
.game__final {
    display: none;
    background-color: #FFFFFF;
    max-width: 640px;
    margin: 0 auto 170px;
    border-radius: 48px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
@media (max-width: 767px) {
    .game__final {
        margin: 0 auto 190px;
    }
}
.game__final img {
    width: 100%;
}
.game__final::after {
    position: absolute;
    content: "";
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 40px;
    border: 2px solid #6F491C;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.game__final-text {
    font-family: "Gilroy", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 135%;
    font-weight: 500;
    color: #3E3E59;
    padding: 0 10px 32px;
    max-width: 560px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .game__final-text {
        padding: 0 10px 20px;
    }
}
.game__final-subtitle {
    margin: 32px auto 13px;
    font-family: "PSB Prosperity Sans", Arial, Helvetica, sans-serif;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px;
    color: #b2804c;
}
@media (max-width: 1023px) {
    .game__final-subtitle {
        font-size: 20px;
        letter-spacing: 2px;
        margin: 22px auto 10px;
    }
}
.game__final-button-wrapper {
    margin: 0 auto 40px;
    width: 100%;
    max-width: 544px;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease, margin 0.3s ease;
}
@media (max-width: 1023px) {
    .game__final-button-wrapper {
        margin: 0 auto 34px;
        padding: 0 30px;
    }
}

.tooltip_first {
    top: 40px;
}
@media (max-width: 767px) {
    .tooltip_first {
        top: -20px;
    }
}

.tooltip_second {
    top: 20px;
}
@media (max-width: 767px) {
    .tooltip_second {
        top: -20px;
    }
}

.game__chosen-cards-wrapper {
    display: none;
}

.game__card.active::after {
    background-image: url("../images/photos/img-card-0@2x.png");
    background-color: #E1BB8F;
    background-size: 100% 100%;
    content: "";
    width: 100%;
    height: 100%;
}
.game__card.active:hover {
    box-shadow: none;
}

.game__card-column.active {
    background-color: #E1BB8F;
    position: relative;
    background-size: 65% auto;
    background-repeat: no-repeat;
    background-position: center;
}
.game__card-column.active::before {
    content: "";
    border-radius: 8px;
    width: 80%;
    height: 87%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border: 1px solid #B2804C;
}

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

.game__card.is-flying {
    opacity: 0;
    transition: none !important;
    pointer-events: none;
}

.game__nav.is-disabled {
    pointer-events: none;
    /*opacity: 0.4;*/
}

.game__card-column.active.construction {
    background-image: url("../images/photos/img-card-1_2@2x.png");
}

.game__card-column.active.technology {
    background-image: url("../images/photos/img-card-2_2@2x.png");
}

.game__card-column.active.agro {
    background-image: url("../images/photos/img-card-3_2@2x.png");
}

.game__card-column.active.oil {
    background-image: url("../images/photos/img-card-4_2@2x.png");
}

.game__card-column.active.mining {
    background-image: url("../images/photos/img-card-5_2@2x.png");
}

.game__card-column.active.retail {
    background-image: url("../images/photos/img-card-6_2@2x.png");
}

.game__card-column.active.finance {
    background-image: url("../images/photos/img-card-7_2@2x.png");
}

.final {
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;
}
.final--hidden {
    height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.final__inner {
    position: relative;
    margin: 0 auto;
    padding: 70px 0 110px;
}
@media (max-width: 1023px) {
    .final__inner {
        padding: 42px 0 52px;
        max-width: 70%;
    }
}
@media (max-width: 767px) {
    .final__inner {
        max-width: 100%;
    }
}
.final__text-wrapper {
    margin: 0 auto 60px;
    padding: 0 20px;
    max-width: 640px;
    text-align: center;
}
.final__text-wrapper--2 {
    margin: 0 auto;
    max-width: 800px;
}
@media (max-width: 1023px) {
    .final__text-wrapper {
        margin: 0 auto 24px;
        padding: 0;
    }
}
@media (max-width: 362px) {
    .final__text-wrapper {
        max-width: 320px;
    }
}
.final__title {
    margin: 0 auto 16px;
    max-width: 600px;
    font-family: "PSB Prosperity Sans", Arial, Helvetica, sans-serif;
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px;
    color: #b2804c;
}
@media (max-width: 1023px) {
    .final__title {
        font-size: 20px;
        letter-spacing: 2px;
    }
}
.final__title--reverse {
    color: #fff;
}
.final__text {
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 135%;
    font-weight: 600;
    max-width: 540px;
}
@media (max-width: 1023px) {
    .final__text {
        margin: 0 auto 16px;
    }
}
@media (max-width: 767px) {
    .final__text {
        font-size: 14px;
    }
}
.final__text:not(:last-of-type) {
    margin-bottom: 24px;
}
.final__cards-wrapper {
    margin: 0 auto 56px;
    max-width: 962px;
}
@media (max-width: 1023px) {
    .final__cards-wrapper {
        margin: 0 auto 40px;
    }
}
.final__cards {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 1023px) {
    .final__cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.final__card {
    position: relative;
    padding: 116px 20px 20px;
    max-width: 310px;
    color: #3E3E59;
    background-color: #fff;
    border-radius: 24px;
}
@media (max-width: 1023px) {
    .final__card {
        padding: 108px 20px 20px;
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 362px) {
    .final__card {
        max-width: 320px;
    }
}
.final__card--wide {
    padding: 32px 32px 32px 327px;
    max-width: 962px;
    grid-column: 1/-1;
}
@media (max-width: 1023px) {
    .final__card--wide {
        padding: 262px 20px 20px;
    }
}
@media (max-width: 362px) {
    .final__card--wide {
        max-width: 320px;
    }
}
.final__card--wide .final__card-text {
    max-width: 560px;
}
.final__card::before {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 64px;
    height: 64px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}
.final__card--stocks::before {
    background-image: url("../images/icons/icon-stocks.svg");
}
.final__card--bonds::before {
    background-image: url("../images/icons/icon-bonds.svg");
}
.final__card--gold::before {
    background-image: url("../images/icons/icon-gold.svg");
}
.final__card--opif::before {
    top: 32px;
    left: 32px;
    width: 275px;
    height: 222px;
    background-image: -webkit-image-set(url("../images/photos/img03@1x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img03@1x.webp") type("image/webp"));
    background-image: url("../images/photos/img03@1x.png"); /* Fallback */
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}
@media (min-resolution: 2dppx) {
    .final__card--opif::before {
        background-image: -webkit-image-set(url("../images/photos/img03@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img03@2x.webp") type("image/webp"));
        background-image: url("../images/photos/img03@2x.png");
    }
}
@media (max-width: 1023px) {
    .final__card--opif::before {
        top: 20px;
        left: 40px;
    }
}
.final__card-heading {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 135%;
    font-weight: 700;
}
@media (max-width: 1023px) {
    .final__card-heading {
        font-size: 18px;
    }
}
.final__card-text {
    margin: 0;
    font-size: 16px;
    line-height: 135%;
    font-weight: 500;
}
@media (max-width: 1023px) {
    .final__card-text {
        font-size: 14px;
    }
}
.final__card-text:not(:last-of-type) {
    margin-bottom: 8px;
}
.final__list-wrapper {
    margin: 0 auto 44px;
    padding: 40px 20px;
    max-width: 962px;
    color: #3E3E59;
    background-color: #fff;
    border-radius: 24px;
    /*margin: 0 auto 32px;
            max-width: 620px;*/
}
@media (max-width: 1023px) {
    .final__list-wrapper {
        padding: 20px;
    }
}
@media (max-width: 362px) {
    .final__list-wrapper {
        max-width: 320px;
    }
}
.final__list-heading {
    margin: 0 auto 24px;
    max-width: 820px;
    font-size: 32px;
    line-height: 120%;
    font-weight: 600;
    text-align: center;
}
@media (max-width: 1023px) {
    .final__list-heading {
        font-size: 20px;
    }
}
.final__list {
    margin: 0 auto;
    max-width: 882px;
}
.final__step-wrapper {
    margin: 0 auto 24px;
    max-width: 960px;
}
.final__step {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
}
@media (max-width: 767px) {
    .final__step {
        flex-wrap: wrap;
    }
}
.final__li-item {
    flex: 0 1 50%;
    width: 100%;
    padding: 24px 16px;
    text-align: center;
    background-color: #F5F3F0;
    border-radius: 24px;
}
@media (max-width: 767px) {
    .final__li-item {
        flex: 1;
        padding: 16px 16px 24px;
    }
}
.final__li-number {
    margin: 0 auto 16px;
    padding-bottom: 10px;
    display: block;
    max-width: 160px;
    font-family: "PSB Prosperity Sans", Arial, Helvetica, sans-serif;
    font-size: 48px;
    line-height: 100%;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    color: #b2804c;
    border-bottom: 1px solid #D1B494;
}
@media (max-width: 1023px) {
    .final__li-number {
        margin: 0 auto 12px;
        padding-bottom: 6px;
        font-size: 40px;
    }
}
.final__li-text {
    font-size: 16px;
    line-height: 135%;
    font-weight: 500;
    color: #3E3E59;
    max-width: 350px;
    margin: 0 auto;
}
@media (max-width: 1023px) {
    .final__li-text {
        font-size: 14px;
    }
}
.final__item {
    position: relative;
    padding: 32px 20px 32px 272px;
    display: flex;
    flex-direction: column;
    background-color: #F8F8FC;
    border-radius: 12px;
}
@media (max-width: 1023px) {
    .final__item {
        padding: 220px 0 0;
    }
    .final__item::after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: 200px;
        border-radius: 16px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        content: "";
    }
}
.final__item:not(:last-of-type) {
    margin-bottom: 16px;
}
.final__item::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 233px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    content: "";
}
@media (max-width: 1023px) {
    .final__item::before {
        top: 8px;
        right: 0;
        margin: 0 auto;
        width: 280px;
        height: 200px;
        z-index: 5;
    }
}
.final__item--bonds {
    min-height: 233px;
}
.final__item--bonds::before {
    background-image: -webkit-image-set(url("../images/photos/img04@1x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img04@1x.webp") type("image/webp"));
    background-image: url("../images/photos/img04@1x.png"); /* Fallback */
}
@media (min-resolution: 2dppx) {
    .final__item--bonds::before {
        background-image: -webkit-image-set(url("../images/photos/img04@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img04@2x.webp") type("image/webp"));
        background-image: url("../images/photos/img04@2x.png");
    }
}
@media (max-width: 1023px) {
    .final__item--bonds::before {
        width: 181px;
        height: 181px;
        background-image: -webkit-image-set(url("../images/photos/img04-mobile-1@1x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img04-mobile-1@1x.webp") type("image/webp"));
        background-image: url("../images/photos/img04-mobile-1@1x.png"); /* Fallback */
    }
}
@media (max-width: 1023px) and (min-resolution: 2dppx) {
    .final__item--bonds::before {
        background-image: -webkit-image-set(url("../images/photos/img04-mobile-1@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img04-mobile-1@2x.webp") type("image/webp"));
        background-image: url("../images/photos/img04-mobile-1@2x.png");
    }
}
@media (max-width: 1023px) {
    .final__item--bonds::after {
        background-image: -webkit-image-set(url("../images/photos/img04-pattern@1x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img04-pattern@1x.webp") type("image/webp"));
        background-image: url("../images/photos/img04-pattern@1x.png"); /* Fallback */
    }
}
@media (max-width: 1023px) and (min-resolution: 2dppx) {
    .final__item--bonds::after {
        background-image: -webkit-image-set(url("../images/photos/img04-pattern@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img04-pattern@2x.webp") type("image/webp"));
        background-image: url("../images/photos/img04-pattern@2x.png");
    }
}
.final__item--investments {
    min-height: 252px;
}
.final__item--investments::before {
    height: 252px;
    background-image: -webkit-image-set(url("../images/photos/img05@1x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img05@1x.webp") type("image/webp"));
    background-image: url("../images/photos/img05@1x.png"); /* Fallback */
}
@media (min-resolution: 2dppx) {
    .final__item--investments::before {
        background-image: -webkit-image-set(url("../images/photos/img05@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img05@2x.webp") type("image/webp"));
        background-image: url("../images/photos/img05@2x.png");
    }
}
@media (max-width: 1023px) {
    .final__item--investments::before {
        width: 185px;
        height: 185px;
        background-image: -webkit-image-set(url("../images/photos/img05-mobile-1@1x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img05-mobile-1@1x.webp") type("image/webp"));
        background-image: url("../images/photos/img05-mobile-1@1x.png"); /* Fallback */
    }
}
@media (max-width: 1023px) and (min-resolution: 2dppx) {
    .final__item--investments::before {
        background-image: -webkit-image-set(url("../images/photos/img05-mobile-1@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img05-mobile-1@2x.webp") type("image/webp"));
        background-image: url("../images/photos/img05-mobile-1@2x.png");
    }
}
@media (max-width: 1023px) {
    .final__item--investments::after {
        background-image: -webkit-image-set(url("../images/photos/img05-pattern@1x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img05-pattern@1x.webp") type("image/webp"));
        background-image: url("../images/photos/img05-pattern@1x.png"); /* Fallback */
    }
}
@media (max-width: 1023px) and (min-resolution: 2dppx) {
    .final__item--investments::after {
        background-image: -webkit-image-set(url("../images/photos/img05-pattern@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img05-pattern@2x.webp") type("image/webp"));
        background-image: url("../images/photos/img05-pattern@2x.png");
    }
}
.final__item--balance {
    min-height: 252px;
}
.final__item--balance::before {
    height: 252px;
    background-image: -webkit-image-set(url("../images/photos/img06@1x.webp") type("image/webp"));
    background-image: image-set(url("../images/photos/img06@1x.webp") type("image/webp"));
    background-image: url("../images/photos/img06@1x.png"); /* Fallback */
}
@media (min-resolution: 2dppx) {
    .final__item--balance::before {
        background-image: -webkit-image-set(url("../images/photos/img06@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img06@2x.webp") type("image/webp"));
        background-image: url("../images/photos/img06@2x.png");
    }
}
@media (max-width: 1023px) {
    .final__item--balance::before {
        width: 183px;
        height: 183px;
        background-image: -webkit-image-set(url("../images/photos/img06-mobile-1@1x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img06-mobile-1@1x.webp") type("image/webp"));
        background-image: url("../images/photos/img06-mobile-1@1x.png"); /* Fallback */
    }
}
@media (max-width: 1023px) and (min-resolution: 2dppx) {
    .final__item--balance::before {
        background-image: -webkit-image-set(url("../images/photos/img06-mobile-1@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img06-mobile-1@2x.webp") type("image/webp"));
        background-image: url("../images/photos/img06-mobile-1@2x.png");
    }
}
@media (max-width: 1023px) {
    .final__item--balance::after {
        background-image: -webkit-image-set(url("../images/photos/img06-pattern@1x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img06-pattern@1x.webp") type("image/webp"));
        background-image: url("../images/photos/img06-pattern@1x.png"); /* Fallback */
    }
}
@media (max-width: 1023px) and (min-resolution: 2dppx) {
    .final__item--balance::after {
        background-image: -webkit-image-set(url("../images/photos/img06-pattern@2x.webp") type("image/webp"));
        background-image: image-set(url("../images/photos/img06-pattern@2x.webp") type("image/webp"));
        background-image: url("../images/photos/img06-pattern@2x.png");
    }
}
.final__item-content {
    max-width: 578px;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}
@media (max-width: 1023px) {
    .final__item-content {
        padding: 0 20px 20px;
    }
}
.final__item-heading {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 135%;
    font-weight: 700;
}
@media (max-width: 1023px) {
    .final__item-heading {
        margin: 0 0 12px;
    }
}
.final__item-inner {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 48px;
}
@media (max-width: 1023px) {
    .final__item-inner {
        grid-template-columns: 100%;
        gap: 8px;
    }
}
.final__item-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    height: 100%;
    background-color: #D9D9D9;
    content: "";
}
@media (max-width: 1023px) {
    .final__item-inner::before {
        display: none;
    }
}
.final__item-text {
    margin: 0;
    font-size: 14px;
    line-height: 135%;
    font-weight: 500;
}
.final__button-wrapper {
    margin-top: auto;
}
@media (max-width: 1023px) {
    .final__button-wrapper {
        margin-top: 24px;
    }
}
.final__item-button {
    width: 100%;
}
.final__buttons-wrapper {
    margin: 36px auto 0;
    max-width: 746px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 1023px) {
    .final__buttons-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 362px) {
    .final__buttons-wrapper {
        margin: 0 auto;
        max-width: 300px;
    }
}
.final__button {
    padding: 18px 16px 14px;
    max-width: 362px;
    font-size: 14px;
    line-height: 150%;
}
.final__button_step {
    max-width: 424px;
    width: 100%;
    margin-top: 24px;
}
@media (max-width: 1023px) {
    .final__button_step {
        margin-top: 0;
    }
}
@media (max-width: 1023px) {
    .final__button {
        width: 100%;
    }
}

.final__text-wrapper--2 .final__title {
    max-width: 800px;
    padding: 20px 0 30px;
}
@media (max-width: 767px) {
    .final__text-wrapper--2 .final__title {
        padding: 0 10px 10px;
    }
}

.popup__wrapper {
    position: fixed;
    /*max-width: 600px;*/
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.8s ease 0s;
    z-index: 1000;
}
.popup__body {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup__img {
    position: relative;
}
.popup__img::before {
    position: absolute;
    content: "";
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-image: url("../images/photos/img-eye_2@2x.png");
    background-size: 100% auto;
    background-color: transparent;
    bottom: -52px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: -19px 8px 6px 0 rgba(0, 0, 0, 0.01), -12px 5px 5px 0 rgba(0, 0, 0, 0.06), -7px 3px 5px 0 rgba(0, 0, 0, 0.2), -3px 1px 3px 0 rgba(0, 0, 0, 0.33), -1px 0 2px 0 rgba(0, 0, 0, 0.38);
    z-index: 101;
}
.popup__content {
    background-color: #FFFFFF;
    max-width: 640px;
    width: 100%;
    position: relative;
    border-radius: 48px;
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: all 0.8s ease 0s;
    opacity: 0;
    transform: translate(0px, -100%);
}
.popup__content img {
    width: 100%;
    margin-bottom: 70px;
}
.popup__content::after {
    pointer-events: none;
    position: absolute;
    content: "";
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 40px;
    border: 2px solid #6F491C;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popup__text {
    font-family: "Gilroy", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 135%;
    font-weight: 500;
    color: #3E3E59;
    padding: 0 20px 32px;
    max-width: 560px;
    margin: 0 auto;
}
.popup__button-wrapper {
    margin: 0 auto 40px;
    width: 100%;
    max-width: 544px;
    position: relative;
    z-index: 1002;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease, margin 0.3s ease;
}
@media (max-width: 1023px) {
    .popup__button-wrapper {
        margin: 0 auto 24px;
        padding: 0 30px;
    }
}
.popup__button {
    width: 100%;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.popup.open {
    opacity: 1;
    visibility: visible;
}

.popup.open .popup__content {
    opacity: 1;
    transform: translate(0px, 0px);
}

.eye__line {
    position: relative;
}
.eye__line::after {
    pointer-events: none;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    pointer-events: none;
    background-color: transparent;
    background-image: radial-gradient(circle at 50% 0, transparent 55px, #6F491C 56px, #6F491C 59px, transparent 60px), linear-gradient(to right, #6F491C 0%, #6F491C calc(50% - 60px), transparent calc(50% - 60px), transparent calc(50% + 60px), #6F491C calc(50% + 60px), #6F491C 100%);
    background-repeat: no-repeat;
    background-size: 100% 60px, 100% 2px; /* линия */
    background-position: 0 0, 0 0; /* линия */
}
