@import url('https://unpkg.com/normalize.css') layer(normalize);

@layer normalize, base, demo, scroll, hack;

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

* {
    margin: 0;
}

html {
    scrollbar-gutter: stable;
    scroll-behavior: auto !important;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

#root,
#__next {
    isolation: isolate;
}



@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-ExtraLight.woff2") format("woff2");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("./fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

.form-dots.removed {
    display: none !important;
}

footer .footer-button.mobile-only.removed {
    display: none !important;
}

body {
    background-color: #000;
    margin: 0;
    position: relative;
}

section {
    margin-left: 0;
    margin-right: 0;
    padding: 20px 30px 0;
}

section.auto-slider {
    padding-right: 30px;
    padding-left: 30px;
}

.bgLines {
    overflow: hidden;
    width: 100%;
}

.bgLines,
.bgLines>div {
    position: absolute;
    height: 100%;
    top: 0;
    pointer-events: none;
    z-index: -1;
}

.bgLines>div {
    width: 1px;
    background-color: #888;
    z-index: 200;
}

.bgLines .bgLine_1,
.bgLines .bgLine_2,
.bgLines .bgLine_3,
.bgLines .bgLine_4,
.bgLines .bgLine_5 {
    opacity: .20;
}

.bgLines .bgLine_4,
.bgLines .bgLine_5 {
    opacity: .15;
}

.bgLines .bgLine_6,
.bgLines .bgLine_7,
.bgLines .bgLine_8,
.bgLines .bgLine_9 {
    opacity: .05;
}

.bgLines .bgLine_1 {
    left: 10%;
}

.bgLines .bgLine_2 {
    left: 30%;
}

.bgLines .bgLine_3 {
    left: 50%;
}

.bgLines .bgLine_4 {
    left: 70%;
}

.bgLines .bgLine_5 {
    left: 90%;
}

.container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 75px;
    max-height: 75px;
    width: 100%;
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 50%;
}

.header-right nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-right a {
    font-family: 'Inter';
    font-weight: 200;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

.header-right a span {
    font-family: 'Inter';
    font-weight: 200;
    color: #a7a7a7;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0.05em;
}

.header-right a {
    position: relative;
    transition: color .25s ease;
}

#glitchCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-color: #000;
    pointer-events: none;
}

#bigChartCanvas {
    width: 100%;
    height: 667px;
    margin-top: -28px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 44px;
}

.hero-section-title {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-section h1 {
    font-family: 'Inter';
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
    white-space: normal;
    font-size: 40px;
    line-height: auto;
    ;
}

.animated-text {
    display: inline-block;
    --duration: 2s;
    line-height: 1.1;
    --stagger: .06s;
    --distance: 1em;
    visibility: hidden;
}

.animated-text.is-prepared {
    visibility: visible;
}

.animated-text .line {
    display: block;
    overflow: hidden;
}

.animated-text .line>span {
    display: inline-block;
    transform: translateY(var(--distance));
    opacity: 0;
    animation: rise var(--duration) cubic-bezier(.2, .9, .2, 1) forwards;
    animation-delay: calc(var(--i, 0) * var(--stagger));
    animation-play-state: paused;
    will-change: transform, opacity;
}

.animated-text.is-ready .line>span {
    animation-play-state: running;
}

@keyframes rise {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.subheader {
    font-size: 14px;
    letter-spacing: 0.9px;
    line-height: 20px;
    font-family: 'Inter';
    font-weight: 200;
    font-style: normal;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #a7a7a7;
    margin-bottom: 38px;
    --stagger: .04s;
    --distance: .8em;
}

.button-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero-section .button-group {
    max-width: 360px;
    margin-top: 0;
}

button {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 400;
    font-style: normal;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    flex: 1;
    height: 50px;
    z-index: 0;
    width: 100%;
}

.button-group a {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 400;
    font-style: normal;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    flex: 1;
    height: 50px;
    z-index: 0;
}

button span.light-text {
    font-weight: 300 !important;
    margin-left: 2px !important;
}

button.btn-inverted,
.button-group a.btn-inverted {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}

section.metrics {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    opacity: 0.4 !important;
    margin-bottom: 400px;
}

.metrics-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.block {
    display: flex;
    flex: 1;
    min-width: 120px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    box-sizing: border-box;
}

.block .card .label {
    font-family: 'Inter';
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
}

.chartWaveContainer {
    width: 100%;
    height: 100%;
}

.value {
    font-size: 60px;
    font-family: 'Inter';
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    margin-left: 10px;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;

}

.unit {
    font-size: 1.25rem;
    font-family: 'Inter';
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 5px;
}

.unit.percent {
    font-size: 60px;
    font-family: 'Inter';
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    line-height: 1;
    margin-bottom: 0;
}

.chart-canvas {
    width: 245px;
    height: 36px;
    display: block;
}

.canvas-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.chart-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
}


.value-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    width: 150px;
    min-width: 150px;
    max-width: 150px;
}

