:root {
    --bs-gradient: linear-gradient(60deg, rgba(147, 63, 254, 1) 0%, rgba(24, 200, 255, 1) 100%);
    --bs-dark-rgb: 21, 21, 23;
    --bs-secondary-rgb: 130, 130, 130;
}

.loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background-color: #0B0B0F;
    z-index: 9999;
}

.loader {
    width: 190px;
    height: 30px;
    display: grid;
    color: #18c8ff;
}

.loader:before,
.loader:after {
    content: "";
    grid-area: 1/1;
    --c: #0000 calc(100%/3), #18c8ff 0 calc(2*100%/3), #0000 0;
    --c1: linear-gradient(90deg, var(--c));
    --c2: linear-gradient(0deg, var(--c));
    background: var(--c1), var(--c2), var(--c1), var(--c2);
    background-size: 300% 2px, 2px 300%;
    background-repeat: no-repeat;
    animation: l15 1.5s infinite;
}

.loader:after {
    animation-delay: -.75s;
}

@keyframes l15 {
    0% {
        background-position: 50% 0, 100% 100%, 0 100%, 0 0
    }

    25% {
        background-position: 0 0, 100% 50%, 0 100%, 0 0
    }

    50% {
        background-position: 0 0, 100% 0, 50% 100%, 0 0
    }

    75% {
        background-position: 0 0, 100% 0, 100% 100%, 0 50%
    }

    75.01% {
        background-position: 100% 0, 100% 0, 100% 100%, 0 50%
    }

    100% {
        background-position: 50% 0, 100% 0, 100% 100%, 0 100%
    }
}


body {
    font-family: "Inter", sans-serif;
    background-color: #0B0B0F;
    color: #fff;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(60deg, rgba(147, 63, 254, 1) 0%, rgba(24, 200, 255, 1) 100%);
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: inherit;
}

input,
button,
textarea {
    appearance: none;
    border: none;
    outline: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.fs-14 {
    font-size: 14px;
}

.p-30 {
    padding: 30px;
}

.inner-gap {
    gap: 10px;
}

.opacity-60 {
    opacity: .6;
}

.bg-gradient {
    background: var(--bs-gradient);
}

.w-fit {
    width: fit-content;
}

.offcanvas {
    --bs-offcanvas-width: 250px;
}

.inner-space-sm,
.inner-space,
.inner-space-lg {
    padding: 40px 0;
}

.bg-props {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fw-black {
    font-weight: 900;
}

.text-gradient {
    background: var(--bs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header {
    position: absolute;
}

.header-sticky {
    position: fixed;
    z-index: 1000;
    background-color: rgba(11, 11, 15, .6);
    backdrop-filter: blur(20px);
}

/* select 2 default style */

.select2.select2-container.select2-container--default {
    width: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single {
    padding: 16px;
    height: auto;
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    outline: none;
    border: none;
    background-color: rgba(11, 11, 15, .5);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white;
    padding: 0;
}

.select2-selection__arrow::after {
    content: '';
    background-image: url('../images/down-solid.svg');
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 25px;
    height: 25px;
}

.select2-dropdown {
    background-color: #0B0B0F;
    color: #fff;
    border: 1px solid #3D3D48;
    font-size: 14px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: transparent;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: static;
    display: grid;
    place-items: center;
}

/* select 2 default style */

.download-btn .select2-container--default .select2-selection--single {
    background: var(--bs-gradient);
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    padding: 11px 29px;
    border: 1px solid #ffffffa8;
}

.lang .select2-container--default .select2-selection--single {
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 6px 18px;
    font-size: 18px;
    font-weight: 600;
}

.lang .select2-selection__arrow::after {
    background-image: url('../images/down.svg');
}

.subscribe {
    background-color: #222229;
    border-radius: 0.375rem;
    padding: 8px;
    display: flex;
    gap: 8px;
    padding-left: 16px;
}

.subscribe input {
    width: 100%;
    color: #fff;
    background-color: transparent;
    font-size: 14px;
}

.subscribe button {
    min-width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
}

.hero {
    background-image: url('../images/hero-bg.png');
    padding-top: 140px;
    padding-bottom: 40px;
}

h1 {
    font-weight: 900 !important;
}

.social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    display: grid;
    place-content: center;
    background-color: #0B0B0F;
    border-radius: 10px;
}

.social-icons li {
    background: var(--bs-gradient);
    padding: 1px;
    border-radius: 10px;
}

.interest-calculator {
    margin: 0 auto;
    max-width: 795px;
    background-color: rgba(28, 28, 28, .6);
    padding: 30px;
    border-radius: 24px;

}

#deposit {
    padding: 18px;
    border-radius: 4px;
    background-color: rgba(11, 11, 15, .5);
    color: #fff;
    width: 100%;
}

[name="period"] {
    padding: 12px;
    border-radius: 8px;
    background-color: rgba(11, 11, 15, .5);
    color: #fff;
    width: 100%;
    text-align: center;
}

[name="period"]:checked {
    background: var(--bs-gradient);
}

[name="period"]:first-child::after {
    content: 'No Time Limit';
}

[name="period"]:nth-child(2)::after {
    content: '1 Month';
}

[name="period"]:nth-child(3)::after {
    content: '3 Months';
}

.frame-72 {
    min-width: 72px;
    max-width: 72px;
    min-height: 72px;
    max-height: 72px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: var(--bs-gradient);
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.about-content::after {
    content: '';
    border-left: 2px dashed #18C8FF;
    height: 75%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 36px;
}

.why-ico .my-card {
    background-color: #1A1B23;
    padding: 32px;
    border-radius: 16px;
}

.sales .my-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bs-gradient);
    z-index: -1;
    border-radius: 8px;
    width: 4px;
}

.after-100::after {
    width: 100% !important;
}

.timeline>div {
    background-color: #1A1B23;
    width: 90%;
    border-radius: 8px;
    position: relative;
    margin: 0 auto;
}

.roadmap {
    background-image: url('../images/roadmap-bg.png');
}

.roadmap-content>div {
    position: relative;
    padding-left: 50px;
}

.roadmap-content>div::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .7);
}

