/* Font Imports */
@font-face {
    font-family: "Inter";
    src: url('fonts/Inter/Inter-VariableFont_slnt\,wght.ttf'),
        local(Arial),
        local(Helvetica);
}

@font-face {
    font-family: "RedHatMono";
    src: url('fonts/RedHatMono/RedHatMono-VariableFont_wght.ttf');
}

@font-face {
    font-family: "Red Hat Text";
    src: url('fonts/RedHatText/RedHatText-VariableFont_wght.ttf');
}

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

:root {

    --text-dimmed: #828282;
    --text-black-white: #fff;
    --text-dimmed-whiter: rgb(212, 212, 212);
    --ocean-blue: #405FF8;
    --ocean-blue-dim: #405FF8;
    --text-light: #fff;
    --text-link: #405FF8;
    --background-color: #0D0D0D;
    --background-color-dim-dark: #3d3d3d;
    --background-gradient-gradient: linear-gradient(to bottom, #222330 0%, #0C0D1A 100%);
    --background-color-pool: linear-gradient(to bottom, #222330 0%, #0C0D1A 100%);
    --background-white-dark: linear-gradient(to bottom, #222330 0%, #0C0D1A 100%);
    --background-transp-transp: rgba(255, 255, 255, 0.1);
    --background-lowtransp-lowtransp: rgba(255, 255, 255, 0.2);
    --background-black-blue: ;
    --box-shadow-light-dark: 0 0 60px rgba(134, 134, 134, 0.665);
    --svg-invert-0-100: invert(100%);
    --svg-invert-100-0: invert(0%);
    --border-dark-light: 1px solid rgba(255, 255, 255, 0.16);
    --noise-url: none;
    --opacity-outer: 1;



    --fixed-width: 1440px;
    --content-padding: 0px 5%;
    --font-xxxsmall: 12px;
    --font-xxsmall: 14px;
    --font-xsmall: 16px;
    --font-small: 18px;
    --font-medium: 24px;
    --font-large: 32px;
    --font-xlarge: 48px;
    --font-xxlarge: 64px;
    --font-xxxlarge: 72px;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;
    --home-padding: 124px 0;
    --home-heading-width: 700px;
    --home-heading-width-narrow: 600px;
    --mobile-width: 850px;
}

/* @media (prefers-color-scheme: dark) {
    :root {
        --text-dimmed: #555;
        --text-black-white: #000;
        --text-dimmed-whiter: #555;
        --ocean-blue: #1137F5;
        --ocean-blue-dim: rgba(17, 55, 245, 0.5);
        --text-light: #fff;
        --text-link: LinkText;
        --background-color: #fff;
        --background-color-dim-dark: #e0e0e0;
        --background-gradient-gradient: linear-gradient(180deg, white 0%, #F5F5F5 100%);
        --background-color-pool: #F2F2F2;
        --background-white-dark: #fff;
        --background-transp-transp: rgba(0, 0, 0, 0.04);
        --background-lowtransp-lowtransp: rgba(0, 0, 0, 0.2);
        --box-shadow-light-dark: 0 0 60px rgba(255, 255, 255, 0.665);
        --background-black-blue: ;
        --svg-invert-0-100: invert(0%);
        --svg-invert-100-0: invert(100%);
        --border-dark-light: 1px solid rgba(0, 0, 0, 0.16);
        --noise-url: url("./assets/grain.png");
        --opacity-outer: 0.8;

    }
} */



@media (min-width: 1512px) {
    :root {
        --content-padding: 0px 0px;
    }
}

/* Font Styling */
.text-xlarge {
    font-size: var(--font-xlarge);
}

.text-xxlarge {
    font-size: var(--font-xxlarge);
}

.text-large {
    font-size: var(--font-large);
}


.weight-medium {
    font-weight: var(--font-weight-medium);
}

.weight-bold {
    font-weight: var(--font-weight-bold);
}

.text-dark {
    color: var(--text-black-white);
}

.text-light {
    color: var(--text-light);
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: var(--background-color);
}

.noise-background {
    background-image: var(--noise-url);
    background-repeat: repeat;
    opacity: var(---opacity-outer);
    width: 100%;
}

.noise-background_footer {
    background-image: var(--noise-url);
    background-repeat: repeat;
    opacity: var(---opacity-outer);
}

.fullwidth {
    width: 100%;
}

.inter {
    font-family: "Inter", sans-serif;
}

.boldweight {
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.section {
    width: 100%;
    max-width: var(--fixed-width);
    margin: 0 auto;
    display: flex;
    height: fit-content;
}

.column {
    flex-direction: column;
}

.block-section {
    width: 100%;
    max-width: var(--fixed-width);
    margin: 0 auto;
    display: block;
    height: fit-content;
}

.mobile-row-column {
    flex-direction: row;
}

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


@media (hover: none) and (pointer: coarse) {
    .touchscreen-content {
        display: block;
    }

    .mouse-content {
        display: none;
    }
}

@media (max-width: 850px) {
    .mobile-row-column {
        flex-direction: column !important;
    }

    .mobile-content {
        display: block;
    }

    .mobile-content-flex-row {
        display: flex;
        flex-direction: row;
    }

    .desktop-content {
        display: none;
    }

    .desktop-content-flex-row {
        display: none;
    }

}

/* Hero Logo */

#logo-3d_wrapper {
    padding-top: 30px;
    width: 70%;
    max-width: 100%;
    height: 60%;
    top: 7.5%;
    overflow: hidden;
    position: absolute;
    z-index: -5;
    animation: logo-fade 1s forwards;
    margin: 0 auto;
    display: inline-block;
    pointer-events: none;
    margin-bottom: 5%;
}

@media (max-width: 460px) {
    #logo-3d_wrapper {
        margin-bottom: 100%;
    }
}

@media (max-width: 830px) {
    #logo-3d_wrapper {
        margin-bottom: 50%;
    }
}


video#logo-3d_wrapper::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;
}