.decoration {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: center;
    height: 100%;
    width: 3px;
    gap: 12px;
    margin-right: 10px;
}

.decoration-line {
    width: 3px;
    background-color: #fff;
    height: 1px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: url('../assets/img/lined_bg.svg') no-repeat center center;
    background-size: cover;
    padding: 20px;
    border-radius: 10px;
    width: 287.5px;
    height: 250px;
}

.time-block-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.time-block-item-label {
    font-family: 'Inter';
    font-weight: 300;
    font-style: normal;
    font-size: 0.875rem;

    line-height: 1.25rem;

    letter-spacing: 0.05em;
    color: #fff;
    margin: 0;
    margin-bottom: 30px;
}

.time-block-item-value {
    font-family: 'Inter';
    font-weight: 900;
    font-style: normal;
    font-size: 3.625rem;

    line-height: 1.25rem;

    letter-spacing: 0.05em;
    color: #fff;
    margin: 0;
}

.time-block-item-value span {
    font-size: 1.25rem;
    font-weight: 200;
}

.metric {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    width: 120px;
    color: white;
}

.chart {
    margin: 40px auto;
    width: 90%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.card {
    background: transparent;
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 10px 20px;
    height: 120px;
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

section.bigchart-section {
    width: 100%;
    position: relative;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 190px;
}

.mob-chart-container {
    width: 100%;
    margin-bottom: 160px;
}

.bigchart-section .image-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.bigchart-section .image-container img.bigChartLine {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    pointer-events: none;
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s cubic-bezier(.2, .9, .2, 1),
        -webkit-clip-path 1.2s cubic-bezier(.2, .9, .2, 1);
}

.bigchart-section .image-container img.bigChartLine.is-visible {
    clip-path: inset(0 0 0 0) !important;
    -webkit-clip-path: inset(0 0 0 0) !important;
}

.bigchart-section .image-container img:not(.bigChartLine) {
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.bigchart-section .image-container.in-view .bigChartLine {
    clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
    .bigChartLine {
        transition: none;
        clip-path: inset(0 0 0 0);
    }
}

.fluid {
    margin-bottom: 380px;
}

.fluid-two {
    display: flex;
    align-self: flex-end;
    flex-direction: row;
    justify-content: flex-end;
}

.scroll-text {
    margin: 0 auto;
    font-size: 48px;
    font-family: 'Inter';
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: 2.4px;
}

.fluid-two .scroll-text {
    text-align: right;
    width: 84%;
    margin: 0;
}

.scroll-text span {
    display: inline-block;
    vertical-align: top;
    white-space: pre-wrap;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    transition:
        color 0.3s ease,
        line-height 0.1s ease;
}

section.scroll-slider-section {
    width: 100%;
    height: 200vh;
    position: relative;
    padding: 0;
}

.scroll-slider-section .slides {
    position: relative !important;
    overflow: hidden !important;
    height: 890px;
    width: 100%;
    z-index: 100;
    min-height: 890px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.scroll-slider-section .slider-card {
    display: flex;
    flex-direction: column;
    top: 50%;
    z-index: 2;
    width: 100%;
    height: 685px;
    margin: 0 auto;
    border-radius: 50px;
    background: #181818;
    color: #a7a7a7;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.scroll-slider-section .slider-card .swiper {
    height: 685px;
    overflow: hidden;
}

.scroll-slider-section .slider-card .swiper-wrapper,
.scroll-slider-section .slider-card .swiper-slide {
    height: 685px;
}

.scroll-slider-section .slider-card .swiper-slide {
    width: 100%;
    height: 685px;
    background: #181818;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll-slider-section .slide-title {
    font-family: 'Inter';
    font-size: 33px;
    font-weight: 300;
    letter-spacing: 5px;
    color: #fff;
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
}

.scroll-slider-section .slide-text {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 200;
    color: #a7a7a7;
    width: 80%;
    text-align: center;
    line-height: 20px;
    letter-spacing: 0.9px;
    margin: 0;
    margin-bottom: 100px;
}

.scroll-slider-section .slide-text span {
    color: #a7a7a7;
}

.scroll-slider-section .slides .slide button {
    margin-bottom: 0 !important;
}

.slider-dots {
    display: flex;
    gap: 15px;
    flex-direction: row;
    position: absolute;
    bottom: 5px;
    right: 50%;
    margin-right: -30px;
    z-index: 100;
    height: 59px;
}

.slider-dots span {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 22px;
}

.slider-dots span svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-dots circle.inner {
    fill: #666;
    stroke: none;
}

.slider-dots circle.bg-ring {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
    fill: none;
}

.slider-dots circle.fg-ring {
    stroke: #fff;
    stroke-width: 4;
    fill: none;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke-dasharray: 0 1;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.1s linear;
}

.slider-dots span circle.bg-ring {
    display: none;
}

.slider-dots span.active circle.bg-ring {
    display: block;
}

.slider-dots circle.bg-ring,
.slider-dots circle.fg-ring {
    stroke-width: 1;
}

.auto-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0 30px 100px;
    width: 100%;
    color: #fff;
    margin-bottom: 90px;
    height: 743px;
}

.slider-content {
    position: relative;
    width: 100%;
    padding-bottom: 65px;
    height: 465px;
    display: flex;
    flex-direction: row;
}

.auto-slider .slide {
    width: 100%;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    gap: 65px;
    text-align: right;
}

.auto-slider .slide.active {
    display: flex;
}

.auto-slider .slide-number {
    font-size: 38px;
    letter-spacing: 1.9px;
    line-height: auto;
    color: #a7a7a7;
    flex-shrink: 0;
    font-family: 'Inter';
    font-weight: 200;
    font-style: normal;
    align-self: flex-end;
}

.auto-slider .slide-text {
    font-size: 28px;
    letter-spacing: 1.4px;
    font-family: 'Inter';
    font-weight: 200;
    font-style: normal;
    color: #a7a7a7;
    align-self: flex-end;
}

.auto-slider .slide-text .line {
    width: 100%;
    display: block;
}

.auto-slider .slider-nav {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.auto-slider .nav-item {
    display: flex;
    flex: 1;
    position: relative;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 200;
    font-style: normal;
    color: #a7a7a7;
    letter-spacing: 0.8px;
    border-bottom: 1px solid #a7a7a7;
    padding-bottom: 20px;
    justify-content: center;
    --slider-duration: 6000ms;
    --slider-retract-duration: 600ms;
}

.auto-slider .nav-item.active {
    color: #fff;
}

.auto-slider .nav-item .progress {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
}

.auto-slider .nav-item.active .progress {
    animation: fillBar var(--slider-duration) linear forwards;
}

.auto-slider .nav-item .progress.retract {
    animation: retractBar var(--slider-retract-duration) linear forwards;
}

@keyframes fillBar {
    from {
        transform: scaleX(0);
        transform-origin: left center;
    }

    to {
        transform: scaleX(1);
        transform-origin: left center;
    }
}

@keyframes retractBar {

    0% {
        transform: scaleX(1);
        transform-origin: right center;
    }

    20% {
        transform: scaleX(0.50);
        transform-origin: right center;
    }

    100% {
        transform: scaleX(0);
        transform-origin: right center;
    }
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    border-radius: 45px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #181818;
    padding: 0 20px;
    height: 723px;
    margin-left: -30px;
}

footer h2 {
    width: 100%;
    font-family: 'Inter';
    font-weight: 300;
    font-style: normal;
    font-size: 47px;
    line-height: auto;
    letter-spacing: 4.7px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

footer .footer-text {
    font-family: 'Inter';
    font-weight: 200;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    color: #a7a7a7;
    margin: 0;
    letter-spacing: 0.8px;
    margin-bottom: 70px;
    text-align: center;
}

.footer-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #0d0d0d;
    border-radius: 20px;
    height: 50px;
    position: relative;
}

.input-wrapper {
    position: relative;
    flex: 1;
    margin-right: 10px;
}

.input-wrapper input {
    width: 100%;
    border: none;
    background: none;
    color: #fff;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25rem;
    padding: 22px 15px 10px;
    padding-left: 15px;
    outline: none;
    background-color: #0d0d0d;
}

.input-wrapper input:-webkit-autofill,
.input-wrapper input:-webkit-autofill:hover,
.input-wrapper input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px #0d0d0d inset;
    box-shadow: 0 0 0 1000px #0d0d0d inset;
    font-family: 'Inter', sans-serif;
    font-weight: 400;

    transition: background-color 9999s ease-in-out 0s;
}

.input-wrapper input:-moz-autofill {
    -moz-text-fill-color: #fff;
    caret-color: #fff;
    box-shadow: 0 0 0 1000px #0d0d0d inset;
}


footer .input-wrapper input {
    padding-left: 28px;
}

footer .input-wrapper .label {
    left: 28px;
}

.input-wrapper .label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a6a6a;
    font-family: 'Inter';
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    background-color: #0d0d0d;
    pointer-events: none;
    transition: all 0.2s ease;
}

.input-wrapper input:focus+.label,
.input-wrapper input:not(:placeholder-shown)+.label {
    top: 6px;
    transform: translateY(0);
    font-size: 10px;
    color: #6a6a6a;
}

.input-wrapper input::placeholder {
    color: transparent;
}

#footerForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#footerForm .input-slider {
    margin-bottom: 20px;
}

.input-slider-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 269px;
    background: #0D0D0D;
    transition: all 0.3s ease;
}

