* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Graphik Compact LC', sans-serif;
}

html {
    height: 100vh;
    /* overflow: hidden; */
    scroll-snap-align: center;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-down;
}

img {
    max-width: 100%;
}

body {
    background: #f6f5f4;
    -webkit-overflow-scrolling: touch;
}

body.overflow {
    /* overflow: hidden; */
    height: 100vh;
}

main {
    width: 100%;
    /*max-width: 1280px;*/
    margin: 0 auto;
    background: #f6f5f4;
}

.container {
    width: 100%;
    max-width: 1218px;
    margin: 0 auto;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.col {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.d-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.gradient-blur {
    position: absolute;
    top: 0;
    z-index: 5;
    inset: auto 0 0 0;
    height: 100%;
    pointer-events: none;
}

.gradient-blur>div,
.gradient-blur::before,
.gradient-blur::after {
    position: absolute;
    inset: 0;
}

.gradient-blur::before {
    content: "";
    z-index: 1;
    backdrop-filter: blur(0.5px);
    mask: linear-gradient(to top,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 12.5%,
        rgba(0, 0, 0, 1) 25%,
        rgba(0, 0, 0, 0) 37.5%);
}

.gradient-blur>div:nth-of-type(6) {
    z-index: 2;
    backdrop-filter: blur(1px);
    mask: linear-gradient(to top,
        rgba(0, 0, 0, 0) 12.5%,
        rgba(0, 0, 0, 1) 25%,
        rgba(0, 0, 0, 1) 37.5%,
        rgba(0, 0, 0, 0) 50%);
}

.gradient-blur>div:nth-of-type(5) {
    z-index: 3;
    backdrop-filter: blur(2px);
    mask: linear-gradient(to top,
        rgba(0, 0, 0, 0) 25%,
        rgba(0, 0, 0, 1) 37.5%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 0) 62.5%);
}

.gradient-blur>div:nth-of-type(4) {
    z-index: 4;
    backdrop-filter: blur(3px);
    mask: linear-gradient(to top,
        rgba(0, 0, 0, 0) 37.5%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 1) 62.5%,
        rgba(0, 0, 0, 0) 75%);
}

.gradient-blur>div:nth-of-type(3) {
    z-index: 5;
    backdrop-filter: blur(4px);
    mask: linear-gradient(to top,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 1) 62.5%,
        rgba(0, 0, 0, 1) 75%,
        rgba(0, 0, 0, 0) 87.5%);
}

.gradient-blur>div:nth-of-type(2) {
    z-index: 6;
    backdrop-filter: blur(5px);
    mask: linear-gradient(to top,
        rgba(0, 0, 0, 0) 62.5%,
        rgba(0, 0, 0, 1) 75%,
        rgba(0, 0, 0, 1) 87.5%,
        rgba(0, 0, 0, 0) 100%);
}

.gradient-blur>div:nth-of-type(1) {
    z-index: 7;
    backdrop-filter: blur(6px);
    mask: linear-gradient(to top,
        rgba(0, 0, 0, 0) 75%,
        rgba(0, 0, 0, 1) 87.5%,
        rgba(0, 0, 0, 1) 100%);
}

.gradient-blur::after {
    content: "";
    z-index: 8;
    /*backdrop-filter: blur(64px);*/
    mask: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 87.5%,
        rgba(0, 0, 0, 1) 100%);
}

header {
    padding: 36px 0;
    position: sticky;
    top: 0;
    z-index: 99;
    transition: all .4s linear;
}

header.relative {
    position: static;
}

header.light .logo img {
    filter: brightness(0) invert(1);
}

header.dark .logo img {
    filter: none !important;
}

header.row {
    align-items: center;
}

header .logo {
    width: 180px;
    display: inline-block;
}

header .container {
    position: relative;
    z-index: 6;
}

header .d-flex {
    justify-content: flex-end;
    gap: 16px;
    position: relative;
}

header .market {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    gap: 4px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(38, 38, 38, 0.1);
    border-radius: 34px;
}

header .market img {
    height: 32px;
}

header .nav {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(38, 38, 38, 0.1);
    border-radius: 34px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

header .nav span {
    display: inline-block;
    width: 20px;
    height: 1px;
    background: #9298a0;
    position: relative;
}

header .nav span:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #9298a0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
}

header .nav span:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #9298a0;
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
}

header .header-menu {
    padding: 52px 52px 20px;
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    width: 450px;
    right: 0;
    top: 70px;
    display: none;
}

header .header-menu li {
    margin: 0 0 32px;
}

header .header-menu li.center {
    text-align: center;
}

header .header-menu a {
    text-decoration: none;
}

header .header-menu p {
    font-family: 'Graphik Compact LC';
    font-weight: 700;
    font-size: 40px;
    line-height: 80%;
    letter-spacing: -0.03em;
    color: #262626;
    margin: 0;
    display: inline-block;
}

header .header-menu span {
    font-family: 'Graphik Compact LC';
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #262626;
}

header .header-menu a:hover p {
    color: #a8ca13;
}

header .header-menu a.active p {
    color: #a8ca13;
}

header .header-menu a:hover span {
    color: #a8ca13;
}

header .header-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

body.open-menu {
    /*overflow: hidden;*/
}

body.open-menu header .nav span {
    transform: rotate(45deg);
}

body.open-menu header .nav span:before {
    transform: rotate(-90deg);
    bottom: 0;
}

body.open-menu header .nav span:after {
    display: none;
}

body.open-menu .header-menu {
    display: inline-block;
}

body.open-menu header {
    /*background: #fff;*/
}

body.open-menu main {
    filter: blur(6px);
    /*background: #fff;*/
}

body.open-menu {}

main {
    /* transition: all .4s linear; */
}

section {}

section.head {
    text-align: center;
    padding: 70px 0 0px;
    background: #f6f5f4;
}

section.head img {
    margin: 0 0 36px;
}

section.head img.qr {
    height: 150px;
}

section.head h1 {
    margin: 0 0 36px;
    font-family: 'Graphik Compact LC';
    font-style: normal;
    font-weight: 700;
    font-size: 78px;
    line-height: 90%;
    letter-spacing: -0.03em;
    color: #000000;
}

section.head h1 span {
    display: inline-block;
}

section.head p {
    margin: 0 0 24px;
    font-family: 'Graphik LC';
    font-weight: 400;
    font-size: 30px;
    line-height: 95%;
    letter-spacing: -0.02em;
    color: #000000;
}

section.light {
    position: relative;
    padding-bottom: 80px;
    background: #f6f5f4;
}

section.light .z1 {
    position: relative;
    z-index: 1;
    padding: 160px 0 0;
}

section.light .col.d-flex {
    align-items: center;
    margin: 0 0 72px;
}



