:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-white: #f4f4f6;
    --spacing: 40px;
    --side: 400px;
    --side-xl: 600px;
    --color-bg-effect: var(--color-text);
    --blendmode-effect: difference;
    --bg-blur: 0px;
    --w-full: 100%;
}

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

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

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Sofia Sans Semi Condensed", sans-serif;
    font-weight: 400;
    font-size: 18px;
    min-width: 420px;
    background: var(--color-bg);
    color: var(--color-text);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

button,
input,
select,
textarea {
    outline: 0;
    border: 0;
    border-radius: 0;
    resize: none;
}

button {
    cursor: pointer;
}

input,
textarea {
    background: 0 0;
}

.center {
    text-align: center;
}

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

.h-unset {
    height: unset !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.no-scroll {
    overflow: hidden;
}

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

.title {
    font-weight: 400;
    line-height: 1.1;
    font-size: 6rem;
}

.solution-screen.home-solution .slide-title{
    line-height: 0.9;
}

.slide-title {
    font-weight: 400;
    line-height: 1.1;
    font-size: 5rem;
}

.title span {
    opacity: 0.21;
    display: inline !important;
}

.title-md {
    font-weight: 400;
    line-height: 1.1;
    font-size: 72px;
}

.title-md span {
    opacity: 0.5;
    display: inline !important;
}


.general-page {
    padding: 200px var(--spacing) 140px;
    width: 1400px;
    margin: 0 auto;
}

.general-page .title {
    padding-left: 0px !important;
}

.layout-container {
    padding-top: 40px;
}

.form-message.error {
    margin-bottom: 27px;
    color: red;
    font-weight: bold;
}

.form-message.success {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 27px;
}

.faq-section.faq-page {
    height: unset;
    padding-top: 200px !important;
}

.privacy-mobile {
    display: none;
}

.logo-marquee-desktop {
    display: block;
}

.logo-marquee-mobile {
    display: none;
}

.hero {
    opacity: 0;
    animation: 1.5s ease-out 8s forwards heroFadeIn;
}


.big-cta a span{
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.big-cta a span::after {
  content: '';
  position: absolute;
  width: 0;
  height: 5px;
bottom: -2px;
  left: 0;
  background-color: #fff; /* Adjust color as needed */
  transition: width 1.6s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth "nice" ease */
}

/* Triggered by JavaScript when footer appears */
.big-cta.is-active a span::after {
  width: 100%;
}

[data-counter] {
    position: relative;
    overflow: hidden;
}

[data-counter].is-inview .idle span {
    transform: translateY(-102%);
}

[data-counter].is-inview .hover span {
    transform: translate(0);
}

[data-counter] span {
    line-height: 1;
}

[data-counter] .idle {
    opacity: 0.2;
    display: block;
}

[data-counter] .idle .char:first-of-type {
    transition-delay: 0s;
}

[data-counter] .idle .char:nth-of-type(2) {
    transition-delay: 0.1s;
}

[data-counter] .idle .char:nth-of-type(3) {
    transition-delay: 0.2s;
}

[data-counter] .idle .char:nth-of-type(4) {
    transition-delay: 0.3s;
}

[data-counter] .idle .char:nth-of-type(5) {
    transition-delay: 0.4s;
}

[data-counter] .idle .char:nth-of-type(6) {
    transition-delay: 0.5s;
}

[data-counter] .idle .char:nth-of-type(7) {
    transition-delay: 0.6s;
}

[data-counter] .idle .char:nth-of-type(8) {
    transition-delay: 0.7s;
}

[data-counter] .idle .char:nth-of-type(9) {
    transition-delay: 0.8s;
}

[data-counter] .idle .char:nth-of-type(10) {
    transition-delay: 0.9s;
}

[data-counter] .idle .char:nth-of-type(11) {
    transition-delay: 1s;
}

[data-counter] .idle .char:nth-of-type(12) {
    transition-delay: 1.1s;
}

[data-counter] .idle .char:nth-of-type(13) {
    transition-delay: 1.2s;
}

[data-counter] .idle .char:nth-of-type(14) {
    transition-delay: 1.3s;
}

[data-counter] .idle .char:nth-of-type(15) {
    transition-delay: 1.4s;
}

[data-counter] .hover {
    position: absolute;
    top: 0;
    left: 0;
}

[data-counter] .hover .char:first-of-type {
    transition-delay: 50ms;
}

[data-counter] .hover .char:nth-of-type(2) {
    transition-delay: 0.15s;
}

[data-counter] .hover .char:nth-of-type(3) {
    transition-delay: 0.25s;
}

[data-counter] .hover .char:nth-of-type(4) {
    transition-delay: 0.35s;
}

[data-counter] .hover .char:nth-of-type(5) {
    transition-delay: 0.45s;
}

[data-counter] .hover .char:nth-of-type(6) {
    transition-delay: 0.55s;
}

[data-counter] .hover .char:nth-of-type(7) {
    transition-delay: 0.65s;
}

[data-counter] .hover .char:nth-of-type(8) {
    transition-delay: 0.75s;
}

[data-counter] .hover .char:nth-of-type(9) {
    transition-delay: 0.85s;
}

[data-counter] .hover .char:nth-of-type(10) {
    transition-delay: 0.95s;
}

[data-counter] .hover .char:nth-of-type(11) {
    transition-delay: 1.05s;
}

[data-counter] .hover .char:nth-of-type(12) {
    transition-delay: 1.15s;
}

[data-counter] .hover .char:nth-of-type(13) {
    transition-delay: 1.25s;
}

[data-counter] .hover .char:nth-of-type(14) {
    transition-delay: 1.35s;
}

[data-counter] .hover .char:nth-of-type(15) {
    transition-delay: 1.45s;
}

[data-counter] .char {
    transform: translateY(100%);
    position: relative;
    display: inline-block;
    min-width: 10px;
    transition: transform 0.8s cubic-bezier(0.351, 0.311, 0, 0.995);
}

.badge {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.badge span {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.04em;
    padding: 2px;
    border: 1px solid rgba(233, 247, 252, 0.1);
    color: rgba(233, 247, 252, 0.5);
    text-transform: uppercase;
}

.label {
    display: block;
    padding-top: 24px;
}

.label span {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.4;
    display: block;
}

.label input,
.label textarea {
    display: block;
    color: var(--color-text);
    padding: 12px 0 24px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: 0.2s;
    width: 100%;
    resize: none;
}

.label input::-webkit-input-placeholder,
.label textarea::-webkit-input-placeholder {
    color: rgba(233, 247, 252, 0.6);
}

.label input:-moz-placeholder,
.label textarea:-moz-placeholder {
    color: rgba(233, 247, 252, 0.6);
}

.label input::-moz-placeholder,
.label textarea::-moz-placeholder {
    color: rgba(233, 247, 252, 0.6);
}

.label input:-ms-input-placeholder,
.label textarea:-ms-input-placeholder {
    color: rgba(233, 247, 252, 0.6);
}

.label input:active,
.label input:focus,
.label textarea:active,
.label textarea:focus {
    border-color: var(--color-text);
}

.label input:active+.label-line::before,
.label input:focus+.label-line::before,
.label textarea:active+.label-line::before,
.label textarea:focus+.label-line::before {
    width: 100%;
}

.label textarea {
    height: 170px;
}

.label-line {
    position: relative;
    width: 100%;
    height: 1px;
    background: rgba(233, 247, 252, 0.08);
}

.label-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    background: #fff;
    transition: 0.4s;
    height: 100%;
}

.hover-effect .word {
    white-space: nowrap;
}

.hover-effect .char {
    position: relative;
}

.hover-effect {
    font-kerning: none;
    position: relative;
    white-space: nowrap;
}

.hover-effect--bg,
.hover-effect--bg-south {
    --anim: 0;
}

.hover-effect--bg-south::after,
.hover-effect--bg::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100% + 3px);
    top: 0;
    background-color: var(--color-bg-effect);
    mix-blend-mode: var(--blendmode-effect);
    -webkit-backdrop-filter: blur(var(--bg-blur));
    backdrop-filter: blur(var(--bg-blur));
    transform-origin: 0 50%;
    transform: scaleX(var(--anim));
}

.hover-effect--bg-south::after {
    z-index: -1;
    left: -8px;
    right: -8px;
    top: -8px;
    bottom: -8px;
    border-radius: 2px;
    height: auto;
    width: auto;
    transform-origin: 50% 100%;
    transform: scaleY(var(--anim));
}

.scroll-progress {
    position: fixed;
    z-index: 900;
    bottom: 20px;
    left: var(--spacing);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    mix-blend-mode: difference;
}

.scroll-progress__animate {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
}

.scroll-progress__animate span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--color-text);
    opacity: 0.2;
    animation: 1.5s infinite pulseProgress;
}

.scroll-progress__animate span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-progress__animate span:nth-child(2) {
    animation-delay: 0.5s;
}

.scroll-progress__animate span:nth-child(3) {
    animation-delay: 1s;
}

.scroll-progress__percent {
    font-size: 10px;
    line-height: 14px;
    opacity: 0.8;
}

@keyframes pulseProgress {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.layout-title {
    position: fixed;
    z-index: 100;
    padding-top: calc(var(--spacing) * 2);
    top: 0;
    left: var(--spacing);
    font-size: 72px;
    opacity: 0;
    pointer-events: none;
    will-change: filter, transform, opacity;
}

.layout-title[data-layout="01"] {
    color: var(--color-bg);
}

.layout-count {
    position: fixed;
    z-index: 100;
    padding-bottom: var(--spacing);
    right: var(--spacing);
    bottom: 0;
    font-size: 72px;
    opacity: 0;
    pointer-events: none;
    will-change: filter, transform, opacity;
}

.layout-count[data-layout="01"] {
    color: var(--color-bg);
}

.layout-head {
    display: none;
}

.back {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.back a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 27px;
}

.back a::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.62481 10.257L8.63281 9.25798L5.32081 5.99998L8.63281 2.74198L7.62481 1.74298L3.36781 5.99998L7.62481 10.257Z' fill='%23E9F7FC' fill-opacity='0.6'/%3E%3C/svg%3E%0A") center no-repeat rgba(233, 247, 252, 0.04);
    border: 1px solid rgba(233, 247, 252, 0.08);
    border-radius: 100%;
    transition: 0.2s;
}

.back a:hover::before {
    border: 1px solid rgba(233, 247, 252, 0.16);
    background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.62481 10.257L8.63281 9.25798L5.32081 5.99998L8.63281 2.74198L7.62481 1.74298L3.36781 5.99998L7.62481 10.257Z' fill='%23E9F7FC' fill-opacity='1'/%3E%3C/svg%3E%0A") center no-repeat rgba(233, 247, 252, 0.04);
}

[animate-blur-el],
[animate-blur-text] {
    will-change: filter, transform, opacity;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 var(--spacing);
    z-index: 999;
}

.header:not(.header-home) .header-logo a {
    width: auto;
}

.header-home.difference .header-logo a {
    width: auto;
}

