 :root {
    --black: #000;
    --navy: #000;
    --white: #fff;
    --navy-shadow: rgba(2, 12, 27, 0.7);
    --green: #0066ff;
    --green-tint: rgba(100, 255, 218, 0.1);
    --pink: #f57dff;
    --blue: #57cbff;
    --font-sans: 'Calibre', 'Inter', 'San Francisco', 'SF Pro Text', -apple-system, system-ui, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;
    --fz-xxs: 12px;
    --fz-xs: 13px;
    --fz-sm: 14px;
    --fz-md: 16px;
    --fz-lg: 18px;
    --fz-xl: 20px;
    --fz-xxl: 22px;
    --fz-heading: 32px;
    --border-radius: 4px;
    --nav-height: 100px;
    --nav-scroll-height: 70px;
    --tab-height: 42px;
    --tab-width: 120px;
    --easing: cubic-bezier(0.645,0.045,0.355,1);
    --transition: all 0.25s cubic-bezier(0.645,0.045,0.355,1);
    --hamburger-width: 30px;
    --ham-before: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
    --ham-before-active: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
    --ham-after: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55,0.055,0.675,0.19);
    --ham-after-active: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215,0.61,0.355,1) 0.12s;
}
  .home-page {
    display: flex
;
    -webkit-box-pack: center;
    justify-content: center;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    min-height: 70vh;
    height: 70vh;
    padding: 0px;
}

.big-heading {
    margin: 0px;
    font-size: clamp(40px, 8vw, 80px);
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px 0px 10px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.1;
}
.h1, h1 {
  font-size: 1.5rem;
}
.h4, h4 {
  font-size: 1.1rem;
}

h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}
.home-page .email-link {
    margin-top: 30px;
    font-family: var(--font-sans);
    font-size: var(--fz-xxl);
    background-color: var(--green);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.about {
    max-width: 900px;
}
section {
    margin: 0px auto;
    padding: 100px 0px;
    max-width: 1000px;
}

.ZgVBZ {
    display: flex
;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    position: sticky;
    top: 0px;
    z-index: 11;
    padding: 0px 50px;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--white);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    filter: none !important;
    pointer-events: auto !important;
    user-select: auto !important;
}

.bXKbEe {
    display: flex
;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    color: var(--black);
    font-family: var(--font-sans);
    counter-reset: item 0;
    z-index: 12;
}