.form-dots {
    position: absolute;
    left: 10px;
    top: calc(50% - 5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 15px;
    z-index: 99;
}

.form-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-dot.active {
    background-color: rgba(255, 255, 255, 1);
}

.input-slider-content.success {
    transform: translateY(84px);
}

.input-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    overflow: hidden;
    background: #0D0D0D;
    border-radius: 20px;
    height: 50px;
}

.success-slide {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 50px;
    gap: 38px;
    padding-left: 20px;
    padding-right: 20px;
}

.success-slide p {
    font-family: 'Inter';
    font-weight: 200;
    font-size: 16px;
    color: #A7A7A7;
    letter-spacing: 0.8px;
}

.swiper-slide .input-slider .footer-input {
    margin-bottom: 0;
    margin-top: 30px;
}

.swiper-slide .button-group {
    width: auto;
}

footer button,
.swiper-slide button {
    padding: 10px 20px;
    border: none;
    background: #fff;
    color: #000;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.footer-input.email {
    margin-top: 30px;
}

#footerBottomForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footerBottomForm .input-slider {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

#footerBottomForm .input-slider-content.step1 {
    transform: translateY(81px);
}

#footerBottomForm .input-slider-content.success {
    transform: translateY(161px);
}

.footer-input.message {
    margin-bottom: 0;
    margin-top: 30px;
}