video#logo-3d_wrapper::-webkit-media-controls {
    display: none !important;
    opacity: 1 !important;
}

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

    100% {
        opacity: 1;
    }
}


/* Navigation Appbar */

.invert-img {
    filter: var(--svg-invert-100-0);
}

#nav-appbar {
    width: 100%;
    height: 100px;
    display: flex;
    background: transparent;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    position: absolute;
    top: 0;
    padding-left: 50px;
    padding-right: 50px;
}

#nav-center {
    width: 100%;
    display: flex;
    justify-content: center;
}

#nav-logo {
    width: 200px;
    height: 100px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

#nav-logo:hover {
    opacity: 0.56;
}

@media (max-width: 500px) {
    #nav-logo {
        width: 165px;
        height: 100px;
        cursor: pointer;
        transition: opacity 0.2s ease;
    }
}

.nav-buttons {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    background: none;
    border: none;
    margin: 0 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    padding: 5px;
    text-align: center;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.nav-atag {
    font-weight: 350;
    text-decoration: none;
}

.nav-buttons:hover {
    opacity: 0.56;
}

.nav-buttons_bold {
    font-weight: 500;
}

#nav-buttons_gs {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    border: none;
    border-radius: 2rem;
    margin: 0 10px 0px 10px;
    cursor: pointer;
    padding: 16px 28px;
    font-size: 16px;
    /* box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.12); */
    /* gap: 0.5rem; */
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

#nav-buttons_gs:hover {
    opacity: 0.56;
}

.nav-dropdown_link {
    font-family: "Inter", sans-serif;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--ocean-blue);
    font-weight: 550;
    padding: 10px 20px;
    width: 100%;
    border-top: 1px solid rgba(128, 128, 128, 0.475);
}

.nav-dropdown_link_last {
    border-bottom: 1px solid rgba(128, 128, 128, 0.475);
}

.nav-dropdown_link:hover {
    background-color: #0000001e;
}


