*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #050038;
    --color-text-w: #ffffff;
    --color-text-g: #AAA7A7;
    --color-text-b: #000000;
    --color-link: #ffffff;
    --color-link-hover: #44E1FC;
    --marquee-speed: 40s;
    --marquee-hover-transition-speed: .7s;
    --marquee-fade-edges: 30%;
    --clr-primary: 260, 94%, 75%;
    --clr-primary-dark: 260, 98%, 69%;
    --clr-white: 0, 0%, 100%;
    --clr-black: 0, 0%, 0%;
    --clr-dark: 0, 0%, 18%;
    --clr-highlight: 132, 100%, 95%;
    --clr-warning: 0, 100%, 50%;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-w);
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

body,
html {
    overflow-x: hidden;
}

html {
    --scrollbarBG: var(--color-text-g);
    --thumbBG: var(--color-link-hover);
    scroll-behavior: smooth;
}

body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}

body::-webkit-scrollbar {
    width: 11px;
}

li {
    list-style: none;
}

.list-group-item {
    background-color: transparent;
    border: 0;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--color-link);
    outline: none;
}

a:hover {
    color: var(--color-link-hover);
    outline: none;
}

.logo {
    width: 180px;
    padding: 20px;
}

.sec {
    width: 100%;
    height: 100%;
    padding: 0px 80px 0px 120px;
}

.c-border {
    border: 1px solid rgb(75, 96, 141);
    padding: 40px;
}

.d-border {
    margin: 130px 0;
    height: 1px;
    background-color: rgb(75, 96, 141);
    position: relative;
}

.sec-number {
    top: 0;
    left: 50%;
    transform: translate(0, -50%);
    font-size: 120px;
    z-index: -1;
    color: rgb(75, 96, 141);
    opacity: .6;
}

.mar-sec {
    padding: 70px 0;
}

.mar-sec-2 {
    padding: 0 0 70px 0;
}

.css-nsv6hr::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -8px;
    width: 15px;
    height: 5px;
    background-color: var(--color-link-hover);
}

.css-nsv6hr::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -8px;
    width: 15px;
    height: 5px;
    background-color: var(--color-link-hover);
}

.css-nsv6hr {
    position: fixed;
    left: 65px;
    top: 20px;
    height: 94vh;
    width: 0px;
    border-left: 1px solid rgb(75, 96, 141);
    z-index: 2;
}

.bc {
    position: relative;
}

/* loading */
#backgroundBlocker {
    width: 100%;
    height: 100%
}

#backgroundBlocker {
    background-color: var(--color-bg)
}

#backgroundBlocker {
    position: fixed;
    z-index: 1111
}

#LoadingElement {
    bottom: 50px;
    right: 50px;
    font-size: 18px;
    font-weight: lighter;
    text-transform: uppercase;
    position: absolute;
    color: var(--color-text-w);
}

#LoadingPercentage {
    font-size: 28px;
    color: var(--color-link-hover)
}

/* loading */

/* btn */
.btn-s {
    background-color: transparent;
    padding: 10px 25px;
    color: var(--color-text-w);
    border: 1px solid rgb(75, 96, 141);
    border-radius: 0;
    /* margin: 0 10px; */
    text-align: center;
    max-width: 270px;
    font-size: 15px;
    display: block;
}

.btn-s:hover {
    background-color: var(--color-link-hover);
    color: var(--color-text-b);
}



/* btn */

/* titles */


.title-one {
    font-size: 62px;
    font-weight: 600;
    color: var(--color-text-w);
}

.title-two {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-text-w);
}

.title-p {
    color: var(--color-text-w);
    font-size: 15px;
    font-weight: 300;
}

.title-one span {
    color: var(--color-link-hover);
}

/* hpme */
.about-home-l video {
    width: 500px;
    height: 500px;
    object-fit: contain;
    background-color: var(--color-bg-2)
}


.d-box {
    background: rgb(9, 26, 61);
    position: relative;
    transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid rgb(75, 96, 141);
}

/* .d-box-c {
    top: 50%;
    transform: translate(0, -50%);
} */

.d-box-c h3 {
    color: var(--color-link-hover);
    font-size: 22px;
}

.d-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 10px;
    top: -10px;
    z-index: -1;
    transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    background: rgb(9, 26, 61);
    border: 1px solid rgb(75, 96, 141);
}

