:root {
    --neutral-30: 195 3% 27%;
    --black: 0 0% 0%;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 0.9375vw;
    scroll-behavior: smooth;
    cursor: default;
}

@media (max-width: 768px) {
    html {
        font-size: 2.5vw;
    }
}

body {
    color: #767779;
    font-family: Urbanist;
    background: #171616;
    font-size: 1.18vw;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        font-size: 1.75rem;
    }
}

h1, h2, h3, h4, h5 {
    color: #fff;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 110%;
}

h1 > span, h2 > span {
    background: #fee68c;
    background: linear-gradient(to right, #fee68c 53%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 3rem;
    }
    h5 {
        font-size: 1.25rem;
    }
    h6 {
        font-size: 1.75rem;
    }
}

section {
    margin: 8rem 0;
}

footer {
    padding-top: 3rem;
    padding-bottom: .5rem;
    background-color: #151414;
}

a {
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    color: #fee68c !important;
}

p {
    line-height: 148%;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-padding-top {
    padding-top: 8rem;
}

.section-padding-bottom {
    padding-bottom: 8rem;
}

.close {
    display: none;
}

.close.active {
    display: block;
}

.img-reset {
    object-fit: unset;
}

.img-reset-full {
    width: auto;
    height: auto;
    object-fit: unset;
}

/** Backgrounds **/
.bg-dark {
    background-color: #1b1c1f !important;
}

/** Position **/
.inset-0 {
    inset: 0;
}

/** container **/
.container-xl {
    max-width: unset;
    padding: 0 10rem;
    position: relative;
    width: 100vw;
}

@media (max-width: 768px) {
    .container-xl {
        padding: 0 1.5rem;
        width: auto;
    }
}

@media (min-width: 1921px) {
    .col-xxxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/** text **/
.text-xs {
    font-size: 1rem;
}

.text-sm {
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .text-sm {
        font-size: 1.75rem;
    }
}

.text-lead {
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 127%;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .text-lead {
        font-size: 1.5rem;
    }
}

.text-label {
    display: inline-block;
    color: #ffe68b;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    border-radius: 1rem;
    background: #171616;
    padding: 0.4rem 1.25rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.text-label.text-label--light {
    background: #272727;
}

@media (max-width: 768px) {
    .text-label {
        font-size: 1.25rem;
    }
}

/** paddings **/
@media (min-width: 1900px) {
    .px-xxl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
}

/** Background **/
.bg-behind {
    z-index: -1;
}

/** header **/
nav {
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    animation-iteration-count: 1;
    background: linear-gradient(45deg, #1b1c1f 57%, transparent);
    z-index: 4;
}

.header-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

/** Hero **/
.hero {
    padding: 5vw 0;
    margin-top: 64px;
    border-bottom-right-radius: 64px;
    border-bottom-left-radius: 64px;
    background: #1b1c1f;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 4rem;
    }
}

/** buttons **/
.btn {
    display: flex;
    align-items: center;
    color: #fff !important;
    position: relative;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    border-radius: 0.5rem;
    padding: 0 2rem;
    height: 3rem;
    background: #292a2e;
    outline: none;
    border: none;
    box-shadow: none !important;
    transition: all .3s ease;
}

@media (max-width: 768px) {
    .btn {
        font-size: 1.75rem;
        height: 4.5rem;
    }
}

.btn svg {
    width: 1.25vw;
    min-width: 2rem;
    margin-left: .5rem;
}

.btn span svg {
    width: 24px;
    margin-left: .5vw;
}

.btn:hover, .btn:active {
    color: #292a2e !important;
    background: #fff !important;
}

.btn-primary {
    color: #171616 !important;
    background: #fee68c;
}

.btn-sm {
    font-size: 1rem;
    height: 2.25rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .btn-sm {
        font-size: 1.75rem;
        height: 4rem;
    }
}

.btn-xsm {
    font-size: 0.875rem;
    height: 2rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .btn-xsm {
        font-size: 1.75rem;
        height: 4rem;
    }
}

/** Icons **/
.icon-sm {
    width: 64px;
    height: 64px;
}

/** Cards **/
.gradient-card {
    position: relative;
    isolation: isolate;
    padding-block: 2.5rem;
    background: linear-gradient(180deg, #171616 68.54%, rgb(23 22 22) 86.92%);
}

.gradient-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    background: linear-gradient(hsl(var(--neutral-30)), #201f1f) border-box;
    -webkit-mask: linear-gradient(hsl(var(--black)) 0 0) padding-box, linear-gradient(hsl(var(--black)) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.gradient-card:hover {
    background: linear-gradient(180deg, #232323 68.54%, rgb(23 22 22) 86.92%);
}

.gradient-card h5,
.gradient-card h6 {
    max-width: 12.5rem;
    margin: 0 auto;
}

.gradient-card h5 {
    font-size: 1.125rem;
}

.gradient-card h6 {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .gradient-card h5,
    .gradient-card h6 {
        font-size: 1.75rem;
    }
}

/* Marquee */
.marquee {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0.5rem;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    min-width: 100%;
}

.marquee-content > * {
    padding: 0 2rem;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 0.5rem));
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-content {
        animation-play-state: paused !important;
    }
}

.marquee-content {
    animation: marqueeScroll 16s linear infinite;
}

.marquee--reverse .marquee-content {
    animation-direction: reverse;
}

.marquee--hover-pause:hover .marquee-content {
    animation-play-state: paused;
}


/** Marquee **/
.js-marquee {
    margin-right: 20px;
    float: left;
}

.marquee-container {
    position: static;
    max-width: 1600px;
    padding: 0 15px;
    margin: 0 auto;
}

.marquee-one {
    position: relative;
}

.marquee-one .inner-container .marquee-one_bg {
    background-image: url(../../assets/images/social-one_pattern.png);
    position: absolute;
    left: 0;
    top: 0;
    width: 225px;
    bottom: 0;
    z-index: 1;
    background-repeat: repeat-y;
}

.marquee-one .inner-container .marquee-one_bg-two {
    background-image: url(../../assets/images/social-one_pattern-two.png);
    position: absolute;
    right: 0;
    top: 0;
    width: 225px;
    bottom: 0;
    z-index: 1;
    background-repeat: repeat-y;
}

.marquee-one .inner-container {
    position: relative;
    overflow: hidden;
}

.marquee-one .marquee-box_one {
    position: relative;
    text-align: center;
    min-height: 120px;
}

.marquee-one .marquee_icon-box {
    position: relative;
    margin: 0 10px;
    display: inline-block;
}

.marquee_icon-box {
    position: relative;
    border-radius: 4px;
    display: inline-block;
    background: rgba(28, 28, 28, 0.50);
    background: linear-gradient(to bottom, rgb(30 30 30 / 34%) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee_icon-box.marquee_icon-box--fluid {
    background: transparent;
    float: left;
    margin: 0 2rem;
}

.marquee_icon-box img {
    opacity: 0.6;
}

.marquee-wrapper {
    width: 100000px;
    transform: translateX(0px);
    animation: 26.65s linear 0s infinite normal none running marqueeAnimation;
}

.marquee-wrapper2 {
    width: 100000px;
    transform: translateX(-1345.62px);
    animation: 26.65s linear 0s infinite normal none running marqueeAnimation2;
}

@keyframes marqueeAnimation {
    100% {
        transform: translateX(-1345.62px);
    }
}

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

@keyframes marqueeAnimation3  {
    100%  {
        transform:translateX(-1956px)
    }
}

/** Integrations **/
.integrations-wrapper {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.integrations-wrapper__inner {
    position: relative;
    isolation: isolate;
}

.integrations-wrapper__inner::after {
    content: "";
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 0.5rem;
    transform: translateX(-50%);
    width: 150%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: hsl(0deg 1.86% 7.99%);
    z-index: -1;
}

.integrations-wrapper__inner::before {
    content: "";
    position: absolute;
    inset-inline-start: -25%;
    inset-block-start: 0;
    width: 150%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-image: linear-gradient(90deg, rgba(77, 137, 249, 0) 12%, #fee68c 32%, #fff 68%, rgba(237, 109, 75, 0) 87%);
    animation: rotate360 10s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
    z-index: -2;
}

@keyframes rotate360 {
    0% {
        transform: rotateZ(-80deg);
    }
    50% {
        transform: rotateZ(80deg);
    }
    100% {
        transform: rotateZ(-80deg);
    }
}

/** Products **/
.products-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-size: cover;
    background-image: url(../../assets/images/dots-bg.png);
    opacity: 0.7;
}

.products-shadow {
    padding: 100px 0 360px;
    position: absolute;
    left: 0;
    top: -700px;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    background-position: center top;
    background-repeat: no-repeat;
    background-image: url(../../assets/images/integrations-shadow.png);
    z-index: 1;
}

.products-img {
    position: relative;
    isolation: isolate;
    border: 1rem solid hsl(0deg 0% 15.69%);
}

.products-img-path {
    display: none;
    width: auto;
    height: 8vw;
    object-fit: unset;
}

@media (min-width: 1400px) {
    .products-img-path {
        display: block;
        position: absolute;
        top: calc(100% + 0.92rem);
        inset-inline-end: 50%;
        z-index: -1;
    }
}

.products {
    /*background-image: url(../../assets/images/products-bg.png);*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-space-sm-top {
    margin-top: 1.5rem;
}

@media (max-width: 2560px) {
    .section-space-sm-top {
        margin-top: 3rem;
    }
}

.section-space-sm-y {
    padding-block-start: clamp(2rem, 3.25vw + 1rem, 3.75rem);
    padding-block-end: clamp(2rem, 3.25vw + 1rem, 3.75rem);
}

.section-space-sm-bottom {
    padding-block-end: clamp(2rem, 3.25vw + 1rem, 3.75rem);
}

/** Accordion **/
.accordion-wrapper {
    border: 1px solid #2f2f2f !important;
    padding: 1rem;
}

.accordion-inner {
    color: #fff;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 112%;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .accordion-inner {
        font-size: 1.625rem;
    }
}

.accordion-inner.active {
    color: #fee68c;
}

.accordion .accordion-wrapper:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.accordion .accordion-wrapper:last-child {
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.accordion-inner:after {
    content: '\002B';
    color: #fff;
    font-weight: bold;
    width: 2vw;
    height: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
}

/** Panel **/
.panel {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    color: #fff;
    font-size: 0.875rem;
    text-align: left;
    padding-top: 1rem;
    margin-bottom: 0;
}

@media (max-width: 2560px) {
    .panel p {
        font-size: 1.25rem;
    }
}

.priority-2 {
    position: relative;
    z-index: 2;
}

/** Footer **/
footer ul li {
    list-style-type: none;
}

footer ul li a {
    color: #86878a;
    font-size: 1rem;
    line-height: 203%;
}

@media (max-width: 768px) {
    footer ul li a {
        font-size: 1.5rem;
    }
}













.navbar-toggle {
    display: none;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 7vw;
    height: 1.5vw;
    margin: 0.7vw;
    background: #FFF;
    border-radius: 50px;
    transition: all 0.5s;
}

.navbar-toggle span:nth-child(2) {
    width: 5vw;
}

.header .navbar {
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header .navbar .left-side-menu {
    display: flex;
    align-items: center;
}

.header .navbar .left-side-menu img {
    width: auto;
    margin-right: 1.25rem;
}

.header .navbar .left-side-menu .logo-text {
    font-size: 2.5rem;
    font-weight: bold;
}

.center-menu {
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 2vw;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
}

.center-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-menu a .effect {
    width: 1vw;
    height: 1vw;
}

.header .center-menu .tg img {
    width: 2vw;
    transition: all .3s;
}

.header .center-menu .tg img:hover {
    transform: translateY(-0.4vw);
    filter: drop-shadow(0px 0.1vw .5vw rgba(255, 255, 255, 0.25));
}

.header .center-menu a {
    color: #86878a;
    font-size: 1rem;
    font-style: normal;
}

.header .center-menu a.btn {
    color: #171616 !important;
    height: 2.5rem;
    border-radius: 3rem;
}

.header .center-menu .right-side-menu {
    margin-left: auto;
}

.header .social-icons {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.header .social-icons img {
    width: 2.5vw;
}

.header .social-icons img:hover {
    filter: saturate(500%);
}

.star-1 {
    position: absolute;
    width: 2vw;
    height: auto;
    top: 5vw;
    left: 57vw;
    animation: fadeIn 2s infinite alternate, rotate 4s infinite alternate;
}

.star-2 {
    position: absolute;
    width: 2vw;
    height: auto;
    top: 18vw;
    left: 24vw;
    animation: fadeIn 2s infinite alternate, rotate 4s infinite alternate, bright 2s infinite alternate;
}

.star-3 {
    position: absolute;
    width: 2vw;
    height: auto;
    bottom: 3vw;
    right: 32vw;
    animation: fadeIn 2s infinite alternate, rotate 4s infinite alternate, bright 2s infinite alternate;
}

@keyframes bright {
    0% {
        filter: brightness(100%);
    }
    100% {
        filter: brightness(200%);
    }
}

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

/** Social **/
.social {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 40%;
    left: 20px;
    z-index: 2;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #292a2e;
    padding: 16px;
    margin: 6px 0;
    border-radius: 0.25rem;
    box-shadow: 2px 2px 0 rgb(17 19 21);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.social-item > img {
    margin-right: 0;
}

.social-item:hover {
    background-color: #514a33;
}

@media (max-width: 1520px) {
    .social {
        display: none;
    }
}

@media (max-width: 1280px) {
    .header {
        animation: none;
    }

    .header, .navbar {
        border-radius: 0vw;
    }

    .center-menu {
        width: 58%;
    }
}


@media (max-width: 980px) {
    .header .navbar {
        padding: 1vw 2.5vw;
    }

    .header .navbar .left-side-menu a img {
        width: auto;
    }

    .header .center-menu .tg img {
        width: 6vw;
    }

    .header .center-menu #market:hover {
        background: transparent;
    }

    .header .center-menu .tg li {
        font-size: 5vw;
        padding: 2vw 2vm;
    }

    .header .center-menu .tg li:hover {
        border-radius: 0vw;
        background: transparent;
        top: 0;
        transform: scale(1.1);
    }

    .header .center-menu .tg:hover li {
        color: #000000;
    }

    .center-menu {
        display: flex;
        width: 94vw;
        height: 90vw;
        flex-direction: column;
        justify-content: center;
        gap: 2vw;
        padding-top: 5vw;
        margin-top: -900px;
        transition: all 1s ease-in-out;
        position: absolute;
        top: 6vw;
        left: 3vw;
        z-index: -1;
        border-radius: 2vw;
    }

    .menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3vw;
    }

    .header .social-icons img {
        width: 5vw;
    }

    .center-menu.active {
        margin-top: 0;
        z-index: 100;
        border-radius: 16px;
        background: #292a2e !important;
        padding-top: 0;
        height: 23rem;
    }

    .center-menu .tg {
        width: 94vw;
        display: flex;
        justify-content: center;
        transition: all 0s;
    }

    .header .navbar .center-menu .right-side-menu {
        margin-left: 0%;
        margin-bottom: 1vw;
    }

    .navbar-toggle span {
        display: block;
        width: 4vw;
        height: .5vw;
        margin: 0.7vw;
        border-radius: 50px;
        transition: all 0.5s;
    }

    .navbar-toggle span:nth-child(2) {
        width: 2.8vw;
    }

    .navbar-toggle {
        display: block;
        z-index: 101;
    }

    .navbar-toggle.active span:nth-child(1) {
        transition-delay: 0.1s;
        transform: rotate(45deg) translate(.8vw, .8vw);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transition-delay: 0.1s;
        transform: rotate(-45deg) translate(0vw, 0vw);
        position: relative;
        top: -1.6vw;
    }

    .header .navbar .center-menu .btn1.active {
        margin-bottom: 25vw;
    }
}

@media (max-width: 600px) {
    .header .container-xl {
        padding: 0;
    }

    .header .social-icons {
        gap: 2vw;
    }

    .header .social-icons img {
        width: 10vw;
    }

    .header .navbar .left-side-menu a img {
        height: auto;
        position: relative;
    }

    .header .navbar .left-side-menu a {
        font-size: 4vw;
    }

    .header .center-menu a {
        font-size: 5vw;
    }

    .center-menu {
        border-radius: 2vw;
        height: 60vw;
        height: 95vw;
    }

    .navbar-toggle span {
        display: block;
        width: 5vw;
        height: .6vw;
        margin: 0.7vw;
        border-radius: 50px;
        transition: all 0.5s;
    }

    .navbar-toggle span:nth-child(2) {
        width: 3.5vw;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.3vw, 0.3vw);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0vw, 0vw);
        position: relative;
        top: -2.5vw;
    }

    .header .navbar .center-menu .btn1.active {
        margin-bottom: 29vw;
    }


    .star-1 {
        position: absolute;
        width: 5vw;
        top: 13vw;
        left: 85vw;
        animation: fadeIn 2s infinite alternate, rotate 4s infinite alternate;
    }

    .star-2 {
        position: absolute;
        width: 5vw;
        top: 67vw;
        left: 8vw;
        animation: fadeIn 2s infinite alternate, rotate 4s infinite alternate, bright 2s infinite alternate;
    }

    .star-3 {
        position: absolute;
        width: 4vw;
        bottom: 3vw;
        right: 32vw;
        animation: fadeIn 2s infinite alternate, rotate 4s infinite alternate, bright 2s infinite alternate;
    }

    @keyframes bright {
        0% {
            filter: brightness(100%);
        }
        100% {
            filter: brightness(200%);
        }
    }
    @keyframes rotate {
        0% {
            transform: rotate(0);
        }
        100% {
            transform: rotate(360deg);
        }
    }
}