#nav-dropdown {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    background-color: white;
    position: absolute;
    z-index: 10;
    padding: 20px 0px;
    right: 0;
    width: max-content;
    height: max-content;
    border-radius: 10px;
    border: 1px solid rgba(128, 128, 128, 0.475);
}

#nav-burger {
    display: none;
    position: relative;
}

#nav-wide_wrap {
    display: flex;
    align-items: center;
}




@media(max-width: 1000px) {

    #nav-burger {
        display: unset;
    }

    #nav-img {
        cursor: pointer;
    }

    #nav-wide_wrap {
        display: none;
    }


}

/* General CSS Classes (based on Home)  */

.show-500 {
    display: none;
}

@media(max-width: 500px) {
    .hide-500 {
        display: none;
    }

    .show-500 {
        display: block;
    }
}

.subtitle_gray {
    color: var(--text-dimmed);
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /* letter-spacing: -0.03rem; */
    /* font-size: clamp(2rem, 2vw + 0.6rem, 3rem); */
    font-size: 1.5rem;
}


.hero_quote {
    color: var(--text-black-white);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: clamp(1rem, 2vw + 1.60rem, 2rem);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.04rem;
}

.button_gradient_color {
    background: linear-gradient(135deg, #17D9D5 5%, var(--ocean-blue) 30%, #1489EE 80%, #17D9D5 90%);
}

.button_gradient_color_faded {
    background: radial-gradient(107.84% 322.29% at 21.3% 183.33%,
            rgba(219, 125, 2, 0.5) 27.23%,
            #f7941abe 66.15%,
            rgba(248, 155, 33, 0.5) 94.29%),
        #FFF;
}


.big_number {
    font-size: clamp(2rem, 2vw + 4rem, 6.25rem);
}

.small_number {
    font-size: clamp(1rem, 1vw + 2rem, 3rem);
}

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

/* General Dashboard Styling */

.page-title-container {
    height: 120px;

}

.page-title-container>.title-text {
    color: var(--text-black-white);
    font-size: 60px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}


@media (max-width: 700px) {
    .page-title-container>.title-text {
        font-size: 48px;
    }
}

#dashboard-spacer {
    margin: 24px 0px;
    width: 100%;
    height: 1px;
}

.dashboard-spacer-xsmall {
    margin: 8px 0px;
    width: 100%;
    height: 1px;
}

.generic-top_wrap {
    padding: var(--content-padding);
}

/* Home page styling  */

#home-top_wrap {
    padding: var(--content-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    padding: 100px 0px;
    min-height: 620px;
}

#home-top_lower_wrap {
    max-width: 1440px;
    /* margin-top: 375px; */
    margin-top: auto;
    margin-bottom: 150px;

    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    /* align-self:flex-end; */
}



#home-top_lower_left {
    width: 100%;
    letter-spacing: -3.5px;
    margin-bottom: 50px;
}

#home-top_lower_right {
    text-align: right;
    align-self: flex-end;
    width: 40%;
}



@media(max-width: 460px) {
    #home-top_lower_wrap {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* margin-top: 0; */
        /* margin-bottom: 0; */
    }

    #home-top_lower_left {
        width: 100%;
        text-align: center;
        align-self: center;
        margin-bottom: auto;
        font-size: var(--font-xlarge);
        align-self: flex-start;
    }

    #home-top_lower_right {
        text-align: center;
        align-self: center;
        width: 100%;
        margin-bottom: 50%;
        font-size: var(--font-medium);
    }


    #home-top_wrap {
        height: 800px;
    }

    .hero-image {
        scale: 1 !important;
    }

}

@media(max-width: 1090px) {

    /* #home-top_lower_right {
      align-self: center;
  } */
    #home-top_lower_wrap {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #home-top_lower_left {
        width: 80%;
        text-align: center;
        align-self: center;
        margin-bottom: 50px;
    }

    #home-top_lower_right {
        text-align: center;
        align-self: center;
        width: 80%;
        margin-bottom: 50px;
    }
}

#home-padding {
    padding: var(--home-padding);
}

#home-nav_wrap {
    width: 100%;
    max-width: 1440px;
}