footer .footer-button,
.swiper-slide .footer-button {
    width: 100%;
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    margin-bottom: 90px;
}

footer .footer-button {
    margin-bottom: 70px;
}

footer .contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

footer .contacts p,
footer .contacts a {
    font-family: 'Inter';
    font-weight: 200;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
}

footer .contacts p span {
    color: #a7a7a7;
}


@keyframes fillText {
    0% {
        color: transparent;
    }

    100% {
        color: white;
    }
}

@keyframes riseUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.desktop-only {
    display: none !important;
}

.mobile-only {
    display: block !important;
}



@keyframes slideDown {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (min-width: 410px) {
    .hero-section {
        margin-bottom: 80px;
    }

    .hero-section h1 {
        font-size: 50px;
    }

    .subheader {
        font-size: 18px;
        margin-bottom: 80px;
    }

    .scroll-slider-section .slide-title {
        font-size: 40px;
    }

    footer {
        padding: 0 50px;
    }
}

@media (min-width: 855px) {

    .slider-dots {
        top: 50%;
        transform: translateY(-50%);
        right: 50px;
        flex-direction: column;
        gap: 10px;
    }

    #footerForm,
    #footerBottomForm {
        width: 75%;
    }
}

@media (min-width: 1025px) {
    html {
        scrollbar-gutter: stable both-edges;
    }

    .container {
        padding: 0 40px;
    }

    section {
        margin-left: auto;
        margin-right: auto;
        padding: 20px 30px 0;
        max-width: 1760px;
        align-self: center;
        justify-self: center;
    }

    section.scroll-slider-section {
        margin-left: 0;
        margin-right: 0;
        padding-right: 0;
        padding-left: 0;
        max-width: none;
    }

    section.auto-slider {
        padding-right: 30px;
        padding-left: 30px;
    }

    :root {
        --floating-shadow: 0 8px 22px rgba(0, 0, 0, .12);
        --floating-border: 1px solid rgba(255, 255, 255, .18);
        --floating-bg: rgba(20, 20, 20, .55);
    }

    header {
        transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease, background-color .25s ease;
        max-height: 75px;
        margin-top: 40px;
        padding-top: 0;
        padding-bottom: 0;
    }

    header.is-floating {
        position: fixed;
        top: 40px;
        left: 0;
        right: 0;
        z-index: 50;
        backdrop-filter: saturate(140%) blur(10px);
        -webkit-backdrop-filter: saturate(140%) blur(10px);
        background: var(--floating-bg);
        border-radius: 20px;
    }

    #header-spacer {
        height: 0;
    }

    button,
    button span {
        font-size: 16px;
    }

    header {
        justify-content: space-between;
        border-radius: 20px;
    }

    header .header-right.desktop-only {
        display: flex !important;
    }

    button {
        height: 50px;
    }

    .hero-section {
        height: calc(100vh - 580px);
    }

    .hero-section h1 {
        justify-content: center;
        font-size: 50px;
    }

    .hero-section .button-group {
        width: 316px;
        gap: 20px;
    }

    .subheader {
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

    .metrics.desktop-only {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        display: flex !important;
    }

    .time-block {
        width: 100%;
        flex-direction: row;
        gap: 40px;
        height: 130px;
    }

    .time-block-item {
        flex: 1;
        justify-content: center;
        align-items: center;
    }

    .fluid {
        display: flex;
        margin-bottom: 0px;
    }

    .fluid .scroll-text {
        width: 70%;
        font-size: 58px;
        margin: 0;
        margin-bottom: 100px;
    }

    .fluid-two {
        justify-content: flex-end;
    }

    .fluid-two .scroll-text {
        width: 70%;
        font-size: 58px;
        margin: 0;
        margin-top: 100px;
    }

    section.scroll-slider-section {
        width: 100%;
        height: 200vh;
        position: relative;
        align-self: auto;
    }

    .scroll-slider-section .slides {
        position: relative !important;
        overflow: hidden !important;
        height: 700px;
        width: 100%;
        z-index: 100;
        min-height: 700px;
        transition: transform 0.6s ease-in-out;
        will-change: transform;
    }

    .scroll-slider-section .slider-card {
        display: flex;
        flex-direction: column;
        top: 50%;
        z-index: 2;
        width: 100%;
        height: 700px;
        margin: 0 auto;
        border-radius: 50px;
        background: #181818;
        color: #a7a7a7;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        overflow: hidden;
    }

    .scroll-slider-section .slider-card .swiper {
        height: 700px;
        overflow: hidden;
    }

    .scroll-slider-section .slider-card .swiper-wrapper,
    .scroll-slider-section .slider-card .swiper-slide {
        max-height: 700px;
    }

    .scroll-slider-section .slider-card .swiper-slide {
        width: 100%;
        height: 700px;
        background: #181818;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .scroll-slider-section .slide-title {
        font-family: 'Inter';
        font-size: 50px;
        font-weight: 300;
        letter-spacing: 5px;
        color: #fff;
        margin: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .scroll-slider-section .slide-text {
        font-family: 'Inter';
        font-size: 16px;
        font-weight: 200;
        color: #a7a7a7;
        width: 40%;
        text-align: center;
        line-height: 20px;
        letter-spacing: 0.8px;
        margin: 0;
        margin-bottom: 40px;
    }

    .scroll-slider-section .slide-text span {
        color: #fff;
    }

    .scroll-slider-section .slides .slide button {
        margin-bottom: 0 !important;
    }

    .slider-dots {
        display: flex;
        top: 50%;
        transform: translateY(-50%);
        right: 50px;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        margin-right: -30px;
        z-index: 100;
        height: 59px;
    }

    .slider-dots span {
        display: inline-block;
        position: relative;
        width: 22px;
        height: 22px;
    }

    .slider-dots span svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .slider-dots circle.inner {
        fill: #666;
        stroke: none;
    }

    .slider-dots circle.bg-ring {
        stroke: rgba(255, 255, 255, 0.2);
        stroke-width: 2;
        fill: none;
    }

    .slider-dots circle.fg-ring {
        stroke: #fff;
        stroke-width: 4;
        fill: none;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
        stroke-dasharray: 0 1;
        stroke-dashoffset: 0;
        transition: stroke-dashoffset 0.1s linear;
    }

    .slider-dots span circle.bg-ring {
        display: none;
    }

    .slider-dots span.active circle.bg-ring {
        display: block;
    }

    .slider-dots circle.bg-ring,
    .slider-dots circle.fg-ring {
        stroke-width: 1;
    }

    .bigchart-section .image-container {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }

    .auto-slider .slide-text {
        font-size: 48px;
        text-align: left;
        width: 68%;
    }

    .auto-slider .slide-number {
        font-size: 58px;
        line-height: 52px;
    }

    .swiper-slide .button-group {
        width: 440px;
        gap: 20px;
        display: flex !important;
    }

    section.footer-container {
        padding: 0;
        max-width: none;
    }

    footer {
        width: 94vw;
        height: 94vh;
        padding: 0 20px;
        margin-left: 0;
        border-bottom-left-radius: 45px;
        border-bottom-right-radius: 45px;
    }

    footer h2 {
        font-size: 50px;
        letter-spacing: 5px;
        color: #fff;
        margin-bottom: 10px;
    }

    footer .footer-text {
        font-size: 16px;
        margin-bottom: 40px;
        width: 90%;
    }

    #footerBottomForm .input-slider-content.step1 {
        transform: translateY(80px);
    }

    #footerBottomForm .input-slider-content.success {
        transform: translateY(161px);
    }

    footer .footer-input {
        height: 50px;
        padding: 13px 10px;
    }

    footer .footer-input .input-wrapper,
    .swiper-slide .footer-input .input-wrapper {
        margin-right: 13px;
    }

    footer .footer-input .input-wrapper input,
    .swiper-slide .footer-input .input-wrapper input {
        padding: 19px 12px 7px;
        padding-left: 12px;
    }

    footer .footer-input .input-wrapper .label,
    .swiper-slide .footer-input .input-wrapper .label {
        left: 12px;
    }

    footer .footer-input .input-wrapper input:focus+.label,
    footer .footer-input .input-wrapper input:not(:placeholder-shown)+.label,
    .swiper-slide .footer-input .input-wrapper input:focus+.label,
    .swiper-slide .footer-input .input-wrapper input:not(:placeholder-shown)+.label {
        top: 3px;
    }

    footer .footer-input .input-wrapper input {
        padding-left: 25px;
    }

    footer .footer-input .input-wrapper .label {
        left: 25px;
    }

    .input-slider {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        overflow: hidden;
        background: #0D0D0D;
        border-radius: 20px;
        height: 76px;
        padding: 13px 10px;
    }

    .swiper-slide .input-slider {
        width: 50%;
        height: 76px;
        padding: 13px 10px;
    }

    .footer-container {
        margin-bottom: 100px;
    }

    footer button,
    .swiper-slide button {
        font-size: 16px;
        width: 210px;
        flex: none;
    }

    footer .contacts {
        flex-direction: row;
    }

    .desktop-only {
        display: block !important;
    }

    .mobile-only {
        display: none !important;
    }
}

