@font-face {
    font-family: 'Nexa Bold';
    src: url('../fonts/NexaBold.otf') format('opentype');
    font-weight: 600;
}

@font-face {
    font-family: 'Nexa Light';
    src: url('../fonts/NexaLight.otf') format('opentype');
    font-weight: normal;
}

body {
    margin: 0;
    background-color: #f6f3ff;
}

body.no-scroll {
  overflow: hidden;
}

h1 {
    font-family: "Nexa Bold", sans-serif;
}

h2 {
    font-family: "Nexa Light", sans-serif;
    font-size: 2em !important;
}

.wrap-mobile {
    display: none;
}

/* @media only screen and (max-width: 600px) {
    h2 {
        font-size: 2em !important;
    }
} */

/* h2.reveal {
    opacity: 0;
    transform: translateY(0);
    clip-path: inset(0 100% 0 0);
    transition:
        clip-path 1.5s ease-out,
        opacity 1s ease-out;
}

h2.reveal.visible {
    opacity: 1;
    clip-path: inset(0 0 0 0);
} */

h3 {
    font-family: "Nexa Light", sans-serif;
    text-transform: uppercase;
}

p {
    font-family: "Nexa Light", sans-serif;
}

ul {
    font-family: "Nexa Light", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

label {
    font-size: 1.2rem;
    font-family: "Nexa Light", sans-serif;
}

input,
textarea {
    font-size: 1rem;
    font-family: "Nexa Light", sans-serif;
}

button {
    font-family: "Nexa Light", sans-serif;
}

a {
    font-family: "Nexa Light", sans-serif;
}

span {
    font-family: "Nexa Light", sans-serif;
    font-weight: bold;
}

#neuralyze-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.2s ease;
}