/* #home-mid1_wrap {
    max-width: var(--fixed-width);
    padding: var(--content-padding);
    margin: 0 auto;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
} */

#home-mid1_top_text {
    overflow-x: auto;
    height: fit-content;
    margin-top: 100px;
    text-align: center;
}

#hero-message-container {
    width: 50%;
    max-width: 650px;
    margin-top: 72px;
}

@media(max-width: 850px) {
    #hero-message-container {
        width: 90%;
    }
}

#home-mid1_img {
    height: 100px;
    width: 100px;
}

#home-mid1_copy {
    margin: 32px 0px;
}


#home-mid1_direct {
    text-align: center;
    cursor: pointer;
}

.home-line {
    width: 100%;
    height: 1px;
    background-color: #4F4F4F;
    opacity: 0.5;
}

.home-line2 {
    width: 100%;
    height: 5px;
    background: linear-gradient(to bottom, #E5E5E5, rgba(229, 229, 229, 0.7), rgba(229, 229, 229, 0.4), rgba(229, 229, 229, 0));
}

#home-about_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-style: normal;
    /* text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3); */
    padding-top: 124px;
    padding-bottom: 124px;
    color: var(--text-black-white)
}

#home-marketing-points_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-style: normal;
    /* text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3); */
    padding-bottom: 124px;
    padding-top: 124px;
}

.home-heading-width {
    max-width: var(--home-heading-width);
}

.home-heading-width-narrow {
    max-width: var(--home-heading-width-narrow);
}

.home-heading-fixed-width {
    width: var(--home-heading-width);
}

@media (max-width: 720px) {
    .home-heading-fixed-width {
        width: 95%;
    }
}

#home-marketing-points_header {
    text-align: center;
    margin: 0px 50px;
}



#home-block-square_wrap {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 48px;
    padding-bottom: 48px;
}

.old-block-square {
    background-color: var(--text-dimmed);
    height: 20px;
    width: 20px;
    border-radius: 4px;
}

.new-block-circle {
    background-color: var(--ocean-blue);
    height: 20px;
    width: 20px;
    border-radius: 20px;
}

#home-about_logo {
    margin-top: 124px;
    margin-bottom: 67px;
}

#home-about_main_text {
    /* font-weight: bold;
    font-size: clamp(1.5rem, 2vw + 1.5rem, 3rem); */
    text-align: center;
    margin: 0px 30px 6px 30px;
    letter-spacing: -2px;
}

.home-about_data {
    /* font-size: clamp(1.2rem, 2vw + .5rem, 2rem); */
    text-align: center;
    margin: 10px 60px 0px 60px;
}

.home-about_data_payout,
.home-about_data_blocksfound {
    color: var(--ocean-blue);
}

.home-about_widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    color: var(--text-black-white);
}


.home-about_widget_img {
    height: 100px;
    width: 100px;
    margin-bottom: 10px;
    /* filter: var(--svg-invert-0-100) */
}

.home-about_widget_title {
    margin-top: 0px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: var(--font-medium);
}

.home-about_widget_copy {
    text-align: center;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-small);

}

.home-about_widget_li {
    margin: 7px 0px;
    width: 250px;
    font-size: var(--font-small);
}

.home-about_widget_ul {
    margin-left: 50px;
}

.tally-section {
    display: flex;

}

.project-wrapper {
    display: flex;
    justify-content: space-around;
    width: 70%;
    max-width: 1000px;
    margin-top: 50px;
}

.tally-project-atag {
    width: fit-content;
    text-decoration: none;
}

@media (max-width: 850px) {
    .project-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        width: 70%;
        max-width: 1000px;
        margin-top: 50px;
        justify-items: center;
        row-gap: 70px;
    }
}

@media (max-width: 550px) {
    .project-wrapper {
        row-gap: 25px;
    }
}


#home-instruct_wrap {
    height: fit-content;
    overflow: hidden;
    position: relative;
    color: white;
    font-family: "Inter", sans-serif;
    font-style: normal;
    width: 100%;
    display: flex;
    justify-content: center;
}