@media (min-width: 1320px) {
    .container {
        padding: 40px 0;
    }

    header {
        padding: 20px 30px;
        width: 85%;
        margin: 0 auto;
    }

    .hero-section {
        height: calc(100vh - 380px);
    }

    .subheader {
        margin-bottom: 40px;
    }

    .metrics.desktop-only {
        flex-direction: row;
    }

    .time-block {
        width: 287px;
        height: 250px;
        flex-direction: column;
        min-width: 287px;
        max-width: 287px;
        box-sizing: border-box;
    }

    section.bigchart-section {
        margin-bottom: 400px;
    }

    section.auto-slider {
        padding-right: 30px;
        padding-left: 30px;
    }

    .fluid .scroll-text {
        width: 60%;
    }

    .fluid-two .scroll-text {
        width: 60%;
        text-align: left;
    }

    .fluid-two .scroll-text span[data-index="0"] {
        padding-left: 112px;
    }

    .scroll-slider-section .slides {
        position: relative !important;
        overflow: hidden !important;
        height: 700px;
        width: 100%;
        z-index: 100;
        min-height: 700px;
        transition: transform 0.6s ease-in-out;
        will-change: transform;
    }

    .scroll-slider-section .slider-card {
        display: flex;
        flex-direction: column;
        top: 50%;
        z-index: 2;
        width: 94vw;
        height: 90vh;
        margin: 0 auto;
        border-radius: 50px;
        background: #181818;
        color: #a7a7a7;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        overflow: hidden;
    }

    .scroll-slider-section .slider-card .swiper {
        height: 90vh;
        overflow: hidden;
    }

    .scroll-slider-section .slider-card .swiper-wrapper,
    .scroll-slider-section .slider-card .swiper-slide {
        max-height: 90vh;
    }

    .scroll-slider-section .slider-card .swiper-slide {
        width: 100%;
        height: 90vh;
        background: #181818;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .auto-slider {
        margin-top: 400px;
        padding: 0;
    }

    .auto-slider {
        height: auto;
    }

    .auto-slider .swiper-slide {
        height: 280px;
    }

    .auto-slider .slide-text {
        font-size: 58px;
        line-height: 66px;
        letter-spacing: 2.9px;
        height: 280px;
        align-self: flex-start;
    }

    .auto-slider .nav-item {
        justify-content: flex-start;
        padding-left: 30px;
    }

    .auto-slider .swiper-slide .slide-text .line {
        display: inline;
        margin: 0;
        line-height: inherit;
    }

    .slider-content {
        padding-bottom: 150px;
        align-items: flex-end;
    }

    .footer-container {
        margin-bottom: 30px;
        margin-top: 400px;
    }

    #footerBottomForm .input-slider-content.step1 {
        transform: translateY(120px);
    }

    #footerBottomForm .input-slider-content.success {
        transform: translateY(200px);
    }

    #footerBottomForm .input-slider {
        width: 60%;
    }

    .input-slider {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        overflow: hidden;
        background: #0D0D0D;
        border-radius: 20px;
        height: 76px;
        padding: 13px 10px;
    }

    section.footer-container {
        margin-left: 0;
        margin-right: 0;
    }

    footer h2 {
        margin-bottom: 10px;
        padding: 0;
        letter-spacing: 5px;
    }

    footer .footer-input,
    .swiper-slide .footer-input {
        width: 100%;
        margin-bottom: 40px;
        padding: 13px;
    }

    footer .footer-input .input-wrapper,
    .swiper-slide .footer-input .input-wrapper {
        margin-right: 13px;
    }

    footer .footer-input .input-wrapper input,
    .swiper-slide .footer-input .input-wrapper input {
        padding: 19px 12px 7px;
        padding-left: 12px;
    }

    footer .footer-input .input-wrapper .label,
    .swiper-slide .footer-input .input-wrapper .label {
        left: 12px;
    }

    footer .footer-input .input-wrapper input:focus+.label,
    footer .footer-input .input-wrapper input:not(:placeholder-shown)+.label,
    .swiper-slide .footer-input .input-wrapper input:focus+.label,
    .swiper-slide .footer-input .input-wrapper input:not(:placeholder-shown)+.label {
        top: 3px;
    }

    footer .footer-input .input-wrapper input {
        padding-left: 25px;
    }

    footer .footer-input .input-wrapper .label {
        left: 25px;
    }
}

