:root {
    --text-color: #06060a;
    --main-color: #302fbf;
    --main-shallow: rgba(48, 47, 191, 78%);
    --alter-color: #237155bf;
    --bright-color: #56e9b5b8;
    --real-color: #35cb95bf;
    --bluereel: #215aa3;
    --wow-main: linear-gradient(122deg, #06060a 15%, var(--main-color) 64%);
    --wow-rainbow: linear-gradient(130deg, #ff7a18, #af002d 41.07%, var(--main-color) 76.05%);
    --wow-cold-blue: linear-gradient(130deg, #0c0b2e, #000000 41.07%, var(--main-color) 76.05%);
    --red: rgb(233, 17, 17);
    --yellow: rgb(233, 180, 14);
    --bright-red: rgba(226, 76, 76, 0.952); /* rgba(233, 17, 17, 0.773) */
    --green: rgb(45, 167, 111);
    --bright-green: rgba(48, 192, 125, 0.897);
}
a { cursor: pointer; text-decoration: none; }


/* Text */
.text-height15 {line-height: 1.5;}
.text-left {text-align: left!important;}
.text-center{text-align: center!important;}
.text-bold {font-weight: 800!important;}
.text-bolder {font-weight: bold!important; }
.minor-heading {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.25em;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.plain-link {font-weight: 500; display: block; padding: .5rem 0rem; word-break: break-word;}
.plain-link:hover, .plain-link:active {color: var(--main-color);}

.right-reserve-section { font-size: 14px; font-weight: 500; padding: 1.3rem 7rem; }
.footer-caution-text { font-size: 13px; font-weight: 200; padding: 1rem 7rem}
.mega-heading {
    -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1; 
    font-size: 8rem; line-height: .9; font-weight: 400; letter-spacing: -5px;
}
pre {
    word-break: break-word;
    white-space: pre-line;
    /* font-size: 12px; */
}
.min-section-wrapper > * { margin-bottom: 0.5rem; }
.head-title, .fancy-text, .fancy-text-link {
    color: #06060a;
    -webkit-background-clip: text;
    font-weight: 900;
}
.fancy-text, .fancy-text-link  {
    font-weight: 500;
}

.fancy-text-link:hover {
    background: var(--wow-main);
    color: white;
    transition: all 0.25s ease-in;
    will-change: background-color;
}


/* Form */
.flex-form-box {
    display: flex; 
    align-items: center; 
    min-height: 94vh; 
    /* margin: 2rem; */ 
    flex-direction: column; 
    justify-content: center; 
}
.form-width { width: 500px;}
.af-body-container { min-height: 90vh; }

/* Inputs */
.global-input {
    border-radius: 5px;
    transition: box-shadow 0.35s ease;
    will-change: box-shadow;
    font-size: 16px;
    font-weight: 600;
    border: 0px solid var(--bluereel);
    box-shadow: 0px -2px 8px 0px rgba(45, 35, 66, 0.4), 
        0px 7px 13px -3px rgba(45, 35, 66, 0.3), 
        inset 0px -3px 0px rgba(54, 57, 90, 0.2);
    
}
.global-input:focus {
    box-shadow: 0px -1px 10px 6px rgb(54 57 90 / 37%), 
        0px 2px 4px rgba(45, 35, 66, 0.4), 
        0px 0px 0px 8px rgba(45, 35, 66, 0.3), 
        inset 1px 1px 4px 2px rgba(54, 57, 90, 0.2);
    margin-top: .2rem;
    margin-bottom: .2rem;
}
.global-input:active {
    box-shadow: -1px 1px 4px 6px rgba(54, 57, 90, 0.2);

}

/* Color */
.c-global {color: var(--main-color);}
.txt-white {color: #fff!important}
.c-green {color: var(--green);}
.c-red {color: var(--red);}



/* BG Color */
.bg-black {background-color: #252222;}
.bg-yellow {background-color: var(--yellow); color: #292f35;}
.bg-green {background-color: var(--green); color: white;}
.nav-bg {background-color: var(--bright-color);}
.bg-global {background-color: var(--main-color) !important}
.bg-alter {background-color: var(--alter-color)}
.bg-reelblue {background-color: var(--bluereel);}
.bg-wow-alter {background-image: linear-gradient(360deg,var(--alter-color) 20%, white 80%);}
.bg-wow-bluereel {background-image: linear-gradient(182deg, white 10%, var(--bluereel) 64%);}
.bg-wow-blackblue {background-image: linear-gradient(122deg, #06060a 10%, var(--bluereel) 64%);}
.bg-wow-blackalter {background-image: linear-gradient(122deg, #06060a 15%, #232524bf 64%);}
.bg-wow-main {background-image: linear-gradient(122deg, #06060a 15%, var(--main-color) 64%);}
.bg-wow-rainbow {background: var(--wow-rainbow); color: white;}
.wave-background {
    background-image: url(../image/wave-bg.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-red {
    background-color: rgba(233, 17, 17, 0.774);
    color: white;
}


/* Box Alignment */
.column-at-center {
    display: flex; 
    justify-content: center; /* align-self: center; */ 
    align-content: center; 
    align-items: center;
}
.bottomliner:before {
    content: "";
    position: absolute;
    /* top: 100%; */
    width: 100%;
    left: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--wow-main);
}
.gap-space10 {gap: 10px}
.box-raise-none { box-shadow: none;}
.border { border: 2px solid; border-radius: 10px; padding: 10px;}

/* Display*/
.hide { display: none !important;}
.show { display: initial !important;}
.flex {display: flex !important;}
.block {display: block!important;}


/* Button */
button { background-color: transparent; cursor: pointer;}
.menu-button { display: none; }
.link-button {
    margin-left: .2rem;
    margin-right: .2rem;
    padding: 10px 1px;
    color: #06060a;
    font-weight: 600;
    background-color: transparent;
    cursor: pointer;
    will-change: auto;
    transition: all 0.5s ease;
}
.link-button:hover {
    background-color: var(--main-shallow);
    color: #fff;
    transition: all 0.3s ease-out;
}
.link-button:active {
    color: var(--main-shallow);
    background-color: transparent;
    transition: all 0.2s ease-out;
}

.inflow-black-button, .inflow-blackalter-btn, .inflow-red-button, .inflow-green-button {
    margin-left: .2rem;
    margin-right: .2rem;
    padding: 13px 10px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.inflow-green-button {background-color: var(--green);}
.inflow-green-button:hover {background-color: var(--bright-green);}
.inflow-green-button:active {background-color: rgba(64, 206, 140, 0.5);}

.inflow-red-button { background-color: var(--red); }
.inflow-red-button:hover { background-color: var(--bright-red);}
.inflow-red-button:active {background-color: rgba(233, 17, 17, 0.5);}

.inflow-black-button { background-color: var(--text-color); }
.inflow-black-button:hover { background-color: rgba(20, 19, 19, 0.767);}

.inflow-blackalter-btn {
    background-color: var(--text-color);
    background-image: linear-gradient(122deg, #06060a 15%, var(--alter-color) 64%);
}
.inflow-blackalter-btn:hover {
    background-image: linear-gradient(122deg, var(--alter-color)15%,  #06060a 64%);
}


.bg-on-button-black, .bg-on-button-global, .bg-on-link-button {
    background-color: white;
    color: #06060a;
    border-radius: .5rem;
    border: 1px solid var(--bright-color);
    margin-left: .2rem;
    margin-right: .2rem;
    padding: 13px 10px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0px -2px 8px 0px rgba(45, 35, 66, 0.4), 
    0px 7px 13px -3px rgba(45, 35, 66, 0.3), 
    inset 0px -3px 0px rgba(54, 57, 90, 0.2);
    text-align: center;
    min-width: 20%;
}
.bg-on-link-button:hover { background-color: var(--main-color); color: #fff;}
.bg-on-link-button:active { background-color: var(--main-color); color: #fff;}

.bg-on-button-global {
    background-color: var(--main-color);
    color: #ffffff;
    border: 1px solid #ffe;
}
.bg-on-button-global:hover, .bg-on-button-global:active {
    background-color: rgba(47, 47, 191, 0.863);
}
.bg-on-button-black{
    background-color: var(--text-color);
    color: #ffffff;
    border: 1px solid #ffe;
}
.bg-on-button-black:hover, .bg-on-button-black:active {
    background-color: #00000071;
}



/* Container*/
.main-container {display: block; box-sizing: border-box; }
.footer-row{
    /* justify-content: space-between */
    display: flex; 
    justify-content: center; /* align-self: center; */ 
    align-content: center;
    flex-wrap: wrap; 
    box-sizing: border-box;
}
.main-footer {
    /* border-top: 1px solid rgb(186 188 221 / 62%); */
    /* padding: 2rem; */
    box-shadow: 0px -1px 4px -3px rgb(0 0 0 / 69%);
    /* background-color: #363434;
    color: #fff; */
}
.footer-card { 
    max-width: 300px !important;
    /* width: 300px !important; */ 
    padding: .5rem;
}
.flex-box {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}
.step-card {
    max-width: 300px;
    width: 300px;
    display: block;
    border-radius: 10px;
    /* border: 1px solid black; */
    padding: 2rem 1rem;
    box-shadow: 4px 3px 22px 9px rgb(37 44 97 / 15%), -1px 0px 9px 0 rgb(93 100 148 / 20%);
    height: auto;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    will-change: box-shadow,transform;
    border-radius: 10px;
    /* background-position: 100% 100%,0 0;
    background-size: contain, auto;
    background-repeat: no-repeat, repeat; */
    opacity: 1;
}
.step-card:hover{
    box-shadow: 0px 4px 8px rgba(45, 35, 66, 0.4), 
        0px 7px 13px -3px rgba(45, 35, 66, 0.3), 
        inset 0px -3px 0px rgba(54, 57, 90, 0.2);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.step-card-number {font-size: 5.5rem; font-weight: 800; line-height: 1; word-break: break-word; padding-bottom: 2rem;}
.step-card-title {font-size: 3rem; font-weight: 400; line-height: 1; word-break: break-word; padding-bottom: 1.3rem;}
.step-card-text {line-height: 1.3; font-size: .9rem;}
.privacy-box {
    display: block;
    border-radius: 10px;
    /* border: 1px solid black; */
    padding: 2rem 1rem;
    box-shadow: 4px 3px 22px 9px rgb(37 44 97 / 15%), -1px 0px 9px 0 rgb(93 100 148 / 20%);
    
}
.container-card {
    width: 100%;
    display: block;
    /* border: 1px solid black; */
    box-shadow: 0px -2px 8px 0px rgba(45, 35, 66, 0.4), 
    0px 7px 13px -3px rgba(45, 35, 66, 0.3), 
    inset 0px -3px 0px rgba(54, 57, 90, 0.2);
    height: auto;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    will-change: box-shadow,transform;
    border-radius: 10px;
    /* background-position: 100% 100%,0 0;
    background-size: contain, auto;
    background-repeat: no-repeat, repeat; */
}
.goal-box {
    border: 2px solid black;
    border-radius: 10px;
    padding: 10px;
}


/* Nav */
.from720-nav-space { align-items: initial; }
.mobile-nav-box {display: none;}


/* Padding and Margin */
.header-box { padding: 7rem; padding-bottom: 5rem; padding-top: 8rem;}
.header-title {font-size: 4.125rem; font-weight: 400; line-height: 1.15;}
.header-text {font-weight: 500; font-size: 20px; line-height: 1.2;}
.header-button {padding: 1rem 2rem; cursor: pointer;}
.header-2nd-title {font-size: 3.125rem; font-weight: 400; line-height: 1.2;}
.header-2nd-text {font-weight: 500; font-size: 20px; line-height: 1.3;}
.section-wrapper { width: 100%; gap: 20px; padding: 2.5rem; }
.section-box { padding: 7rem; padding-bottom: 5rem; padding-top: 4rem; }
.section-2nd-box { padding: 4rem 5rem }
.min-section-wrapper { width: 100%; gap: 10px; padding: 1rem; }
.af-space-vertical{ padding-top: 1rem!important; padding-bottom: 1rem!important; }


/* Font-Weight */
.fw-900{font-weight: 900!important;}


/* Width & Height */
.limit-box-to400 {max-width: 400px!important;}
.auto-height{height: auto;}
.size-icon { 
    width: 90px; 
    height: 90px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 25px; 
    border-radius: 50%;
}
.mutual-form-width {
    max-width: 500px;
}


/* Inputs */
.textarea {
    min-height: 12vh; 
    padding: 0.3rem 0.5rem; 
    line-height: 1.2; 
    font-size: 1rem; 
    width: 100%; 
    font-weight: 500; 
    border-radius: 5px;
}
.textarea:focus, .textarea:hover, .textarea:focus-visible {
    border: 1px dashed var(--bluereel);
    outline: none;
}
.af-large-input, .af-input{
    border: 3px solid #7082a2e8;
    border-radius: 10px;
    font-size: 13px;
}


/* Dashboard section*/
.sidebar-container {
    display: flex; 
    flex-direction: column;
    min-height: 100vh; 
    width: 320px; 
    max-width: 320px; 
    min-width: 320px;
    padding: 5rem 2rem;
    border-right: 1px solid rgb(179, 170, 170);
    background-color: var(--main-color);
    color: white;
    gap: 20px;
    overflow: auto;
    z-index: 3;
    position: relative;
}
.sidebar-wrap {
    position: fixed;
    width: 16rem;
    display: grid;
    gap: 10px;
}

.space-nav-header {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flexbox;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    position: fixed;
    padding-right: 1.5rem;
    background-color: white;
    z-index: 3;
    padding-bottom: 1.2rem
}
.long-special-box {
    border: 1px solid var(--main-shallow);
    border-radius: 10px;
}


/* Animation */
.basic-position {transform: translate(0px, 0px) !important;}
.rotateby90 { transform: rotate(90deg)!important; }
.spinner {
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



@media screen and (max-width: 1200px) {
    .footer-row{
        justify-content: space-between;
    }
    .footer-card { max-width: 24% !important; width: 24%; }
    .section-wrapper { width: 100%; gap: 20px; padding: 0rem;}
    .step-card { max-width: 30%; width: 30%; }
    .step-card-number {font-size: 5.3rem;}
    .step-card-title {font-size: 2.8rem;}

    /*Dashboard section*/
    .sidebar-container {
        width: 300px; max-width: 300px;
        position: fixed;
        transform: translate(-1000px, 0px);
        transition: all 0.35s ease;
        will-change: transform, translate;
    }
}


@media screen and (max-width: 1000px) {
    /* Text */
    .mega-heading { font-size: 6rem; letter-spacing: -4px; }

    /* Display */
    .menu-button { display: initial; }
    .desktop-nav-box {display: none;}
    .mobile-nav-box {display: flex;}
    .from1000-hide {display: none}
    .from1000-show {display: inherit!important;}

    /* Nav */
    .mobile-nav-option-area, .mobile-nav-area {
        flex-direction: column;
        align-items: normal;
    }
    .mobile-nav-option-area { margin-top: 1rem; height: 100vh;}
    .mobile-nav-header {
        display: flex;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: -ms-flexbox;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
    }

    /* Margins */
    .link-button {margin: 10px 0px;}
    .bg-on-link-button, .bg-on-button-global, .bg-on-button-black { padding: 8px 8px 10px }
    .mobile-menu-icon { transform: rotate(180deg); }

    .header-box {padding: 6rem 4rem 4rem 4rem;}
    .header-title {font-size: 3.5rem;}

    .header-2nd-title {font-size: 2.55rem; }
    .header-2nd-text { font-size: 18px; }

    .section-wrapper { gap: 15px; padding: 2rem; }
    .section-box { padding: 5rem; padding-bottom: 4rem; padding-top: 4rem; }
    .section-2nd-box { padding: 3.5rem 3.5rem }
    /* Width*/
    .limit-box-to400 {max-width: 100%!important;}
    /* Footer*/
    .right-reserve-section { font-size: 14px; padding: 1.3rem 4rem; }
    .footer-caution-text { font-size: 13px; padding: 1rem 4rem}
    .footer-card {width: 25%; max-width: 25% !important; }
    /* Special Card*/
    .step-card {max-width: 100%; width: 100%;}
    .step-card-number {font-size: 5rem;  padding-bottom: 1.3rem;}
    .step-card-title {font-size: 2.5rem; padding-bottom: 1.3rem;}
}


@media screen and (max-width: 720px) {
    .from720-hide {display: none;}
    .from720-show {display: initial!important;}

    /* Margins and Paddings */
    .header-box { padding-bottom: 3rem; padding-left: 3rem; padding-right: 3rem;}
    .header-title {font-size: 2.125rem;}
    .header-2nd-title {font-size: 1.9rem;  }
    .section-wrapper { gap: 10px; padding: 1.5rem; }
    .section-box { padding: 3rem; padding-bottom: 3rem; padding-top: 3rem; }
    .section-2nd-box { padding: 3rem 2.5rem }

    /* Footer*/
    .right-reserve-section { font-size: 14px; padding: 1.3rem 3rem; }
    .footer-caution-text { font-size: 13px; padding: 1rem 3rem}
    .footer-card {width: 50%; max-width: 50% !important; }

    /* Special Card*/
    .step-card {max-width: 100%; width: 100%;}
    .step-card-number {font-size: 4rem;  padding-bottom: 1rem;}
    .step-card-title {font-size: 2.1rem; padding-bottom: 1rem;}

    /* Text */
    .mega-heading {font-size: 4.5rem; letter-spacing: -3px; }

    /* Size */
}


@media screen and (max-width: 576px) {
    /* Display */
    .from576-hide {display: none;}
    .from576-show {display: initial !important;}

    /* Width & Height */
    .flex-form-box { /* margin: 2rem 1rem; */ }

    /* Text*/
    .plain-link {font-size: 14px;}
    .mega-heading {font-size: 3.5rem; letter-spacing: -1px; }
    
    /* Footer*/
    .main-footer {
        /* border-top: 1px solid rgb(186 188 221 / 62%); */
        font-size: 13px;
        /* padding: 1rem; */
        box-shadow: 0px -1px 4px -3px rgb(0 0 0 / 69%);
    }
    .right-reserve-section { font-size: 14px; padding: 1rem 2rem; }
    .footer-caution-text { font-size: 13px; padding: 1rem 2rem}
    .footer-card {width: 100%; max-width: 100% !important; padding: 1.5rem 0rem; }

    /* Img */
    .mobile-menu-icon {
        width: 20px;
        height: 20px;
        transform: rotate(180deg);
    }

    /* Margins and Paddings */
    .header-button {padding: .51rem .2rem; font-size: 14px;}
    .header-box {padding-bottom: 3rem; padding-left: 1rem; padding-right: 1rem;}
    .section-wrapper { gap: 8px; padding: 0rem; }
    .section-box { padding: 1rem; padding-bottom: 2rem; padding-top: 3rem; }
    .section-2nd-box { padding: 2rem 1rem }
    .section-wrapper  p { text-align: center;}
    .min-section-wrapper { gap: 7px; padding: .7rem; }

    /* Special Card*/
    .step-card {max-width: 100%; width: 100%;}
    .step-card-number {font-size: 2.5rem;  padding-bottom: .8rem;}
    .step-card-title {font-size: 1.8rem; padding-bottom: .8rem;}
    .step-card-text {font-size: 14px;}

    /* Dashboard section */
    .sidebar-container {/* width: 260px;*/ width: 100%; max-width: 100%; min-width: 100%; gap: 10px; padding: 5rem 1rem;}
    .sidebar-wrap { width: 90%; }

    /* Button */
    .affect-button {
        padding-left: 5px;
        padding-right: 5px;
    }
    .inflow-black-button, .inflow-blackalter-btn, .inflow-red-button, .inflow-green-button {
        font-size: .78rem;
        padding: 10px 10px;
        line-height: 1;
    }

}

@media screen and (max-width: 368px) {
    
}