#home-instruct_inner_wrap {
    max-width: var(--fixed-width);
    padding: var(--content-padding);
    margin: 0 auto;
    margin: 172px 0px;

}

#home-instruct_main_title {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-large);
    height: 58px;
    overflow-x: visible;
    margin-bottom: 15px;
}

#home-instruct_bottom_wrap {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    height: fit-content;
}

.home-instruct_step {
    font-size: var(--font-small);
    margin-bottom: 40px;
    display: flex;
    align-items: center;

}

.tally-image {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.tally-hero-text {
    margin: 0px 50px
}

@media (max-width: 445px) {
    .tally-hero-text {
        font-size: 50px !important;
    }
}

.tally-project-img {
    height: 100px;
    transition: transform 0.3s ease;
}

.tally-project-img:hover {
    transform: scale(1.1)
}



.home-instruct_step_title {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50px;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 24px;
}

.home-instruct_step_copy {
    font-weight: bold;
    font-weight: 200;
    margin-bottom: 50px;
}


.home-instruct_underline {
    border-bottom: 2px solid rgba(255, 255, 255, 0.654);
}

#home-instruct_view_button {
    font-family: "Inter", sans-serif;
    margin-top: 20.5px;
    height: 51px;
    width: 218px;
    border-radius: 50px;
    border: none;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    letter-spacing: 1px;
    background-color: white;
}

#home-instruct_bottom_right {
    border-radius: 20px;
    z-index: 100;
    width: fit-content;
    height: 100%;
    padding: 0px 40px
}

#home-instruct_video {
    width: 763px;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.665);
    border-radius: 20px;
}

#getstarted-instruct_video {
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    box-shadow: var(--box-shadow-light-dark);
    border-radius: 20px;
}

.video-poster {
    object-fit: contain;
}

#home-stats_wrap {
    display: flex;
    /* justify-content: center; */
    font-family: "Inter", sans-serif;
    font-style: normal;
    /* text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3); */
    color: #000;
    letter-spacing: -0.8;
}

#home-stats_inner_wrap {
    width: 100%;
    padding: var(--content-padding);
    max-width: 1440px;
    margin: 0 auto;
}


#home-stats_main_title {
    margin-top: 172px;
    font-size: 48px;
    font-weight: 600;
}

#home-stats_widget_wrap {
    margin-top: 172px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.home-stats_widget {
    display: flex;
    flex-direction: column;
    font-size: 20px;
}

.home-stats_widget_title {
    font-weight: 650;
    font-size: 24px;
}

.home-stats_widget_data {
    font-weight: 600;
}

#worker-stats_wrap {
    display: flex;
    /* justify-content: center; */
    font-family: "Inter", sans-serif;
    font-style: normal;
    /* text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3); */
    color: #000;
    letter-spacing: -0.8;
}

#worker-stats_inner_wrap {
    width: 100%;
    padding: var(--content-padding);
    max-width: 1440px;
    margin: 0 auto;
}


.worker-stats-main-title {
    font-size: 48px;
}

#worker-stats_widget_wrap {
    margin-top: 48px;
    margin-bottom: 24px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.worker-stats_widget {
    display: flex;
    flex-direction: column;
    font-size: 20px;
}

.worker-stats_widget_title {
    font-size: 24px;
}

.hero-image {
    margin: 75px 0px;
    min-height: 200px;
    min-width: 200px;
    max-height: 400px;
}

@media (max-width: 1000px) {
    .hero-image {
        margin: 50px;
    }
}


@media (max-width: 500px) {
    .hero-image {
        scale: 0.7;
        margin: 40px;
    }
}

.home-box {
    width: 100%;
    height: 172px;
}

.spacer {
    width: 100%;
    height: 72px;
}

@media(max-width: 1700px) {
    #home-instruct_video {
        width: 700px;
        border-radius: 20px;
    }

    .home-instruct_step {
        margin-bottom: 50px;
    }


    #home-stats_widget_wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 60px;
        column-gap: 0px;
        width: 90%;
    }

    .home-stats_widget_data {
        width: 440px;
    }
}