@media (min-width: 1024px) and (max-width: 1617px) {
    .auto-slider .slide-text.desktop-only {
        display: none !important;
    }

    .auto-slider .slide-text.mobile-only {
        display: block !important;
    }

}

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font: 600 16px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: background .2s ease, border-color .2s ease;
}

.btn:hover {
    background: #171717;
    border-color: #3a3a3a;
}

.btn:active {
    transform: translateY(1px);
}

.text {
    white-space: nowrap;
    pointer-events: none;
}

.text--placeholder {
    visibility: hidden;
}

.slide-text {
    position: relative;
}

.slide-text .text--default,
.slide-text .text--hover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform .32s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.slide-text .text--default {
    transform: translate(-50%, -50%);
}

.slide-text .text--hover {
    transform: translate(-50%, -150%);
}

.slide-text:hover .text--default,
.slide-text:focus-visible .text--default {
    transform: translate(-50%, 50%);
}

.slide-text:hover .text--hover,
.slide-text:focus-visible .text--hover {
    transform: translate(-50%, -50%);
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 190, 187, .35);
    border-color: #00bebb;
}

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

    .slide-text .text--default,
    .slide-text .text--hover {
        transition: none;
    }

    .slide-text:hover .text--default,
    .slide-text:hover .text--hover {
        transform: translate(-50%, -50%);
    }
}