.roadmap-content>div::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    width: 85%;
    height: 1px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .3);
}

.roadmap-content {
    gap: 30px;
}

.roadmap .my-card {
    background-color: #1A1B23;
}

.whitepaper-content {
    background-color: #14141A;
    border-radius: 16px;
    padding: 15px;
}

.whitepaper .frame {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
}

.accordion-item {
    padding: 12px;
    border-radius: 8px;
}

.accordion-button {
    padding: 0;
}

.accordion-body {
    padding: 0;
    padding-top: 16px;
    margin-top: 16px;
}

.accordion {
    --bs-accordion-btn-icon: url(../images/down-solid.svg);
    --bs-accordion-btn-active-icon: url(../images/down-solid.svg);
    --bs-accordion-btn-icon-width: 16px;
}

.accordion-button::after {
    background-position: center;
}

.contact .content .frame {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: rgba(255, 255, 255, .6);
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--bs-gradient);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.sign-in-form {
    background-image: url(../images/login-bg.png);
}

.sign-in-form form {
    max-width: 505px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.sign-in-form form input {
    background-color: #0B0B0F;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(187, 187, 187, .6);
    color: #fff;
}

.sign-in-form form input::placeholder {
    color: #828282;
}

#remember_me {
    width: 16px;
    height: 16px;
    border: 1px solid #606060;
    border-radius: 2px;
    padding: 0;
}

#remember_me:checked {
    appearance: auto;
}

@media (min-width: 576px) {
    .timeline>div {
        width: calc(50% - 5px);
    }

    .contact .content {
        background-color: #141419;
        padding: 40px;
    }

    .contact form {
        border: 1px solid rgba(255, 255, 255, .25);
    }

    .w-sm-auto {
        width: auto;
    }
}

@media (min-width: 768px) {
    .sign-in-form form {
        background-color: rgbA(21, 21, 23, .6);
        border: 1px solid rgba(135, 135, 135, .5);
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .05);
        padding: 40px;
        border-radius: 10px;
    }

    .timeline>div {
        width: calc(33% - 5px);
    }
}

@media (min-width: 992px) {
    .whitepaper-content {
        padding: 30px;
    }

    .hero {
        padding-top: 235px;
        padding-bottom: 150px;
    }

    .inner-gap {
        gap: 20px;
    }

    .fs-18 {
        font-size: 18px;
    }

    .inner-space-sm,
    .inner-space,
    .inner-space-lg {
        padding: 70px 0;
    }

    .timeline>div {
        width: calc(32.9% - 10px);
    }

    .lang .select2-container--default .select2-selection--single {
        padding: 7.5px 18px;
    }

}

@media (min-width: 1200px) {
    .roadmap-content {
        gap: 50px;
    }

    .whitepaper-content {
        padding: 50px;
    }
}

@media (min-width: 1400px) {

    .timeline::after {
        content: '';
        border-top: 2px dashed #18C8FF;
        width: calc(100% - 250px);
        position: absolute;
        top: -33px;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }

    .timeline>div::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: var(--bs-gradient);
        border-radius: 50%;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline>div {
        width: 100%;
    }

    .roadmap-content {
        gap: 70px;
    }

    .roadmap-content>div::before {
        width: 200%;
    }
}

@media (min-width: 1600px) {
    .whitepaper-content {
        padding: 64px;
    }

    .fs-xxl-18 {
        font-size: 18px;
    }

    h1 {
        font-size: 67px !important;
    }


    .inner-gap {
        gap: 30px;
    }

    .inner-space-sm {
        padding: 80px 0;
    }

    .inner-space {
        padding: 100px 0;
    }

    .inner-space-lg {
        padding: 120px 0;
    }

    .hero {
        padding-top: 220px;
        padding-bottom: 120px;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1458px;
    }
}