/* /Components/Home/IntroSectionComponent.razor.rz.scp.css */
.intro-section[b-uinqoaywh7] {
    align-items: center;
    background-color: var(--intro-section-bg-color);
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.intro-section-content[b-uinqoaywh7] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--intro-section-content-width);
    width: 100%;
}

.intro-section-left[b-uinqoaywh7] {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    padding: 1rem 2rem;
}

.intro-section-right[b-uinqoaywh7] {
    align-items: center;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    padding: 1rem 3rem 1rem 2.5rem;
}

.intro-section-highlight[b-uinqoaywh7] {
    margin-bottom: 2rem;
}

@media(max-width: 1000px) {
    .intro-section-content[b-uinqoaywh7] {
        grid-template-columns: 1fr;
        padding-top: 2rem;
    }

    .intro-section-left[b-uinqoaywh7] {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
        justify-content: center;
        padding: 0.5rem 1rem;
    }

    .intro-section-right[b-uinqoaywh7] {
        text-align: center;
    }

    .intro-section-text[b-uinqoaywh7] {
        padding: 0 0 0 0;
    }
}
/* /Components/Layout/AppBar/AppBarComponent.razor.rz.scp.css */
nav[b-0r8corz0gn] {
    align-items: center;
    background-color: var(--appbar-bg-color);
    display: flex;
    height: var(--appbar-height);
    padding: 0 20px;
    z-index: 0;
}

.nav-left[b-0r8corz0gn] {
    width: 160px;
}

.nav-middle[b-0r8corz0gn] {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-left: 16px;
    width: 100%;
}

.nav-right[b-0r8corz0gn] {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-left: 10%;
}

.logo[b-0r8corz0gn] {
    background-color: transparent;
    width: var(--logo-width);
}

.nav-mobile-menu[b-0r8corz0gn] {
        display: none;
}

@media(max-width: 700px) {
    nav[b-0r8corz0gn] {
        height: var(--appbar-height-mobile);
        padding: 0 8px;
    }

    .logo[b-0r8corz0gn] {
        width: var(--logo-width-mobile);
    }

    .nav-middle[b-0r8corz0gn] {
        display: none;
    }

    .nav-mobile-menu[b-0r8corz0gn] {
        display: block;
    }

    .nav-right[b-0r8corz0gn] {
        gap: 1rem;
        width: 100%;
    }
}
/* /Components/Layout/AppBar/MobileMenuComponent.razor.rz.scp.css */
.burgerbutton[b-ck7zoe74h5] {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
}

.burgerbutton-icon[b-ck7zoe74h5] {
    display: block;
    color: var(--burgerbutton-icon-color);
    font-size: var(--fs-2xl);
}

    .burgerbutton:hover .burgerbutton-icon[b-ck7zoe74h5] {
        color: var(--bits-green);
        transition: all .2s linear;
    }

