*,
*::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: "DM Sans", sans-serif;
    font-style: normal;
    -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;
}

.round-img {
    border-radius: 27px;
}

.sec {
    width: 100%;
    height: 100%;
    padding: 70px 80px;
}

.sec-s {
    width: 100%;
    height: 100%;
    padding: 70px 200px;
    max-width: 1400px;
    margin: 0 auto;
}

.sec-footer {
    padding: 70px 60px 20px;
}

.sec-bg {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    padding: 70px 0 70px 150px;
}

/* 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 */

/* nav */
.bg-body-tertiary {
    margin: 20px 30px;
    padding: 10px 20px;
    border-radius: 53px;
    background-image: url("../media/landing/g-bg-3.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);

}

.nav-btn {
    margin-left: 30px;
}

.nav-item a {
    color: var(--color-link) !important;
}

.nav-item a:hover {
    color: var(--color-link-hover) !important;
}

.dropdown-menu {
    background-color: transparent;
    border: 1px solid var(--color-text-w);
    background: rgb(5, 0, 56);
    background: linear-gradient(0deg, rgba(5, 0, 56, 0.4375) 20%, rgba(156, 235, 235, 0.712) 200%);
}

.navbar-toggler-icon {
    background-image: url("../media/icon/menu.svg");
}

.navbar-toggler {
    color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
    margin: 0 0 0 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--color-link-hover) !important;
    background-color: transparent;
}

/* nav */

/* titles */
.title-one,
.title-two {
    color: var(--color-text-w);
}

.title-one {
    font-size: 72px;
    font-weight: 400;
}

.title-three {
    font-size: 62px;
    font-weight: 400;
}

.title-two {
    font-size: 42px;
    font-weight: 400;
}

.title-p {
    color: var(--color-text-g);
    font-size: 16px;
    font-weight: 300;
}

.title-one span,
.title-two span {
    color: var(--color-text-g);
}

.title-pd {
    margin: 20px 0 70px 0;
}

.title-w {
    width: 70%;
}

.blue {
    color: var(--color-link-hover);
}

/* .text-r {
    text-transform: uppercase;
} */

.text-r,
.text-r-big {
    overflow: hidden
}

.text-r-big {
    font-size: 62px;
    width: 100%;
    height: auto
}

/* titles */

/* marquree */
.marquee {
    --gap: 0rem;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    width: 100%;
}

.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;
}

.marquee--fit-content {
    max-width: fit-content;
}

.marquee--pos-absolute .marquee__content:last-child {
    position: absolute;
    top: 0;
    left: 0;
}

.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;
}

.g-box {
    position: relative;
    padding: 20px;
    border-radius: 25px;
    background: rgb(5, 0, 56);
    background: linear-gradient(0deg, rgba(5, 0, 56, 0.4375) 20%, rgba(156, 235, 235, 0.712) 100%);
}

.g-box-wrapper-title {
    text-align: right;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.g-box-wrapper-title p {
    padding: 8px 19px;
    border: 1px solid var(--color-text-g);
    border-radius: 50%;
    font-size: 21px;
    text-align: center;
    width: 50px;
    color: var(--color-text-g);
}

.g-box-inner {
    border-bottom: 1px solid var(--color-text-g);
}

.num {
    display: flex;
    justify-content: end
}

@media (max-width: 768.98px) {
    .g-box-wrapper-title {
        text-align: left;
    }

    .num {
        justify-content: start;
    }
}

/* btn */
.btn-s {
    background-color: transparent;
    padding: 10px 30px;
    color: var(--color-link-hover);
    border: 1px solid var(--color-link-hover);
    border-radius: 25px;
    /* margin: 0 10px; */
    text-align: center;
    width: 170px;
    font-size: 15px;
    display: block;
}

.btn-s:hover {
    background-color: var(--color-link-hover);
    color: var(--color-text-b);
}

.btn-link {
    color: var(--color-text-g);
    padding: 10px 30px;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--color-text-g);
}