section.light .bubble {
    flex: 0 0 520px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(38, 38, 38, 0.1);
    border-radius: 32px;
    padding: 28px;
    position: relative;
}

section.light .bubble .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-family: 'Graphik Compact LC';
    font-weight: 700;
    font-size: 72px;
    line-height: 80%;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 24px;
}

section.light .bubble .title .image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
}

section.light .bubble .title .image img {
    width: 50px;
    height: 50px;
    margin-left: -25px;
}

section.light .bubble .d-flex {
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

section.light .bubble>img {
    position: absolute;
    right: 20px;
    top: -65px;
}

section.light .bubble .smile {
    position: absolute;
    right: 20px;
    top: -45px;
}

section.light .bubble .lol {
    position: absolute;
    top: -20px;
    left: 90px;
}

section.light .bubble p {
    font-family: 'Graphik LC';
    font-weight: 400;
    font-size: 21px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #000000;
}

section.light .shift {
    flex: 0 0 520px;
}

section.light .content {
    flex: 0 0 380px;
    text-align: center;
}

section.light .map {
    position: absolute;
    top: 128px;
    left: 50%;
    bottom: 0;
    width: 729px;
    height: 2160px;
    border-radius: 60px;
    background: url('../images/map_light.png') center / cover no-repeat;
    z-index: 0;
    margin-left: -364px;
}

.rus section.light .map {
    background: url('../images/ru/map_light.png') center / cover no-repeat;
}

section.light .phone {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 486px;
    height: 2645px;
    z-index: 2;
    margin-left: -243px;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    justify-content: center;
}

section.light .phone img {
    position: sticky;
    top: calc(50% - 350px);
    width: 347px;
}

section.light .row.z1 {
    scroll-snap-type: y mandatory;
}

.section3 img {
    max-width: 319px;
}

.content {
    position: relative;
}

.content-block {
    position: absolute;
}

.content-block.avatar1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-top: 10px;
}

.content-block.avatar1 .l {
    text-align: right;
}

.content-block.avatar1 .l img {
    margin-bottom: -20px;
}

.content-block.avatar1 .l img+img {}

.content-block.avatar1 .c {
    margin: 30px -20px 0;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.content-block.avatar1 .r {
    text-align: left;
}

.content-block.avatar1 .r img {
    margin-bottom: -20px;
}

.content-block.avatar1 .r img+img {}

.image-badge {
    width: 110px;
    height: 120px;
    position: relative;
    flex: 0 0 110px;
}

.image-badge .b1 {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 3;
    opacity: 0;
    width: 27px;
}

.image-badge .b2 {
    position: absolute;
    right: 0;
    z-index: 2;
    top: 10px;
    opacity: 0;
    width: 85px;
}

.image-badge .b3 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    width: 85px;
}

.section2 .bubble img {
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.1));
}

section.light .col.d-flex.section4 {
    padding: 80px 0 40px;
    margin: 0;

    .content {
        padding-top: 75px;
    }
}

section.dark {
    position: relative;
    padding-bottom: 0px;
    background: #141414;
    padding-top: 70px;
}

section.dark .z1 {
    position: relative;
    z-index: 1;
    padding: 160px 0 0px;
}

section.dark .col.d-flex {
    align-items: center;
    margin: 40px 0 132px;
}

section.dark .col.d-flex:last-of-type {
    margin: -40px 0 0 0;
}

section.dark .bubble {
    flex: 0 0 520px;
    background: #212121;
    box-shadow: 0px 0px 20px rgba(38, 38, 38, 0.1);
    border-radius: 32px;
    padding: 44px;
    position: relative;
}

section.dark .bubble .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
    font-family: 'Graphik Compact LC';
    font-weight: 700;
    font-size: 72px;
    line-height: 80%;
    letter-spacing: -0.03em;
    color: #fff;
}

section.dark .bubble.abs {
    padding-left: 172px;
}

section.dark .bubble.abs img {
    position: absolute;
    bottom: 0;
    left: -10px;
}

section.dark .bubble span {
    display: inline-block;
    margin: 0 0 30px;
    font-family: 'Graphik LC';
    font-weight: 400;
    font-size: 21px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.2);
}