.mobile-menu[b-ck7zoe74h5] {
    background-color: var(--mobile-menu-bg-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    left: 0;
    padding: 12px 16px;
    position: absolute;
    right: 0;
    top: var(--appbar-height-mobile);
    z-index: 50;
}
/* /Components/Layout/AppBar/NavButtonComponent.razor.rz.scp.css */
.navbutton-container[b-57emjiawyq] {
    position: relative;
}

.navbutton[b-57emjiawyq] {
    align-items: center;
    display: flex;
    min-height: var(--appbar-height);
    background-color: var(--navbutton-bg-color);
    border: unset;
    cursor: pointer;
    max-width: max-content;
    width: 100%;
}

.navbutton-text[b-57emjiawyq] {
    color: var(--navbutton-text-color);
    font-size: 1.2rem;
}

.navbutton:hover .navbutton-text[b-57emjiawyq] {
    color: var(--navbutton-hover-text-color);
    transition: all .2s linear;
}

.navbutton-container .dropdown[b-57emjiawyq] {
    animation: dropdownIn-b-57emjiawyq 160ms ease-out forwards;
    background-color: var(--navbutton-dropdown-bg-color);
    border-top: 2px solid var(--navbutton-dropdown-border-color);
    opacity: 0;
    position: absolute;
    top: var(--appbar-height);
    left: 0;
    transform: translateY(-6px);
    width: 100%;
    z-index: 0;
}

    .dropdown .item[b-57emjiawyq] {
        animation: itemIn-b-57emjiawyq 180ms ease-out forwards;
        animation-delay: calc(var(--i) * var(--navbutton-animation-fade-delay));
        background-color: var(--navbutton-dropdown-item-bg-color);
        display: block;
        opacity: 0;
        padding: 0.75rem 1rem;
        text-decoration: none;
        transform: translateY(-4px);
        width: 100%;
    }

    .dropdown .item:hover .text[b-57emjiawyq] {
        color: var(--navbutton-dropdown-hover-color);
        transition: all .2s linear;
    }

@keyframes dropdownIn-b-57emjiawyq {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes itemIn-b-57emjiawyq {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 1000px) {
    .navbutton-container[b-57emjiawyq] {
        min-height: var(--appbar-height-mobile);
    }
}
/* /Components/Layout/AppBar/ThemeButtonComponent.razor.rz.scp.css */
.themebutton[b-syty91oage] {
    background: unset;
    border: none;
    cursor: pointer;
    padding: 0;
}

.themebutton-icon[b-syty91oage] {
    display: block;
    color: var(--themebutton-icon-color);
    font-size: var(--fs-xl);
}

    .themebutton:hover .themebutton-icon[b-syty91oage] {
        color: var(--bits-green);
        transition: all .2s linear;
    }
/* /Components/Layout/FooterComponent.razor.rz.scp.css */
footer[b-bbbu2ehe1j] {
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    display: flex;
    font-family: var(--font-sans);
    justify-content: center;
    margin: 0 auto;
    min-height: 200px;
    width: 100%;
}

.footer-content[b-bbbu2ehe1j] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: var(--footer-content-width);
    width: 100%;
}

.footer-left[b-bbbu2ehe1j] {
    display: grid;
    grid-template-rows: 1fr 1fr;
    row-gap: 0;
    min-width: 200px;
    padding: 2.5rem 1.5rem;
}

.footer-middle[b-bbbu2ehe1j] {
    display: grid;
    grid-template-rows: 1fr 1fr;
    row-gap: 1rem;
    min-width: 200px;
    padding: 2.5rem 1rem;
    text-align: center;
}

.footer-right[b-bbbu2ehe1j] {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    row-gap: 0.5rem;
    min-width: 200px;
    padding: 2.5rem 1.5rem;
    text-align: end;
}

.footer-logo[b-bbbu2ehe1j] {
    background-color: transparent;
    width: var(--logo-width);
}

.footer-subtitle[b-bbbu2ehe1j] {
    color: var(--footer-subtitle-color);
    padding-bottom: 0.3rem;
}

.footer-copyright[b-bbbu2ehe1j] {
    color: var(--footer-copyright-color);
    font-size: var(--fs-xs);
    text-align: end;
}

.footer-contact-text[b-bbbu2ehe1j] {
    display: flex;
    justify-content: center;
    gap: .5rem;
    padding-left: 1rem;
}

.footer-email[b-bbbu2ehe1j] {
    color: inherit;
    text-decoration: none;
}

    .footer-email:hover[b-bbbu2ehe1j] {
        color: var(--footer-email-hover-color);
        transition: all .2s linear;
    }

@media (max-width: 800px) {
    .footer-content[b-bbbu2ehe1j] {
        text-align: center;
        grid-template-columns: 1fr;
    }

    .footer-container[b-bbbu2ehe1j] {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right[b-bbbu2ehe1j] {
        text-align: center;
    }

    .footer-copyright[b-bbbu2ehe1j] {
        text-align: center;
    }
}
/* /Components/Layout/MainLayoutComponent.razor.rz.scp.css */
#blazor-error-ui[b-fo7844uxdd] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-fo7844uxdd] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


main[b-fo7844uxdd] {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-p3qaf5khg9],
.components-reconnect-repeated-attempt-visible[b-p3qaf5khg9],
.components-reconnect-failed-visible[b-p3qaf5khg9],
.components-pause-visible[b-p3qaf5khg9],
.components-resume-failed-visible[b-p3qaf5khg9],
.components-rejoining-animation[b-p3qaf5khg9] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-p3qaf5khg9],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-p3qaf5khg9],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-p3qaf5khg9],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-p3qaf5khg9],
#components-reconnect-modal.components-reconnect-retrying[b-p3qaf5khg9],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-p3qaf5khg9],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-p3qaf5khg9],
#components-reconnect-modal.components-reconnect-failed[b-p3qaf5khg9],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-p3qaf5khg9] {
    display: block;
}


#components-reconnect-modal[b-p3qaf5khg9] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-p3qaf5khg9 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-p3qaf5khg9 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-p3qaf5khg9 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-p3qaf5khg9]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-p3qaf5khg9 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-p3qaf5khg9 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

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