.header-logo {
    position: absolute;
    left: var(--spacing);
    right: var(--spacing);
    top: 90px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.header-logo a {
    display: block;
    width: 100%;
}

.header-logo img {
    width: 100%;
    max-width: initial;
}

.header-logo.no-anim {
    top: 20px;
    right: initial;
}

.header-logo.no-anim img {
    width: 30px !important;
}

.header-nav {
    width: 100%;
    margin-left: var(--side);
    margin-right: var(--side);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: 400;
    position: relative;
    z-index: 5;
    letter-spacing: 0.02em;
}

.active-menu {
    border-bottom: 1px solid;
}

.header-burger {
    position: absolute;
    top: 20px;
    right: var(--spacing);
    cursor: pointer;
    width: 29px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg width='29' height='8' viewBox='0 0 29 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6V8H0V6H6ZM29 2H0V0H29V2ZM29 8H10V6H29V8Z' fill='%23E9F7FC'/%3E%3C/svg%3E%0A") center no-repeat;
}

.hero {
    height: 100svh;
    padding: 100px var(--spacing) 50px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.hero-logo {
    width: 100%;
    position: relative;
    z-index: 5;
}

.hero-logo img {
    max-width: initial;
    width: 100%;
}

.hero-content {
    margin-top: auto;
    max-width: 780px;
    position: relative;
    z-index: 5;
}

.hero-label {
    font-family: FeatureMono;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    opacity: 0.8;
    display: block;
}

.hero-title {
    font-weight: 400;
    font-size: 52px;
    line-height: 1.1;
}

.hero-tornado {
    width: 58vw;
    max-width: 1100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mv-str {
    position: relative;
    top: 40px;
}


.sml-text {
    font-family: "Unica One", sans-serif;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sml-text span {
    margin-right: 8px;
}

.sml-text svg {
    transition: transform 0.35s ease;
    will-change: transform;
}

.sml-text a:hover svg {
    transform: translateX(6px);
}

.issue-item__content .issue-item__text {
        max-width: 600px;
}

.introduction {
    padding: 200px var(--spacing) 140px;
}

.introduction-title {
    position: relative;
}

.introduction-title .title {
    padding-left: var(--side);
    display: inline;
}

.introduction-title .title span {
    display: inline !important;
}

.homeintro-title .line {
    transition: color 0.4s ease, opacity 0.4s ease;
}

.homeintro-title .title:hover .line {
    opacity: 0.21;
}

.homeintro-title .title .line:hover {
    opacity: 1 !important;
    color: #fff;
}

.introduction-title .introduction-label {
    position: absolute;
    left: 20px;
    top: -6px;
}

.introduction-label {
    font-family: "Unica One", sans-serif;
    font-size: 1.563rem;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.04em;
    display: block;
    font-weight: 400;
}

.introduction-text {
    margin-left: var(--side);
    margin-top: 140px;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.04em;
    max-width: 645px;
    color: #fff;
}

.introduction-text span {
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 2px;
}

.sml-text.pos-home span {
    border: 0px;
}

.sml-text.pos-home {
    margin-top: 39px;
}

.introduction-list {
    margin-top: 140px;
    counter-reset: introductionItem;
}

.introduction-list__item {
    padding: 60px 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    counter-increment: introductionItem;
    border-bottom: 1px solid rgba(233, 247, 252, 0.08);
}

.introduction-list__count {
    width: var(--side);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2px;
}

.introduction-list__count p {
    font-size: 8px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.04em;
    opacity: 0.7;
}

.introduction-list__count::after {
    content: "[00 - " counter(introductionItem, decimal-leading-zero) "]";
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    font-family: FeatureMono;
}

.introduction-list__value {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 44vw;
}

.introduction-list__value b {
    font-size: 150px;
    font-weight: 400;
    line-height: 134px;
}

.introduction-list__value p {
    font-size: 13px;
    font-family: FeatureMono;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    margin-left: 24px;
}

.introduction-list__text {
    font-size: 18px;
    font-family: FeatureMono;
    line-height: 1.3;
    letter-spacing: 0.04em;
    max-width: 245px;
    text-transform: uppercase;
}

.solution {
    height: 300vh;
    position: relative;
    overflow: hidden;
}

.general,
.sonic-solution {
    height: 300vh;
    position: relative;
    overflow: hidden;
}

.solution-container,
.general-container,
.sonic-container {
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.solution-screen,
.general-screen,
.sonic-jscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: calc(var(--spacing) * 2) var(--spacing);
    will-change: filter, transform, opacity;
}

.solution-screen:first-child::before,
.general-screen:first-child::before,
.sonic-jscreen:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 60px 60px #000;
}

.solution-screen:not(:first-child),
.general-screen:not(:first-child),
.sonic-jscreen:not(:first-child) {
    opacity: 0;
}

.solution-bg,
.slide-label,
.slide-title {
    transition:
        opacity 0.45s ease,
        transform 0.6s cubic-bezier(.25, .8, .25, 1),
        filter 0.45s ease;
}

.is-changing .solution-bg,
.is-changing .slide-label,
.is-changing .slide-title {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(8px);
}


.solution-content {
    position: relative;
    z-index: 5;
    max-width: 80%;
    margin-top: auto;
}

.solution-screen.home-solution .solution-content {
    max-width: 95%;
}

.solution-screen.home-solution .slide-title {
    max-width: 80%;
}

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

.solution-screen.home-solution .slide-title span {
    font-weight: bold;
}

.solution-nav {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    top: 70px;
}

.solution-screen.home-solution .slide-label {
    position: relative;
    left: 34px;
}

.solution-nav button {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.solution-nav svg {
    width: 70px;
}

.solution-more {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.solution-label {
    font-family: FeatureMono;
    font-size: 1.125rem;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.04em;
    opacity: 0.8;
    display: block;
    margin-bottom: 24px;
}

.slide-label {
    font-family: "Unica One", sans-serif;
    font-size: 1.125rem;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 24px;
    font-weight: 400;
}

.solution-bg,
.general-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.solution-bg img,
.general-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.problem {
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: var(--spacing);
}

.problem-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    max-width: 750px;
    width: 100%;
}

.problem-label {
    font-family: "Unica One", sans-serif;
    font-size: 1.125rem;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 24px;
    font-weight: 400;
}

.problem-title {
    font-size: 2.625rem;
    font-weight: 400;
    line-height: 1.3;
    font-family: "Unica One", sans-serif;
    padding-bottom: 30px;
}

.issue {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--spacing);
    counter-reset: issueItem;
    margin-top: -70px;
}

.issue::after,
.issue::before {
    content: "";
    position: sticky;
    z-index: 10;
    width: 100%;
    height: 140px;
    background: linear-gradient(180deg, #000, transparent);
    display: block;
}

.issue::before {
    top: 0;
}

.issue::after {
    bottom: 0;
    background: linear-gradient(0deg, #000, transparent);
}

.issue-item {
    position: relative;
    counter-increment: issueItem;
    width: 100%;
    padding: 70px 0;
}

.issue-item::before {
    content: "0" counter(issueItem, decimal-leading-zero);
    position: fixed;
    top: 50%;
    right: var(--spacing);
    font-size: 17px;
    line-height: 1.1;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.3s;
}

.issue-item:last-child {
    margin-bottom: 0;
}

.issue-item__content {
    height: 520px;
    position: relative;
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.issue-item__title {
    font-weight: 400;
    font-size: 6rem;
    line-height: 1.1;
    text-align: center;
}

.issue-item__text {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.5;
}

.issue-item__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1100px;
    height: 520px;
    opacity: 0;
    transition: 0.3s;
    filter: blur(27px);
}

.issue-item__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.issue-item__label {
    position: fixed;
    top: 50%;
    left: var(--spacing);
    font-size: 17px;
    line-height: 1.1;
    transform: translateY(-50%);
    font-family: "Unica One", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0;
    transition: 0.3s;
}

.issue-item.show .issue-item__bg,
.issue-item.show::before {
    opacity: 1;
}

.issue-item.show .issue-item__label {
    opacity: 0.8;
}


.eq-title {
    font-size: 5.188rem;
    font-weight: 400;
}

.grid-container {
    display: grid;
    padding-top: 80px;
}

.grid-container-inner {
    display: grid;
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.accordion-wrapper {
    grid-column-end: span 12;
    grid-column-start: 2;
}

.accordion {
    margin-bottom: -1px;
    overflow: hidden;
}

.accordion-header {
    border-top: 1px solid #707070;
    cursor: pointer;
    display: flex;
    grid-column-end: span 12;
    grid-column-start: 1;
    justify-content: space-between;
    justify-self: flex-end;
    max-width: 66.66%;
    padding-bottom: 1.6rem;
    padding-top: 1.6rem;
    width: 100%;
}

.accordion-header h4 {
    transform: translate(9rem);
    transition: all 0.5s;
}

.accordion-header:hover h4 {
    transform: translate(7.5rem);
}

.accordion-side {
    display: flex;
}

.accordion-icon {
    height: 2rem;
    margin-left: 12rem;
    margin-right: 0.5rem;
    width: 2rem;
}

.accordion-body {
    grid-column-end: span 8;
    grid-column-start: 5;
    height: 0;
    justify-self: flex-end;
    overflow: hidden;
    width: 100%;
}

.accordion-content {
    display: grid;
    padding-bottom: 3rem;
    grid-column-gap: var(--grid-gap);
    grid-template-columns: repeat(8, 1fr);
}

.accordion-text {
    grid-column-end: span 6;
    grid-column-start: 1;
    transform: translate(9rem);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.5em;
    text-align: left;
}

.accordion-text ul {
    margin-top: 0;
}

.accordion-text h4 {
    margin-bottom: 1.5rem;
}

.accordion-text p {
    margin-bottom: 2rem;
    min-height: 4.5rem;
}

.accordion-text :where(ul)+p {
    margin-top: 0;
}

a.ht-biglink {
    grid-column-end: span 6;
    grid-column-start: 1;
    justify-self: flex-end;
    margin-top: 12rem;
}

.accordion-bottom-hr {
    border-bottom: 1px solid #707070;
    grid-column-end: span 12;
    grid-column-start: 1;
    justify-self: flex-end;
    max-width: 66.66%;
    width: 100%;
}

.accordion.open h4 {
    transform: translate(14.5rem);
}

.accordion.open:hover h4 {
    transform: translate(12.5rem);
}

.accordion-header h4 {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    font-family: "Unica One", sans-serif;
    text-transform: uppercase;
    line-height: 1.6em;
}

.accordion.grid-container-inner:last-child .accordion-bottom-hr {
    opacity: 1;
}

.accordion.grid-container-inner.open .a2 {
    opacity: 0;
}

/* projects */
.project-overview {
    padding-top: 250px;
    padding-bottom: 170px;
    padding-left: var(--spacing);
    padding-right: var(--spacing);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-loop {
    position: relative;
    border: 1px solid #707070;
    overflow: hidden;
}

/* MEDIA WRAPPER */
.project-media {
    position: relative;
    width: 100%;
    height: 275px;
}

.project-link {
    position: absolute;
    width: 100%;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 9;
}

/* IMAGE + VIDEO */
.project-media img,
.project-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* VIDEO INITIAL STATE */
.project-video {
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* DARK OVERLAY */
.project-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* TITLE */
.project-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.pt-project {
    color: #fff;
    font-size: 2rem;
    letter-spacing: 0.04em;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    text-transform: uppercase;
}

/* HOVER STATES */
.project-loop:hover .project-media::after {
    opacity: 0;
}

.project-loop:hover .project-video {
    opacity: 1;
}

.project-loop:hover .project-title {
    opacity: 0;
    transform: translateY(10px);
}


/* single Project Overview */
.single-project-overview {
    padding-top: 60px;
    padding-left: var(--spacing);
    padding-right: var(--spacing);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.project-single-bg {
    width: calc(100% - 222px);
    height: calc(100vh - 100px);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    margin: 0 auto;
}

.project-video-single {
    position: relative;
    justify-content: center;
    display: flex;
}

.top-nav {
    position: absolute;
    display: flex;
    flex-direction: column;
    font-family: "Unica One", sans-serif;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: end;
    left: 0;
    top: 42px;
}

.top-nav a {
    font-size: 1.2rem;
}

.top-nav svg {
    margin-left: 8px;
}

.see-all {
    text-decoration: underline;
    margin-bottom: 35px;
    text-align: left;
}

.volume-video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.volume-video.is-active #novol {
    opacity: 0;
}

.volume-video svg {
    opacity: 0.6;
}


/* sonic journey */
.sonic-jscreen {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.label-sonic.first-label {
    position: fixed;
    top: 50%;
    font-size: 1.063rem;
    line-height: 1.1;
    transform: translateY(-50%);
    font-family: "Unica One", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 1;
    transition: 0.3s;
    left: 0;
}

.label-sonic.second-label {
    position: fixed;
    top: 50%;
    font-size: 1.063rem;
    line-height: 1.1;
    transform: translateY(-50%);
    font-family: "Unica One", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 1;
    transition: 0.3s;
    right: 0;
}

.sonic-ntop {
    margin-top: unset;
    z-index: -1;
}

.sonic-ntop {
    max-width: 60% !important;
}

.sonic-title {
    font-size: 96px;
}

.sonic-jscreen .small-desc {
    max-width: 79%;
    font-size: 18px;
    line-height: 1.4em;
    margin: 0 auto;
    padding-top: 25px;
}

.sonic-slide {
    background: #000;
    color: #fff;
    overflow: hidden;
}

.sonic-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}

.sonic-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
    max-width: 65%;
    margin-left: auto;
    margin-right: auto;
}

.sonic-text {
    max-width: 650px;
}

.sonic-slidetitle {
    font-size: 64px;
    margin-bottom: 17px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.sonic-desc {
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
}

.videofull {
    display: inline-block;
    margin-top: 35px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: underline;
    font-family: "Unica One", sans-serif;
    font-size: 18px;
}

.sonic-arrows {
    display: flex;
    flex-direction: column-reverse;
}

.sonic-arrows button {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.sonic-next.disabled-btn,
.sonic-prev.disabled-btn {
    opacity: 0.5;
}

.sonic-arrows svg {
    width: 70px;
}

.sonic-track-wrap {
    overflow: hidden;
}

.sonic-track {
    display: flex;
    gap: 40px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.6s cubic-bezier(.25, .8, .25, 1);
}

.sonic-slide-item {
    min-width: 70%;
    opacity: 0.35;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sonic-slide-item.active {
    opacity: 1;
}

.sonic-slide-item img {
    width: 100%;
    height: auto;
    display: block;
}


.sonic-text {
    transition: opacity 0.35s ease, transform 0.45s ease, filter 0.35s ease;
}

.sonic-text.is-hiding {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
}

.sonic-text.is-showing {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.video-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.video-wrap {
    width: min(90vw, 1200px);
    transform: scale(0.96);
    transition: transform 0.4s cubic-bezier(.25, .8, .25, 1);
}

.video-lightbox.is-open .video-wrap {
    transform: scale(1);
}

.video-wrap video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.video-close:hover {
    opacity: 1;
}


.footer-soniccta {
    padding-top: 40px;
    padding-bottom: 99px;
}

.big-cta {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 5rem;
}

.footer-soniccta .big-cta {
    text-decoration: underline;
    font-weight: 500;
}




.defeat {
    background: #f4f4f6;
    position: relative;
    z-index: 5;
}

.defeat-body {
    width: 100%;
    height: 100vh;
    position: relative;
}

.defeat-wrapper {
    padding: calc(var(--spacing) * 2) var(--spacing);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transform-origin: center center;
    box-shadow:
        0 0 0 16px var(--color-bg),
        48px 48px 80px rgba(0, 0, 0, 0.4);
    background: var(--color-bg);
    will-change: filter, transform, opacity;
}

.defeat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.defeat-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.defeat-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    mix-blend-mode: color-dodge;
}

.defeat-title {
    font-weight: 400;
    font-size: 80px;
    line-height: 1.1;
    text-transform: uppercase;
}

.defeat-text {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    font-family: FeatureMono;
    text-transform: uppercase;
}

.defeat-access {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
}

.defeat-access::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.26398 4.73496L4.73398 7.26496C4.40898 6.93996 4.20898 6.49496 4.20898 5.99996C4.20898 5.00996 5.00898 4.20996 5.99898 4.20996C6.49398 4.20996 6.93898 4.40996 7.26398 4.73496Z' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.90992 2.88475C8.03492 2.22475 7.03492 1.86475 5.99992 1.86475C4.23492 1.86475 2.58992 2.90475 1.44492 4.70475C0.994922 5.40975 0.994922 6.59475 1.44492 7.29975C1.83992 7.91975 2.29992 8.45475 2.79992 8.88475' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.20898 9.76533C4.77898 10.0053 5.38398 10.1353 5.99898 10.1353C7.76398 10.1353 9.40899 9.09533 10.554 7.29533C11.004 6.59033 11.004 5.40533 10.554 4.70033C10.389 4.44033 10.209 4.19533 10.024 3.96533' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.7557 6.3501C7.6257 7.0551 7.0507 7.6301 6.3457 7.7601' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.735 7.26465L1 10.9996' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.0006 1L7.26562 4.735' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.defeat-notify {
    position: absolute;
    bottom: 80px;
    width: 150px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
    mix-blend-mode: color-dodge;
}

.faq-section {
    background: #000;
    color: #fff;
    height: 100vh;
    padding: calc(var(--spacing) * 2) var(--spacing);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
    position: relative;
}

.hackfirst-text {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hackfirst img {
    width: 980px;
}

.about {
    padding: 0 var(--spacing) 100px;
}

.about-video {
    height: 800px;
    position: relative;
    overflow: hidden;
}

.about-video video {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.about-line {
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-content {
    max-width: 950px;
    margin-left: var(--side);
    margin-top: 240px;
}

.about-text {
    margin-top: 60px;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.about-label {
    font-family: FeatureMono;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    opacity: 0.8;
    display: block;
}

.about-list {
    margin-top: 100px;
    counter-reset: aboutItem;
}

.about-list__item {
    border-bottom: 1px solid rgba(233, 247, 252, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0;
    counter-increment: aboutItem;
}

.about-list__item::before {
    content: "S / " counter(aboutItem, decimal-leading-zero);
    width: var(--side);
    display: block;
    font-family: FeatureMono;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.03em;
    opacity: 0.7;
}

.about-list__item span {
    font-size: 16px;
    line-height: 16px;
    padding: 6px 10px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-family: FeatureMono;
    display: block;
    border-radius: 4px;
    border: 1px solid rgba(233, 247, 252, 0.16);
}

.about-page {
    padding-left: calc(var(--side-xl) + var(--spacing));
    padding-right: var(--spacing);
    padding-top: 140px;
    padding-bottom: 60px;
}

.about-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    max-width: 590px;
    height: 500px;
    position: relative;
}

.about-head video {
    position: absolute;
    top: 0;
    left: -440px;
    width: 340px;
}

.about-title {
    font-weight: 400;
    font-size: 96px;
    line-height: 1.1;
}

.about-desc {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.about-info {
    padding: 0 var(--spacing);
}

.about-info__item {
    padding-left: var(--side-xl);
    padding-top: 130px;
    padding-bottom: 130px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 80px;
}

.about-info__item b {
    display: block;
    font-family: FeatureMono;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.04em;
    max-width: 360px;
    width: 100%;
    font-weight: 400;
}

.about-info__item p {
    max-width: 460px;
    width: 100%;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.about-info__separator {
    width: 100%;
    height: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    background: #000;
}

.about-info__separator span {
    display: block;
    flex: 1;
    height: 1px;
    background: var(--color-text);
    opacity: 0.1;
}

.about-info__separator i {
    display: block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.30769 0H7.69231V3.88822C7.69231 5.92743 6.0392 7.58053 4 7.58053H0V8.19591H4C6.03921 8.19591 7.69231 9.84902 7.69231 11.8882V16H8.30769V11.8882C8.30769 9.84902 9.9608 8.19591 12 8.19591H16V7.58053H12C9.9608 7.58053 8.30769 5.92743 8.30769 3.88822V0Z' fill='%23E9F7FC'/%3E%3C/svg%3E%0A");
}

.about-edge {
    padding: 100px var(--spacing);
}

.about-edge__head {
    margin-left: var(--side-xl);
    max-width: 620px;
}

.about-edge__badge {
    font-size: 15px;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    display: block;
}

.about-edge__title {
    font-weight: 400;
    font-size: 99px;
    line-height: 1.1;
}

.about-edge__desc {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-top: 52px;
    max-width: 420px;
}

.about-edge__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 70px;
    counter-reset: aboutEdge;
}

.about-edge__item {
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(233, 247, 252, 0.1);
    min-height: 460px;
    counter-increment: aboutEdge;
}

.about-edge__item::before {
    content: counter(aboutEdge, decimal-leading-zero);
    display: block;
    font-size: 55px;
    font-weight: 300;
    line-height: 1.1;
}

.about-edge__item p {
    margin-top: auto;
    max-width: 360px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.technologies {
    position: relative;
}

.technologies-wrapper {
    position: sticky;
    z-index: 10;
    pointer-events: none;
    top: 0;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
}

.technologies-separator {
    width: 100%;
    position: sticky;
    left: 0;
    height: 48px;
    padding: 0 var(--spacing);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    background: #000;
}

.technologies-separator::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 25vh;
    background: linear-gradient(180deg, #000, transparent);
    display: block;
}

.technologies-separator:first-child {
    top: 0;
}

.technologies-separator:last-child {
    bottom: 0;
}

.technologies-separator:last-child::before {
    top: initial;
    bottom: 100%;
    background: linear-gradient(0deg, #000, transparent);
}

.technologies-separator span {
    display: block;
    flex: 1;
    height: 1px;
    background: var(--color-text);
    opacity: 0.1;
}

.technologies-separator i {
    display: block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.30769 0H7.69231V3.88822C7.69231 5.92743 6.0392 7.58053 4 7.58053H0V8.19591H4C6.03921 8.19591 7.69231 9.84902 7.69231 11.8882V16H8.30769V11.8882C8.30769 9.84902 9.9608 8.19591 12 8.19591H16V7.58053H12C9.9608 7.58053 8.30769 5.92743 8.30769 3.88822V0Z' fill='%23E9F7FC'/%3E%3C/svg%3E%0A");
}

.technologies-image {
    position: sticky;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100vh;
    margin: -48px 0;
    width: 100%;
}

.technologies-image img,
.technologies-image video {
    width: 654px;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.technologies-image span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}

.technologies-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 120px;
    margin-top: -50vh;
    padding-bottom: calc(50vh - 48px);
}

.technologies-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing);
}

.technologies-item h4 {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.technologies-item p {
    max-width: 330px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
}

.awards {
    padding: 390px var(--spacing) 100px;
    background: var(--color-bg);
}

.awards-text {
    max-width: 390px;
    font-weight: 300;
    line-height: 1.6;
}

.awards-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.awards-item {
    background: rgba(233, 247, 252, 0.03);
    height: 420px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: background 0.3s;
}

.awards-item__text {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.awards-item__text span {
    font-size: 20px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.awards-item__text p {
    font-size: 16px;
    font-family: FeatureMono;
    letter-spacing: 0.02em;
    opacity: 0.6;
    text-transform: uppercase;
}

.awards-item-winner::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;
    width: 35px;
    height: 32px;
    background: url(../img/winner.png) center/cover no-repeat;
}

.awards-item:hover {
    background: #141717;
}

.awards-item:hover .awards-item__text span {
    border-color: var(--color-text);
}

.awards-separator {
    margin-top: 100px;
    width: 100%;
    height: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    background: #000;
}

.awards-separator span {
    display: block;
    flex: 1;
    height: 1px;
    background: var(--color-text);
    opacity: 0.1;
}

.awards-separator i {
    display: block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.30769 0H7.69231V3.88822C7.69231 5.92743 6.0392 7.58053 4 7.58053H0V8.19591H4C6.03921 8.19591 7.69231 9.84902 7.69231 11.8882V16H8.30769V11.8882C8.30769 9.84902 9.9608 8.19591 12 8.19591H16V7.58053H12C9.9608 7.58053 8.30769 5.92743 8.30769 3.88822V0Z' fill='%23E9F7FC'/%3E%3C/svg%3E%0A");
}

.client-logos {
    padding: 90px 0px 150px 0px;
}

.contact-page {
    align-items: center;
    display: flex;
    padding: 110px 0px;
    justify-content: center;
}

.contact-page .font-bl {
    color: #fff !important;
}

.contact-page .flex-form {
    flex-direction: column;
}

.contact-row .f-right .flex-input {
    flex-direction: column;
}

.privacy-check-contact {
    padding-top: 20px;
}

.contact-row .footer-col:last-child {
    border-left: none;
}

.contact-row .f-left {
    width: 100%;
}

.logo-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 36s linear infinite;
}

.logo-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.logo-item {
    width: 117px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.logo-item img {
    width: 100%;
    height: 94px;
    object-fit: contain;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Marquee motion */
@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


.started {
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing) * 2) var(--spacing);
    position: relative;
    overflow: hidden;
}

.started-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.started-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.started-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 770px;
    position: relative;
    z-index: 5;
}

.started-label {
    font-family: FeatureMono;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.04em;
    opacity: 0.8;
    display: block;
    margin-bottom: 14px;
}

.started .title-md {
    margin-bottom: 24px;
}

.started-text {
    max-width: 430px;
    line-height: 1.6;
}

.started-btn {
    margin-top: 70px;
    width: 190px;
    height: 50px;
    border-radius: 99px;
    background: var(--color-text);
    color: var(--color-bg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    transition:
        background 0.3s,
        color 0.3s;
}

.started-btn:hover {
    background: #0674f5;
    color: var(--color-text);
}

.footer {
    border-top: 1px solid rgba(233, 247, 252, 0.1);
    border-bottom: 1px solid rgba(233, 247, 252, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-row:first-of-type {
    min-height: 510px;
}

.footer-col {
    padding: 50px var(--spacing);
}

.font-bl {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10rem;
    width: 500px;
    color: rgb(69, 71, 72);
}

.footer-nav-space {
    padding-bottom: 50px;
    padding-top: 60px;
}

.footer-col:first-child {
    flex: 1;
}

.footer-col:last-child {
    width: 58%;
    border-left: 1px solid rgba(233, 247, 252, 0.1);
}

.footer-form {
    padding-top: 42px;
}

.flex-form {
    display: flex;
    gap: 50px;
}

.f-left {
    width: calc(65% - 25px);
}

.f-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flex-input {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.u-field-style {
    width: calc(50% - 20px);
    height: 45px;
}

.u-field-text {
    border-bottom: 1px solid #ccc;
    color: #F0EFEB;
    font-size: 16px;
    width: 100%;
    padding: 12px 0px 9px 0px;
    font-family: "Sofia Sans Semi Condensed", sans-serif;
}

.u-field-text::placeholder,
.u-text-area-style::placeholder {
    opacity: 1;
    color: #F0EFEB;
}

.u-text-area-style {
    border: 1px solid #fff;
    width: 100%;
    color: #F0EFEB;
    padding: 14px 12px;
    font-family: "Sofia Sans Semi Condensed", sans-serif;
}

.privacy-check {
    padding-top: 30px;
}

.text-area {
    padding-top: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    cursor: pointer;
}

.check-item input {
    display: none;
}

/* square box */
.custom-box {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
    flex-shrink: 0;
}

/* checked state (optional, subtle) */
.check-item input:checked+.custom-box {
    border-color: #fff;
    background-color: #fff;
}

.f-sumit {
    background: rgb(174, 198, 210);
    padding: 12px 32px !important;
    font-weight: bold;
}

.footer-formd {
    padding-top: 60px;
    font-family: "Unica One", sans-serif;
    text-transform: uppercase;
}

.footer-formd p {
    font-size: 25px;
    padding-bottom: 50px;
    width: 619px;
}

.footer-formd a {
    text-decoration: underline;
    font-size: 2.5rem;
    font-family: "Sofia Sans Semi Condensed", sans-serif;
    text-transform: initial;
}

.footer-logo {
    max-width: 780px;
    width: 100%;
}

.footer-about {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-family: "Unica One", sans-serif;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    max-width: 800px;
}

.footer-about span,
.footer-about .sm-heading {
    opacity: 0.5;
    font-size: 1.375rem;
}

.footer-about p {
    font-size: 1.563rem;
}

.f-right .footer-about span {
    line-height: 1em;
}

.footer-nav {
    font-family: "Unica One", sans-serif;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-nav p {
    font-size: 1.375rem;
    opacity: 0.5;
    margin-bottom: 10px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 32px;
    font-size: 1.375rem;
}

.footer-nav ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
}

/* .footer-nav ul li::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: var(--color-text);
} */

.footer-nav ul li:last-child::after {
    display: none;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid rgba(233, 247, 252, 0.1);
    padding: 33px var(--spacing);
    justify-content: space-between;
}

.bottom-links {
    gap: 12px;
    display: flex;
    font-size: 15px;
}

.footer-copyright {
    font-size: 0.875rem;
    line-height: 14px;
    text-transform: lowercase;
    mix-blend-mode: difference;
    z-index: 900;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: -1;
    opacity: 0.5;
}

.services {
    padding: 170px var(--spacing) 120px;
}

.services .back {
    margin-bottom: -28px;
}

.services-title {
    margin-left: var(--side-xl);
    font-size: 140px;
    font-weight: 400;
    line-height: 1.1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 12px;
    margin-top: 90px;
    counter-reset: servicesItem;
}

.services-item {
    counter-increment: servicesItem;
}

.services-item__poster {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 24px;
}

.services-item__poster img,
.services-item__poster video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.services-item__title {
    font-size: 24px;
    line-height: 1.1;
}

.services-item__text {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: rgba(233, 247, 252, 0.8);
    max-width: 470px;
    padding-left: 70px;
    position: relative;
    font-weight: 300;
}

.services-item__text::before {
    content: "S/" counter(servicesItem, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    letter-spacing: 0;
    color: rgba(233, 247, 252, 0.5);
}

.contacts {
    display: flex;
    flex-wrap: wrap;
    padding-top: 60px;
}

.contacts-video {
    flex: 1;
    min-height: calc(100vh - 60px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(233, 247, 252, 0.1);
    border-top: 1px solid rgba(233, 247, 252, 0.1);
}

.contacts-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.contacts-video video img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.contacts-access {
    max-width: 170px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contacts-access b {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    z-index: 5;
}

.contacts-access b::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.26398 4.73496L4.73398 7.26496C4.40898 6.93996 4.20898 6.49496 4.20898 5.99996C4.20898 5.00996 5.00898 4.20996 5.99898 4.20996C6.49398 4.20996 6.93898 4.40996 7.26398 4.73496Z' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.90992 2.88475C8.03492 2.22475 7.03492 1.86475 5.99992 1.86475C4.23492 1.86475 2.58992 2.90475 1.44492 4.70475C0.994922 5.40975 0.994922 6.59475 1.44492 7.29975C1.83992 7.91975 2.29992 8.45475 2.79992 8.88475' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.20898 9.76533C4.77898 10.0053 5.38398 10.1353 5.99898 10.1353C7.76398 10.1353 9.40899 9.09533 10.554 7.29533C11.004 6.59033 11.004 5.40533 10.554 4.70033C10.389 4.44033 10.209 4.19533 10.024 3.96533' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.7557 6.3501C7.6257 7.0551 7.0507 7.6301 6.3457 7.7601' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.735 7.26465L1 10.9996' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.0006 1L7.26562 4.735' stroke='%23E9F7FC' stroke-width='0.786047' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.contacts-access p {
    font-size: 10px;
    line-height: 1.1;
    mix-blend-mode: color-dodge;
}

.contacts-main {
    width: 46%;
    padding: var(--spacing);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    gap: 80px;
    border-top: 1px solid rgba(233, 247, 252, 0.1);
}

.contacts-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.contacts-title {
    font-weight: 400;
    font-size: 91px;
    line-height: 1.1;
}

.contacts-desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    opacity: 0.7;
}

.contacts-form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px 24px;
    flex: 1;
}

.contacts-form__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.contacts-form .label {
    flex: 1;
    width: 100%;
}

.contacts-form .label textarea {
    height: 100%;
}

.contacts-button {
    background: var(--color-text);
    color: var(--color-bg);
    height: 55px;
    border: 0;
    width: 55%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.contacts-button::after {
    content: "";
    display: block;
    width: 18px;
    height: 6px;
    background: url("data:image/svg+xml,%3Csvg width='18' height='6' viewBox='0 0 18 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.2753 0.119335C14.4555 -0.0397767 14.7477 -0.0397766 14.9279 0.119335L17.8648 2.71193C18.0451 2.87105 18.0451 3.12896 17.8648 3.28807L14.9279 5.88067C14.7477 6.03978 14.4555 6.03978 14.2753 5.88067C14.095 5.72155 14.095 5.46364 14.2753 5.30453L16.4243 3.40743L-2.97887e-07 3.40743L-2.2665e-07 2.59257L16.4243 2.59257L14.2753 0.695468C14.095 0.536356 14.095 0.278447 14.2753 0.119335Z' fill='black'/%3E%3C/svg%3E%0A") center no-repeat;
    transition: 0.3s;
}

.contacts-button:hover {
    background: #0674f5;
    color: var(--color-text);
}

.contacts-button:hover::after {
    background: url("data:image/svg+xml,%3Csvg width='18' height='6' viewBox='0 0 18 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.2753 0.119335C14.4555 -0.0397767 14.7477 -0.0397766 14.9279 0.119335L17.8648 2.71193C18.0451 2.87105 18.0451 3.12896 17.8648 3.28807L14.9279 5.88067C14.7477 6.03978 14.4555 6.03978 14.2753 5.88067C14.095 5.72155 14.095 5.46364 14.2753 5.30453L16.4243 3.40743L-2.97887e-07 3.40743L-2.2665e-07 2.59257L16.4243 2.59257L14.2753 0.695468C14.095 0.536356 14.095 0.278447 14.2753 0.119335Z' fill='white'/%3E%3C/svg%3E%0A") center no-repeat;
}

.contacts-checkbox {
    margin: auto 0;
}

.contacts-checkbox input {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

.contacts-checkbox input:checked+span::before {
    background: var(--color-text);
}

.contacts-checkbox span {
    display: block;
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 20px;
    position: relative;
    padding-left: 32px;
}

.contacts-checkbox span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #171919;
    box-shadow: inset 0 0 0 4px #171919;
    border: 1px solid rgba(233, 247, 252, 0.08);
    transition: 0.2s;
}

.contacts-checkbox a {
    border-bottom: 1px solid var(--color-text);
}

.poweredby {
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 0.8rem;
    text-transform: lowercase;
}

.poweredby img {
    width: 45px;
    padding-top: 5px;
    margin: 0 auto;
}

.menu {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
    filter: blur(20px);
}

.menu.show {
    opacity: 1;
    pointer-events: auto;
    filter: blur(0);
}

.menu::-webkit-scrollbar {
    display: none;
}

.menu-head {
    width: 100%;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 var(--spacing);
    position: relative;
    z-index: 10;
}

.menu-logo {
    width: 30px;
}

.menu-close {
    background: var(--color-text);
    color: var(--color-bg);
    cursor: pointer;
    text-transform: uppercase;
    margin-left: auto;
    font-size: 0.875rem;
    padding: 1px 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.menu-close::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0905654 1.0566L1.0566 0.0905661L3.9849 3.01887L7.00377 0L8 0.996227L4.98113 4.0151L7.90943 6.9434L6.9434 7.90944L4.01509 4.98113L0.996227 8L0 7.00377L3.01887 3.98491L0.0905654 1.0566Z' fill='black'/%3E%3C/svg%3E%0A");
}

.menu-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: var(--spacing);
}

.menu-side {
    width: 150px;
}

.menu-content {
    flex: 1;
}

.menu-label {
    font-size: 1.063rem;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.05em;
    padding-left: 16px;
    position: relative;
    font-family: "Unica One", sans-serif;
}

.grain-sphere {
    width: 19px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgb(0, 0, 0), rgba(0, 0, 0, 0) 52%, rgba(255, 255, 255, 0.43) 95%, rgba(0, 0, 0, 0) 95%);
    filter: contrast(130%);
    position: absolute;
    left: -11px;
    margin: auto 0;
    transition: background 0.3s ease;
}

.solution-screen.home-solution .slide-label .grain-sphere {
    left: -30px;
}

.menu.show .menu-label:hover .grain-sphere {
    background: #fff;
}

.introduction-label .grain-sphere {
    left: -30px;
    top: 5px;
}

/* Grain overlay */
.grain-sphere::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.menu-label::before {
    /*content: "";*/
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    width: 4px;
    height: 4px;
    background: var(--color-text);
    opacity: 0.4;
}

.menu-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px
}

.menu-nav li {
    width: 100%;
    transition: 0.3s;
}

.menu-nav li a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    font-size: 6rem;
    line-height: 1.1;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    pointer-events: none;
}

.menu-nav li:hover a {
    pointer-events: unset;
}

/* .menu-nav li a::before {
    content: "[ 00 - 01 ]";
    display: block;
    font-size: 8px;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.04em;
} */
.menu-nav li:hover {
    filter: none !important;
}

.menu-nav:hover li {
    filter: blur(8px);
}

.menu-main {
    width: 100%;
}

.menu-main .menu-label {
    margin-top: 8px;
}

.menu-bottom {
    margin-top: auto;
    width: var(--w-full);
}

.menu-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.menu-socials li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.menu-socials li::after {
    content: "/";
    opacity: 0.4;
}

.menu-socials li:last-child::after {
    display: none;
}

.menu-side.menu-side--right {
    margin-left: auto;
    width: unset;
    z-index: 1;
}

.menu-video {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
}

.overlay-shape {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 326px;
    opacity: 0.5;
}

.menu-video__wrapper {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 42%;
}

.menu-video__wrapper::before {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='762' height='880' viewBox='0 0 762 880' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2125_1640)'%3E%3Cpath d='M0 796.425H71.2842V851.731H95.8643V880H0V796.425ZM762 880H666.136V851.731H690.715V796.425H762V880ZM0 594.861H20.8936V616.983H0V594.861ZM27.0391 388.379V398.213H33.1836V417.877H46.7041V440H33.1836V481.787H44.2461V503.91H23.3525V481.787H0V398.213H15.9766V388.379H27.0391ZM762 408.045H753.396V481.787H748.48V496.536H727.587V481.787H720.212V458.436H715.296V468.269H704.234V455.978H712.838V446.145H720.212V398.213H741.105V385.922H762V408.045ZM29.4971 162.235V184.357H20.8945V258.102H17.207V270.392H0.000976562V174.525H8.60352V162.235H29.4971ZM164.816 0V31.5098H184.206V53.3232H164.816V65.4424H126.036V92.1045H82.4082V65.4424H0V0H164.816ZM762 83.5752H690.715V28.2676H666.136V0H762V83.5752Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2125_1640'%3E%3Crect width='762' height='880' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A") top left/cover no-repeat;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: var(--color-bg);
    animation: 1s 7s forwards loader;
}

.loader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.hero-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-x5.is-blurred {
    filter: blur(27px);
    -webkit-backdrop-filter: blur(27px);
}

.main-x5:not(.is-blurred) {
    filter: blur(0);
}

.loader-big {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 60px;
    justify-items: center;
    align-items: center;
    justify-content: center;
    /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
}

.hero-container .loader-big {
    justify-content: start;
    padding-left: 60px;
}

.loading-text {
    position: absolute;
    z-index: 10;
    left: 20px;
    bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: loading-fade 1.5s linear infinite;
}

.loader-bar {
    position: absolute;
    z-index: 20;
    width: 300px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    overflow: hidden;
    bottom: -240px;
}

.loader-progress {
    position: absolute;
    inset: 0;
    width: 0%;
    background:
        repeating-linear-gradient(135deg,
            #fff 0px,
            #fff 3px,
            transparent 3px,
            transparent 6px);
    image-rendering: pixelated;
    animation: fill-bar 3s linear forwards;
}

@keyframes fill-bar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes loading-fade {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.main-l {
    position: relative;
    width: 300px;
}

.main-pre {
    width: 300px;
    height: 300px;
    animation: rotate90 0.7s steps(4) infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.main-l img {
    /* height: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: rotate90 0.7s steps(4) infinite; */
}

.main-home {
    height: 300px;
}

.main-h {
    font-size: 19rem;
    font-family: BebasNeue;
    font-weight: 400;
    line-height: 1em;
    position: absolute;
    top: 50%;
    transform: translateY(-47%);
    filter: blur(27px);
    opacity: 0;
}

.loader-x5 {
    transition:
        opacity 0.3s ease;
    filter: blur(27px);
    -webkit-blur: 27px;
}

.loader-x5.is-done {
    opacity: 1;
}

.main-x5.is-done {
    animation: revealThenBlur 3s ease-in-out 1s forwards;
}

.main-x5 {
    font-size: 19rem;
    font-family: BebasNeue;
    font-weight: 400;
    line-height: 1em;
    opacity: 0;
}

.hero-container .main-x5 {
    font-size: 22rem;
    font-weight: bold;
    line-height: 0.9em;
}

.main-h:first-child {
    right: calc(50% + calc(var(--gap) / 2));
}

.main-h:last-child {
    left: calc(50% + calc(var(--gap) / 2));
}

.no-anim {
    animation: none !important;
}

.v-opacity {
    opacity: 1 !important;
}

.no-opacity {
    opacity: 0 !important;
}

@keyframes rotate90 {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.loader-circle-1 {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    animation: 3s forwards circleOne;
}

.loader-circle-2 {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    animation: 3s forwards circleTwo;
}

.loader-count {
    position: absolute;
    z-index: 10;
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
    right: 20px;
    bottom: 20px;
    opacity: 0.5;
    font-size: 34px;
    font-weight: 300;
}

.loader-count .odometer {
    font-size: 5rem;
    font-weight: 300;
}

.loader-percent {
    margin-bottom: 9px;
}

.loader-dots span {
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 24V13.7428H12.5V24H12Z' fill='%23E9F7FC'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 10.7374V0L12.5 2.18556e-08V10.7374H12Z' fill='%23E9F7FC'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 12H10.8103V12.5H0V12Z' fill='%23E9F7FC'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.6057 12L24 12V12.5L13.6057 12.5V12Z' fill='%23E9F7FC'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.501 12.1931L12.1931 10.8852L10.8852 12.1931L12.1931 13.5011L13.501 12.1931ZM12.1931 10.1781L10.1781 12.1931L12.1931 14.2082L14.2082 12.1931L12.1931 10.1781Z' fill='%23E9F7FC'/%3E%3C/svg%3E%0A") no-repeat;
    position: absolute;
    z-index: 10;
    opacity: 0.5;
}

.loader-dots span:nth-child(1) {
    top: 20px;
    left: 20px;
}

.loader-dots span:nth-child(2) {
    top: 20px;
    right: 20px;
}

.loader-dots span:nth-child(3) {
    right: 20px;
    bottom: 20px;
}

.loader-dots span:nth-child(4) {
    left: 20px;
    bottom: 20px;
}

.loader-utc {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 12px;
    letter-spacing: 0.04em;
    opacity: 0.5;
}

.loader-time {
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 20px;
    text-align: right;
    transform: translateY(-50%);
    font-size: 12px;
    letter-spacing: 0.04em;
    opacity: 0.5;
}

.loader-text {
    max-width: 245px;
    position: absolute;
    z-index: 10;
    bottom: 190px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@keyframes circleOne {

    0%,
    25% {
        transform: translate(-50%, -50%) rotate(0);
    }

    75% {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(90deg) scale(0.7);
    }
}

@keyframes circleTwo {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    25% {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    75% {
        transform: translate(-50%, -50%) rotate(180deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(180deg) scale(0.7);
    }
}

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

    100% {
        transform: translateY(-100%);
        pointer-events: none;
    }
}

.policy {
    padding: 140px var(--spacing);
    counter-reset: policyItem;
}

.policy .back {
    margin-bottom: -28px;
}

.policy-head {
    padding-left: var(--side-xl);
    padding-bottom: 80px;
}

.policy-title {
    margin-top: 16px;
    font-size: 90px;
    line-height: 1.1;
    font-weight: 400;
    max-width: 1000px;
}

.policy-item {
    border-bottom: 1px solid rgba(233, 247, 252, 0.1);
    counter-increment: policyItem;
}

.policy-item__content {
    max-height: 0;
    transition: 0.5s;
    overflow: hidden;
}

.policy-item__title {
    font-size: 18px;
    text-transform: uppercase;
    font-family: FeatureMono;
    letter-spacing: 0.04em;
    line-height: 24px;
    padding: 25px 0;
    padding-left: var(--side-xl);
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.policy-item__title::before {
    content: "[ 00 " counter(policyItem, decimal-leading-zero) " ]";
    font-family: NeueHaasDisplay;
    position: absolute;
    top: 25px;
    left: 0;
    font-size: 12px;
    line-height: 24px;
    opacity: 0.7;
}

.policy-item__title span {
    flex: 1;
    position: relative;
    transition: 0.3s;
}

.policy-item__title span::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: -16px;
    width: 4px;
    height: 4px;
    background: var(--color-text);
    opacity: 0;
    transition: 0.3s;
}

.policy-item__title::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    border: 1px solid rgba(233, 247, 252, 0.1);
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.76181 12.9515L11.6762 15.8659C11.855 16.0447 12.1449 16.0447 12.3238 15.8659L15.2381 12.9515C15.417 12.7727 15.417 12.4827 15.2381 12.3039C15.0593 12.1251 14.7693 12.1251 14.5905 12.3039L12.4579 14.4365L12.4579 9L11.542 9L11.542 14.4365L9.40945 12.3039C9.23061 12.1251 8.94065 12.1251 8.76181 12.3039C8.58298 12.4827 8.58298 12.7727 8.76181 12.9515Z' fill='%23E9F7FC'/%3E%3C/svg%3E%0A") center no-repeat;
    transition: 0.3s;
}

.policy-item__text {
    padding-bottom: 25px;
    padding-left: var(--side-xl);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
    gap: 20px;
}

.policy-item__text ol,
.policy-item__text ul {
    margin: 0;
    padding: 0 0 20px 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.policy-item__text ol:last-child,
.policy-item__text ul:last-child {
    padding-bottom: 0;
}

.policy-item__text ul {
    list-style-type: disc;
}

.policy-item.open .policy-item__title::after {
    transform: rotate(-180deg);
}

.policy-item:hover .policy-item__title span {
    padding-left: 16px;
}

.policy-item:hover .policy-item__title span::before {
    left: 0;
    opacity: 1;
}

@media (max-width: 1600px) {
    :root {
        --side: 280px;
        --side-xl: 440px;
    }

    body {
        font-size: 16px;
    }

    .label {
        padding-top: 16px;
    }

    .label input,
    .label textarea {
        padding: 12px 0 16px;
        line-height: 18px;
        font-size: 13px;
    }

    .title {
        font-size: 5.313rem;
    }

    .title-md {
        font-size: 52px;
    }

    .header {
        height: 52px;
    }

    .header-logo {
        margin-top: -2px;
    }

    .header-logo.no-anim {
        width: 110px;
    }

    .header-burger {
        top: 16px;
    }

    .hero {
        padding-bottom: 60px;
    }

    .hero-label {
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 42px;
        max-width: 500px;
    }

    .hero-tornado {
        width: 840px;
    }

    .introduction {
        padding-bottom: 120px;
    }

    .introduction-label {
        font-size: 1.375rem;
    }

    .introduction-text {
        margin-top: 80px;
        font-size: 1rem;
        letter-spacing: 0.02em;
    }

    .introduction-list {
        margin-top: 80px;
    }

    .introduction-list__value b {
        font-size: 112px;
    }

    .introduction-list__value p {
        font-size: 10px;
        margin-bottom: 15px;
    }

    .introduction-list__text {
        font-size: 16px;
    }

    .solution-content {
        max-width: 75%;
    }

    .solution-screen.home-solution .solution-content {
        max-width: 95%;
    }

    .solution-screen,
    .sonic-jscreen {
        padding: var(--spacing);
    }

    .solution-label {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .slide-label {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .problem-content {
        max-width: 687px;
    }

    .problem-label {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .problem-title {
        font-size: 2.375rem;
    }

    .issue-item {
        padding: 20px 0;
    }

    .issue-item__bg {
        width: 860px;
        height: 410px;
    }

    .issue-item__content {
        height: 410px;
    }

    .issue-item__title {
        font-size: 4.688rem;
    }

    .issue-item__text {
        font-size: 16px;
    }

    .defeat-content {
        max-width: 800px;
    }

    .defeat-title {
        font-size: 64px;
    }

    .defeat-text {
        font-size: 14px;
    }

    .defeat-notify {
        bottom: 50px;
    }

    .hackfirst img {
        width: 650px;
    }

    .about {
        padding-bottom: 80px;
    }

    .about-video {
        height: 600px;
    }

    .about-line {
        font-size: 10px;
    }

    .about-content {
        margin-top: 140px;
        max-width: 560px;
    }

    .about-label {
        font-size: 12px;
    }

    .about-text {
        max-width: 445px;
    }

    .about-list__item span {
        font-size: 13px;
        line-height: 14px;
    }

    .technologies-image img,
    .technologies-image video {
        width: 490px;
    }

    .technologies-content {
        gap: 80px;
    }

    .technologies-item h4 {
        font-size: 24px;
    }

    .technologies-item p {
        font-size: 16px;
    }

    .awards {
        padding-top: 290px;
    }

    .awards-item {
        height: 320px;
    }

    .awards-item__text span {
        font-size: 16px;
    }

    .awards-item__text p {
        font-size: 13px;
    }

    .started-content {
        max-width: 620px;
    }

    .started-label {
        font-size: 12px;
    }

    .footer-row:first-of-type {
        min-height: 410px;
    }

    .footer-logo {
        max-width: 650px;
    }

    /* .footer-about {
        max-width: 360px;
    } */

    .footer-nav ul,
    .footer-nav p,
    .footer-about span,
    .footer-about .sm-heading {
        font-size: 17px;
    }

    .footer-formd p {
        font-size: 22px;
        width: 576px;
    }

    .footer-copyright {
        bottom: 16px;
    }

    .services {
        padding: 128px var(--spacing) 80px;
    }

    .services-title {
        font-size: 64px;
    }

    .services-grid {
        margin-top: 64px;
    }

    .services-item__title {
        font-size: 20px;
    }

    .services-item__text {
        margin-top: 24px;
        font-size: 14px;
        max-width: 340px;
        padding-left: 60px;
    }

    .services-item__text::before {
        font-size: 14px;
    }

    .contacts {
        padding-top: 52px;
    }

    .contacts-video {
        min-height: calc(100vh - 52px);
    }

    .contacts-main {
        width: 50%;
        padding: 32px;
        gap: 52px;
    }

    .contacts-form {
        gap: 16px;
    }

    .contacts-form .label textarea {
        height: calc(100% - 12px);
    }

    .contacts-form .label-full {
        margin-bottom: 48px;
    }

    .contacts-title {
        font-size: 64px;
    }

    .contacts-button {
        width: 260px;
    }

    .about-page {
        padding-top: 124px;
        padding-bottom: 84px;
    }

    .about-head {
        max-width: 510px;
        height: auto;
    }

    .about-head video {
        display: none;
    }

    .about-title {
        font-size: 64px;
    }

    .about-desc {
        font-size: 16px;
    }

    .about-info__item {
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 60px;
    }

    .about-info__item b {
        font-size: 14px;
        max-width: 290px;
    }

    .about-info__item p {
        max-width: 370px;
    }

    .about-edge__head {
        max-width: 410px;
    }

    .about-edge__title {
        font-size: 64px;
    }

    .about-edge__desc {
        margin-top: 32px;
    }

    .about-edge__grid {
        margin-top: 64px;
    }

    .menu-head {
        height: 52px;
        padding-top: 17px;
        padding-bottom: 17px;
    }

    .menu-nav li a {
        font-size: 4.5rem;
    }

    .menu-socials {
        font-size: 0.938rem;
        opacity: 1;
        color: #fff;
        line-height: 1.4;
    }

    .scroll-progress {
        bottom: 16px;
    }

    .layout-count,
    .layout-title {
        font-size: 44px;
    }

    .policy {
        padding-top: 124px;
        padding-bottom: 124px;
    }

    .policy-head {
        padding-bottom: 64px;
    }

    .policy-title {
        font-size: 64px;
        max-width: 740px;
    }

    .policy-item__title {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    :root {
        --side: 0px;
        --side-xl: 0px;
        --spacing: 20px;
    }

    .header-nav {
        margin-left: 200px;
        max-width: 500px;
    }

    .introduction {
        padding: 120px var(--spacing);
    }

    .introduction-title .introduction-label {
        position: relative;
        top: 0;
    }

    .introduction-label {
        margin-bottom: 16px;
    }

    .introduction-list__count {
        display: none;
    }

    .introduction-list__value {
        width: 60vw;
    }

    .solution-screen,
    .sonic-jscreen {
        padding: calc(var(--spacing) * 2) var(--spacing);
    }

    .about-video {
        height: 420px;
    }

    .about-list {
        margin-top: 60px;
    }

    .about-list__item::before {
        display: none;
    }

    .technologies-content {
        max-width: 330px;
    }

    .technologies-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .technologies-image {
        overflow: hidden;
    }

    .technologies-image img,
    .technologies-image video {
        transform: translateY(-50%);
    }

    .awards {
        padding-bottom: 80px;
    }

    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 32px;
    }

    .footer-logo {
        max-width: 525px;
    }

    .footer-row:first-of-type {
        min-height: 310px;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-nav ul li {
        gap: 12px;
    }

    .footer-nav ul li::after {
        order: -1;
        display: block !important;
    }

    .services .back {
        margin-bottom: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .services-item {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
    }

    .services-item__poster {
        flex: 1;
        margin: 0;
        order: 1;
        height: 420px;
        aspect-ratio: inherit;
    }

    .services-item__content {
        max-width: 360px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        padding: 44px 0;
    }

    .contacts-main {
        gap: 32px;
    }

    .contacts-form {
        gap: 12px;
    }

    .contacts-form__row {
        flex-direction: column;
        gap: 12px;
    }

    .contacts-form .label-full {
        margin-bottom: 20px;
    }

    .contacts-button {
        width: 100%;
        margin-bottom: 12px;
    }

    .menu-row {
        flex-direction: column;
        gap: 24px;
    }

    .menu-video__wrapper {
        width: 50%;
    }

    .layout-title {
        padding-top: 60px;
    }

    .policy .back {
        margin-bottom: 24px;
    }

    .policy-item__title::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .hero {
        padding-bottom: 50px;
        overflow: hidden;
    }

    .introduction-list__value {
        flex: 1;
    }

    .issue-item::before {
        z-index: 1;
    }

    .issue-item__bg {
        width: 100vw;
    }

    .defeat-content {
        max-width: 620px;
    }

    .technologies-wrapper {
        position: absolute;
        height: 100%;
        width: 100%;
    }

    .technologies-content {
        margin: 0 auto;
        max-width: 370px;
        padding: 400px 0 160px;
    }

    .technologies-item {
        align-items: center;
        text-align: center;
    }

    .technologies-image {
        position: absolute;
        height: 300px;
        margin: 0;
        top: 48px;
    }

    .technologies-image img,
    .technologies-image video {
        width: auto;
        height: 100%;
        top: 0;
        transform: translate(-50%, 0);
    }

    .services-grid {
        gap: 44px;
    }

    .services-item {
        gap: 24px;
    }

    .services-item__poster {
        width: 100%;
        flex: initial;
        order: -1;
    }

    .services-item__content {
        padding: 0;
        max-width: 100%;
        flex-direction: row;
        gap: 24px;
    }

    .services-item__title {
        width: 240px;
    }

    .services-item__text {
        margin: 0;
        flex: 1;
        max-width: 100%;
    }

    .contacts-video {
        width: 100%;
        height: 390px;
        flex: initial;
        min-height: 0;
        border: 0;
    }

    .contacts-main {
        width: 100%;
        order: -1;
        padding: 32px var(--spacing);
        border: 0;
    }

    .about-page {
        padding-bottom: 24px;
    }

    .about-info__item {
        flex-direction: column;
        gap: 24px;
    }

    .about-edge__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-edge__item {
        min-height: 260px;
    }

    .about .layout-head+.about-content {
        margin-top: 50px;
    }

    .awards {
        padding-top: 50px;
    }

    .awards-text {
        margin-top: 120px;
    }

    .menu-video__wrapper {
        aspect-ratio: 1/1;
        height: auto;
        top: initial;
    }

    .layout-count,
    .layout-title {
        display: none;
    }

    .layout-head {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        font-size: 24px;
    }

    section[data-layout="01"] .layout-head {
        position: absolute;
        top: var(--spacing);
        left: var(--spacing);
        right: var(--spacing);
    }

    section[data-layout="03"] .layout-head {
        position: absolute;
        top: 60px;
        left: var(--spacing);
        right: var(--spacing);
    }
}

@media (max-width: 600px) {

    .title,
    .title-md {
        font-size: 32px;
    }

    .hero {
        padding-bottom: 40px;
    }

    .hero-tornado {
        width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .introduction {
        padding: 80px var(--spacing);
    }

    .introduction-list__item {
        padding: 32px 0;
        gap: 32px;
    }

    .introduction-list__value {
        flex: initial;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .introduction-list__value b {
        font-size: 90px;
    }

    .introduction-list__value p {
        margin: 0;
    }

    .introduction-list__text {
        font-size: 14px;
    }

    .solution-content {
        margin: auto 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .issue {
        padding-left: 0;
        padding-right: 0;
    }

    .issue-item__title {
        font-size: 2.625rem;
    }

    .issue-item__content {
        height: 100vh;
    }

    .issue-item__bg {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }

    .technologies-content {
        padding-top: 360px;
    }

    .technologies-image {
        height: 240px;
    }

    .defeat-content {
        max-width: 320px;
    }

    .defeat-title {
        font-size: 36px;
    }

    .about-video {
        height: 400px;
    }

    .awards {
        padding: 60px var(--spacing) 60px;
    }

    .awards-text {
        margin-top: 50px;
    }

    .awards-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .awards-item {
        width: calc(50% - 6px);
        aspect-ratio: 1;
        height: auto;
        padding: 24px 40px;
    }

    .awards-item-winner::before {
        top: 16px;
        right: 16px;
        width: 22px;
        height: 22px;
        background-size: cover;
    }

    .awards-item__logo img {
        max-height: 60px;
    }

    .awards-item__text {
        gap: 4px;
        bottom: 16px;
    }

    .awards-item__text span {
        font-size: 14px;
    }

    .awards-item__text p {
        font-size: 12px;
    }

    .started-content {
        position: initial;
    }

    .started-label {
        margin: 0 auto;
        font-size: 14px;
        text-align: center;
        max-width: 280px;
        position: absolute;
        bottom: 60px;
        left: 0;
        right: 0;
    }

    .started-btn {
        margin-top: 32px;
        width: 340px;
        height: 62px;
    }

    .footer-row:first-of-type {
        min-height: 0;
    }

    .footer-row:first-of-type .footer-col {
        flex: initial;
        width: 100% !important;
        padding-top: 50px;
    }

    .footer-row:first-of-type .footer-col:first-child {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .footer-row:nth-of-type(2) {
        margin-top: 110px;
    }

    .footer-row:nth-of-type(2) .footer-col {
        flex: initial;
        width: auto !important;
    }

    .footer-col {
        padding: var(--spacing);
    }

    /* .footer-about {
        max-width: 300px;
    } */

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

    .footer-about p {
        font-size: 1rem;
    }

    .services {
        padding: 100px var(--spacing) 60px;
    }

    .services-title {
        font-size: 44px;
    }

    .services-grid {
        margin-top: 44px;
    }

    .services-item__content {
        flex-direction: column;
    }

    .about-edge__item {
        padding: 24px;
    }

    .about-edge__item::before {
        font-size: 32px;
    }

    .loader-time,
    .loader-utc,
    .menu-video__wrapper {
        display: none;
    }

    .policy {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .policy-head {
        padding-bottom: 44px;
    }

    .policy-title {
        font-size: 44px;
    }

    .policy-item:hover .policy-item__title span {
        padding-left: 0;
    }

    .policy-item:hover .policy-item__title span::before {
        opacity: 0;
    }
}

/* mobile only */
@media (max-width: 767px) {
    body {
        padding-top: 35px;
        min-width: 100%;
    }

    ul.menu-nav li:not(.popmenu-blurred) {
        filter: none !important;
    }

    .loader-big {
        gap: 10px;
    }

    .loader-bar {
        width: 90px;
        bottom: -120px;
    }

    .loader-count .odometer {
        font-size: 4rem;
    }

    .loading-text {
        font-size: 1rem;
    }

    .main-x5 {
        font-size: 4.5rem;
    }

    .hero-container .main-x5 {
        font-size: 9.5rem !important;
        width: 100%;
    }

    .issue-item__label {
        font-size: 14px;
        letter-spacing: 0px;
    }

    .hero-container .loader-big {
        padding-left: 0px;
    }

    .project-single-bg {
        width: 88% !important;
    }

    .label-sonic.first-label {
        left: 20px;
        top: 20%;
    }

    .label-sonic.second-label {
        top: 20%;
        right: 20px;
    }

    .volume-video svg {
        height: 70px;
    }

    .project-overview {
        padding-top: 110px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-media {
        height: 110px;
    }

    .pt-project {
        font-size: 1.2rem;
    }

    .popmenu-blurred {
        filter: blur(0px) !important;
    }

    ul.menu-nav li:not(.popmenu-blurred) {
        filter: blur(6px);
    }

    .archive ul.menu-nav li:not(.popmenu-blurred),
    .single-projects ul.menu-nav li:not(.popmenu-blurred) {
        filter: none !important;
    }

    .main-l,
    .main-ih {
        width: 90px;
    }

    .main-l img,
    .main-ih img {
        height: 90px;
    }

    .main-pre {
        height: 90px;
        width: 90px;
    }

    .mv-str {
        top: -10px;
    }

    .introduction-label .grain-sphere {
        top: 1px;
    }

    .menu-main,
    .menu-bottom {
        padding-top: 20px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .menu.show .menu-label {
        margin-left: 12px;
    }

    .menu-side.menu-side--right {
        margin-left: unset;
    }

    .menu-nav li a {
        font-size: 2.813rem;
    }

    .issue::after,
    .issue::before {
        height: 100px;
    }

    .sonic-desc {
        line-height: 1.4;
        font-size: 17px;
        height: 100px;
        overflow: scroll;
    }

    .sonic-container {
        max-width: 100% !important;
        padding: 50px 20px !important;
    }

    .sonic-header {
        flex-direction: column;
        margin-bottom: 25px;
    }

    .sonic-header,
    .sonic-text,
    .solution-screen.home-solution .slide-title {
        max-width: 100% !important;
    }

    .sonic-arrows button {
        font-size: unset;
    }

    .sonic-arrows svg {
        width: 45px;
    }

    .sonic-slidetitle {
        font-size: 43px;
    }

    .solution-screen:first-child::before,
    .general-screen:first-child::before,
    .sonic-jscreen:first-child::before {
        box-shadow: inset 0 0 30px 30px #000 !important;
    }

    .big-cta {
        font-size: 3.8rem !important;
    }

    .introduction-label {
        font-size: 16px;
    }

    .introduction-text {
        margin-top: 50px;
    }

    .sonic-ntop {
        max-width: 100% !important;
        padding: 0 20px;
    }

    .sonic-title {
        font-size: 55px;
        width: 100%;
    }

    .sonic-jscreen .small-desc {
        max-width: 100%;
        font-size: 16px;
    }

    .sonic-slide-item {
        min-width: 83%;
    }

    .sonic-slide-item img {
        height: 175px;
        object-fit: cover;
    }

    .solution-screen.home-solution .solution-content,
    .solution-container,
    .general-container,
    .sonic-container {
        max-width: 100% !important;
        width: 100% !important;
        align-items: flex-start;
    }

    .solution-screen.home-solution .solution-content {
        justify-content: end !important;
        height: 100%;
    }

    .issue-item::before, .issue-item__label{
        position: absolute;
        top: 27%;
    }

    .slide-title {
        font-size: 2rem;
        text-align: left;
        ;
    }

    .problem-title {
        font-size: 1.7rem;
    }

    .solution-nav button {
        font-size: unset !important;
        line-height: 0;
    }

    .solution-nav svg {
        width: 42px;
    }

    .issue-item__content {
        max-width: 100%;
    }

    .issue-item {
        padding: 20px;
    }

    .issue-item__bg {
        width: 100%;
    }

    .marquee-track {
        gap: 38px;
    }

    .client-logos {
        padding-bottom: 100px;
    }

    .logo-item {
        width: 64px;
    }

    .grid-container-inner {
        grid-column-gap: 1rem !important;
    }

    .accordion-body {
        grid-column-end: span 12;
        grid-column-start: 1;
    }

    .accordion-text {
        grid-column-end: span 9;
        grid-column-start: 2;
        transform: translate(0);
        font-size: 1rem;
    }

    .accordion-icon {
        margin-left: unset;
        margin-right: unset;
    }

    .accordion-header h4,
    .accordion-header:hover h4 {
        transform: translate(0) !important;
    }

    .accordion-header h4 {
        font-size: 0.938rem;
        text-align: left;
    }

    .accordion-icon {
        height: 1.6rem;
        width: 1.6rem;
    }

    .accordion-header {
        align-items: center;
        max-width: 86.66%;
        padding-bottom: 2rem;
        padding-top: 2rem;
    }

    .sonic-jscreen .slide-title {
        font-size: 2.5rem !important;
        text-align: center !important;
    }

    .cta-sonic .sonic-container {
        align-items: center;
    }

    .contact-page .footer-col {
        width: 100%;
    }

    .faq-section.faq-page {
        padding: 110px 0px 70px 0px !important;
        height: unset !important;
    }

    .faq-page .grid-container {
        padding-top: 50px;
    }

    .footer-soniccta {
        padding-bottom: 40px;
    }

    .font-bl {
        font-size: 5.5rem;
        width: 100%;
    }

    .flex-form {
        flex-direction: column;
    }

    .f-left {
        width: 100%;
    }

    .u-field-style {
        width: 100%;
    }

    .footer {
        border: 0px !important;
    }

    .footer-col:first-child {
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }

    .flex-input {
        gap: 25px;
        flex-direction: column;
    }

    .col-menu-footer {
        display: flex;
        gap: 00px;
        padding-top: 75px;
        padding-bottom: 0px;
        flex-direction: column;
    }

    .mobile-col.hide-desktop .footer-nav {
        padding: 30px 20px;
        border-top: 1px solid #fff;
    }

    .footer-bottom {
        border-color: #fff;
        flex-direction: column;
        align-items: flex-start
    }

    .footer-copyright {
        padding-bottom: 14px;
    }

    .footer-nav-space {
        padding-bottom: 0;
        padding-top: 0;
    }

    .footer-formd p {
        width: 100%;
        font-size: 18px;
        ;
    }

    .footer-formd a {
        font-size: 2.188rem !important;
    }

    .privacy-mobile {
        display: block;
        padding-bottom: 20px;
        padding-top: 0 !important;
    }

    .privacy-desktop {
        display: none;
    }


    .logo-marquee-desktop {
        display: none;
    }

    .logo-marquee-mobile {
        display: block;
    }

    .marquee-row-1,
    .marquee-row-2 {
        overflow: hidden;
        margin-bottom: 1rem;
    }

    /* Row 1: Scroll right */
    .marquee-right {
        animation: marquee-right 20s linear infinite;
    }

    /* Row 2: Scroll left */
    .marquee-left {
        animation: marquee-left 20s linear infinite;
    }
}

/* tablet only */
@media (min-width: 768px) and (max-width: 1024px) {

    .loader-bar {
        bottom: -160px;
    }

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

    .project-single-bg {
        width: 88% !important;
    }

    .mv-str {
        top: 0px;
        left: 10px;
    }

    .introduction-label .grain-sphere {
        top: 2px;
    }

    .title {
        font-size: 52px;
    }

    .menu-main,
    .menu-bottom {
        padding-top: 20px;
    }

    .menu-bottom .menu-row {
        flex-direction: row;
        z-index: 99;
        position: relative;
    }

    .menu-nav li a {
        font-size: 2.813rem;
    }

    .menu-video__wrapper {
        top: 0 !important;
    }

    .faq-section.faq-page {
        padding-top: 150px !important;
    }

    .sonic-desc {
        line-height: 1.4;
        font-size: 18px;
    }

    .sonic-container {
        max-width: 100% !important;
        padding: 80px 20px !important;
    }

    .sonic-header {
        max-width: 100% !important;
    }

    .sonic-text {
        max-width: 90% !important;
    }

    .solution-screen.home-solution .solution-content {
        max-width: 100% !important;
    }

    .label-sonic.first-label {
        left: 20px;
    }

    .label-sonic.second-label {
        right: 20px;
    }

    .slide-title {
        font-size: 4rem;
    }

    .sonic-text {
        max-width: 400px;
    }

    .sonic-arrows button {
        font-size: unset;
    }

    .sonic-arrows svg {
        width: 45px;
    }

    .sonic-slidetitle {
        font-size: 52px;
    }

    .solution-screen:first-child::before,
    .general-screen:first-child::before,
    .sonic-jscreen:first-child::before {
        box-shadow: inset 0 0 30px 30px #000 !important;
    }

    .big-cta {
        font-size: 4rem !important;
    }

    .introduction-label {
        font-size: 16px;
    }

    .project-media {
        height: 150px !important;
    }

    .pt-project {
        font-size: 1.6rem;
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .project-overview {
        padding-top: 140px;
    }

    .introduction-text {
        margin-top: 50px;
        max-width: 475px;
    }

    .sonic-title {
        font-size: 55px;
        width: 100%;
    }

    .hero-container .main-x5 {
        font-size: 18rem;
    }

    .loader-big {
        gap: 25px;
    }

    .loader .main-x5 {
        font-size: 9.2rem !important;
    }

    .main-l,
    .loader-bar {
        width: 180px;
    }

    .main-l img {
        height: 180px;
    }

    .main-pre {
        height: 180px;
        width: 180px;
    }

    .sonic-jscreen .small-desc {
        max-width: 100%;
        font-size: 16px;
    }

    .grid-container-inner {
        grid-column-gap: 1rem !important;
    }

    .accordion-header {
        align-items: center;
        max-width: 86.66%;
        padding-bottom: 2rem;
        padding-top: 2rem;
    }

    .accordion-header h4,
    .accordion-header:hover h4 {
        transform: translate(0) !important;
    }

    .accordion-header h4 {
        font-size: 1.125remrem;
        text-align: left;
    }

    .accordion-icon {
        height: 1.6rem;
        width: 1.6rem;
    }

    .accordion-icon {
        margin-left: unset;
        margin-right: unset;
    }

    .accordion-body {
        grid-column-end: span 12;
        grid-column-start: 1;
    }

    .accordion-bottom-hr {
        max-width: 86.66%;
    }

    .footer-soniccta {
        padding-bottom: 40px;
    }

    .font-bl {
        font-size: 5.5rem;
        width: 100%;
    }

    .flex-form {
        flex-direction: column;
    }

    .f-left {
        width: 100%;
    }

    .flex-input {
        gap: 25px;
    }

    .col-menu-footer {
        display: flex;
        gap: 50px;
        padding-top: 75px;
        padding-bottom: 40px;
    }

    .menu-main .menu-label,
    .menu-bottom .menu-label {
        margin-left: 10px;
    }

    .footer-about p {
        font-size: 1.125rem;
    }

    .footer-nav-space {
        padding-bottom: 0;
        padding-top: 0;
    }

    .footer-formd p {
        width: 100%;
        font-size: 18px;
        ;
    }

    .footer-formd a {
        font-size: 2.188rem !important;
    }
}

/* table landscape only */
@media (max-width: 1200px) and (min-width: 768px) and (orientation: landscape) {
    .title {
        font-size: 4.313rem !important;
    }

    .project-single-bg {
        width: 85% !important;
    }

    .introduction-title .grain-sphere {
        top: 3px !important;
    }

    .faq-section.faq-page {
        padding-top: 150px !important;
    }

    .mv-str {
        top: 0px !important;
        margin-left: 16px;
    }

    .label-sonic.first-label {
        left: 20px !important;
    }

    .label-sonic.second-label {
        right: 20px !important;
    }

    .loader .main-x5 {
        font-size: 12rem !important;
    }

    .hero-container .main-x5 {
        font-size: 14rem !important;
    }

    .menu-main .menu-label,
    .menu-bottom .menu-label {
        margin-left: 10px;
    }

    .menu-bottom .menu-row {
        flex-direction: row;
        position: relative;
        z-index: 99;
    }

    .menu-socials {
        font-size: 1.2rem !important;
    }

    .col-menu-footer {
        display: flex;
        gap: 50px;
        padding-top: 75px;
        padding-bottom: 40px;
    }

    .footer-nav-space {
        padding-bottom: 0;
        padding-top: 0;
    }
}

/* only big screen */
@media (min-width: 1025px) {
    .hide-desktop {
        display: none !important;
    }

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

    .menu-video__wrapper .menu-video {
        height: 50vh;
    }

    .sonic-header {
        position: relative;
        align-items: unset !important;
    }

    .sonic-arrows {
        position: absolute;
        right: 0;
        height: 174px;
    }

    .sonic-slide-item img{
        height: 505px;
        object-fit: cover;
    }
}

/* laptop small only */
@media (min-width: 1025px) and (max-width: 1280px) {
    .main-x5 {
        font-size: 14rem !important;
    }

    .label-sonic.first-label {
        left: 40px;
    }

    .label-sonic.second-label {
        right: 40px;
    }

    .project-media {
        height: 216px !important;
    }

    .pt-project {
        font-size: 1.8rem !important;
    }

    .slide-title{
        font-size: 4.2rem !important;
    }

	.sonic-slide-item img{
      height: 405px !important;
    }
}

/* laptop and desktop only */
@media (min-width: 1025px) and (max-width: 1550px) {
    .loader-text {
        bottom: 150px;
    }

    .hero-container .main-x5 {
        font-size: 19rem;
    }

    .grain-sphere {
        top: 0;
    }

    .project-single-bg {
        width: calc(100% - 175px);
    }

    .main-home,
    .main-l img {
        height: 265px;
    }

    .main-l,
    .loader-bar {
        width: 265px;
    }

    .main-pre {
        height: 265px;
        width: 265px;
    }

    .main-x5 {
        font-size: 16rem;
    }

    .top-nav a {
        font-size: 1rem;
    }

    .top-nav svg {
        margin-left: 0;
    }

    .font-bl {
        font-size: 8.8rem;
        width: 441px;
    }

    .faq-page {
        padding-top: 150px;
        padding-bottom: 170px;
        height: unset;
    }

    .project-overview {
        padding-top: 150px;
    }

    .see-all {
        margin-bottom: 30px;
    }

    .introduction-text {
        max-width: 575px;
    }
}


/* big screen only */
@media (min-width: 1700px) and (max-width: 2200px) {
    .project-single-bg {
        width: calc(100% - 217px);
    }

    .overlay-shape {
        width: 400px;
    }

    .sonic-container {
        max-width: 100%;
    }

    .solution-screen.home-solution .slide-title {
        font-size: 5rem;
    }

    .label-sonic.first-label {
        left: var(--spacing);
    }

    .label-sonic.second-label {
        right: var(--spacing);
    }
}

/* full screen */
@media(min-width:2500px) {
    html {
        font-size: 150%;
    }

    .sonic-slide-item img{
        height: 600px;
    }

    .main-l,
    .loader-bar {
        width: 400px;
    }

    .loader-bar {
        bottom: -300px;
    }

    .main-pre {
        height: 400px;
        width: 400px;
    }

    .main-home {
        height: 365px;
    }

    .menu.show ul.menu-nav {
        padding-top: 60px;
    }

    .overlay-shape {
        width: 450px;
    }

    .mv-str {
        top: 57px;
    }

    .grain-sphere {
        width: 27px;
        left: -27px;
        ;
    }

    .top-nav svg {
        width: 63px;
        height: 21px;
    }

    .introduction-label {
        font-size: 1.365rem;
    }

    .sonic-container {
        max-width: 100%;
    }

    .problem-content {
        max-width: 950px;
    }

    .issue-item__content {
        max-width: 860px;
    }

    .introduction-text {
        width: 780px;
    }

    .issue-item__title {
        font-size: 5rem;
    }

    .faq-section.faq-page,
    .contact-page {
        padding: 200px var(--spacing) 140px;
        height: unset;
    }

    .contact-row {
        flex-wrap: nowrap;
    }

    .project-media {
        height: 380px;
    }

    .label-sonic.first-label {
        left: var(--spacing);
    }

    .label-sonic.second-label {
        right: var(--spacing);
    }

    .project-single-bg {
        width: calc(100% - 160px * 2) !important;
    }

    .menu-main .menu-row {
        flex-direction: column;
    }

    .menu-main .menu-label,
    .menu-bottom .menu-side:not(.menu-side--right) .menu-label {
        left: 30px;
    }

    .menu-socials {
        margin-left: 80px;
    }

    .footer-formd p {
        padding-bottom: 140px;
    }

    .font-bl {
        width: 800px;
    }

    .footer-nav p {
        margin-bottom: 20px;
    }
}




@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

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

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes revealThenBlur {
    0% {
        filter: blur(27px);
    }

    50% {
        filter: blur(0px);
    }

    70% {
        filter: blur(0px);
    }

    100% {
        filter: blur(0px);
    }
}


