:root {
    --font-1: "Outfit", sans-serif;
    --color-white: #FFFFFF;
    --color-white-light: #FFFFFFCC;
    --color-primary:#431c76FF;
    --color-primary-light:#431c76DD;
    --color-secondary:#8A2AEBDD;
    --color-secondary-light:#8A2AEBFF;
    --color-accent: #81bef0CC;
    --color-accent-light: #81bef0FF;
}

* {
    font-family: "Outfit", sans-serif;
}

.ui.header{
    font-family: "Outfit", sans-serif;
}

h1, h2, h3, h4, h5, textarea {
    font-family: var(--font-1);
    color: var(--color-primary)
}

a{
    color: var(--color-accent) !important;
}

a:hover {
    color: var(--color-accent-light) !important;
}

html {
    scroll-behavior: smooth;
    background: var(--color-primary)
}

body {
    font-family: var(--font-1);
    margin: 0;
    padding: 0;
    background: transparent;
}

#pageWrapper{
    min-height: 100dvh;
    background-color: var(--color-primary);
}

section{
    padding: 120px 0;
    min-height: 60vh;
}

.notarix a{
    color: #BBB !important;
}

.notarix a:hover{
    color: #FFF !important;
}

footer{
    background: var(--color-primary) !important;
}

.notarix.menu{
    height: 78px;
    background: transparent;
    border:0;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1)  0%, rgba(255, 255, 255, 0) 60%) !important;
}

.notarix.menu .toc.item {
    display: none;
}

.notarix.menu a.item.si{
    color: #FFF !important;
}

.notarix_label{
    font-weight: 700;
}

.glass{
    background: transparent !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
}

.background.forward{
    background: linear-gradient(0deg, #8A2AEB, #44048B);
}

.background.backward{
    background: linear-gradient(0deg, #44048B, #8A2AEB);
}

.thin{
    font-weight: 300 !important;
}

.thick{
    font-weight: 700 !important;
}

#_content{
    padding-top: 76px;
}

#hero {
    padding: 120px 0 0px;
    min-height: 80vh;
    background: linear-gradient(0deg, #8A2AEB, #44048B);
}

.si_content{
    padding: 48px 0;
    /*min-height: 80vh;*/  
    background: linear-gradient(0deg, #8A2AEB, #44048B);
}

.pioneer_faqs{
    font-size: 1.5em;
}

.pioneer_faqs .content{
    color: #FFFFFF;
}

/* Burger animation */
#burger-icon {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* When sidebar is open */
.sidebar-visible #burger-icon {
  transform: rotate(90deg);
}

/* Mobile header slide behavior */
.ui.top.fixed.notarix.menu.tablet.mobile.only {
  transition: transform 1s ease, opacity 0.2s ease;
}

/* When sidebar is open */
.sidebar-visible .ui.top.fixed.notarix.menu.tablet.mobile.only {
  transform: translatey(-100%);
  opacity: 0;
}

/* Base state */
#bar_menu.menu .item {
  opacity: 0;
  transform: translatey(6px);
  transition:
    opacity 1s ease,
    transform 0.25s ease;
}

/* Visible state */
#bar_menu.menu.visible .item {
  opacity: 1;
  transform: translatey(0);
}

/* Stagger delays */
#bar_menu.menu.visible .item:nth-child(1) { transition-delay: 0.05s; }
#bar_menu.menu.visible .item:nth-child(2) { transition-delay: 0.10s; }
#bar_menu.menu.visible .item:nth-child(3) { transition-delay: 0.15s; }
#bar_menu.menu.visible .item:nth-child(4) { transition-delay: 0.20s; }
#bar_menu.menu.visible .item:nth-child(5) { transition-delay: 0.25s; }


.page.error h1{
    font-size: 5rem;
    font-weight: 900;
    color: #FFFFFF11;
    position: absolute
}

.page.error p{
    color: #FFF;
    margin-top: 6rem;
}

/* Hide desktop menu on mobile */
@media (max-width: 991px) {
    .ui.menu.computer.only {
        display: none !important;
    }

    .page.error h1{
        font-size: 2.3rem;
        text-align: left !important;
    }

    .page.error h2{
        font-size: 1rem;
    }

}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .ui.menu.tablet.mobile.only {
        display: none !important;
    }

    .notarix.menu .ui.buttons.action{
        width: 186px;
    }


}