button.fly {
    position: relative;
    overflow: hidden;
    --fly-stagger: 10ms;
    --fly-distance: 110%;
    --fly-line-height: 1.2;
}

button.fly .fly-label {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    height: calc(var(--fly-line-height) * 1em);
    line-height: var(--fly-line-height);
    overflow: hidden;
    pointer-events: none;
    text-align: center;
    clip-path: inset(0 0 1px 0);
    z-index: 2;
}

button.fly .fly-placeholder {
    visibility: hidden;
    white-space: nowrap;
}

button.fly .fly-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

button.fly .fly-ch {
    display: inline-block;
    transition: transform .34s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

button.fly .fly-space {
    width: .35em;
}

button.fly .fly-line--default .fly-ch {
    transform: translateY(0);
}

button.fly .fly-line--hover .fly-ch {
    transform: translateY(var(--fly-distance));
}

button.fly .fly-line .fly-ch {
    transition-delay: calc(var(--i) * var(--fly-stagger));
}

button.fly:hover .fly-line--default .fly-ch,
button.fly:focus-visible .fly-line--default .fly-ch {
    transform: translateY(calc(var(--fly-distance) * -1));
}

button.fly:hover .fly-line--hover .fly-ch,
button.fly:focus-visible .fly-line--hover .fly-ch {
    transform: translateY(0);
}

button.fly .fly-sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    button.fly .fly-ch {
        transition: none;
    }

    button.fly:hover .fly-line--default .fly-ch,
    button.fly:hover .fly-line--hover .fly-ch {
        transform: translateY(0);
    }
}

.toastify {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter';
    font-weight: 300;
    width: auto !important;
    height: auto !important;
    max-width: min(90vw, 520px) !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35) !important;
    color: #000 !important;
    background: #fff !important;
    font: 500 14px/1.35 Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
    z-index: 2147483647 !important;
    text-align: center;
}

.toastify .toast-close {
    opacity: .9;
    filter: none;
}

.toastify.on {
    opacity: 1;
}