.d-box:hover {
    background-color: #26385f;
}

.d-box:hover::before {
    background-color: #26385f;
}

.b-box {
    background: rgb(9, 26, 61);
    position: relative;
    transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    /* height: 100px; */
    display: flex;
    flex-direction: column;
    padding: 90px 20px;
    border: 1px solid rgb(75, 96, 141);
    width: 100%;
    height: 100%;
}

/* .b-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 10px;
    top: -10px;
    z-index: -1;
    transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    background: rgb(9, 26, 61);
    border: 1px solid rgb(75, 96, 141);
} */
.d-box h3 {
    font-size: 18px;
}

.d-box p {
    font-size: 14px;
}

/* marquree */
.marquee {
    --gap: 0rem;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    width: 100%;
    mask-image: linear-gradient(to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}

.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: fit-content;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* Enable animation */
.enable-animation .marquee__content {
    animation: scroll 90s linear infinite;
}

/* Attempt to size parent based on content. Keep in mind that the parent width is equal to both content containers that stretch to fill the parent. */
.marquee--fit-content {
    max-width: fit-content;
}

/* A fit-content sizing fix: Absolute position the duplicate container. This will set the size of the parent wrapper to a single child container. Shout out to Olavi's article that had this solution 👏 @link: https://olavihaapala.fi/2021/02/23/modern-marquee.html  */
.marquee--pos-absolute .marquee__content:last-child {
    position: absolute;
    top: 0;
    left: 0;
}

/* Enable position absolute animation on the duplicate content (last-child) */
.enable-animation .marquee--pos-absolute .marquee__content:last-child {
    animation-name: scroll-abs;
}

@keyframes scroll-abs {
    from {
        transform: translateX(calc(100% + var(--gap)));
    }

    to {
        transform: translateX(0);
    }
}

/* Other page demo styles */
.marquee__content>* {
    flex: 0 0 auto;
    font-size: 72px;
    font-weight: 500;
    padding: 1rem 1rem;
    text-align: center;
    text-transform: uppercase;
}

.blue {
    color: var(--color-link-hover);
}

/* table */
.c-table-one {
    width: 60%;
}

.c-table-one th {
    color: var(--color-text-g);
    text-transform: uppercase;
}

.c-table-one td {
    font-size: 15px;
    color: var(--color-text-g);
}

/* .c-table-ul {
    padding: 0 0 0 0;
} */

.table {
    border-color: var(--color-link-hover);
    --bs-table-hover-bg: rgba(17, 233, 233, 0.229);
    --bs-table-hover-color: var(--color-text-w) !important;
    --bs-table-bg: transparent;
    --bs-table-color: var(--color-text-w) !important;
}

.c-table-one th {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--color-text-w);
}

.c-table-wrapper {
    background-color: var(--color-bg);
    width: 400px
}

.c-table-wrapper p {
    margin-bottom: 0;
    font-size: 15px
}

.c-table-wrapper span {
    font-size: 18px
}

/* table */

.pay-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: var(--color-link-hover);
    border-radius: 40px;
    padding: 1rem;
    color: var(--color-text-b);
}

.pay-c:hover .pay-overlay {
    opacity: 1;
}

.pay-overlay ul li {
    font: 16px;
}

.c-table-wrapper {
    border-radius: 25px;
    background: rgb(9, 26, 61);
    border: 1px solid rgb(75, 96, 141);
    width: 450px;
    padding: 10px;
}

.c-table-wrapper p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
}

.c-table-wrapper span {
    font-weight: 400;
    font-size: 18px
}

.c-table-wrapper .c-btn {
    padding: 8px 25px;
    border-radius: 25px;
    border: 1px solid var(--color-link-hover);
    font-size: 15px;
    color: var(--color-link-hover)
}

.progress,
.progress-stacked {
    border-radius: 25px !important;
    background-color: #44e0fc47 !important;
}

.progress-bar {
    background-color: var(--color-link-hover) !important;
    border-radius: 25px;
    color: var(--color-bg);
}

.launch-div {
    background: #44e0fc47;
    padding: 10px;
    width: 185px;
    border-radius: 5px;
}

.launch-div h6 {
    font-weight: 600;
}