.bXKbEe .logo {
    display: flex
;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.bXKbEe .logo a {
    color: var(--green);
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 1;
}

a {
    display: inline-block;
    text-decoration: none;
    text-decoration-skip-ink: auto;
    color: inherit;
    position: relative;
    transition: var(--transition);
}


.bXKbEe .logo a .logo-container {
    position: relative;
    z-index: 1;
}

.jwSxzp {
    display: flex
;
    -webkit-box-align: center;
    align-items: center;
}
.jwSxzp ol {
    display: flex
;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.jwSxzp ol li {
    margin: 0px 5px;
    position: relative;
    counter-increment: item 1;
    font-size: var(--fz-lg);
}
.jwSxzp ol li a {
    padding: 10px;
}



.IZQCw {
    display: none;
}



.kdietl {
    display: none;
}

button {
    cursor: pointer;
    border: 0px;
    border-radius: 0px;
}

.kdietl .ham-box {
    display: inline-block;
    position: relative;
    width: var(--hamburger-width);
    height: 24px;
}

.kdietl .ham-box-inner {
    position: absolute;
    top: 50%;
    right: 0px;
    width: var(--hamburger-width);
    height: 2px;
    border-radius: var(--border-radius);
    background-color: var(--green);
    transition-duration: 0.22s;
    transition-property: transform;
    transition-delay: 0.12s;
    transform: rotate(225deg);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.kdietl .ham-box-inner::before {
    width: 100%;
    top: 0px;
    opacity: 0;
    transition: var(--ham-before-active);
}

.kdietl .ham-box-inner::before, .kdietl .ham-box-inner::after {
    content: "";
    display: block;
    position: absolute;
    left: auto;
    right: 0px;
    width: var(--hamburger-width);
    height: 2px;
    border-radius: 4px;
    background-color: var(--green);
    transition-timing-function: ease;
    transition-duration: 0.15s;
    transition-property: transform;
}

.gkxXJt {
    display: none;
}

.gkxXJt nav {
    display: flex
;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    color: var(--black);
    font-family: var(--font-mono);
    text-align: center;
}



.gkxXJt ol {
    padding: 0px;
    margin: 0px;
    list-style: none;
    width: 100%;
}



.gkxXJt ol li {
    position: relative;
    margin: 0px auto 20px;
    counter-increment: item 1;
    font-size: clamp(var(--fz-sm), 4vw, var(--fz-lg));
}
.kkRzFV {
    max-width: 600px;
    margin: 0px auto 100px;
    text-align: center;
}
.kkRzFV .overline {
    display: block;
    margin-bottom: 20px;
    color: var(--green);
    font-family: var(--font-mono);
    font-size: var(--fz-md);
    font-weight: 400;
}
.overline {
    color: var(--green);
    font-family: var(--font-mono);
    font-size: var(--fz-md);
    font-weight: 400;
}
.kkRzFV .title {
    font-size: clamp(40px, 5vw, 60px);
}

.kkRzFV .email-link {
    margin-top: 30px;
    font-family: var(--font-sans);
    font-size: var(--fz-xxl);
    background-color: var(--green);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.bWqEjw {
    display: flex
;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    min-height: 70px;
    padding: 15px;
    text-align: center;
}

.kPlvSp {
    display: none;
}

.kPlvSp ul {
    display: flex
;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.kPlvSp ul a {
    padding: 10px;
}

.ekbhSa {
    color: var(--black);
    font-size: var(--fz-xxs);
    line-height: 1;
    display: flex
;
    text-align: left;
    gap: 5rem;
}

.rytbt .inner {
    display: grid
;
    gap: 50px;
}

.oJa-Dw {
    display: none;
}
.oJa-Dw nav {
    display: flex
;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    color: var(--black);
    font-family: var(--font-mono);
    text-align: center;
}
.oJa-Dw ol {
    padding: 0px;
    margin: 0px;
    list-style: none;
    width: 100%;
}
ol{
  padding-inline-start: 40px;
}

.disclaimer-pop{
overflow-y:scroll;
max-height:480px;
}

.active{
  border-bottom: 2px solid;
}

.fsXuZk .ham-box {
    display: inline-block;
    position: relative;
    width: var(--hamburger-width);
    height: 24px;
}

.fsXuZk .ham-box-inner {
    position: absolute;
    top: 50%;
    right: 0px;
    width: var(--hamburger-width);
    height: 2px;
    border-radius: var(--border-radius);
    background-color: var(--green);
    transition-duration: 0.22s;
    transition-property: transform;
    transition-delay: 0s;
    transform: rotate(0deg);
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.fsXuZk .ham-box-inner::before {
    width: 120%;
    top: -10px;
    opacity: 1;
    transition: var(--ham-before);
}

.fsXuZk .ham-box-inner::after {
    width: 80%;
    bottom: -10px;
    transform: rotate(0deg);
    transition: var(--ham-after);
}

.fsXuZk .ham-box-inner::before, .fsXuZk .ham-box-inner::after {
    content: "";
    display: block;
    position: absolute;
    left: auto;
    right: 0px;
    width: var(--hamburger-width);
    height: 2px;
    border-radius: 4px;
    background-color: var(--green);
    transition-timing-function: ease;
    transition-duration: 0.15s;
    transition-property: transform;
}

.oJa-Dw ol li {
    position: relative;
    margin: 0px auto 20px;
    counter-increment: item 1;
    font-size: clamp(var(--fz-sm), 4vw, var(--fz-lg));
}
@media (max-width: 768px) {
    .jwSxzp {
        display: none;
    }
}
@media (max-width: 768px) {
    .IZQCw {
        display: block;
    }
}

@media (max-width: 768px) {
    .kdietl {
        display: flex
;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        position: relative;
        z-index: 10;
        margin-right: -15px;
        padding: 15px;
        border: 0px;
        background-color: transparent;
        color: inherit;
        text-transform: none;
        transition-timing-function: linear;
        transition-duration: 0.15s;
        transition-property: opacity, filter;
    }
}

@media (max-width: 768px) {
    .gkxXJt {
        display: flex
;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        position: fixed;
        top: 0px;
        bottom: 0px;
        right: 0px;
        padding: 50px 10px;
        width: min(75vw, 400px);
        height: 100vh;
        outline: 0px;
        background-color: var(--white);
        box-shadow: -10px 0px 30px -15px var(--navy-shadow);
        z-index: 9;
        transform: translateX(0vw);
        visibility: visible;
        transition: var(--transition);
    }
}
@media (max-width: 600px) {
    .gkxXJt ol li {
        margin: 0px auto 10px;
    }
}


@media (max-width: 768px) {
    .fsXuZk {
        display: flex
;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        position: relative;
        z-index: 10;
        margin-right: -15px;
        padding: 15px;
        border: 0px;
        background-color: transparent;
        color: inherit;
        text-transform: none;
        transition-timing-function: linear;
        transition-duration: 0.15s;
        transition-property: opacity, filter;
    }
}



@media (max-width: 768px) {
    .oJa-Dw {
        display: flex
;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        position: fixed;
        top: 0px;
        bottom: 0px;
        right: 0px;
        padding: 50px 10px;
        width: min(75vw, 400px);
        height: 100vh;
        outline: 0px;
        background-color: var(--white);
        box-shadow: -10px 0px 30px -15px var(--navy-shadow);
        z-index: 9;
        transform: translateX(100vw);
        visibility: hidden;
        transition: var(--transition);
    }
}

@media (max-width: 600px) {
    .oJa-Dw ol li {
        margin: 0px auto 10px;
    }
}