@media(max-width: 1500px) {
    #home-instruct_video {
        width: 600px;
    }

    #home-instruct_bottom_right {
        height: 100%;
        display: flex;
        align-items: center;
        border-radius: 20px;
        width: fit-content;
    }



}

@media(max-width: 1375px) {
    #home-instruct_video {
        width: 450px;
    }

    .home-instruct_step {
        margin-bottom: 40px;
    }


    #ocean-logo {
        margin-top: 140px !important;
    }

    /* #home-top_lower_wrap {
        margin-top: 375px;
    } */
}

@media(max-width: 1200px) {
    #home-instruct_video {
        width: 375px;
    }


}

@media(max-width: 1090px) {

    #home-instruct_video {
        width: 350px;
    }

    #home-top_lower_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* margin-top: 100px; */
    }

    #home-top_lower_left,
    #home-top_lower_right {
        width: 80%;
        text-align: center;
    }

    #home-top_lower_left {
        margin-bottom: 50px;
    }

    #ocean-logo {
        margin-top: 120px !important;
    }

    #home-about_logo {
        margin-top: 100px;
    }

    #home-instruct_video {
        width: 650px;
    }

    #home-instruct_bottom_right {
        padding: 40px;
    }

    #home-instruct_bottom_wrap,
    .home-instruct_step,
    #home-stats_widget_wrap,
    #home-stats_inner_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-instruct_step_title {
        margin: 0px 0px 24px 0px
    }

    #home-instruct_view_button {
        margin-bottom: 50px;
    }

    #home-instruct_title,
    #home-instruct_main_title,
    #home-stats_title,
    #home-stats_main_title,
    #home-stats_link {
        text-align: center;
    }

    .home-stats_widget_data,
    .home-stats_widget_title {
        width: 100%;
        text-align: center;
    }

    #home-stats_widget_wrap {
        width: 100%;
        margin-top: 120px;
    }

    #home-instruct_bottom_left {
        margin: 0px 50px;
    }

}

/* lower a lot of margins here */
@media(max-width: 750px) {
    #home-instruct_video {
        width: 500px;
    }

    #home-mid1_top_text,
    #home-about_offer_wrap,
    #home-instruct_inner_wrap,
    #home-stats_main_title,
    #home-connect_title {
        margin-top: 130px;
    }

    .home-about_widget {
        margin-top: 80px;
    }

    #home-about_logo,
    #home-stats_widget_wrap {
        margin-top: 100px;
    }

    #home-mid1_direct,
    #home-about_offer_wrap,
    #home-instruct_inner_wrap,
    #home-stats_dash_wrap,
    #home-q_set_wrap,
    #home-connect_social_wrap {
        margin-bottom: 130px;
    }

    #home-instruct_main_title {
        height: fit-content;
    }


}

@media(max-width: 600px) {
    #home-instruct_video {
        width: 400px;
    }

    #home-about_br {
        display: none;
    }
}

@media(max-width: 470px) {
    #home-instruct_video {
        width: 300px;
    }

    #home-br1 {
        display: unset;
    }

    #home-instruct_inner_wrap {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    #home-connect_nostr {
        text-align: center;
    }
}



/* Hero Section Styling */

#hero-section {
    width: 100%;
    height: 830px;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* background-color: red; */
    font-family: "Inter", sans-serif;
    font-style: normal;
}

#ocean-logo {
    width: 215px;
    margin-top: 162px;
    /* animation: logo-spin 1s 1 forwards; */
}

#front-page-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-size: 3em;
    text-align: center;
    margin-top: 72px;
    padding: 0px 100px 0px 100px;
}

#front-page-subtitle {
    color: #000;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 24px;
}

/* Footer Styling */

#footer-outer_wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-size: 15px;
}

#footer-border {
    width: 100%;
    height: 1px;
    background-color: var(--background-lowtransp-lowtransp);
    margin-bottom: 75px;
}