/* .clockdiv>div {
    padding: 0 0 15px 0;
    border-radius: 5px;
    background: #44e0fc47;
    width: 80px;
}

.clockdiv {
    color: #fff;
    display: block;
    font-weight: 100;
    font-size: 30px;
    display: flex;
    justify-content: space-between;
}

.clockdiv div>span {
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.smalltext {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
} */

/* .clockdiv {
    text-align: center
}


#clockdiv {
    color: #fff;
    font-weight: 100;
    font-size: 30px;
    display: flex;
    justify-content: space-between;
}

#clockdiv>div {
    padding: 0 0 15px 0;
    border-radius: 5px;
    background: #44e0fc47;
    width: 80px;
}

#clockdiv div>span {
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
} */
.counters {
    color: #fff;
    font-weight: 100;
    font-size: 30px;
    display: flex;
    justify-content: space-between;
}

.counter {
    padding: 0 0 15px 0;
    border-radius: 5px;
    background: #44e0fc47;
    width: 80px;
}

.counte span {
    display: block;
    height: 125px;
    font-size: 50px;
    line-height: 125px;
}

.smalltext {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
}


.price-wrapper {
    background: #44e0fc47;
    border-radius: 5px;
    padding: 10px;
}

.price-wrapper img {
    width: 30px;
}

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
    content: 'next';
}

/*  */

.img-w {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.mil-div {
    padding: 15px;
    background: rgb(9, 26, 61);
    background-color: rgb(9, 26, 61);
    border: 1px solid rgb(75, 96, 141);
}

.mil-bold {
    font-weight: 700;
    font-size: 17px;
    color: var();
}

.milestone-inner p {
    font-size: 15px;
    color: var(--color-text-w);
    padding-bottom: 10px;
}

.milestone-inner p svg {
    color: var(--color-link-hover);
    margin: 10px 10px 10px 0;
    transform: scale(1.5);
}

.milestone-inner p a {
    color: var(--color-text-g);
}

.milestone-inner a:hover {
    color: var(--color-link-hover);
}

.modal-content {
    background-color: #26385f;
    color: var(--color-text-w);
    text-align: center;

}

.soon {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    align-content: center;
    height: 300px;
}

.footer,
.milestone,
.product,
.home {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url("../images/wave3.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1213px;
    height: 508px;
    z-index: -1;
    opacity: 0.5;
}

.milestone::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("../images/wave1.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1559px;
    height: 689px;
    z-index: -1;
    opacity: 0.4;
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    right: -146px;
    background-image: url("../images/wave4.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 600px;
    height: 588px;
    z-index: -1;
    opacity: 0.4;
}

.home::before {
    content: '';
    position: absolute;
    bottom: -643px;
    right: 0;
    background-image: url("../images/wave1.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1559px;
    height: 689px;
    z-index: -1;
    opacity: 0.4;
}

@media (max-width: 1399.98px) {

    .title-one {
        font-size: 56px;
    }

    .title-two {
        font-size: 36px;
    }

    .bc {
        display: none;
    }
}

@media (max-width: 1190.98px) {
    .sec {
        padding: 0 20px;
    }

    .title-one {
        font-size: 46px;
    }

    .about-home-l video {
        width: 400px;
    }

    .d-box h3 {
        font-size: 14px;
    }

    .d-box p {
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    .about-home-l video {
        width: 350px;
        height: 350px;
    }

    .last-item-one {
        margin-top: 25px;
    }

    .sec {
        padding: 0 10px;
    }

    .title-one {
        font-size: 36px;
    }

    .title-two {
        font-size: 24px;
    }

    .b-box {
        padding: 30px 20px;
    }

    .c-border {
        padding: 30px;
    }
}

@media (max-width: 768.98px) {
    .b-box {
        margin: 0 0 20px 0;
    }

    .home::before {
        bottom: -661px;
    }

    .sec-number {
        font-size: 80px;
    }

    .d-border {
        margin: 80px 0;
    }
}

@media (max-width: 575.98px) {

    .c-border {
        padding: 25px;
    }

    .about-home-l video {
        width: 300px;
        height: 300px;
        margin-top: 20px;
    }

    .c-table-wrapper {
        width: 320px;
    }

    .counter {
        width: 65px;
    }

    .launch-div {
        width: 140px;
    }

    thead th,
    thead td {
        font-size: 14px !important;
    }

    .marquee__content>* {
        font-size: 48px;
    }
}

@media (max-width: 376.98px) {
    .last-item {
        margin-top: 10px;
    }
}