.btn-bg {
    background-color: var(--color-bg);
    color: var(--color-link-hover);
    padding: 10px 30px;
    border-radius: 25px;
    /* margin: 0 10px; */
    text-align: center;
    width: 170px;
    font-size: 15px;
    display: block;
}

/* btn */
.mid-wrapper {
    position: relative;
}

.text-details {
    position: absolute;
    top: 50%;
    /* left: 50%; */
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.grd-wrapper {
    padding: 40px 0 50px 0;
    border-radius: 27px;
    background-image: url("../media/landing/g-bg-3.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.grd-wrapper-w {
    width: 1100px;
    margin: 0 auto;
}

/* silder */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    /* font-size: 18px; */
    background: transparent;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.swiper {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.card {
    border: none !important;
}

.text-bg-dark {
    color: #fff !important;
    background-color: transparent !important;
}

.fact-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.swiper-hero .nav-carousel {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: scale(1);
    z-index: 3;
}

.nav-carousel .n-2nd {
    bottom: -60px !important;
    left: 90px;
}

.swiper-hero .nav-carousel .button-prev,
.swiper-hero .nav-carousel .button-next {
    transition: transform 0.3s ease-in-out;
}

.swiper-hero .nav-carousel .button-prev:hover,
.swiper-hero .nav-carousel .button-next:hover {
    transform: scale(1.1);
}

.swiper-hero .nav-carousel .pagination>.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: hsl(var(--clr-white), 0.5);
    border-radius: 50%;
    transition: all 0.8s linear;
}

.swiper-hero .nav-carousel .pagination>.swiper-pagination-bullet-active {
    background-color: hsl(var(--clr-white));
    width: 48px;
    border-radius: 16px;
}

.swiper-hero .nav-carousel .pagination>.swiper-pagination-bullet:hover,
.swiper-hero .nav-carousel .pagination>.swiper-pagination-bullet-active:hover {
    background-color: hsl(var(--clr-white));
}

.nav-carousel button {
    background-color: transparent;
    border: none;
}

.card-wrapper h5,
.card-wrapper p {
    width: 60%;
}

.card-wrapper {
    padding: 50px;
}

.card-img-overlay-p {
    padding: 40px;
}

.benefit-text p {
    font-size: 21px;
    color: var(--color-text-g);
}

.pay-up h5,
.pay-overlay h5 {
    text-transform: uppercase;
    font-size: 34px;
}

.pay-dwon h1 {
    font-size: 32px;
    color: var(--color-text-w);
    text-transform: uppercase;
}

.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: 27px;
    padding: 1rem;
    color: var(--color-text-b);
}

.pay-c:hover .pay-overlay {
    opacity: 1;
}

.pay-overlay ul li {
    font-size: 15px;
}

.card-img-slider {
    border-radius: 27px;
}

.c-table-wrapper {
    border-radius: 25px;
    background: rgb(5, 0, 56);
    background: linear-gradient(0deg, rgba(5, 0, 56, 0.4375) 20%, rgba(156, 235, 235, 0.712) 200%);
    width: 450px;
    padding: 10px;
}

.c-table-wrapper p {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 600;
}

.c-table-wrapper span {
    font-weight: 600;
    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)
}


.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
    content: 'next';
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.risk-wrapper p a {
    color: var(--color-link-hover);
    font-size: 15px;
    margin-top: 25px;
}

.congra-wrapper {
    width: 900px;
    text-align: center;
    margin: 130px auto 0;
}

.congra-wrapper p {
    color: var(--color-text-g);
}

.footer-inner {
    padding: 20px 20px 50px 50px;
}

.footer-wrapper {
    padding: 140px 0 50px 0;
}

.footer-wrapper li,
.footer-wrapper a {
    font-size: 15px !important;
    color: var(--color-text-g);
}

.footer-wrapper a:hover {
    color: var(--color-link-hover);
}

.footer-item a {
    color: var(--color-text-g);
}