#footer-inner_wrap {
    display: flex;
    flex-direction: column;
    padding: 0px 5% 90px 5%;
    width: 100%;
    max-width: 1440px;
    box-sizing: content-box;
}

#footer-top {
    display: flex;
    flex-direction: row;
}

#footer-left_wrap {
    width: 60%
}

#footer-logo {
    margin-bottom: 22px;
}

#footer-copy {
    width: 50%;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.01281rem;
    color: var(--text-black-white);
}


#footer-grid {
    display: grid;
    grid-template-columns: 180px 180px 99px;
    grid-template-rows: repeat(4, 1fr);
    column-gap: 48px;
    row-gap: 20px;
}

.footer-grid_header {
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.0145rem;
    width: 90px;
    color: var(--text-black-white);
}

.footer-grid_link,
#footer-terms,
#footer-privacy,
#footer-legal {
    text-decoration: none;
    color: var(--text-black-white);
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.01281rem;
}

#footer-legal {
    max-width: 450px;
}

.footer-grid_link {
    height: fit-content;
}

.footer-grid_link:hover {
    text-decoration: underline;
    text-decoration-color: var(--text-black-white);
    cursor: pointer;
}

#footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 106px;
}

#footer-bottom_right {
    display: flex;
}

#footer-terms {
    margin-right: 25px;
}


@media(max-width: 1000px) {
    #footer-outer_wrap {
        font-size: 12px;
    }

    .footer-grid_header {
        font-size: 14px;
    }

    #footer-grid {
        column-gap: 15px;
        row-gap: 7px;
    }

    #footer-bottom {
        margin-top: 50px;
    }

}

@media(max-width: 900px) {
    #footer-inner_wrap {
        padding: 0px 5% 60px 5%;
    }

    #footer-top,
    #footer-left_wrap,
    #footer-bottom {

        display: flex;
        flex-direction: column;
        align-items: center;

    }

    #footer-grid {
        text-align: center;
        margin-top: 50px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    #footer-copy {
        text-align: center;
        width: 100%;
    }

    #footer-legal {
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-grid_header {
        width: 100%;
        text-align: center;
    }

    #footer-bottom_right {
        display: flex;
        justify-content: center;
    }
}

/* Background gradient/blobs */

.fixed-gradient-container {
    pointer-events: none;
    position: fixed;
    z-index: -10;
    height: 100vh;
}

.gradient-container {
    max-width: none;
    pointer-events: none;
    position: absolute;
    z-index: -10;
    width: 100%;
    height: 100%;
    overflow: overlay;
}

.homepage-gradient {
    height: 900px;
}

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

.table-noscript {
    display: table-cell !important;
}

/* Animations */

@keyframes slide-right {
    0% {
        margin-left: 50px;
    }

    60% {
        margin-left: 60px;
    }

    100% {
        margin-left: 50px;
    }
}

@keyframes logo-spin {
    0% {
        transform: rotate(0deg);
    }

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

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

    100% {
        opacity: 1;
    }
}

