:root {
    --dark: #000000;
    --dark1st: #0e1111;
    --dark2nd: #111616;
    --dark3rd: #232b2b;
    --dark4th: #101414;
    --dark5th: #090909;
    --dark6th: #101313;
    --dark7th: #1e2121;
    --dark8th: #181b1b;
    --white: #ffffff;
    --white1st: #414a4c;
    --white2nd: #1d2327;
    --borderradius: 10px;
    --orange: #ff9900;
    --red: #a60f0f;
    --alert_red: #850202eb;
    --alert_green: #1a3e0ef7;
}

html {
    background: linear-gradient(90deg, var(--dark) 15px, transparent 1%) 50%, linear-gradient(var(--dark) 15px, #5b5b5b 1%) 0, hsla(0, 0%, 100%, .16) !important;
    background-size: 16px 16px !important;
    font-family: system-ui !important;
    display: block;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
}
body {
    color: var(--white);
    fill: var(--white);
    font-size: 1em;
    margin: 0px !important;
    padding: 0px !important;
    cursor: default;
    display: block;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}

p, ul {
    font-size: 1.2em;
    margin: 0px;
}

h1, h2, h3, h4 {
    margin: 0px;
}

.title_for_desktop {
    display: block;
}

/*  hide scrole bar */
@media screen and (max-width: 768px) {
    html, body {
        overflow: hidden;
        overflow-y: auto;
        -ms-overflow-style: none;  /* For Internet Explorer */
        scrollbar-width: none;     /* For Firefox */
    }

    body::-webkit-scrollbar, html::-webkit-scrollbar {
        display: none;  /* For Chrome, Safari, and Edge */
    }

    .title_for_desktop {
        display: none;
    }
}

.disable {
    pointer-events: none;
    opacity: 0.4;
    user-select: none;
}

.fullwidth {
    width: 100%;
    width: -webkit-fill-available;
    width: fill-available;
    box-sizing: border-box;
}

.orange {
    color: var(--orange);
}

.p_title {
    display: block;
    text-transform: uppercase;
    font-size: 1.4em;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

h1, h2, h3 {
    text-transform: uppercase;
}

a {
    color: var(--orange);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

svg {
    width: 20px;
    margin: -4px auto;
}

.button {
    background-color: var(--white);
    border-radius: var(--borderradius);
    color: var(--dark1st);
    cursor: pointer;
    text-align: center;
    justify-content: center;
    padding: 15px 20px;
    margin: 10px 0px;
    height: fit-content;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    gap: 30px;
    align-items: center;
    text-transform: uppercase;
}
.button > svg {
    width: 30px;
}
.button:hover {
    background-color: var(--orange);
    color: var(--white);
}

.section {
    display: grid;
    width: -webkit-fill-available;
    max-width: 1300px;
    padding: 10px;
    margin: 50px auto;
    position: relative;
    z-index: 2;
}

.section_title {
    margin-bottom: 0px !important;
    background: url();
    border-radius: 0px;
    border-left: 10px solid var(--dark3rd);
    padding-left: 20px;
}
.section_title  {
    text-transform: uppercase;
}
@media screen and (min-width: 1300px) {
    .section {
        margin: 30px auto;
    }
}


/****************************
    <>
    <>  SAIUNES NAVIGATION
    <>
****************************/
.navigation {
    margin: 0px auto;
    z-index: 9999;
    padding: 0px;
}

nav {
    display: flex;
    gap: 10px;
    border-radius: var(--borderradius);
    margin: 20px auto;
    width: 100%;
    max-width: 800px;
    padding: 0px 10px;
    background: var(--dark1st);
    box-shadow: 0px 0px 130px 0px #3c3c3c;
}

nav > img {
    width: 60px;
    height: 60px;
    border-radius: var(--borderradius);
    margin: auto 0px;
}

.navmenu {
    float: left;
    display: flex;
    gap: 20px;
    padding: 10px 15px;
    margin: auto 100px auto 0px;
    height: fit-content;
    border-radius: var(--borderradius);
}

.navmenu > span {
    font-weight: 900;
    cursor: pointer;
    font-size: 1.2em;
    margin: auto;
    text-transform: uppercase;
}
.navmenu > .span_dark {
    padding: 8px 15px;
    margin: 0px -3px;
    border-radius: var(--borderradius);
    background: var(--dark7th);
}

.navmenu > span:hover {
    color: var(--orange);
}

.open_menu_mobile, .nav_menu_mobile {
    display: none;
}

.navig {
    margin: auto 0px auto auto;
    display: flex;
    gap: 6px;
}
.navig > svg {
    width: 40px;
    margin: auto;
    cursor: pointer;
}
.navig > svg:hover {
    fill: var(--orange);
}

@media screen and (max-width: 900px) {
    nav {
        width: 90%;
    }

    .navmenu {
        display: none;
    }

    .open_menu_mobile {
        display: block;
        width: 2em;
        margin: 0;
        padding-right: 20px;
    }

    .nav_menu_mobile {
        position: absolute;
        background: var(--dark3rd);
        font-weight: 700;
        margin: 30px 80px;
        min-width: 180px;
        padding: 20px;
        gap: 10px;
        border-radius: var(--borderradius);
        z-index: 9999;
    }

    .nav_menu_mobile > span {
        text-transform: uppercase;
    }

}

/****************************
    <>
    <>  SAIUNES MAIN HEADER
    <>
****************************/
.main_header {
    text-align: center;
    font-size: clamp(1.15rem, 3.2vw, 1.5rem);
    margin: 60px auto 100px auto;
    display: grid;
    gap: 30px;
}

.main_header_box {
    display: grid;
    gap: 30px;
}

/*  >>>  */
.highlight_247 {
    margin-right: 10px;
}
.highlight_247 > img {
    width: 160px;
    position: absolute;
    margin-left: -41px;
    margin-top: 0px;
    rotate: 180deg;
}

/*  ////    */
.main_header_samples {
    display: flex;
    gap: 10px;
    margin: auto;
}
.main_header_samples_p {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.main_header_samples_p > img {
    width: 230px;
    max-height: fit-content !important;
    border-radius: var(--borderradius); user-select: none; pointer-events: none;
}

/*  ////    */
.main_header_box > h1 {
    max-width: 660px;
    margin: auto;
}
.main_header_box > p {
    max-width: 570px;
    margin: auto;
}
.main_header_box > p > b {
    color: var(--orange);
}


.get_started {
    display: block;
    color: var(--white);
    background-color: var(--orange);
    font-size: 2em;
    text-transform: uppercase;
    text-align: center;
    
    border-radius: var(--borderradius);
    box-sizing: border-box;
    
    max-width: 600px;
    padding: 10px 10px;
    margin: auto !important;
}
.get_started:hover {
    background-color: var(--dark7th);
}

@media screen and (max-width: 1022px) {    
    /*  ||||    */
    .main_header_samples {
        display: grid;
    }
    .main_header_samples_p > img {
        width: 42%;
        max-height: fit-content !important;
        border-radius: var(--borderradius);
    }
    /*  ||||    */

    .main_header_box {
        display: grid;
    }
    .main_header_box > h1 {
        font-size: 1.40em;
        max-width: 450px;
    }
    .highlight_247 > img {
        width: 86px;
        margin-left: -18px;
    }
}

@media screen and (max-width: 656px) {
    .main_header_box > h1 {
        max-width: 380px;
    }
}

/****************************
    <>
    <>  SAIUNES FOOTER
    <>
****************************/
.footer {
    max-width: 620px;
    margin: 60px auto;
    text-align: center;
    background: var(--dark);
    color: var(--white1st);
    border-radius: var(--borderradius);
    padding: 20px;
}
.footer p {
    font-size: 1em;
}

.policy {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px 0px;
    border-radius: 5px;
}
.policy > a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--white1st);
}
.policy > a:hover {
    fill: var(--orange);
    color: var(--orange);
}

/****************************
    <>  POLICY PAGES
****************************/
.policies {
    max-width: 800px;
    font-size: 1.2em;
    line-height: 1.8em;
    letter-spacing: 2px;
    padding: 10px;
}
.policies > h1 {
    margin: 0px;
}
.policies > h2 {
    margin: 25px 0px 5px 0px;
}
.policies > p, .policies > ul {
    margin: 0px;
}