section.dark .bubble .d-flex {
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

section.dark .bubble>img {
    position: absolute;
    right: 20px;
    top: -40px;
}

section.dark .bubble p {
    font-family: 'Graphik LC';
    font-weight: 400;
    font-size: 21px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #fff;
}

section.dark .shift {
    flex: 0 0 520px;
}

section.dark .content {
    flex: 0 0 380px;
    text-align: center;
}

section.dark .map {
    position: absolute;
    top: 0px;
    left: 50%;
    bottom: 0;
    width: 729px;
    height: 1320px;
    background: url('../images/map_dark.png') center / cover;
    z-index: 0;
    margin-left: -364px;
    border-radius: 60px;
}

.rus section.dark .map {
    background: url('../images/ru/map_dark.png') center / cover;
}

section.dark .phone {
    position: absolute;
    top: -100px;
    left: 50%;
    bottom: 0;
    width: 486px;
    height: 1800px;
    z-index: 2;
    margin-left: -243px;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    justify-content: center;
}

section.dark .phone img {
    position: sticky;
    top: calc(50% - 350px);
}

.section6 .bubble {
    transition: all .3s linear;
}

section.dark .section8 {
    margin-top: -110px !important;
}

.section6 .bubble .toggle {
    background: #141414;
    width: 102px;
    height: 60px;
    border-radius: 40px;
    position: relative;
}

.section6 .bubble .toggle .toggle_image {
    left: inherit;
    position: absolute;
    left: 37px;
    top: -5px;
    transition: all .2s linear;
    width: 70px;
    height: 70px;
    border-radius: 60px;
    background: url('../images/private.svg') center no-repeat;
}

.section6 .bubble .title:before {
    content: 'MyWay ';
    transition: all .3s linear;
}

.section6 .bubble.light {
    background: #fff;
}

.section6 .bubble.light {}

.section6 .bubble.light .title:before {
    content: 'HiWay ';
    color: #000;
}

.section6 .bubble.light .toggle {
    width: 102px;
    height: 60px;
    border-radius: 40px;
    background: #EEFAB7;
    position: relative;
}

.section6 .bubble.light .toggle .toggle_image {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 70px;
    height: 70px;
    background: url('../images/social.svg') center no-repeat;
}

.section6 .bubble.light span {
    color: #000;
}

.section6 .bubble.light p {
    color: #ccc;
}

.section7 {
    margin: 40px 0 !important;
}

.section7 .bubble {
    height: 2px;
    padding: 0 !important;
    opacity: 0 !important;
}

.section1 .content img {
    width: 300px;
}

.section2 .content>img {
    width: 309px;
}

.section8 .content img {
    width: 309px;
}

.section9 .content img {
    width: 290px;
}

.section10 .content img {
    width: 295px;
}

section.dark .col.d-flex.section8 {
    margin: 40px 0 80px;
    height: 252px;
}

section.green {
    padding: 240px 0 0;
    background: #a8ca13;
    border-radius: 0 0 64px 64px;
    position: relative;
}

section.green .row {
    align-items: stretch;
    position: relative;
}

section.green .nav {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 830px;
}

section.green .nav ul {
    list-style: none;
}

section.green .nav a,
section.green .nav span {
    font-family: 'Graphik Compact LC';
    font-weight: 700;
    font-size: 72px;
    line-height: 80%;
    letter-spacing: -0.03em;
    color: rgb(134 162 15);
    text-decoration: none !important;
}

section.green .nav a.active,
section.green .nav span.active {
    color: #000;
}

section.green .content {
    position: relative;
    padding: 40px;
    border-radius: 48px;
    background: #fff;
    margin: 50px 0 50px;
    max-width: 615px;
    aspect-ratio: 61 / 72;
}

section.green .content.b1 p {
    margin: 0 0 344px;
}

section.green .content.b2 p {
    margin: 0 0 359px;
}

section.green .content.b3 p {
    margin: 0 0 393px;
}

section.green .content.b4 p {
    margin: 0 0 290px;
}

section.green .content.b1 img {
    left: 250px;
}

section.green .content.b2 img {
    left: 250px;
}

section.green .content.b3 img {
    left: 275px;
}

section.green .content.b4 img {
    bottom: -152px;
    left: 265px;
}

section.green .content.b4 {
    margin-bottom: 320px;
}

section.green .content p {
    font-family: 'Graphik Compact LC';
    font-weight: 300;
    font-size: 28px;
    line-height: 125%;
    text-align: center;
    color: #000000;
}

section.green .content b {
    font-family: inherit;
    font-weight: 500;
}

section.green .content img {
    position: absolute;
    bottom: -1px;
    transform: translateX(-50%);
    left: 50%;
    width: auto;
    max-width: unset;
}

section.green .annotation {
    left: 0;
    bottom: 320px;
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(38, 38, 38, 0.1);
    border-radius: 48px;
    width: 510px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

section.green .annotation p {
    margin: 0;
    font-family: 'Graphik LC';
    font-weight: 400;
    font-size: 21px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #000000;
}

section.green h2 {
    margin: 0 0 10px;
    font-family: 'Graphik Compact LC';
    font-weight: 700;
    font-size: 62px;
    line-height: 90%;
    text-align: center;
    letter-spacing: -0.03em;
    color: #000000;
}

section.green .ovh {
    overflow: hidden;
    position: relative;
    border-radius: 0 0 64px 64px;
    padding-top: 80px;
}

section.green .ovh h2 span {
    display: inline-block;
}

section.green .app {
    text-align: center;
    padding: 0 0 5px;
    /*margin: 0 0 -40px;*/
}

section.green .app-qr {
    opacity: 1;
    transform: scale(1.0);
    transition: all .3s linear;
}

section.green .app-qr img {
    max-width: 328px;
}

section.green .left {
    position: absolute;
    bottom: 0;
    left: 0%;
    margin-left: -0px;
    width: 40.5%;
    height: 580px;
    border-radius: 0 0 0 64px;
    transition: all .3s linear;

    .xs {
        display: none;
    }
}

section.green .right {
    position: absolute;
    bottom: 0;
    right: 0%;
    margin-right: -0px;
    width: 40.5%;
    height: 580px;
    border-radius: 0 0 64px 0;
    transition: all .3s linear;
    text-align: right;

    .xs {
        display: none;
    }
}

section.green .ovh.scrolled .app-qr {}

section.green .ovh.scrolled .left {
    width: 40.5%;
}

section.green .ovh.scrolled .right {
    width: 40.5%;
}

section.green .ovh.scrolled .left img {
    width: 100%;
}

section.green .ovh.scrolled .right img {
    width: 100%;
}

section.green .ovh .left img {
    width: 190%;
    max-width: unset;
    /* transition: all .3s linear; */
    float: right;
}

section.green .ovh .right img {
    width: 190%;
    max-width: unset;
    /* transition: all .3s linear; */
}

.panel.overlay {
    height: 520px;

}

.swiper {
    width: 100%;
    height: 900px;

    user-select: none;
}

.swiper-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0 !important;

    img {
        max-width: 348px;
    }
}

.swiper-slide-prev,
.swiper-slide-active,
.swiper-slide-next {
    opacity: 1 !important;
}

.swiper-button-prev,
.swiper-button-next {
    width: 60px !important;
    height: 60px !important;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(38, 38, 38, 0.1);
    border-radius: 32px;
    bottom: 35px !important;
    top: inherit !important;
}

.swiper-button-prev {
    left: 50% !important;
    margin-left: -65px !important;
    background: #fff url('../images/larr.svg') center no-repeat;
}

.swiper-button-prev:after {
    display: none;
}

.swiper-button-next {
    right: 50% !important;
    margin-right: -65px !important;
    background: #fff url('../images/rarr.svg') center no-repeat;
}

.swiper-button-next:after {
    display: none;
}

.swiper-abs {
    position: absolute;
    top: 150px;
    left: 60%;
    padding: 110px 60px 30px 30px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(38, 38, 38, 0.1);
    border-radius: 48px;
    width: 335px;
}

.dark .swiper-abs {
    position: absolute;
    top: 140px;
    left: 60%;
    padding: 110px 60px 30px 30px;
    background: #212121;
    box-shadow: 0px 0px 20px rgba(38, 38, 38, 0.1);
    border-radius: 48px;
    width: 335px;
}

.swiper-abs-img1 {
    position: absolute;
    top: -40px;
    left: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.swiper-abs-img2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dark .swiper-abs p {
    color: #fff;
}

.swiper-abs p {
    font-size: 21px;
}

.swiper-abs img {}

.swiper-contaier {
    padding: 28px 0;
}

.swiper-contaier__dark {
    padding: 0 0 60px;
    margin: -60px 0 0;
}

.swiper-contaier__dark .swiper-abs {
    padding: 32px 60px 32px 32px;
}

.swiper-contaier__dark .swiper-abs img {
    position: static;
    margin: 0 -24px 24px 0;
    width: 51px;
}

main {
    /*margin-bottom: 520px;*/
    z-index: 2;
    position: relative;
    background: transparent;
}

footer {
    padding: 60px 0 80px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: #fff;*/
    z-index: 1;
}

footer .logo {
    margin: 0 0 40px;
    width: 100%;
    display: inline-block;
}

footer .d-flex {
    gap: 50px;
    justify-content: flex-end;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 135px;
}

footer ul li {
    margin: 0;
}

footer ul li strong {
    display: inline-block;
    margin: 0 0 12px;
    font-family: 'Graphik LC';
    font-weight: 400;
    font-size: 21px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #000000;
}

footer ul li a {
    display: inline-block;
    margin: 0 0 8px;
    font-family: 'Graphik LC';
    font-weight: 400;
    font-size: 21px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #000000;
    opacity: 0.34;
    text-decoration: none;
}

.observ {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    pointer-events: none;
}

.xs-btn {
    display: none;
}

.section4 .content img {
    width: 294px;
    height: 496px;
    object-fit: cover;
    object-position: top center;
}
@media(max-width: 1700px) and (min-width:1440px) {
    .section6 .bubble:not(.light){
        margin: -120px 0 0 !important;
    }
}
@media(max-width: 1800px) {
    section.light .phone{
       height: 2830px; 
    }
    div.section1 {
        margin-bottom: 300px;
    }
    header {
        padding: 24px 0;
    }

    header .header-menu li {
        margin: 0 0 24px;
    }

    header .header-menu p {
        font-size: 32px;
    }

    header .header-menu span {
        font-size: 18px;
    }

    header .header-menu {
        padding: 40px 40px 20px;
        width: 420px;
    }

    .container {
        max-width: 970px;
    }

    section.head {
        padding: 30px 0;
    }

    section.head img {
        max-width: 80px;
    }

    section.head h1 {
        margin: 0 0 24px;
        font-size: 64px;
    }

    section.head p {
        font-size: 26px;
        margin: 0 0 16px;
    }

    section.head img.qr {
        height: 150px;
        max-width: none;
        margin: 0 0 20px;
    }

    section.light .col.d-flex {
        align-items: center;
        margin: 0 0 92px;
        height: 560px;
    }

    section.light .phone img {
        position: sticky;
        top: calc(50% - 260px);
        width: 278px;
    }

    section.dark .phone img {
        position: sticky;
        top: calc(50% - 260px);
        width: 278px;
    }

    .section6 .bubble {
        padding: 32px !important;
    }

    section.light .bubble .title {
        font-size: 56px;
        margin: 0 0 20px;
    }

    section.dark .bubble .title {
        font-size: 56px;
        margin: 0 0 20px;
    }

    section.light .bubble p {
        font-size: 18px;
    }

    section.dark .bubble p {
        font-size: 18px;
    }

    section.dark .bubble span {
        margin: 0 0 12px;
        font-size: 18px;
    }

    section.light .content {
        flex: 0 0 340px;
        text-align: center;
        /*zoom: 0.8;*/
    }

    section.light .content>img {
        transform: scale(0.8);
    }

    .content-block.avatar1 {
        transform: scale(0.8);
        z-index: 2;
        padding-top: 25px;
    }

    section.dark .content {
        flex: 0 0 340px;
        text-align: center;
        /*zoom: 0.8;*/
    }

    section.dark .content>img {
        transform: scale(0.8);
    }

    section.light .shift {
        flex: 0 0 440px;
    }

    section.light .bubble {
        flex: 0 0 440px;
    }

    section.dark .shift {
        flex: 0 0 440px;
    }

    section.dark .bubble {
        flex: 0 0 440px;
        padding: 28px;
    }

    section.light .phone {
        height: 2670px;
    }

    .rus section.light .phone {
        height: 2670px !important;
    }

    section.light .map {
        height: 2350px;
        border-radius: 60px;
        background-position: center;
        background-size: cover;
    }

    .section7 {
        margin: 50px 0 10px !important;

        img {
            width: 90px;
        }
    }

    .section3 .content {
        padding: 0 0 20px;
    }

    .section6 .bubble.light {
        position: relative;
        top: 0px;
    }

    .section6 .bubble {
        top: 60px;
        min-height: 255px;
    }

    section.dark {
        padding-top: 0;
    }

    section.dark .z1 {
        position: relative;
        z-index: 1;
        padding: 230px 0 0;
    }

    section.dark .phone {
        height: 1565px;
        padding-top: 55px;
    }

    .rus section.dark .phone {
        /* height: 1565px !important; */
        padding-top: 55px;
    }

    .panel.section9 {
        margin-top: 0 !important;
        padding-top: 40px;
    }

    .panel.section10 .content img {
        height: 360px;
        object-fit: cover;
        object-position: top center;
        transform: none;
        width: 234px;
    }

    section.dark .col.d-flex.section8 {
        height: 216px;
    }

    .swiper {
        height: 680px;
    }

    .swiper-slide img {
        max-width: 248px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 48px !important;
        height: 48px !important;
        bottom: 25px !important;
    }

    .swiper-button-next {
        margin-right: -52px !important;
    }

    .swiper-button-prev {
        margin-left: -52px !important;
    }

    .swiper-abs {
        top: 140px;
        left: 59%;
        padding: 70px 50px 24px 24px;
        border-radius: 36px;
        width: 255px;

        p {
            font-size: 18px;
        }
    }

    .swiper-abs-img1 img {
        width: 58px;
    }

    .swiper-contaier__dark .swiper-abs {
        padding: 24px 44px 24px 24px;
        width: 240px;

        img {
            margin-bottom: 12px;
        }
    }

    .swiper-contaier__dark {
        margin-top: 0;
    }

    section.green .content {
        max-width: 405px;
        margin: 80px 30px 80px auto;
        padding: 28px;
    }

    section.green .content.b1 img {
        width: 529px;
    }

    section.green .content.b2 img {
        width: 529px;
    }

    section.green .content.b3 img {
        width: 529px;
    }

    section.green .content.b4 img {
        width: 417px;
    }

    section.green .content.b3 p {
        margin-bottom: 363px;
    }

    section.green .content p {
        font-size: 21px;
    }

    section.green h2 {
        font-size: 42px;
    }

    section.green .app-qr img {
        height: 470px;
    }

    section.green .right {
        height: 430px;

        img {
            width: 150%;
        }
    }

    section.green .left {
        height: 430px;

        img {
            width: 150%;
        }
    }

    section.green .nav a,
    section.green .nav span {
        font-size: 52px;
        line-height: 80%;
        pointer-events: none;
    }

    section.green .content img {
        left: 45% !important;
        bottom: -1px;
    }

    section.green .nav {
        margin-bottom: 500px;
    }

    section.green .content.b4 img {
        bottom: -95px;
        left: 48% !important;
    }

    section.green .annotation {
        width: 410px;
        border-radius: 40px;
    }

    section.green .annotation p {
        font-size: 16px;
    }

    section.green .content.b2 p {
        margin-bottom: 310px;
    }

    section.green .content.b3 p {
        margin-bottom: 320px;
    }

    section.green .content.b4 p {
        margin-bottom: 220px;
    }
}

@media(max-width: 1200px) {
    section.light .shift {
        flex: 0 0 360px;
    }

    section.light .content {
        flex: 0 0 300px;
    }

    section.light .bubble {
        flex: 0 0 360px;
    }

    section.dark .shift {
        flex: 0 0 360px;
    }

    section.dark .content {
        flex: 0 0 300px;
    }

    section.dark .bubble {
        flex: 0 0 360px;
    }

    .swiper-abs {
        top: 140px;
        left: 60.5%;
        width: 235px;
    }

    .swiper-contaier__dark .swiper-abs {
        width: 240px;
        top: 110px;
        left: 61%;
    }

    section.green .app-qr img {
        max-width: 218px;
        height: auto !important;
    }

    section.green .left {
        width: 38.5%;
    }

    section.green .right {
        width: 38.5%;
    }

    section.green .ovh.scrolled .left {
        width: 38.5%;
        height: 310px;
    }

    section.green .ovh.scrolled .right {
        width: 38.5%;
        height: 310px;
    }
}

@media(max-width: 1000px) {
    div.section1 {
        margin-bottom: 300px;
    }
    header {
        padding: 20px 30px 0;

        .market {
            display: none;
        }
    }

    header .header-menu {
        width: 370px;
    }

    main {
        width: 100vw;
        padding-bottom: 0px;
    }

    section.head img.qr {
        display: none;
    }

    section.dark {
        padding-top: 0;
        background: linear-gradient(180deg, #f6f5f4 0%, #f6f5f4 24.6%, #141414 24.6%, #141414 100%)
    }

    .xs-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 32px 0 32px;
        width: 100%;
        padding: 0 24px;
        gap: 8px;
        text-align: center;

        a {
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 48px;
            border-radius: 48px;
            max-width: 260px;
        }

        img {
            margin: 0 !important;
            /*filter: brightness(100);*/
        }
    }

    section.head h1 {
        font-size: 62px;
    }

    section.light .bubble .title {
        font-size: 40px;
        margin: 0 0 12px;
        overflow: hidden;
        line-height: 1.2;
    }

    section.light .bubble p {
        font-size: 14px;
    }

    section.dark .bubble .title {
        font-size: 32px;
    }

    section.dark .bubble p,
    section.dark .bubble span {
        font-size: 14px;
        margin-bottom: 12px;
    }

    section.dark .bubble {
        padding: 20px;
        border-radius: 32px;
        order: 2;
    }

    section.dark .bubble.abs {
        padding: 32px 32px 32px 90px;

        img {
            width: 100px;
            bottom: 10px;
        }

        p {
            margin: 0;
        }
    }

    .swiper {
        height: 700px;
        padding: 0 0 20px !important;
    }

    .swiper-slide img {
        max-height: 500px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        bottom: 40px !important;
    }

    .light.block {
        padding-bottom: 120px;

        .col.d-flex {
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
    }

    .dark.block {
        .col.d-flex {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 80px;
            /* margin: 0; */
        }
    }

    .light.block>.container {
        height: fit-content;
    }

    .dark.block>.container {
        height: fit-content;
    }

    section.light .phone {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-left: 0;
        transform: translateX(-50%);
    }

    section.light .phone img {
        width: 100%;
        margin: 0 auto;
        display: block;
        max-width: 280px;
        top: calc(50% - 360px);
    }

    section.dark .phone {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-left: 0;
        transform: translateX(-50%);
    }

    section.dark .phone img {
        width: 100%;
        margin: 0 auto;
        display: block;
        max-width: 280px;
        top: calc(50% - 390px);
    }

    .section4 .content img {
        width: 241px;
    }

    .section1 .content {
        padding: 100px 0 0;
        margin: 0 0 -100px;
    }

    .section4 .content img {
        height: 400px;
        transform: scale(0.97);
    }

    section.light .content>img {
        transform: scale(1.0);
    }

    section.light .section1 .content img {
        transform: scale(0.8);
    }

    section.light .bubble {
        flex: 0 0 auto;
        width: 100%;
        max-width: 395px;
        margin: 0px;
        order: 2;
        padding: 20px;
        border-radius: 32px;
    }

    .phone_light img {
        transition: all .3s linear;
    }

    .phone_light.xl img {
        transform: scale(1.4);
        opacity: 0;
    }

    .phone_dark img {
        transition: all .3s linear;
    }
    .phone_dark img.static{
        position: static !important;
        margin-top: 170px !important;
        transition: none !important;
    }

    .phone_dark.xl img {
        transform: scale(1.4);
        opacity: 0;
    }

    section.light .section4 .bubble {
        margin: 50px 0 0;
    }

    section.dark .bubble {
        flex: 0 0 auto;
        width: 100%;
        max-width: 395px;
        margin: 0 0 48px;
        padding: 20px;
    }

    .section6 .bubble {
        top: inherit !important;
        min-height: auto;
        padding: 24px !important;

        br {
            display: none;
        }
    }

    section.light .map {
        position: absolute;
        top: 90px;
        left: 50%;
        bottom: 0;
        width: 100%;
        max-width: 600px;
        height: 370vh;
        background: url(../images/map_light.png) top center / cover no-repeat;
        z-index: 0;
        border-radius: 32px;
        margin-left: 0;
        transform: translateX(-50%);
    }

    section.dark .map {
        position: absolute;
        top: 109vh;
        left: 50%;
        bottom: 0;
        width: 100%;
        max-width: 600px;
        height: 233vh;
        background: url(../images/map_dark.png) top center / cover no-repeat;
        z-index: 0;
        border-radius: 32px;
        margin-left: 0;
        transform: translateX(-50%);
    }

    section.light .phone {
        height: 412.5vh;
    }

    section.light .panel:not(.section5) {
        height: 100vh;
    }

    section.dark .panel:not(.section9) {
        height: 100vh;
    }

    section.dark .panel.section7 {
        height: 2px !important;
        /* display: none !important; */
    }

    section.light .section4 {
        margin: 0 !important;
    }

    section.dark .phone {
        height: 274vh;
        top: -10px;
        padding: 0;
    }

    section.dark .content>img {
        transform: scale(1);
    }

    section.light .shift {
        display: none;
    }

    section.dark .shift {
        display: none;
    }

    section .content img {
        /* width: 335px; */
    }

    section.light .content {
        flex: 0 0 65vh;
        text-align: center;
    }

    section.light .section2 .content {
        flex: 0 0 auto;
        margin: 0 0 48px;
    }

    section.light .section3 .content {
        flex: 0 0 auto;
        margin: 0 0 48px;
    }

    section.light .section4 .content {
        flex: 0 0 auto;
        margin: 0 0 48px;
    }

    .section10 .content img {
        width: 247px;
    }

    .section7 .bubble {
        margin: 0;
    }

    section.dark .section7,
    section.dark .section8 {
        display: none;
    }

    .section6 {
        position: relative;
        margin: 0 !important;

        .bubble {
            position: absolute !important;
            bottom: 0;
        }
    }

    section.dark .z1 {
        padding-top: 120px;
    }

    section.green .content.b4 {
        margin-bottom: 24px;
    }

    section.green .content.b4 img {
        bottom: -96px;
    }

    section.green {
        padding-top: 0px;
        border-radius: 0 0 32px 32px;

        .xs-nav {
            position: sticky !important;
            top: 0px;
            z-index: 3 !important;
            padding: 110px 0 20px !important;
        }

        .col-6 {
            flex: 0 0 100%;
            width: 100%;
            max-width: 100%;
            padding: 0 30px;
            height: auto;
            position: relative;
            z-index: 2;
        }
    }

    section.green .ovh {
        border-radius: 0 0 32px 32px;
    }

    section.green .content.b4 p {
        margin-bottom: 280px;
    }

    section.green .nav {
        margin: 0 40px 30px;
        z-index: 6;
    }

    section.green .nav a,
    section.green .nav span {
        color: #780;
    }

    .green-blur {
        position: absolute;
        top: 0;
        z-index: 5;
        inset: auto 0 0 0;
        height: 100%;
        pointer-events: none;
    }

    .green-blur>div,
    .green-blur::before,
    .green-blur::after {
        position: absolute;
        inset: 0;
    }

    .green-blur::before {
        content: "";
        z-index: 1;
        backdrop-filter: blur(20px);
        mask: linear-gradient(to top,
            rgba(168, 202, 19, 0) 0%,
            rgba(168, 202, 19, 1) 12.5%,
            rgba(168, 202, 19, 1) 25%,
            rgba(168, 202, 19, 0) 37.5%);
    }

    .green-blur>div:nth-of-type(6) {
        z-index: 2;
        backdrop-filter: blur(4px);
        mask: linear-gradient(to top,
            rgba(168, 202, 19, 0) 12.5%,
            rgba(168, 202, 19, 1) 25%,
            rgba(168, 202, 19, 1) 37.5%,
            rgba(168, 202, 19, 0) 50%);
    }

    .green-blur>div:nth-of-type(5) {
        z-index: 3;
        backdrop-filter: blur(6px);
        mask: linear-gradient(to top,
            rgba(168, 202, 19, 0) 25%,
            rgba(168, 202, 19, 1) 37.5%,
            rgba(168, 202, 19, 1) 50%,
            rgba(168, 202, 19, 0) 62.5%);
    }

    .green-blur>div:nth-of-type(4) {
        z-index: 4;
        backdrop-filter: blur(8px);
        mask: linear-gradient(to top,
            rgba(168, 202, 19, 0) 37.5%,
            rgba(168, 202, 19, 1) 50%,
            rgba(168, 202, 19, 1) 62.5%,
            rgba(168, 202, 19, 0) 75%);
    }

    .green-blur>div:nth-of-type(3) {
        z-index: 5;
        backdrop-filter: blur(10px);
        mask: linear-gradient(to top,
            rgba(168, 202, 19, 0) 50%,
            rgba(168, 202, 19, 1) 62.5%,
            rgba(168, 202, 19, 1) 75%,
            rgba(168, 202, 19, 0) 87.5%);
    }

    .green-blur>div:nth-of-type(2) {
        z-index: 6;
        backdrop-filter: blur(12px);
        mask: linear-gradient(to top,
            rgba(168, 202, 19, 0) 62.5%,
            rgba(168, 202, 19, 1) 75%,
            rgba(168, 202, 19, 1) 87.5%,
            rgba(168, 202, 19, 0) 100%);
    }

    .green-blur>div:nth-of-type(1) {
        z-index: 7;
        backdrop-filter: blur(14px);
        mask: linear-gradient(to top,
            rgba(168, 202, 19, 0) 75%,
            rgba(168, 202, 19, 1) 87.5%,
            rgba(168, 202, 19, 1) 100%);
    }

    .green-blur::after {
        content: "";
        z-index: 8;
        /*backdrop-filter: blur(64px);*/
        mask: linear-gradient(to bottom,
            rgba(168, 202, 19, 0) 87.5%,
            rgba(168, 202, 19, 1) 100%);
    }

    section.green .annotation {
        position: relative;
        margin: 0 auto 60px;
        max-width: 405px;
        width: calc(100% - 60px);
        bottom: inherit;
        z-index: 1;
        padding: 20px;
        border-radius: 32px;

        p {
            font-size: 16px;
        }
    }

    section.green .nav a,
    section.green .nav span {
        font-size: 36px;
    }

    section.green .content {
        margin: 0 auto 60px;
        padding: 20px;
        border-radius: 32px;
        aspect-ratio: 1;
    }

    section.green .content img {
        max-width: 100vw;
        left: 50% !important;
    }

    section.green .content p {
        font-size: 18px;
    }

    .light .swiper-abs {
        padding-top: 60px !important;
        width: 260px !important;
        margin: 30px auto 0 !important;

        img {
            height: 84px;
        }
    }

    .swiper-abs {
        position: static !important;
        top: inherit;
        left: inherit;
        margin: 0 auto 30px;
        width: calc(100% - 60px) !important;
        padding: 20px !important;
        border-radius: 32px !important;
        max-width: 320px;
    }

    .swiper-contaier {
        padding-top: 0;
    }

    section.green h2 {
        font-size: 36px;

        span {
            display: inline;
        }

        br {
            display: none;
        }
    }

    section.green .app-qr img {
        height: auto;
        width: 56vw;
        max-width: 240px;
    }

    section.green .right,
    section.green .left {
        height: 410px;

        img {
            display: none;
            width: 190% !important;
        }

        .xs {
            display: block;
        }
    }

    section.green .right {
        right: -84px;
    }

    section.green .left {
        left: -84px;
    }

    footer {
        padding-left: 30px;
        padding-right: 30px;
        max-width: 100vw;

        .col-6 {
            width: 100%;
            flex: 0 0 100%;
            max-width: 100%;
            text-align: center;
        }
    }

    footer .d-flex {
        margin: 40px 0 0;
        text-align: left;
        justify-content: center;
    }

    footer ul li strong {
        font-size: 16px;
    }

    footer ul li a {
        font-size: 16px;
    }
}

@media(max-width: 500px) {
    header {
        padding: 20px 20px 0;
    }

    header .header-menu {
        width: 320px;
    }

    section.head h1 {
        font-size: 48px;
    }

    section.head p {
        font-size: 22px;
        padding: 0 24px;
    }

    section.light .panel:not(.section5) {
        height: 100vh;
        margin: 0 !important;
        padding: 0 20px !important;
    }

    section.light .phone {
        padding-top: 0;
        height: calc(365vh + 160px);
    }

    section.light .phone.top {
        padding-top: 0;
        height: calc(369vh + 175px) !important;
    }

    section.light .map {
        height: 350vh;
    }

    section.light .content {
        flex: 0 0 auto;
        text-align: center;
        padding: 0;
    }

    section.light .section1 .content img {
        transform: scale(0.5);
        margin: -120px 0 60px;
        height: 660px;
        object-fit: contain;
        object-position: top;
    }

    section.light .section1 .bubble {
        margin: -100px 0 0;

        p {
            font-size: 12px;
        }
    }

    section.light .section2 .bubble img {
        width: 52px;
    }

    section.light .section2 .content>img {
        transform: scale(0.8);
    }

    section.light .section2 .content .avatar1 {
        transform: scale(0.8);
    }

    section.light .section3 .content {
        margin-bottom: 0;
        margin-top: 20px;
    }

    section.light .section3 .content>img {
        transform: scale(0.7);
        margin: -90px 0 10px;
    }

    section.light .section3 .bubble {
        margin-top: -80px;
    }

    section.light .col.d-flex.section4 .content {
        padding-top: 100px;
        margin: 0;
    }

    section.light .bubble .smile {
        transform: scale(0.6);
        top: -35px;
        right: -60px;
    }

    section.light .bubble .lol {
        position: absolute;
        top: 5px;
        left: 103px;
        width: 42px;
    }

    .image-badge {
        width: 80px;
        height: 90px;
        position: relative;
        flex: 0 0 80px;
    }

    section.light .image-badge .b1 {
        width: 14px;
    }

    section.light .image-badge .b2 {
        width: 60px;
    }

    section.light .image-badge .b3 {
        width: 60px;
    }

    section.light .bubble {
        padding: 12px;
        border-radius: 24px;
    }

    section.light .bubble .title {
        font-size: 24px;
        margin: 0 0 8px;
    }

    section.light .bubble p {
        font-size: 12px;
    }

    section.light .bubble .title .image img {
        width: 42px;
        height: 42px;
        margin-left: -20px;
    }

    section.light .phone img {
        max-width: 220px;
        top: calc(50% - 285px);
    }

    section.light .phone.top img {
        max-width: 220px;
        top: calc(50% - 290px);
    }

    section.light .section4 .bubble {
        margin: 20px 0 0;
    }

    .section4 .content img {
        width: 190px;
        height: 299px;
        border-radius: 0 0 25px 25px;
    }

    section.light .section2 .content {
        margin: 0 0 0px;
    }

    .swiper {
        height: 430px;
        padding: 40px 0 0px !important;
    }

    .swiper-dark {
        height: 400px;
        padding: 0px 0 0 !important;
    }

    .swiper-slide img {
        max-width: 190px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }

    .swiper-abs-img1 img {
        width: 46px;
        height: 64px;
    }

    .swiper-abs {
        max-width: 50vw !important;
        border-radius: 24px !important;
    }

    .swiper-abs p {
        font-size: 14px;
    }

    .light .swiper-abs {
        padding-top: 50px !important;
        width: 100% !important;
        margin: 40px auto 0 !important;
    }

    section.dark .panel {
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 20px !important;
    }

    .dark.block {
        background: linear-gradient(180deg, #f6f5f4 0%, #f6f5f4 8.2%, #141414 8.2%, #141414 100%);

        .col.d-flex {
            gap: 30px;
        }
    }

    .swiper-contaier__dark .swiper-abs img {
        position: static;
        margin: 0 -12px 12px 0;
        width: 36px;
    }

    section.dark .panel.section7 {
        height: 100vh !important;
    }

    section.dark .section9 .content>img {
        transform: scale(0.85);
    }

    .section6 .title {
        height: 46px;
    }

    .section9 .bubble {
        margin: 0;

        p {
            margin: 0;
        }
    }

    .section9 .content {
        padding: 40px 0 0;
        height: 440px;
    }

    section.dark .map {
        height: 420vh;
        top: 51vh;
        border-radius: 0 0 32px 32px;
    }

    .panel.section10 .content {
        padding: 80px 0 0;
        width: 220px;
    }

    .panel.section10 .content img {
        height: 270px;
        width: 190px;
    }

    section.dark .section6 .bubble {
        width: calc(100% - 40px);
        max-width: 395px;
        margin: 0 0 120px;
        padding: 12px 16px !important;
        border-radius: 24px;
    }

    .section6 .bubble.light .toggle {
        transform: scale(0.7);
    }

    .section6 .bubble .toggle {
        transform: scale(0.7);
    }
    section.dark .bubble span {
        margin: 0 0 4px;
    }
    section.dark .bubble p {
        margin: 0;
    }

    section.dark .phone {
        height: 494vh;
    }
    section.dark .phone.top {
        height: 500vh !important;
    }

    section.dark .phone img {
        max-width: 220px;
        top: calc(50% - 340px);
    }

    section.dark .phone_dark.top img {
        top: calc(50% - 230px);
    }

    section.dark .panel.section11 {
        padding: 0 !important;

        .row {
            height: 100%;
        }
    }

    section.dark .bubble .title {
        margin: 0 0 8px;
    }

    section.dark .col.d-flex.section7 {
        display: flex !important;
        height: 100vh;
    }

    section.dark .col.d-flex.section8 {
        display: flex !important;
        height: 100vh;
        position: relative;
        top: -100vh;
        margin: 0 !important;
    }

    .section8 .bubble {
        width: calc(100% - 40px);
        max-width: 395px;
    }

    .swiper-contaier__dark .swiper-abs {
        width: calc(100% - 40px) !important;
        max-width: unset;
        margin: 20px auto 0;
        padding: 12px !important;
    }

    section.dark .bubble.abs {
        padding: 32px 32px 32px 90px;
        width: calc(100% - 60px);
        margin: 60px 0 0;
    }

    section.green {
        .col-6 {
            padding: 0 20px;
        }
    }

    section.green .nav {
        margin: 0 20px 20px;

        a {
            font-size: 28px;
        }
    }

    section.green .content {
        margin: calc((100vh - 400px) / 2) auto;
        aspect-ratio: unset;
        height: 400px;
        width: 100%;
        background: none;
        padding: 0;
    }

    section.green .content .wrapper {
        padding: 16px;
        background: #fff;
        position: relative;
        border-radius: 24px;
        height: 380px;
    }

    section.green .annotation {
        margin: -230px auto 40px;
        width: calc(100% - 40px);
        height: 110px;
        position: static;

        img {
            width: 60px;
        }
    }

    section.green .app-qr img {
        width: 51vw;
    }

    section.green .left {
        left: -70px;

        img {
            width: 250% !important;
        }
    }

    section.green .right {
        right: -70px;

        img {
            width: 250% !important;
        }
    }

    section.green .scrolled .app {
        opacity: 0;
    }

    section.green .ovh.scrolled .left {
        width: 48.5%;
        height: 540px;
        left: -2px;
    }

    section.green .ovh.scrolled .right {
        width: 48.5%;
        height: 540px;
        right: -2px;
    }

    section.green .xs-nav {
        padding: 90px 0 10px !important;
    }

    section.green h2 {
        padding: 0 20px;
    }

    section.green .ovh h2 span {
        display: inline;
    }

    section.green .content.b4 img {
        bottom: -72px;
        height: 320px;
    }

    section.green .content {
        height: 100vh;
        padding: 0 0 80px;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }

    .content.b1:before,
    .content.b2:before,
    .content.b3:before {
        content: '';
        display: block;
        width: 100%;
        height: calc(75vh - 420px);
        display: none;
    }

    section.green .content.b4 {
        height: 98vh;
        padding: 140px 0 0;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .content.b4:after {
        content: '';
        display: block;
        width: 100%;
        height: calc(75vh - 390px);
        display: none;
    }

    section.green h2 {
        font-size: 28px;
        padding: 0 40px !important;
    }
    .green-blur {
        display: none;
    }

    footer {
        padding: 100px 0 40px;
    }
    footer .logo {
        width: calc(100% - 40px);
        margin: 0 auto 40px;
        display: block;
    }

    footer.rus .d-flex {
        display: grid;
        grid-template-columns: 30% 70%;
        gap: 10px;
        padding: 0 20px;

        ul {
            width: 100%;
        }
    }
}

@media screen and (min-width: 1920px){
section.light .col.d-flex.section4 {
    padding: 80px 0 40px;
    margin: 0;

    .content {
        padding-top: 110px;
    }
}
}

/* Скрывает кнопку поиска по картинке */
.ImageActions-Button,
.image-actions,
.media-viewer__action-button,
[class*="image-action"],
[class*="ImageActions"],
[data-bem*="image-actions"],
.button_theme_action::before {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Скрывает контекстное меню поиска */
.popup_theme_normal [class*="image-search"],
.menu__item[class*="image"],
.menu__item[onclick*="image"] {
    display: none !important;
}

/* Убирает обработчики кликов на изображениях */
img {
    pointer-events: none !important;
}

/* Восстанавливает pointer-events для нужных элементов */
a img, button img, img[usemap] {
    pointer-events: auto !important;
}

.safari-browser.safari-only {
    margin: -100px 0 0 0 !important;
}

.safari-browser.safari-only img {
    height: 460px !important;
}

.block6-ru{
    margin: 15px 0 0 0 !important;
}

@media screen and (max-width: 376px) {
    
    .section4 .content img {
        margin-top: -45px;
        width: 185px;
        height: 315px;
        border-radius: 0 0 25px 25px;
    }
    
    .safari-browser.safari-only img {
        height: 280px !important;
    }
    
    section.dark .section6 .bubble {
        width: calc(100% - 40px);
        max-width: 395px;
        margin: 0 0 45px !important;
        padding: 12px 16px !important;
        border-radius: 24px;
    }
    .panel.section10 .content img {
        width: 190px;
        height: 360px !important;
        margin-top: -160px;
    }

    .safari-mobile.safari-only img {
        /* height: 680px !important;
        width: 390px !important; */
    }
    .safari-mobile.safari-only {
        /* margin: 100px 0 0 0 !important; */
    }
    
}

    .safari-mobile.safari-only img {
        height: 370px !important;
        width: 185px !important;
        margin-top: -45px;
    }
    /* .safari-mobile.safari-only {
          margin: -250px 0 0 0 !important;
    } */

            /* Стили для прелоадера
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }
        
        .loader {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            border-top-color: #000;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        .loaded #preloader {
            opacity: 0;
            pointer-events: none;
        } */

          /* Стили для прелоадера с анимацией подпрыгивающих букв */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f6f5f4;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .preloader-content {
            text-align: center;
        }
        
        .preloader-logo {
            width: 183px;
            height: auto;
            margin-bottom: 30px;
        }
        
        .preloader-svg {
            width: 140px;
            height: 23px;
            margin: 0 auto;
        }
             /* Вариант 1: Анимация затухания */
        .preloader-svg path {
            animation: fade 1.5s infinite ease-in-out;
        }
        
        .preloader-svg path:nth-child(1) { animation-delay: 0.1s; }
        .preloader-svg path:nth-child(2) { animation-delay: 0.2s; }
        .preloader-svg path:nth-child(3) { animation-delay: 0.3s; }
        .preloader-svg path:nth-child(4) { animation-delay: 0.4s; }
        .preloader-svg path:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes fade {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 1; }
        }
        
        /* Анимация подпрыгивающих букв */
        /* .preloader-svg path {
            transform-origin: center;
            animation: jump 1.8s infinite ease-in-out;
        } */
/*         
        .preloader-svg path:nth-child(1) { animation-delay: 0.1s; }
        .preloader-svg path:nth-child(2) { animation-delay: 0.2s; }
        .preloader-svg path:nth-child(3) { animation-delay: 0.3s; }
        .preloader-svg path:nth-child(4) { animation-delay: 0.4s; }
        .preloader-svg path:nth-child(5) { animation-delay: 0.5s; } */
        
        @keyframes jump {
            0%, 100% { 
                transform: translateY(0) scale(1);
                opacity: 0.8;
            }
            25% { 
                transform: translateY(-8px) scale(1.05);
                opacity: 1;
            }
            50% { 
                transform: translateY(0) scale(1);
                opacity: 0.8;
            }
            75% { 
                transform: translateY(-4px) scale(1.02);
                opacity: 0.9;
            }
        }
        
        .loading-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }
        
        .loading-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: white;
            animation: dotPulse 1.5s infinite ease-in-out;
        }
        
        .loading-dot:nth-child(1) { animation-delay: 0.1s; }
        .loading-dot:nth-child(2) { animation-delay: 0.2s; }
        .loading-dot:nth-child(3) { animation-delay: 0.3s; }
        
        @keyframes dotPulse {
            0%, 100% { 
                transform: scale(0.8);
                opacity: 0.5;
            }
            50% { 
                transform: scale(1.2);
                opacity: 1;
            }
        }
        
        .loading-text {
            margin-top: 20px;
            font-size: 1rem;
            color: white;
            letter-spacing: 2px;
            animation: pulse 2s infinite;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }
        
        body.loaded #preloader {
            opacity: 0;
            pointer-events: none;
        }

        @media screen and (min-width:2800px) {
            .section10 .content img {
                height: 595px !important;
                width: 300px !important;
                margin-top: -55px;
            }
        }


/* Стили для ripple эффекта */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(91, 91, 91, 0.3);
    transform: scale(0);
    animation: rippleAnimation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes rippleAnimation {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.section6 .bubble.light {
    transition: 1s;
}

.section6 .bubble.nolight {
    transition: 1s;
}