body,
body * {
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #0B073F;
}

body {
background-color: #0e0e0e !important;
}

/* For Mobile */
@media (max-width: 640px) {
body {
    width: fit-content;
}
}

body .boxed {
margin: 0px auto;
padding: 0px 10px;
width: 100%;
max-width: 1200px;
}

body .btn {
    padding: 10px 15px;
    color: #fff; /*#94A7C6;*/
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

    body .btn.lg {
        font-size: 18px;
        padding: 20px 25px;
        border: 1px solid #FFF;
        background-color: #0B073F;
    }

body .btn.sm {
    padding: 8px 13px;
    font-size: 11px;
    font-weight: 600;
}

    body .btn:hover {
        color: white;
        background-color: transparent;
        border: 1px solid white;
    }

body .btn.border {
    color: #ffaa00;
    background-color: transparent;
}

    body .btn.border:hover {
        color: #0e0e0e;
        background-color: #ffaa00;
    }

body header {
    padding: 13px 0px;
    border-bottom: 1px solid #fff;
    background-color: #0B073F;
    backdrop-filter: blur(20px) saturate(300%);
    position: sticky;
    height: 70px;
    top: 0;
    z-index: 99;
}

body header .boxed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

    body header .boxed a.logo {
        height: 100%;
    }

        body header .boxed a.logo img {
            height: 100%;
        }

    body header .boxed .links {
        display: flex;
        align-items: center;
    }

        body header .boxed .links a:not(.btn) {
            padding: 10px 10px;
            line-height: 1;
            font-size: 14px;
            text-decoration: none;
            color: #94A7C6;
            font-weight: bold;
        }

            body header .boxed .links a:not(.btn):hover {
                color: #fff;
            }

        body header .boxed .links a:not(:last-child) {
            margin-right: 2px;
        }

        body header .boxed .links a.btn {
            border-radius: 3px;
            margin-left: 10px;
        }

body .fader {
height: 200px;
}

body section.padder {
padding: 120px 0px 50px 0px;
}

body section.padder_small {
padding: 40px 0px 30px 0px;
}

body section h2.title {
font-size: 40px;
font-weight: 100;
}

body section h2.title span {
    font-weight: 700;
    color: #ffaa00;
}

body section div.body {
padding: 50px 0px;
margin-top: 20px;
}

body section div.body p {
    font-size: 16px;
    line-height: 1.8;
}

    body section div.body p:not(:last-child) {
        margin-bottom: 20px;
    }

    body section div.body p.special {
        margin: 30px 0px;
        text-align: center;
        font-size: 20px;
        font-style: italic;
        color: #ffaa00;
        font-weight: 700;
    }

    body section div.body p .highlight {
        color: #ffaa00;
        font-weight: 700;
    }

body section div.body .info p {
    padding-left: 30px;
    position: relative;
}

    body section div.body .info p::before {
        content: "";
        left: 0;
        top: 8px;
        position: absolute;
        width: 10px;
        height: 10px;
        background-color: #ffaa00;
    }

/*body section#banner {
height: calc(100vh - 70px);
padding: 70px 0px;
position: relative;
}*/

body section#banner {
height: calc(100vh - 70px);
padding: 30px 0px;
position: relative;
background: url(../images/back_anim.gif);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}

body section#banner .boxed {
    display: flex;
}

    body section#banner .boxed img {
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -1;
    }

    body section#banner .boxed .banner_content {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding-top: 90px;
    }

        body section#banner .boxed .banner_content h1 {
            text-align: center;
            font-size: 50px;
            font-weight: 100;
        }

            body section#banner .boxed .banner_content h1 span {
                font-weight: 700;
                color: #94A7C6;
            }

        body section#banner .boxed .banner_content p {
            margin-top: 20px;
            font-size: 18px;
            color: #c3c3c3;
            font-weight: 400;
        }

        body section#banner .boxed .banner_content .btn {
            position: absolute;
            bottom: 100px;
        }

body section#why .grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 30px;
}

body section#why .grid .item {
    background: black;
    padding: 25px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-top: 4px solid #ffaa00;
}

    body section#why .grid .item img {
        width: 70px;
        margin-bottom: 30px;
        position: relative;
    }

    body section#why .grid .item .text p {
        text-align: center;
    }

body section.wave_back {
display: flex;
flex-direction: column;
justify-content: space-between;
}

body section.wave_back .bottom_wave {
    position: relative;
}

body section.wave_back .top_wave {
    position: relative;
}

body section.wave_back .backdrop {
    background-color: #ffaa00;
    flex: 1;
    z-index: 11;
}

body section.wave_back .title {
    color: #0e0e0e;
    margin-top: -60px;
}

    body section.wave_back .title span {
        color: #fff;
    }

body section#use_case .body {
padding: 30px 0px;
}

body section#use_case .body .grid {
    display: grid;
    grid-gap: 30px;
}

    body section#use_case .body .grid.grid-3 {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 30px;
    }

    body section#use_case .body .grid.grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    body section#use_case .body .grid .item {
        display: flex;
        align-items: center;
        padding: 7px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 40px;
        box-shadow: 0px 20px 30px rgba(255, 224, 0, 0.5);
    }

        body section#use_case .body .grid .item .image {
            margin-right: 20px;
            background-color: #ffaa00;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            padding: 10px;
            margin-left: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body section#use_case .body .grid .item .text {
            margin-right: 10px;
        }

            body section#use_case .body .grid .item .text p {
                font-size: 15px;
                color: #0e0e0e;
                line-height: 1.5;
            }

