:root
{
    --primary: #0f0123;
    --primaryLight: #5f71f6;
    --secondary: #7f2ff9;
    --bodyTextColor: #232323;
    --secondarylight: #df9a7f68;
    --bodyTextColorWhite: #fafbfc;
    --sectionPadding: clamp(3.75rem,7.82vw,6.25rem) clamp(1rem,1.5vw,2rem);
}
.cs-section
{
    padding: var(--sectionPadding);
}
@font-face
{
    font-display: swap;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: url("/assets/fonts/poppins-v20-latin-regular.woff2") format("woff2");
}
@font-face
{
    font-display: swap;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    src: url("/assets/fonts/poppins-v20-latin-600.woff2") format("woff2");
}
body, html
{
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: "Poppins",Arial,sans-serif;
    color: var(--bodyTextColor);
    overflow-x: hidden;
}
*, *:before, *:after
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    transition: background-color .3s;
}
.container
{
    position: relative;
    width: 92%;
    margin: auto;
}
h1, h2, h3, h4, h5, h6
{
    margin: 0;
    color: var(--headerColor);
}
p, li, a
{
    font-size: 1.125rem;
    line-height: 27/18em;
    margin: 0;
}
p, li
{
    color: #353535;
}
a:hover, button:hover
{
    cursor: pointer;
}
a
{
    text-decoration: none;
    color: inherit;
}
.skip
{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
}
.cs-title
{
    margin-bottom: 16px;
    font-size: clamp(1.9375rem,3.9vw,3.0625rem);
    color: var(--bodyTextColor);
    font-weight: 600;
    letter-spacing: -1.6px;
}
.cs-hero-title
{
    margin-bottom: 16px;
    font-size: clamp(2.5rem,8vw,4rem);
    color: var(--bodyTextColor);
    font-weight: 600;
}
.cs-container
{
    margin: auto;
    max-width: 1280px;
}
.cs-text
{
    color: var(--bodyTextColor);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 28px;
    opacity: .8;
}
.button-oval
{
    position: relative;
    border-radius: 15px;
    padding: 16px 32px;
    display: inline-block;
    color: #fff;
    font-size: 22px;
    transition: all .3s ease;
    z-index: 1;
    border-style: none;
}
.button-solid
{
    position: relative;
    background: linear-gradient(123deg,#7f2ff9 3.95%,#5f71f6 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform .3s ease-in-out;
}
.button-solid:before
{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(123deg,#5f20c9 3.95%,#4f51c6 100%,#7f2ff9 3.95%,#5f71f6 100%);
    z-index: -1;
    transition: background-position .3s linear;
    background-size: 200% 100%;
    background-position: 100% 0;
}
.button-solid:hover
{
    transform: scale(1.05);
}
.button-solid:hover:before
{
    background-position: 0 0;
}
.button-transparent
{
    position: relative;
    background-color: rgba(0,0,0,0);
    border-style: solid;
    border-width: 1px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform .3s ease-in-out;
}
.button-transparent:before
{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: opacity .3s linear,transform .3s ease-in-out;
    transform: scale(.9);
    opacity: 0;
}
.button-transparent:hover
{
    transform: scale(1.05);
    border-color: #5f20c9;
}
.button-transparent:hover:before
{
    opacity: 1;
    transform: scale(1);
}
.text-highlight
{
    background-image: linear-gradient(95deg,#5f71f6,#812afa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0);
}
.hover-highlight
{
    position: relative;
}
.hover-highlight:before
{
    content: "";
    width: 0%;
    height: 2px;
    background: #fff;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: -.125rem;
    left: 0;
    transition: width .3s;
}
.hover-highlight:hover:before
{
    width: 100%;
}
.text-link, .text-link-white
{
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline;
    color: inherit;
    transition: color .3s ease,text-decoration-color .3s ease;
}
.text-link:hover
{
    color: var(--primary);
    text-decoration-color: var(--primary);
}
.text-link
{
    color: var(--bodyTextColor);
    text-decoration-color: var(--bodyTextColor);
}
.text-link-white
{
    color: var(--bodyTextColorWhite);
    text-decoration-color: var(--bodyTextColorWhite);
}
@media only screen and (max-width: 63.999rem)
{
    body.cs-open
    {
        overflow: hidden;
    }
    #cs-navigation
    {
        width: 100%;
        padding: 1.25rem 1rem;
        box-sizing: border-box;
        position: fixed;
        z-index: 10000;
        transition: background-color .3s;
    }
    #cs-navigation:before
    {
        content: "";
        width: 100%;
        height: 100%;
        background: #1a1a1a;
        background: #0f0123;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        transition: height .3s;
    }
    #cs-navigation:after
    {
        content: "";
        width: 100%;
        height: 0;
        background: rgba(0,0,0,.6);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        position: absolute;
        display: block;
        top: 0%;
        right: 0;
        z-index: -1100;
        opacity: 0;
        transition: height .5s,opacity .5s;
    }
    #cs-navigation.cs-active
    {
        background-color: #1a1a1a;
    }
    #cs-navigation.cs-active:after
    {
        height: 150vh;
        opacity: 1;
    }
    #cs-navigation.cs-active .cs-ul-wrapper
    {
        opacity: 1;
        transform: scaleY(1);
        transition-delay: .15s;
    }
    #cs-navigation.cs-active .cs-li
    {
        transform: translateY(0);
        opacity: 1;
    }
    #cs-navigation .cs-container
    {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    #cs-navigation .cs-logo
    {
        width: auto;
        height: clamp(2rem,6vw,3rem);
        margin: 0 auto 0 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }
    #cs-navigation .cs-logo img
    {
        width: auto;
        height: 100%;
        object-fit: contain;
    }
    #cs-navigation .cs-toggle
    {
        width: 2.75rem;
        height: 2.75rem;
        margin: 0 0 0 auto;
        background-color: #fff;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform .6s;
        position: relative;
        border-radius: .25rem;
        z-index: 10;
    }
    #cs-navigation .cs-toggle.cs-active
    {
        transform: rotate(180deg);
    }
    #cs-navigation .cs-active .cs-line1
    {
        top: 50%;
        transform: translate(-50%,-50%) rotate(225deg);
    }
    #cs-navigation .cs-active .cs-line2
    {
        top: 50%;
        transform-origin: center;
        transform: translate(-50%,-50%) translateY(0) rotate(-225deg);
    }
    #cs-navigation .cs-active .cs-line3
    {
        bottom: 100%;
        opacity: 0;
    }
    #cs-navigation .cs-box
    {
        width: clamp(1.5rem,2vw,1.75rem);
        height: 1rem;
        position: relative;
    }
    #cs-navigation .cs-line
    {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background-color: var(--primary);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    #cs-navigation .cs-line1
    {
        top: 0;
        transform-origin: center;
        transition: transform .5s,top .3S,left .3S;
        animation-duration: .7s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        animation-direction: normal;
    }
    #cs-navigation .cs-line2
    {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        transition: top .3s,left .3s,transform .5s;
        animation-duration: .7s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
        animation-direction: normal;
    }
    #cs-navigation .cs-line3
    {
        bottom: 0;
        transition: bottom .3s,opacity .3s;
    }
    #cs-navigation .cs-ul-wrapper
    {
        width: 100%;
        height: auto;
        padding-bottom: 3rem;
        opacity: 0;
        background-color: #fff;
        box-shadow: inset rgba(0,0,0,.2) 0 8px 24px;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: -1;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform .4s,opacity .3s;
    }
    #cs-navigation .cs-ul
    {
        margin: 0;
        padding: 3rem 0 0 0;
        width: 100%;
        height: auto;
        max-height: 65vh;
        overflow: scroll;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    #cs-navigation .cs-li
    {
        width: 100%;
        text-align: center;
        list-style: none;
        margin-right: 0;
        transform: translateY(-4.375rem);
        opacity: 0;
        transition: transform .6s,opacity .9s;
    }
    #cs-navigation .cs-li:nth-of-type(1)
    {
        transition-delay: .05s;
    }
    #cs-navigation .cs-li:nth-of-type(2)
    {
        transition-delay: .1s;
    }
    #cs-navigation .cs-li:nth-of-type(3)
    {
        transition-delay: .15s;
    }
    #cs-navigation .cs-li:nth-of-type(4)
    {
        transition-delay: .2s;
    }
    #cs-navigation .cs-li:nth-of-type(5)
    {
        transition-delay: .25s;
    }
    #cs-navigation .cs-li:nth-of-type(6)
    {
        transition-delay: .3s;
    }
    #cs-navigation .cs-li:nth-of-type(7)
    {
        transition-delay: .35s;
    }
    #cs-navigation .cs-li:nth-of-type(8)
    {
        transition-delay: .4s;
    }
    #cs-navigation .cs-li:nth-of-type(9)
    {
        transition-delay: .45s;
    }
    #cs-navigation .cs-li:nth-of-type(10)
    {
        transition-delay: .5s;
    }
    #cs-navigation .cs-li:nth-of-type(11)
    {
        transition-delay: .55s;
    }
    #cs-navigation .cs-li:nth-of-type(12)
    {
        transition-delay: .6s;
    }
    #cs-navigation .cs-li:nth-of-type(13)
    {
        transition-delay: .65s;
    }
    #cs-navigation .cs-li-link
    {
        font-size: clamp(1rem,2.5vw,1.5rem);
        line-height: 1.2em;
        text-transform: uppercase;
        font-weight: bold;
        text-decoration: none;
        margin: 0;
        color: var(--bodyTextColor);
        display: inline-block;
        position: relative;
    }
    #cs-navigation .cs-li-link.cs-active
    {
        color: var(--primary);
    }
    #cs-navigation .cs-li-link.cs-active:before
    {
        content: "";
        width: 100%;
        height: 2px;
        background: var(--primary);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -.25rem;
        left: 0;
        transition: width .3s;
    }
    #cs-navigation .cs-li-link:hover
    {
        color: var(--primary);
    }
    #cs-navigation .button-oval
    {
        display: none;
    }
}
@media only screen and (min-width: 64rem)
{
    #cs-navigation
    {
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
        position: absolute;
        z-index: 10000;
    }
    #cs-navigation:before
    {
        content: "";
        width: 100%;
        height: 0%;
        background: #1a1a1a;
        background: #0f0123;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        transition: height .3s;
    }
    #cs-navigation .cs-container
    {
        width: 100%;
        height: 6.3125rem;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1.5rem;
        position: relative;
    }
    #cs-navigation .cs-toggle
    {
        display: none;
    }
    #cs-navigation .cs-logo
    {
        width: 20%;
        margin: 0 auto 0 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }
    #cs-navigation .cs-logo img
    {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #cs-navigation .cs-ul-wrapper
    {
        position: absolute;
        right:-20%;
        top: 50%;
        transform: translate(-50%,-50%);
    }
    #cs-navigation .cs-ul
    {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
    }
    #cs-navigation .cs-li
    {
        list-style: none;
        padding: 2.5rem 1rem;
        flex: none;
    }
    #cs-navigation .cs-li-link
    {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        margin: 0;
        padding: 0 0;
        color: var(--bodyTextColorWhite);
        display: block;
        position: relative;
        z-index: 1;
        transition: color .3s;
    }
    #cs-navigation .cs-li-link:before
    {
        content: "";
        width: 0%;
        height: 2px;
        background: #fff;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -.25rem;
        left: 0;
        transition: width .3s;
    }
    #cs-navigation .cs-li-link:hover:before
    {
        width: 100%;
    }
    #cs-navigation .cs-li-link.cs-active:before
    {
        width: 100%;
    }
    #cs-navigation .button-oval
    {
        font-size: 1rem;
        line-height: clamp(2.875em,5.5vw,3.5em);
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 2rem;
        box-sizing: border-box;
    }
    #cs-navigation .cs-button-solid
    {
        font-size: 1rem;
        line-height: clamp(2.875em,5.5vw,3.5em);
        text-decoration: none;
        font-weight: 600;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 2rem;
        background-color: rgba(0,0,0,0);
        border: 1px solid var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
    }
    #cs-navigation .cs-button-solid:before
    {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: var(--primary);
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width .3s;
    }
    #cs-navigation .cs-button-solid:hover:before
    {
        width: 100%;
    }
}
#footer
{
    font-size: 14px;
    overflow-y: hidden;
    background-color: var(--primary);
}
#footer a
{
    color: var(--bodyTextColorWhite);
    opacity: .9;
}
#footer .container
{
    padding: 60px 20px 0 20px;
    margin: auto;
    position: relative;
    width: 100%;
}
#footer .container .spotlight
{
    width: 1031px;
    height: 589px;
    border-radius: 1031px;
    opacity: .200000003;
    background: #5f71f6;
    filter: blur(122px);
    position: absolute;
    bottom: -378px;
    left: 50%;
    transform: translateX(-50%);
}
#footer .content
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
#footer ul
{
    list-style-type: none;
}
#footer h2
{
    color: var(--bodyTextColorWhite);
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 20px;
}
#footer li
{
    line-height: 24px;
    margin-bottom: 10px;
}
#footer .contact img
{
    margin-right: .75rem;
    margin-top: .25rem;
}
#footer .contact-v2 a
{
    display: flex;
    align-items: center;
    gap: 1rem;
}
#footer .credit
{
    text-align: center;
    padding: 30px;
    margin-top: 30px;
    border-top: 1px solid #fff;
    color: var(--bodyTextColorWhite);
}
@media only screen and (min-width: 900px)
{
    #footer
    {
        font-size: 16px;
    }
    #footer .top-footer
    {
        margin-right: auto;
    }
    #footer .container
    {
        padding-top: 50px;
        max-width: 1180px;
    }
    #footer h2
    {
        margin-bottom: 20px;
    }
    #footer .content
    {
        flex-direction: row;
        justify-content: space-around;
        margin-bottom: 10px;
        text-align: start;
        align-items: start;
        column-gap: 5.25rem;
    }
    #footer .logo
    {
        height: 200px;
        width: auto;
    }
}