/* Basic Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}

html {
    font-size: 16px;
    line-height: 1.5;
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Отступ для фиксированных элементов */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scrollbar-gutter: stable both-edges;
}

body {
    min-height: 100vh;
    font-family: Open Sans;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    background: #000000;
}
body p {
    color: rgb(189, 192, 186);
}
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

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

table {
    border-collapse: collapse;
    width: 100%;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}
.wrapper {
    display: block;
    position: relative;
    width: 100%;
    max-width: 1126px;
    margin: 0 auto;
    padding: 0 20px;
}
section {
    padding: 100px 0;
}
h1,h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: 0%;
    text-align: center;
    width: 718px;
    margin: 0 auto;
}
h2 {
    font-size: 36px;
    line-height: 44px;
    padding-bottom: 40px;
}
h4 {
    font-size: 22px;
    font-weight: 600;
}
button {
    background: rgb(175, 235, 0);
    color: rgb(15, 16, 14);
    font-size: 16px;
    padding: 18px 40px;
    border-radius: 30px;
    margin-top: 40px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
button:hover {
    transform: translateY(-2px);
    background: rgb(192, 255, 0);
}
/* Navbar Styles */
.header {
    padding: 16px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list,
.nav-list-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-list .nav-item a,
.nav-list-right li {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item img.logo {
    width: 150px;
    height: auto;
}

.Language-list li:hover {
    color: #fff;
    cursor: pointer;
}

.nav-list-right li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-link-on-bot {
    background-color: #222 !important;
    border-radius: 24px;
    padding: 8px 16px;
}

.nav-list-right img {
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 10px;
    margin-top: 2px;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(175, 235, 0);
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}

/* Language Dropdown */
.Language-list {
    position: relative;
    display: flex;
    align-items: center;
}

.Language-list .language-toggle {
    position: relative;
}

.Language-list .language-toggle img {
    display: inline-block;
    box-sizing: content-box;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.Language-list .language-options {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    border-radius: 8px;
    padding: 8px 0;
    width: 80px;
    display: none;
    z-index: 1000;
}

.Language-list .language-options li {
    padding: 8px 16px;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.Language-list .language-options li:hover {
    color: #fff;
    background-color: #333;
}

.Language-list .language-toggle:hover .language-options {
    display: block;
}

/* Main Screen Styles */
.main-screen {
    position: relative;
    background: url('img/image_fixed.png') no-repeat center center;
    background-size: 80%;
    padding: 80px 0;
    text-align: center;
    height: auto;
}

.main-function-list {
    position: relative;
    max-width: 1126px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    height: 500px;
}

.main-function-list p {
    background-color: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    max-width: 280px;
}

.main-function-list p:nth-child(1) {
    position: absolute;
    top: 38%;
    left: 12%;
}

.main-function-list p:nth-child(2) {
    position: absolute;
    top: 38%;
    right: 12%;
}

.main-function-list p:nth-child(3) {
    position: absolute;
    bottom: 20%;
    left: 0;
}

.main-function-list p:nth-child(4) {
    position: absolute;
    bottom: 20%;
    right: 0;
}

.function-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.function-list ul {
    flex: 1;
    list-style: none;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

.function-list ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

.function-list ul li::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background: url('img/icon24pxCheck.svg') no-repeat center center;
    background-size: contain;
    vertical-align: middle;
}

.function-list img {
    flex: 1;
    max-width: 500px;
    height: auto;
}

@media screen and (max-width: 900px) {
    .function-list {
        flex-direction: column;
        gap: 40px;
        padding: 40px 0;
    }

    .function-list ul {
        width: 100%;
        margin-bottom: 20px;
    }

    .function-list ul li {
        justify-content: flex-start;
        padding: 0 20px;
    }

    .function-list img {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
}

/* services */
.services {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.services ul {
    flex: 1;
    list-style: none;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    text-align: right;
}

.services ul:first-of-type {
    text-align: left;
}

.services ul li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    text-align: right;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(56, 59, 53);

}

.services ul:first-of-type li {
    justify-content: flex-start;
    text-align: left;
}

.services ul li p {
    margin: 0;
    font-weight: 400;
    margin-top: 10px;
}

.services img {
    flex: 1;
    max-width: 250px;
    height: auto;
    margin: 0 60px;
}

.services ul:first-of-type li {
    justify-content: space-between;
    text-align: left;
}

.services ul:last-of-type li {
    justify-content: space-between;
    text-align: right;
}

.services ul li span {
    font-size: 45px;
    font-weight: 700;
    min-width: 80px;
}

.services ul:first-of-type li span {
    text-align: right;
}

.services ul:last-of-type li span {
    text-align: left;
}

/* advantages */
.wrap-advantages {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    background: url('img/bg.png') center center no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.advantages {
    width: 100%;
    max-width: 1126px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}
.advantages div {
    width: calc(50% - 20px);
    padding: 60px;
    border-radius: 30px; 
    background: rgb(15, 16, 14);
    margin-top: 20px;
    text-align: left;
}
.advantages div h4 {
    padding-bottom: 20px;
}
/* this-work */
.this-work {
    text-align: center;
}
.this-work .text {
    width: 628px;
    font-size: 18px;
    margin: 0 auto;
}

/* Обёртка вокруг .wrap-work */
.this-work-wrapper {
    position: relative;
    overflow: visible;
}

.wrap-work {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    text-align: left;
    background: #000;
}

.wrap-work-left,
.wrap-work-right {
    width: 26%;
    position: relative;
    min-height: 600px;
}

.parallax-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Стили для первых списков */
.parallax-list.first {
    transform: translateY(0);
}

.parallax-list.first.visible {
    opacity: 1;
    visibility: visible;
}

/* Стили для вторых списков */
.parallax-list.second {
    opacity: 0;
    visibility: hidden;
}

.wrap-work-left .parallax-list.second {
    transform: translateY(30%);
}

.wrap-work-right .parallax-list.second {
    transform: translateY(30%);
}

/* Анимация при прокрутке */
.this-work-wrapper.animate .wrap-work-left .parallax-list.first {
    transform: translateY(-30%);
    opacity: 0;
    visibility: hidden;
}

.this-work-wrapper.animate .wrap-work-right .parallax-list.first {
    transform: translateY(-30%);
    opacity: 0;
    visibility: hidden;
}

.this-work-wrapper.animate .parallax-list.second {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.wrap-work .mobile-img {
    position: relative;
    width: 34%;
    align-self: flex-start;
}

.wrap-work ul li {
    box-sizing: border-box;
    border-bottom: 1px solid rgb(91, 95, 86);
    padding-bottom: 20px;
    margin-top: 80px;
}

.wrap-work h4 {
    font-size: 18px;
    font-weight: 600;
    padding: 20px 0;
}
.wrap-work p {
    font-size: 14px;
    font-weight: 400;
}

.wrap-work .ico {
    width: 47px;
    height: 47px;
    margin-bottom: 20px;
}
/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .wrap-work {
        flex-direction: column;
        align-items: center;
    }

    .wrap-work-left,
    .wrap-work-right {
        width: 100%;
        min-height: auto;
        margin-bottom: 40px;
    }

    .parallax-list {
        position: relative;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .wrap-work .mobile-img {
        width: 80%;
        margin: 40px auto;
    }
}

/* Медиа запрос для переключения хедеров */
@media screen and (max-width: 900px) {
    .desktop-header {
        display: none !important;
    }
    
    .mobile-header {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #000000;
        z-index: 1000;
    }

    .wrapper {
        width: 100%;
        padding: 0 15px;
    }

    /* Адаптация главного экрана */
    .main-screen {
        background-size: 80%;
        background-position: center;
        margin-top: -10%;
    }

    .main-screen h1 {
        position: relative;
        font-size: 32px;
        line-height: 1.2;
        max-width: 444px;
        margin: 0 auto;
        padding: 0 20px;
        margin-top: 600px;
    }

    /* Скрываем десктопный список и показываем мобильный */
    .main-function-list {
        display: none !important;
    }

    .main-function-list-mobile {
        display: block !important;
        margin-top: 24px;
    }

    .main-screen button {
        margin: 24px auto;
    }

    .main-function-list {
        height: auto;
        margin: 0 auto;
    }

    .main-function-list p {
        position: static;
        font-size: 14px;
        background-color: #333;
        padding: 12px 24px;
        border-radius: 24px;
        margin: 10px;
    }

    .burger-menu {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 16, 14, 0.95);
        padding: 20px;
        z-index: 1000;
    }

    .nav-list.active {
        display: block;
    }

    .nav-list .nav-item {
        margin: 15px 0;
        text-align: center;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Анимация для бургера */
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Стили для языков и телеграм бота */
    .language-toggle {
        position: relative;
    }

    .nav-link-on-bot {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #222;
        padding: 8px 16px;
        border-radius: 24px;
        font-size: 14px;
    }

    .services ul:last-of-type li {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }
    .services ul:last-of-type li span {
        order: 2;
        margin-left: 16px;
        text-align: right;
        min-width: 80px;
    }
    .services ul:last-of-type li p {
        order: 1;
        margin: 0;
        text-align: left;
    }
}

/* FAQ */
.wrap-faq {
    display: flex;
    justify-content: space-between;
    border-radius: 30px; 
    background: radial-gradient(148.00% 100.00% at 53% 0%,rgba(192, 198, 153, 0.08),rgba(192, 198, 153, 0.08) 0.01%,rgba(255, 249, 100, 0.15) 30.521%,rgba(175, 235, 0, 0.15) 49.271%,rgba(196, 202, 149, 0.08) 100%);
    text-align: left;
    padding: 80px 108px;
}

.wrap-faq > div {
    width: 50%;
}

.wrap-faq > div h2 {
    font-size: 32px;
    max-width: 410px;
    text-align: left;
    margin-left: 0;
}

.wrap-faq > div p {
    font-size: 14px;
    max-width: 410px;
    padding-bottom: 10px;
}

.wrap-faq-content {
    max-width: 520px;
    padding: 18px 30px 8px;
    height: auto;
    border-radius: 30px; 
    background: rgba(15, 16, 14, 0.8);
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wrap-faq-content:hover {
    background: rgba(25, 26, 24, 0.8);
}

.wrap-faq-content h5 {
    font-size: 16px;
    font-weight: 600;
    max-width: 100%;
    position: relative;
    padding-right: 60px; 
}

.wrap-faq-content h5::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.wrap-faq-content.active h5::after {
    transform: translateY(-50%) rotate(-135deg);
}

.wrap-faq-content p {
    max-width: 460px;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform, height;
}

.wrap-faq-content.active p {
    height: auto;
    padding-top: 20px;
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 900px) {
    .wrap-faq {
        flex-direction: column;
        padding: 40px 20px;
    }

    .wrap-faq > div {
        width: 100%;
    }

    .wrap-faq > div:first-child {
        margin-bottom: 40px;
    }

    .wrap-faq > div h2 {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 20px;
    }

    .wrap-faq > div p {
        max-width: 100%;
        text-align: left;
        margin: 0 auto;
    }

    .wrap-faq > div button {
        display: block;
        margin: 20px auto;
    }

    .wrap-faq-content {
        max-width: 100%;
    }
}

/* registration */
.registration {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.registration div {
    width: 50%;
    margin-top: 60px;
}

.registration div h2 {
    font-size: 36px;
    font-weight: 700;
    max-width: 434px;
    margin: 0;
    text-align: left;
}

.registration img {
    width: 50%;
    max-width: 500px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .registration {
        flex-direction: column;
        text-align: center;
    }

    .registration div,
    .registration img {
        width: 100%;
        margin-top: 30px;
    }

    .registration div h2 {
        font-size: 28px;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .registration div button {
        margin: 20px auto;
    }
}

/* footer */
.wrapper.bg-grey {
    position: relative;

    width: 100%;
    max-width: 100%;
    background: rgb(26, 27, 24);
}

.footer {
    width: 1126px;
    margin: 0 auto;
    padding-top: 100px;
}

.wrap-nuv-footer,
.social {
    display: flex;
    justify-content: space-between;
}

.wrap-nuv-footer ul li {
    padding-bottom: 20px;
}

.contact li a {
    font-size: 18px;
}

.color-text {
    color: rgb(138, 143, 131);
}

.wrap-nuv-footer ul.social li {
    margin-right: 20px;
    border-radius: 50%;
}

.copiring {
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    color: rgb(138, 143, 131);
    border-top: 2px solid rgb(56, 59, 53);
    margin-top: 100px;
}

.to-top {
    position: fixed;
    z-index: 999;
    background: url('img/button_to-top.png') center center no-repeat;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    right: 40px;
    bottom: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: translateY(20px);
}

.to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.to-top:hover {
    transform: translateY(-5px);
    opacity: 0.8;
    background: url(img/button_to-top.png) center center no-repeat;
    background-color: #000;
}

/* Removing problematic fade-in styles */
/* End of file */

/* Базовые стили мобильного хедера */
.mobile-header {
    display: none; /* По умолчанию скрыт */
    width: 100%;
    background: #000000;
    z-index: 1000;
}

.mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    position: relative;
}

.mobile-logo {
    display: block;
}

.mobile-logo img {
    height: 32px;
    width: auto;
}

.mobile-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-language {
    position: relative;
    cursor: pointer;
}

.mobile-language img {
    width: 24px;
    height: 24px;
}

.mobile-language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: #222;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 80px;
    display: none;
    z-index: 1000;
}

.mobile-language-options li {
    padding: 8px 16px;
    color: #888;
    font-size: 14px;
    transition: color 0.3s ease;
    text-align: center;
}

.mobile-language-options li:hover {
    color: #fff;
    background: #333;
}

.mobile-language.active .mobile-language-options {
    display: block;
}

.mobile-telegram {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #222;
    border-radius: 24px;
    font-size: 14px;
}

.mobile-telegram img {
    width: 20px;
    height: 20px;
}

.mobile-burger {
    width: 24px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 0;
}

.mobile-burger:hover,
.mobile-burger:active,
.mobile-burger:focus {
    background: none !important;
    outline: none;
}

.mobile-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.mobile-burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-burger.active span:nth-child(2) {
    opacity: 0;
}

.mobile-burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 16, 14, 0.95);
    padding: 20px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu ul li a {
    font-size: 16px;
    color: #fff;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: none;
}
.mobile-menu button:hover,
.mobile-menu button:active {
    background: none;
}

/* Стили для мобильного списка функций */
.main-function-list-mobile {
    display: none;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.function-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.function-slider-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 16px;
}

.function-slider-track p {
    background-color: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 900px) {
    .main-function-list-mobile {
        display: block;
        margin-top: 24px;
    }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
    .wrap-work {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    .wrap-work-left,
    .wrap-work-right {
        width: 30%;
        min-width: 180px;
        max-width: 60%;
        margin-bottom: 0;
        padding: 0;
    }
    .wrap-work .mobile-img {
        display: block;
        width: 40%;
        max-width: 240px;
        min-width: 120px;
        margin-left: 2%;
        margin-right: 0;
        align-self: flex-start;
    }
}

@media screen and (max-width: 900px) {
    .services {
        flex-direction: column;
        gap: 40px;
    }

    .services ul {
        width: 100%;
        text-align: center;
    }

    .services ul li {
        justify-content: center;
    }

    .services img {
        width: 100%;
        max-width: 200px;
        margin: 20px auto;
    }

    .services ul:first-of-type li,
    .services ul:last-of-type li {
        justify-content: space-between;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .advantages {
        flex-direction: column;
    }
    
    .advantages div {
        width: 90%;
        padding: 30px;
        margin: 0 auto;
        margin-top: 15px;
    }

    .footer {
        width: 100%;
        padding: 60px 20px;
    }

    .wrap-nuv-footer {
        flex-direction: column;
        gap: 30px;
    }

    .wrap-nuv-footer ul {
        width: 100%;
        text-align: center;
    }

    .social {
        justify-content: center;
    }

    .copiring {
        text-align: center;
        margin-top: 60px;
        padding: 20px;
    }
}

/* Мобильная версия блока Как это работает */
.this-work-mobile { display: none; }
@media screen and (max-width: 900px) {
  .this-work { display: none !important; }
  .this-work-mobile { display: block; padding: 60px 0 0 0; margin-bottom: 100px; }
  .this-work-mobile-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }
  .this-work-mobile .text {
    width: 60%;
    margin: 0 auto;
    text-align: center;
  }
  .this-work-mobile-lists {
    width: 60%;
  }
  .this-work-mobile-lists ul {
    padding: 0;
    margin: 0;
    width: 80%;
    margin-left: 10%;
  }
  .this-work-mobile-lists li {
    display: block;
    margin-bottom: 24px;
    padding: 18px 16px;
    border-bottom: 1px solid rgb(91, 95, 86);
  }
  .this-work-mobile-lists li img {
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
  }
  .this-work-mobile-lists h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
  }
  .this-work-mobile-lists p {
    font-size: 14px;
    margin: 0;
    color: rgb(189, 192, 186);
  }
  .this-work-mobile-img {
    width: 40%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .this-work-mobile-img img {
    width: 90%;
    height: auto;
    border-radius: 24px;
    margin-right: 10%;
  }
  .this-work-mobile button {
    margin: 32px auto 0 auto;
    display: block;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 900px) and (min-width: 601px) {
  .vertical-slider {
    height: 600px; /* Высота будет равна высоте изображения */
    overflow: hidden;
    position: relative;
  }

  .vertical-slider-track {
    display: flex;
    flex-direction: column;
    animation: verticalScroll 20s linear infinite;
  }

  .vertical-slider-track ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .vertical-slider-track li {
    height: 300px; /* Высота для 2 элементов в кадре */
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  @keyframes verticalScroll {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-50%);
    }
  }

  /* Пауза анимации при наведении */
  .vertical-slider:hover .vertical-slider-track {
    animation-play-state: paused;
  }
}

/* Отключаем анимацию для экранов меньше 600px */
@media screen and (max-width: 600px) {
  .vertical-slider {
    height: auto;
    overflow: visible;
  }
  
  .vertical-slider-track {
    animation: none;
  }

  .vertical-slider-track ul:last-child {
    display: none;
  }
  .wrap-advantages {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .main-screen h1 {
    margin: 0 auto;
    margin-top: 360px;
    width: 80%;
  }
  .function-list ul li {
    font-size: 16px;
  }
  .services ul li span {
    font-size: 36px;
  }
  .services img {
    width: 138px;
    margin: 0 auto;
  }
  .function-list img {
    max-width: 344px;
  }
  .wrapper {
    padding: 0;
  }
  h2,
  .wrap-faq > div h2,
  .registration div h2 {
    font-size: 24px;
  }
  .advantages div h4 {
    font-size: 18px;
  }
  .advantages div p {
    font-size: 14px;
  }
  .this-work-mobile-flex {
    display: none;
  }
  .this-work {
    display: block !important;
  }
  .this-work .text {
    width: 60%;
    margin: 0 auto;
  }
  .this-work .this-work-wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .wrap-work .mobile-img {
    width: 232px;
    height: auto;
  }
}
@media (max-width: 1200px) {
    .footer {
        width: 100%;
    } 
    h2 {
        width: 100%;
    }
}

/* Pricing Table Styles */
.wrap-pricing-table {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    background: url(img/bg.png) center center no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.table-container {
    width: 100%;
    max-width: 1064px;
    overflow-x: auto;
    margin: 0 auto;
    padding: 0 8px;
    /* background и border-radius можно добавить при необходимости */
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #fff;
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgb(56, 59, 53);
}

.pricing-table th {
    font-weight: 400;
    font-size: 16px;
    color: rgb(189, 192, 186);
    white-space: nowrap;
}

.pricing-table th:first-child {
    font-weight: 600;
}

.pricing-table td {
    font-size: 14px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

/* Updated styles for the first column */
.pricing-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-table .crypto-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Responsive styles for the pricing table */
@media screen and (max-width: 900px) {
    .table-container {
        width: 344px;
        padding: 0 8px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .pricing-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
    }
    .pricing-table thead {
        display: none;
    }
    .pricing-table tbody {
        display: block;
    }
    .pricing-table tr {
        display: block;
        margin-bottom: 32px;
        padding-bottom: 16px;
        margin-top: 60px;
    }
    .pricing-table td {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        padding: 0;
        border: none;
        font-size: 15px;
        background: none;
        position: relative;
        min-height: 32px;
    }
    .pricing-table td:first-child {
        font-weight: 600;
        font-size: 16px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 12px;
        width: 100%;
        padding-left: 20px;
        border-bottom: 2px solid rgb(56, 59, 53) !important;
        padding-bottom: 10px;
    }
    .pricing-table td:not(:first-child) {
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 0;
        padding: 8px 0;
        border: none;
        box-sizing: border-box;
        border-bottom: 1px solid rgb(56, 59, 53) !important;

    }
    .pricing-table td:not(:first-child)::before {
        content: attr(data-label);
        color: #bdbeba;
        font-size: 14px;
        font-weight: 400;
        margin-right: auto;
        text-align: left;
    }
    .pricing-table td:not(:first-child) {
        justify-content: flex-end;
        flex-wrap: wrap;
        flex-direction: column;
        padding-left: 20px;
    }
    .pricing-table .crypto-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
}

.this-work-wrapper.animate .parallax-list {
  animation: fadeInMove 1s ease-in-out forwards;
}
.this-work-wrapper.animate .parallax-list {
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}


/* Добавляем анимацию появления элементов при скролле */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
