#mobile-bottom-menu:not(.show) {
    pointer-events: none;
}

#main-menu:not(.show) {
    pointer-events: none;
}

#main-menu .main-menu-content,
#main-menu .main-menu-lines {
    transition: opacity ease 0.5s;
}

#main-menu:not(.content) .main-menu-content,
#main-menu:not(.show) .main-menu-lines {
    opacity: 0;
}

#main-menu .bg-div {
    z-index: -20;
}

.bg-div div {
    width: 100%;
    height: 100%;
}

#main-menu .bg-div div {
    transition: opacity ease 0.5s;
    opacity: 1;
}

.main-menu-content__link:after,
.main-menu-content__link-copy:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #030a0f;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.main-menu-content__link-copy:after {
    background-color: #fff;
}

#main-menu[data-id="1"] .main-menu-content__link[data-id="1"]:after,
#main-menu[data-id="1"] .main-menu-content__link-copy[data-id="1"]:after,
#main-menu[data-id="2"] .main-menu-content__link[data-id="2"]:after,
#main-menu[data-id="2"] .main-menu-content__link-copy[data-id="2"]:after,
#main-menu[data-id="3"] .main-menu-content__link[data-id="3"]:after,
#main-menu[data-id="3"] .main-menu-content__link-copy[data-id="3"]:after,
#main-menu[data-id="4"] .main-menu-content__link[data-id="4"]:after,
#main-menu[data-id="4"] .main-menu-content__link-copy[data-id="4"]:after,
#main-menu[data-id="5"] .main-menu-content__link[data-id="5"]:after,
#main-menu[data-id="5"] .main-menu-content__link-copy[data-id="5"]:after,
#main-menu[data-id="demo"] .main-menu-content__link[data-id="demo"]:after,
#main-menu[data-id="demo"] .main-menu-content__link-copy[data-id="demo"]:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.loading-anim,
.measure-video-anim,
.hero-video-anim {
    pointer-events: none;
}

@media screen and (min-width: 768px) {
    .mobile-bottom-menu__item.active:after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: var(--menu-progress);
        background: #dafe01;
        z-index: 2;
        opacity: 1;
    }
    .mobile-bottom-menu__item.active:before {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 12px;
        bottom: 0;
        color: black;
        overflow: hidden;
        width: calc(var(--menu-progress) - 12px);
        z-index: 3;
        padding: 7px 0px 6px;
    }
}

#main-header.menu-open #menu-btn {
    background: #00000033;
    gap: 0;
    border: 1px solid #00000033;
}

#main-header.menu-open #menu-btn:hover {
    border: 1px solid #030A0F;
}

#main-header.menu-open #menu-btn>* {
    border-color: #030A0F;
    rotate: 45deg;
    position: absolute;
}

#main-header.menu-open #menu-btn>*:first-child {
    rotate: -45deg;
}

#main-header.menu-open .navbar__menu-link.cta {
    display: none;
}

/* animations */

#main-menu .bg-div {
    transform: rotateX(180deg);
}

#main-menu.show>.bg-div {
    background: transparent;
    height: 100%;
    width: 100%;
}

@media screen and (prefers-reduced-motion: no-preference) {
    #main-menu.show>.bg-div>div {
        animation-name: poof;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }
}

@keyframes poof {
    to {
        background-color: #dbff01;
    }
}

@keyframes poof-full {
    from {
        background-color: transparent;
    }
    to {
        background-color: #dbff01;
    }
}

@keyframes poof-show-hide {
    from {
        background-color: transparent;
    }
    48% {
        background-color: #dbff01;
    }
    52% {
        background-color: #dbff01;
    }
    to {
        background-color: transparent;
    }
}

@keyframes poof-video {
    from {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    51% {
        opacity: 1;
    }
    to {
        opacity: 1;
    }
}

/* menu */

#main-menu.reverse>.bg-div>div {
    animation-name: poof-full;
    animation-duration: 0.5s;
    animation-direction: reverse;
    animation-fill-mode: backwards;
}

.navbar__menu__dropdown-holder:not(:hover) .navbar__menu__dropdown {
    pointer-events: none;
    opacity: 0;
}

.main-menu-content__dropdown-holder:not(.open) .main-menu-content__dropdown {
    padding: 0px;
    margin: 0px;
    max-height: 0px;
}

.loading-anim,
.loading-anim-temp {
    pointer-events: none;
}

html.wf-design-mode .loading-anim-temp {
    display: none;
}

@media screen and (prefers-reduced-motion: no-preference) {
    #loading-anim[data-bg-pixels="true"] .bg-div>div {
        animation-name: poof;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }
    #loading-anim[data-bg-pixels="false"] .bg-div>div {
        animation-name: poof-full;
        animation-duration: 0.5s;
        animation-direction: reverse;
        animation-fill-mode: backwards;
    }
}