body section#roadmap .body .roadmap_container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 30px;
}

body section#roadmap .body .roadmap_container .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    body section#roadmap .body .roadmap_container .item .time {
        width: 100%;
        background-color: #ffaa00;
        padding: 10px 20px;
        border-radius: 30px;
        color: #0e0e0e;
        font-size: 18px;
        font-weight: 600;
    }

    body section#roadmap .body .roadmap_container .item .tasks {
        margin-top: 10px;
        position: relative;
    }

        body section#roadmap .body .roadmap_container .item .tasks:before {
            width: 2px;
            position: absolute;
            height: calc(100% + 20px);
            background-color: #ffaa00;
            top: -30px;
            border-radius: 2px;
        }

        body section#roadmap .body .roadmap_container .item .tasks p {
            padding-left: 20px;
            position: relative;
        }

            body section#roadmap .body .roadmap_container .item .tasks p:not(:last-child) {
                margin-bottom: 15px;
            }

            body section#roadmap .body .roadmap_container .item .tasks p:before {
                content: "";
                position: absolute;
                width: 10px;
                height: 2px;
                background-color: #ffaa00;
                left: 0;
                top: 12px;
            }

body section#overview .body .grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 50px;
}

body section#overview .body h3 {
margin-bottom: 30px;
color: #ffaa00;
}

body section#utilities .body .grid {
display: grid;
grid-gap: 30px;
}

body section#utilities .body .grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
}

body section#utilities .body .grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

body section#utilities .body .grid .item {
    display: flex;
    align-items: center;
}

    body section#utilities .body .grid .item .image {
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffaa00;
        padding: 10px;
        border-radius: 7px;
        margin-right: 20px;
    }

    body section#utilities .body .grid .item .text p {
        font-size: 14px;
    }

body section#token_detail .body .grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 30px;
}

body section#token_detail .body .grid .item {
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #ff8200;
    position: relative;
}

    body section#token_detail .body .grid .item p {
        margin-bottom: 0px;
        color: #0e0e0e;
    }

        body section#token_detail .body .grid .item p.item_title {
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 700;
            position: absolute;
            top: -12px;
            left: 11px;
            background-color: #ffaa00;
            padding: 0px 10px;
        }

        body section#token_detail .body .grid .item p.amount {
            font-size: 25px;
            font-weight: 100;
        }

            body section#token_detail .body .grid .item p.amount span {
                font-size: 14px;
                color: #0e0e0e;
                font-weight: 700;
            }

body section#team .body .grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 30px;
}

body section#team .body .grid .member {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    body section#team .body .grid .member .image {
        width: calc(100% + 3px);
        height: 200px;
        margin-top: -3px;
        margin-left: -3px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        body section#team .body .grid .member .image img.image_1 {
            width: 100%;
            position: absolute;
            z-index: 0;
            filter: blur(10px);
        }

        body section#team .body .grid .member .image img.image_2 {
            height: 100%;
            position: relative;
            z-index: 1;
        }

        body section#team .body .grid .member .image .image_fader {
            background: linear-gradient(0deg, #000, rgba(0, 0, 0, 0));
            width: 100%;
            height: calc(100%);
            position: absolute;
            top: 100%;
        }

    body section#team .body .grid .member .detail {
        padding: 20px;
        position: relative;
        z-index: 1;
        background: #000;
        border-radius: 20px;
    }

        body section#team .body .grid .member .detail .name_position h4 {
            font-size: 18px;
            color: #ffaa00;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            body section#team .body .grid .member .detail .name_position h4 span {
                font-size: 12px;
                color: #fff;
                padding: 5px 15px;
                background-color: #ffc80040;
                border-radius: 40px;
                border: 1px solid #ffaa00;
            }

        body section#team .body .grid .member .detail .information {
            margin-top: 20px;
        }

            body section#team .body .grid .member .detail .information p {
                font-size: 13px;
                line-height: 1.4;
            }

body div.footer {
    border-top: 1px solid #FFF;
    background-color: #0B073F;
    padding: 40px;
    padding-bottom: 0px;
}

body div.footer p.copyright {
    font-size: 14px;
    margin: 20px 10px;
}

    body div.footer h4 {
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 16px;
        color: #0D6EFD;
    }

    body div.footer h4 a{
        text-decoration: none !important;
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 16px;
        color: #0D6EFD !important;
    }

body div.footer .footer_links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 4px;
}

    body div.footer .footer_links a:hover {
        opacity: 0.7;
    }

body section#team .body .grid .member:hover .member_image img {
transform: scale(0.75) translate(0px, 0px);
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
}

body section#team .body .grid .member .member_image {
width: 200px;
height: 200px;
/* overflow: hidden; */
margin-bottom: 10px;
border-radius: 4px;
background-color: #2867b2;
position: relative;
}

body section#team .body .grid .member .member_image .member_link {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translate(-50%, 0%);
    font-size: 50px;
    display: flex;
    color: #fff;
}

body section#team .body .grid .member .member_image img {
    width: 100%;
    height: 100%;
    transform-origin: top;
    transition: 0.2s all ease-in-out;
    border-radius: 4px;
    position: relative;
    z-index: 99;
    filter: grayscale(1);
}

colLabel {
    vertical-align: middle;
    font-weight: 700;
    font-size: medium;
}