@keyframes components-reconnect-modal-fadeInOpacity-b-p3qaf5khg9 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-p3qaf5khg9 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-p3qaf5khg9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-p3qaf5khg9] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-p3qaf5khg9] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-p3qaf5khg9] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-p3qaf5khg9] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-p3qaf5khg9] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-p3qaf5khg9] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-p3qaf5khg9 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-p3qaf5khg9] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-p3qaf5khg9 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Shared/FeatureComponent.razor.rz.scp.css */
.feature[b-gu2dinzo4s] {
    align-items: center;
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 1.5rem;
}

/*.feature-circle {
    align-items: center;
    background-color: var(--feature-icon-bg-color);
    border: 2px solid var(--feature-icon-border-color);
    display: flex;
    height: 50px;
    justify-content: center;
    transform: rotate(45deg);
    width: 50px;
}*/

.feature-circle[b-gu2dinzo4s] {
    align-items: center;
    background-color: var(--feature-icon-bg-color);
    border: 2px solid var(--feature-icon-border-color);
    border-radius: 100%;
    display: flex;
    height: 64px;
    justify-content: center;
    transform: rotate(45deg);
    width: 64px;
}

.feature-icon[b-gu2dinzo4s] {
    align-items: center;
    color: var(--feature-icon-color);
    display: flex;
    font-size: var(--fs-3xl);
    justify-content: center;
    text-align: center;
    transform: rotate(-45deg);
}

.feature-title[b-gu2dinzo4s] {
    margin-top: 0.5rem;
    margin-bottom: 0;
    text-align: start;
}

.feature-subtitle[b-gu2dinzo4s] {
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-align: start;
}

@media(max-width: 1000px) {
    .feature[b-gu2dinzo4s] {
        column-gap: 1rem;
        width: 440px;
    }

    .feature-circle[b-gu2dinzo4s] {
        height: 58px;
        width: 58px;
    }

    .feature-icon[b-gu2dinzo4s] {
        font-size: var(--fs-2xl);
    }
}

@media(max-width: 700px) {
    .feature[b-gu2dinzo4s] {
        column-gap: 1rem;
        width: 440px;
    }

    .feature-circle[b-gu2dinzo4s] {
        height: 48px;
        width: 48px;
    }

    .feature-icon[b-gu2dinzo4s] {
        font-size: var(--fs-2xl);
    }
}
/* /Pages/Contact.razor.rz.scp.css */
.contact-section[b-vri6rohuc1] {
    align-items: center;
    min-height: 80vh;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}

.contact-section-content[b-vri6rohuc1] {
    max-width: var(--contact-section-content-width);
    width: 100%;
}

.contact-section-title[b-vri6rohuc1] {
    color: var(--contact-title-color);
    margin-bottom: 0.05rem;
}

.contact-section-subtitle[b-vri6rohuc1] {
    color: var(--contact-subtitle-color);
    margin-top: 0;
}

@media(max-width: 700px) {
    .contact-section[b-vri6rohuc1] {
        height: calc(80vh - var(--appbar-height-mobile));
        padding: 0 0.5rem;
    }

    .intro-section-content[b-vri6rohuc1] {
        grid-template-columns: 1fr;
    }

    .intro-section-left[b-vri6rohuc1] {
        padding: 0 5.1rem;
    }

    .intro-section-right[b-vri6rohuc1] {
        padding: 1rem 1rem;
        row-gap: 1rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.home-section[b-c7dqfnptj3] {
    align-items: center;
    background-image: linear-gradient( rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55) ), url("media/company.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    min-height: 80vh;
    padding: 0 2rem;
    position: relative;
    width: 100%;
    z-index: -1;
}

.home-section-content[b-c7dqfnptj3] {
    max-width: var(--home-section-content-width);
    width: 100%;
}

    .home-section-title[b-c7dqfnptj3] {
        color: var(--home-title-color);
        margin-bottom: 0.05rem;
    }

    .home-section-subtitle[b-c7dqfnptj3] {
        color: var(--home-subtitle-color);
        margin-top: 0;
    }

@media(max-width: 1000px) {
    .home-section[b-c7dqfnptj3] {
        height: calc(80vh - var(--appbar-height-mobile));
        text-align: center;
    }
}
/* /Pages/LegalNotice.razor.rz.scp.css */
.legalnotice[b-64nz1itr5k] {

}