.copy-right {
    padding: 0 50px;
    /* text-transform: uppercase; */
    font-size: 14px;
    color: var(--color-text-g);
}

.copy-up {
    padding-bottom: 10px;
}

.copy-down {
    border-top: 1px solid var(--color-text-g);
    padding-top: 10px;
}

.risk-summary {
    text-align: center;
}

.risk-summary p {
    color: var(--color-text-g);
    font-size: 14px;
    padding-top: 20px;
}

.modal-btn {
    color: var(--color-text-g);
    text-decoration: underline;
}

.modal-btn:hover {
    color: var(--color-link-hover);
    text-decoration-color: var(--color-link-hover);
}

.modal-content {
    border-radius: 27px;
    background-image: url("../media/landing/g-bg-3.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.modal-dialog-video {
    padding: 0;
}

.modal-video-close {
    position: absolute;
    right: -30px;
    top: 0;
}

.soon {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    align-content: center;
    height: 300px;
}

/* about us */
.about-home-l video {
    width: 500px;
    height: 500px;
    object-fit: contain;
    background-color: var(--color-bg-2)
}

.roadmap-home video {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    background-color: var(--color-bg-2)
}

.h-wrapper {
    padding: 120px 0 0 0;
}

.h-wrapper-right {
    padding: 0 90px 0 0;
}

.h-wrapper-right h1 {
    line-height: 60px;
}

.strategy-item {
    background: rgb(5, 0, 56);
    background: linear-gradient(0deg, rgba(5, 0, 56, 0.155) 17%, rgba(156, 235, 235, 0.712) 100%);
    padding: 45px 15px 25px 15px;
    margin: 30px 0;
    border-radius: 27px;
}

.count-div {
    border-top: 1px solid var(--color-text-g);
    padding: 30px 0 40px 0;
}

.count-div:nth-child(odd) {
    margin-right: 70px;
}

.partner-img,
.marquee__content {
    opacity: 0.2;
}

.partner-img:hover {
    opacity: 1;
}

.text-wrapper {
    padding: 90px;
}

.stupid-wrapper {
    padding: 50px 0;
}

.stupid-wrapper p {
    font-size: 32px;
    color: var(--color-text-w);
    margin: 0;

}

.stupid-wrapper p span {
    color: var(--color-text-g);
}

.border-right {
    width: 260px;
    height: 2px;
    display: block;
    background-color: aliceblue;
    margin: 0 30px 0 0;
}

.hero {
    height: 40%;
    width: 100%;
    margin-bottom: 300px;
    text-align: center;
}

.card-container {
    margin-top: 150px;
}

.hero-card-wrapper {
    width: 100%;
    margin: auto;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.hero-card {
    background-image: url(../media/landing/g-bg-3.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    padding: 20px 80px 20px 20px;
    display: flex;
    align-items: center;
}

.extra-trigger {
    margin-top: -50svh;
}

.spacer,
.wrapper {
    width: 100%;
    min-height: 100vh;
}

.wrapper {
    padding-top: 100px;
    padding-bottom: 50px;
}

.h-card-wrapper {
    width: 100%;
    perspective: 500px;
    margin-bottom: 50px;
}

.h-card-wrapper:last-child {
    margin-bottom: 0;
}

.h-cards {
    /* width: 70%;
    margin: 0 auto;
    padding: 0 50px; */
    margin-top: 150px;
}

.h-card {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}


.join-wrapper {
    background-image: url(../media/landing/g-bg-3.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.blog-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    border: 1px solid var(--color-text-g);
    border-radius: 25px;
    padding: 20px;
    margin: 0 0 25px 0;
}

.blog-item img {
    border-radius: 25px;
    object-fit: cover;
}

.blog-item a {
    padding: 8px 30px;
    border: 1px solid var(--color-text-g);
    text-align: center;
    margin-top: 20px;
    border-radius: 25px;
    display: block;
    width: 230px;
}

.team-inner {
    padding: 0 0 25px 0;
}

.ecosystem-inner {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--color-text-g);
}

.ecosystem-inner img {
    margin-right: 10px;
    animation: animName 8s linear infinite;
}

.companie-item h3 {
    color: var(--color-link-hover);
}

.opportunity-home,
.membership-home {
    padding: 170px 0;
}


@keyframes animName {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* 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 */

/* timeline*/
.timeline-body ul {
    padding: 0;
    list-style: none
}

.timeline-body p {
    color: #44E1FC;
    font-weight: bold;
    list-style: disc;
}

.timeline-body li {
    list-style: circle;
    margin-left: 20px;
    font-weight: 300;
}

.roadmap-content {
    position: relative;
    z-index: 2
}

.timeline-body p {
    line-height: 1.5;
    font-size: 18px;
    opacity: .8
}

.timeline-body ul li {
    padding: 0 0 10px
}

.timeline {
    position: relative;
    padding-left: 4rem;
    margin: 0 0 0 30px
}

.timeline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 2px;
    height: 100%;
    background-color: var(--color-link-hover)
}

.timeline .timeline-container {
    position: relative;
    margin-bottom: 2.5rem
}

.timeline .timeline-container .timeline-icon {
    position: absolute;
    left: -88px;
    top: 4px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    background: var(--color-link-hover)
}

.timeline .timeline-container .timeline-icon span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-text-w);
    font-size: 18px;
}

.timeline-body {
    background-color: #44e1fc30;
    backdrop-filter: blur(12vmax);
    border-radius: 25px;
    padding: 20px 20px 15px;
    /* border: 1px solid var(--color-link-hover); */
    background-image: url("../media/landing/g-bg-3.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.timeline .timeline-container .timeline-body .timeline-title {
    margin-bottom: 25px
}

.timeline-title {
    font-size: 28px;
    font-weight: 700
}

.sec-blog {
    position: relative;
}

.sec-blog {
    width: 100%;
    height: 100vh
}

.sec-blog h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.policy-wrapper h4 {
    margin: 40px 0 20px 0;
}

.policy-wrapper h1 {
    margin: 40px 0 20px 0;
}

/* contact */

.c-form {
    background-image: url(../media/landing/g-bg-3.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.form-control {
    background-color: transparent;
    padding: 12px 10px;

}

.form-control::placeholder {
    color: var(--color-text-g);
    opacity: 1;
    font-size: 14px;
}

label {
    display: inline-block;
    font-size: 24px;
    margin-bottom: 20px;
}

.form-floating {
    margin-top: 20px;
}

/* popups */
.pop-div {
    width: 100%;
    height: 100%;
    position: relative;
}

.welcomePopup {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    height: auto;
    background-color: var(--color-text-g);
    background-image: url("../media/landing/g-bg-3.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 11111111;
    box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
}

.freeCoursePopup {
    position: fixed;
    width: 100%;
    height: auto;
    max-width: 400px;
    padding: 20px;
    border-radius: 18px;
    background-color: var(--color-text-g);
    background-image: url("../media/landing/g-bg-3.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11111111;
    box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
}
.freeCourseNotice{
    width: 100%;
    height: auto;
    max-width: 400px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-text-g);
    background-image: url("../media/landing/g-bg-3.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    color: var(--color-text-w);
    z-index: 11;
    border-radius: 18px;
    box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
}

.freeCourseNotice h2{
    font-size: 21px;
    color: var(--color-text-w);
    font-weight: 400;
}

.freeCourseNotice h2 span{
    font-size: 18px;
    font-weight: 300;
}

.cookie-consent-container {
    font-size: 15px;
    position: fixed;
    bottom: 10px;
    left: 20px;
    right: 15px;
    background-color: var(--color-text-g);
    background-image: url("../media/landing/g-bg-3.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    max-width: 400px;
    color: var(--color-text-w);
    z-index: 11111111;
    border-radius: 18px;
    box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
}

.cookie-consent-notice p {
    text-align: justify
}

.input-content {
    padding: 50px 20px;
}

.c-input {
    background-color: transparent;
    border: 1px solid var(--color-link-hover);
    padding: 8px 0 !important;
    margin: 2px;
    border-radius: 25px;
    color: var(--color-text-w);
}

.c-input::placeholder {
    margin: 2px;
    color: var(--color-text-w);
}

.btn-sub {
    padding: 8px 15px;
    background-color: var(--color-link-hover);
    border-radius: 25px;
    color: var(--color-text-w);
    border: none;
    margin-left: 5px;

}

.c-btn-close {
    border: none;
    background-color: transparent;
    position: absolute;
    right: 15px;
    top: 15px;
}

.cookie-consent-selection button {
    border: none;
    padding: 8px 20px;
    background: 0 0;
    font-size: 15px
}

button.cookie-consent-allow {
    border: 1px solid var(--color-link-hover);
    background-color: var(--color-link-hover);
    color: #fff;
    border-radius: 25px
}

button.cookie-consent-allow:focus,
button.cookie-consent-allow:hover,
button.cookie-consent-deny {
    background-color: transparent;
    color: var(--color-link-hover)
}

button.cookie-consent-deny {
    border: 1px solid var(--color-link-hover);
    border-radius: 25px;
    opacity: .8
}

button.cookie-consent-deny:focus,
button.cookie-consent-deny:hover {
    opacity: 1;
    cursor: pointer
}

/* geo-block */
.blockDiv {
    /* position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-color: brown; */
}

.middle-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-text-g);
    background-image: url("../media/landing/g-bg-3.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 20px;
    color: var(--color-text-w);
    z-index: 11;
    border-radius: 18px;
    box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 1px 13px 11px rgba(0, 0, 0, 0.15);
    /* Ensure the popup is on top of other elements */
}


.middle-popup h1{
    font-size: 21px;
    color: var(--color-text-w) !important;
    letter-spacing: 1px;
}

@media (max-width: 1399.98px) {

    .title-one,
    .text-r-big,
    .title-three {
        font-size: 56px;
    }

    .title-two {
        font-size: 36px;
    }

    .benefit-text p {
        font-size: 18px;
    }
}

@media (max-width: 1190.98px) {
    .sec {
        padding: 50px 20px;
    }

    .sec-s {
        padding: 50px 100px;
    }

    .sec-bg {
        padding: 70px 0 70px 70px;
    }

    .title-one,
    .text-r-big,
    .title-three {
        font-size: 46px;
    }

    .nav-link {
        font-size: 14px;
    }

    .title-pd {
        margin: 10px 0 40px 0;
    }

    .card-img-overlay-p {
        padding: 20px;
    }

    .card-wrapper {
        padding: 20px;
    }

    .grd-wrapper-w {
        width: 100%;
    }

    .pay-up h5,
    .pay-overlay h5 {
        font-size: 26px;
    }

    .pay-overlay p {
        font-size: 15px;
    }

    .pay-dwon h1 {
        font-size: 21px;
    }

    .pay-overlay ul li {
        font: 15px;
    }

    .nav-btn {
        margin-left: 10px;
    }

    .h-wrapper-right h1 {
        line-height: 40px;
    }

    .h-wrapper-right {
        padding: 0 40px 0 0;
    }

    .text-wrapper {
        padding: 70px;
    }
}

@media (max-width: 991.98px) {
    .nav-btn {
        margin-left: 0px;
    }

    .sec {
        padding: 30px 10px;
    }

    .sec-s {
        padding: 30px 50px;
    }

    .title-one,
    .text-r-big,
    .title-three {
        font-size: 36px;
    }

    .title-two {
        font-size: 24px;
    }

    .g-box {
        padding: 10px;
    }

    .card-wrapper {
        padding: 20px;
    }

    .sec-footer {
        padding: 50px 20px 20px;
    }

    .copy-right {
        padding: 0 30px;
    }

    .card-wrapper h5,
    .card-wrapper p {
        width: 80%;
    }

    .footer-item h2 {
        font-size: 22px;
    }

    .footer-wrapper {
        padding: 70px 0 70px 0;
    }

    .swiper-hero .nav-carousel {
        bottom: 30px;
        right: 30px;
    }

    .grd-wrapper {
        padding: 40px 0 30px 0;
    }

    .congra-wrapper {
        width: 100%;
    }

    .home-right {
        text-align: center;
        margin-top: 40px;
    }

    .home-right-btn {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .dis-n-mb {
        display: none;
    }

    .swiper {
        padding: 10px;
    }

    .swap-img {
        width: 100%;
        height: 300px
    }

    .companie-l,
    .companie-item:nth-child(3) {
        padding-top: 30px;
    }

    .companie-l img {
        display: flex;
        justify-content: flex-start;
    }

    .companie-item h3 {
        font-size: 21px;
    }

    .bg-body-tertiary {
        margin: 10px 10px;
        padding: 5px 15px;
    }

    .about-home-l video {
        width: 300px;
        height: 300px;
        padding-top: 30px;
    }


}

@media (max-width: 768.98px) {
    .img-mb-pd {
        margin: 20px 0;
    }

    .timeline {
        margin: 0 0 0 25px
    }

    .timeline-title {
        font-size: 22px
    }

    .navbar-brand img {
        width: 200px;
    }

    .sec-bg {
        padding: 70px 10px 70px 10px;
    }

    .bg-body-tertiary {
        padding: 10px 20px;
        margin: 5px 5px;
    }

    .card-img-overlay-p {
        padding: 20px;
    }

    .img-h-mb {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .title-w {
        width: 100%;
    }

    .sec-footer {
        padding: 20px 20px 20px;
    }

    .footer-inner {
        padding: 0 25px 10px 25px;
    }

    .footer-wrapper {
        padding: 70px 0 90px 0;
    }

    .copy-right {
        padding: 0 20px;
    }

    .grd-wrapper {
        padding: 40px 0 20px 0;
    }

    .strategy-item {
        margin: 10px 0;
    }

    .btn-grp-center {
        flex-direction: column;
        align-items: center;
    }

    .btn-grp-start {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-mb-start {
        margin-top: 10px;
    }

    .partner-img {
        max-width: 150x;
    }

    .c-table-one {
        width: 90%;
    }

    .h-wrapper-right {
        padding: 0;
    }

    .h-wrapper-left {
        padding: 30px 0 0 0;
    }

    .btn-link {
        padding: 10px 0 0 20px;
    }

    .count-div:nth-child(2n+1) {
        margin-right: 0;
    }

    .text-wrapper {
        padding: 20px;
    }

    .border-right {
        width: 80px;
    }

    .stupid-wrapper p {
        font-size: 21px;
    }

    .card-wrapper {
        padding: 15px 10px;
    }

    .risk-wrapper {
        padding: 10px;
    }

    .fact-wrapper p {
        padding: 20px 0;
    }

    .footer-item {
        margin-top: 20px;
    }

    /* .h-card {
        width: 350px;
        height: 400px;
    } */
    .h-cards {
        padding: 10px 20px;
    }

    .footer-contact {
        padding-bottom: 30px;
    }

    .opportunity-home,
    .membership-home {
        padding: 90px 0 0 0;
    }

    .stupid-wrapper {
        padding: 20px 0;
    }

    .why-wrapper-item {
        padding-bottom: 30px;
    }
}

@media (max-width: 575.98px) {

    .sec-s {
        padding: 30px 10px;
    }

    .n-2nd {
        display: flex;
        justify-content: flex-start;
    }

    .c-table-wrapper {
        width: 320px;
    }

    .clockdiv>div {
        width: 60px;
    }

    .launch-div {
        width: 140px;
    }

    .slide-r {
        display: flex;
        justify-content: left;
    }

    .swiper-hero .nav-carousel {
        bottom: 30px;
    }
}