.background-gradient {
    background: linear-gradient(309deg, #6e6e6e, #747474);
    background-size: 200% 200%;

    -webkit-animation: hero-gradient 30s ease infinite;
    -moz-animation: hero-gradient 30s ease infinite;
    animation: hero-gradient 30s ease infinite;

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    z-index: 10;
    opacity: .85;
}

.blob-c {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(50px);
    /*   background: rgba(255,255,255,0.1) */
}

.moreblur {
    filter: blur(60px);
}

.lessblur {
    filter: blur(30px);
}

.shape-blob {
    background: #8b8b8b;
    height: 40%;
    width: 40%;
    border-radius: 40% 50% 30% 40%;
    animation:
        blob-transform 38s ease-in-out infinite both alternate,
        blob-one 33s ease-in-out infinite both;
    opacity: .5;
    position: absolute;
    left: 75%;
    top: 10%;
}

.shape-blob.one {
    background: #505050;
    height: 22%;
    width: 26%;
    z-index: 101;
    left: 0%;
    top: 85%;
    transform: rotate(-180deg);
    animation: blob-transform 45s ease-in-out infinite both alternate, blob-one 39s ease-in-out infinite both;
}


.shape-blob.two {
    background: #7e7e7e;
    opacity: 1;
    height: 32%;
    width: 32%;
    left: 6%;
    border-radius: 40% 30% 30% 40%;
    z-index: -1;
    top: 80%;
    transform: rotate(-180deg);
    animation: blob-transform 29s ease-in-out infinite both alternate, blob-two-left 48s ease-in-out infinite both;
}

.shape-blob.three {
    background: #383838;
    height: 44%;
    width: 40%;
    left: 4%;
    z-index: 10;
    top: 88%;
    transform: rotate(-180deg);
    animation: blob-transform 37s ease-in-out infinite both alternate, blob-three-left 171s ease-in-out infinite both;
}

.shape-blob.four {
    background: #5f5f5f;
    height: 22%;
    width: 26%;
    left: 70%;
    top: 0%;
    transform: rotate(-180deg);
    animation: blob-transform 27s ease-in-out infinite both alternate, blob-two 41s ease-in-out infinite both;
}

.shape-blob.five {
    background: #424242;
    height: 28%;
    width: 32%;
    left: 77%;
    top: 7%;
    transform: rotate(-180deg);
    animation: blob-transform 22s ease-in-out infinite both alternate, blob-two 29s ease-in-out infinite both;
}

.shape-blob.six {
    background: #636363;
    height: 40%;
    width: 38%;
    left: 64%;
    top: 0%;
    transform: rotate(-180deg);
    animation: blob-transform 37s ease-in-out infinite both alternate, blob-two 35s ease-in-out infinite both;
}

@-webkit-keyframes hero-gradient {
    0% {
        background-position: 93% 0%
    }

    50% {
        background-position: 0% 100%
    }

    100% {
        background-position: 93% 0%
    }
}

@-moz-keyframes hero-gradient {
    0% {
        background-position: 93% 0%
    }

    50% {
        background-position: 0% 100%
    }

    100% {
        background-position: 93% 0%
    }
}

@keyframes hero-gradient {
    0% {
        background-position: 93% 0%
    }

    50% {
        background-position: 0% 100%
    }

    100% {
        background-position: 93% 0%
    }
}

@keyframes blob-one {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: translate(40%, 20%) rotateY(20deg) scale(1.1);
    }
}

@keyframes blob-two-left {

    0%,
    100% {
        transform: none;
        border-radius: 40% 30% 30% 40%;
    }

    50% {
        transform: translate(10%, -100%) rotateY(20deg) scale(2.1);
        border-radius: 20% 100% 10% 50%;
    }

    65%,
    25% {
        transform: translate(40%, -100%) rotateX(60deg) scale(4.51);
        border-radius: 60% 40% 60% 30%;
    }
}

@keyframes blob-three-left {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: translate(40%, -200%) rotateY(200deg) scale(1.1);
    }

    65%,
    25% {
        transform: translate(140%, -300%) rotateY(10deg) scale(2.1);
    }
}

@keyframes blob-one {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: translate(140%, 20%) rotateY(20deg) scale(1.1);
    }
}

@keyframes blob-two {

    0%,
    500% {
        transform: none;
    }

    50% {
        transform: translate(-140%, -120%) rotate(-107deg) scale(1.3);
    }
}

@keyframes blob-transform {

    0%,
    100% {
        border-radius: 33% 67% 60% 30% / 30% 40% 60% 60%;
    }

    20% {
        border-radius: 37% 63% 51% 49% / 37% 35% 35% 63%;
    }

    40% {
        border-radius: 36% 64% 64% 36% / 64% 48% 52% 26%;
    }

    60% {
        border-radius: 37% 63% 51% 49% / 30% 30% 60% 60%;
    }

    80% {
        border-radius: 40% 60% 42% 58% / 51% 51% 49% 59%;
    }
}