#hero__end-scene:not(.show) {
    border-color: transparent;
}

#hero__end-scene {
    transition: all ease 0.5s;
}

#hero__end-scene.show {
    border-color: hsla(0, 0%, 100%, 0.4);
}

#hero__end-scene .hero__end-scene__c.v--green {
    transform: translateX(100%);
}

#hero__end-scene.show .hero__end-scene__c.v--green {
    transform: translateX(100%);
    animation-name: footerGreenBgAnim;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

#hero__end-scene .hero__end-scene__input-block {
    opacity: 0;
}

#hero__end-scene.show .hero__end-scene__c.v--green>* {
    opacity: 0;
    /* transform: translateY(40px); */
    animation-name: demoBtnAnim;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-delay: calc(calc(var(--nth-child) * 0.2s) + 0.1s);
}

@keyframes footerGreenBgAnim {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0%);
    }
}

.hero__end-scene__input-block:focus-within,
.hero__end-scene__input-block:has(input.notempty) {
    background: #fff;
}

.hero__end-scene__input-block:focus-within .hero__end-scene__input-block__label,
.hero__end-scene__input-block:has(input.notempty) .hero__end-scene__input-block__label {
    opacity: 0;
}

.hero__end-scene__input-block:focus-within .hero__end-scene__input-block__label-small,
.hero__end-scene__input-block:has(input.notempty) .hero__end-scene__input-block__label-small {
    top: 0;
}

.hero__end-scene__input-block__label-small,
.hero__end-scene__input-block__label {
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .after .footer {
        padding-bottom: 20px;
    }
    .hero__end-scene {
        left: 10px;
        right: 10px;
        bottom: 0;
        top: 0;
        width: calc(100% - 20px);
        border-radius: 12px;
    }
}

:nth-child(1) {
    --nth-child: 1
}

:nth-child(2) {
    --nth-child: 2
}

:nth-child(3) {
    --nth-child: 3
}

:nth-child(4) {
    --nth-child: 4
}

:nth-child(5) {
    --nth-child: 5
}

:nth-child(6) {
    --nth-child: 6
}

:nth-child(7) {
    --nth-child: 7
}

:nth-child(8) {
    --nth-child: 8
}

:nth-child(9) {
    --nth-child: 9
}

:nth-child(10) {
    --nth-child: 10
}

html,
body {
    overflow: auto !important;
    overscroll-behavior: auto !important;
    height: auto;
}

html {
    width: 100% !important;
}

body {
    overflow-x: hidden !important;
}

canvas {
    position: relative !important;
    background: transparent !important;
}

@media screen and (min-width: 992px) {
    canvas {
        width: 2000px !important;
        height: 1400px !important;
    }
}

.explore-slides__slide,
.explore-hero__links {
    background: #dbff0157;
    backdrop-filter: blur(10px);
}

@media screen and (min-width: 992px) {
    body {
        --space-before-container: 16px;
    }
    .explore-slides .container-explore.v--full {
        max-width: calc(calc(100vw - var(--space-before-container)) - 16px);
        margin-left: auto;
        margin-right: 0;
    }
    .explore-slides__swiper {
        max-width: calc(calc(100vw - var(--space-before-container)) - 16px);
    }
}

@media screen and (min-width: 1400px) {
    body {
        --space-before-container: calc(calc(100vw - 1360px) / 2);
    }
}

.explore-slides.is-beginning #explore-slides-prev,
.explore-slides.is-end #explore-slides-next {
    border-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

body {
    counter-reset: slide;
}

.explore-slides__swiper-wrapper,
.explore-slides__swiper-slide {
    cursor: url('/images/drag-c.png') 64 64, default;
}

@keyframes demoBtnAnim {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.explore-hero__links-w::-webkit-scrollbar {
    display: none;
}

.explore-hero__links-w {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.explore-hero__bg-img {
    pointer-events: none;
}

.explore-slides__slide__text strong {
    font-weight: 600;
}

.explore-slides__slide__text a,
.explore-slides__lightbox-link {
    color: black;
    font-weight: normal;
    text-decoration: underline;
    text-decoration-color: rgb(0 0 0 / 50%);
    transition: all ease 300ms;
}

.explore-slides__slide__text a:hover,
.explore-slides__lightbox-link:hover {
    text-decoration-color: rgb(0 0 0 / 100%);
}

.explore-slides__lightbox-link {
    cursor: pointer;
}

.explore-hero__links-w.hide {
    pointer-events: none;
}