body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0;
    font-family: "Poppins", sans-serif !important;
    background-color: #000;
    overflow-x: hidden;
}

.body-shape {
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.body-shape svg {
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    filter: brightness(1);
    fill: #fff;
    width: calc(100% + 1.3px);
    top: -16px;
}

.elementor-shape .elementor-shape-fill {
    fill: #fff;
    transform: rotateY(0deg);
    transform-origin: center;
}

.main-body {
    position: relative;
    margin: 0;
    padding: 0;
    background-image: url("../img/bg-img.png");
    background-size: cover;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "Poppins", sans-serif;
}

.main-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 77%);
    z-index: 1;
}

.wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 0 20px;
}

.main-logo {
    text-align: center;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 20px;
}

.main-logo img {
    width: 54%;
    max-width: 100%;
    height: auto;
    border-radius: 96px 96px 96px 96px;
}

.wrapper-inner {
    text-align: center;
    padding: 20px 0px;
    width: 1140px;
}

.advanced-text {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
    background: #141414de;
    padding: 6px 0px;
    position: relative;
}

.advanced-text::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: inset(13% 1% 14% 1%);
    background: #000;
}

.advanced-text h2 {
    padding: 10px 0px;
    letter-spacing: 0.7px;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0px;
    z-index: 1;
    position: relative;
}

.animation-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    font-size: 30px;
    font-weight: 700;
    border-right: 2px solid #00e676;
    color: #00e676;
    z-index: 1;
    position: relative;
    width: 0;
    animation: typing 7s steps(12) infinite, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    0% {
        width: 0;
    }

    50% {
        width: 150px;
    }

    100% {
        width: 0;
    }
}

.advanced-title {
    margin-top: 10px;
    margin-bottom: 50px;
}

.advanced-title h3 {
    font-size: 34px;
    line-height: 48px;
    font-weight: 700;
    color: #de8255;
    margin-bottom: 0px;
    z-index: 1;
    position: relative;
    animation: textColorChange 4s linear infinite;
}

@keyframes textColorChange {
    0% {
        color: #de8255;
    }

    25% {
        color: #1d700e;
    }

    50% {
        color: #3d1b92;
    }

    75% {
        color: #c92c61;
    }

    100% {
        color: #e9f100c4;
    }
}

.advanced-title span {
    color: #fff;
    font-size: 34px;
    line-height: 48px;
    font-weight: 700;
    z-index: 1;
    position: relative;
}

.advanced-btn a .join-btn {
    padding: 12px;
    background-color: #1b6492;
    border-radius: 8px;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 500;
    width: 320px;
    transition: transform 0.5s;
}

.advanced-btn a .join-btn:hover {
    transform: scale(1.1);
    background-color: #de8255;
}

.advanced-btn {
    margin-bottom: 25px;
}

.list-item {
    list-style: none;
    padding: 11px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.list-item li {
    color: #fff;
    font-size: 24px;
    justify-content: center;
    gap: 10px;
    align-items: center;
    display: flex;
    font-weight: 500;
    padding: 6px 14px;
    border: 1px solid #dddddd87;
    letter-spacing: 0.5px;
    border-radius: 10px;
}

.list-item li i {
    color: #36c236;
}

.market-text {
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 10px 0px;
    gap: 5px;
    margin-bottom: 20px;
}

.market-text p {
    letter-spacing: 0.7px;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0px;
}

.market-text span {
    position: relative;
    display: inline-block;
    letter-spacing: 0.7px;
    color: #1ec424;
    font-size: 34px;
    font-weight: 700;
}

.market-text span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #1ec424, #4f1b92, #ff0057);
    background-size: 300% 100%;
    animation: movingUnderline 3s linear infinite alternate;
}

@keyframes movingUnderline {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}

@media (max-width : 1024px) {
    .market-sec img {
        width: 100%;
    }

    .body-shape svg {
        top: -3px;
    }
}

@media (max-width : 991px) {
    .main-logo img {
        width: 40%;
    }

    .animation-text {
        font-size: 26px;
    }

    .advanced-text h2 {
        font-size: 26px;
    }

    .advanced-title h3,
    .advanced-title span {
        font-size: 26px;
    }

    .advanced-text {
        margin-bottom: 10px;
    }

    .advanced-btn {
        margin-top: 25px;
    }

    .market-text p,
    .market-text span {
        font-size: 24px;
    }
}

@media (max-width :768px) {
    .list-item li {
        padding: 6px 10px;
        gap: 6px;
        font-size: 20px;
    }

    .list-item {
        gap: 11px;
        margin-bottom: 0px;
    }
    .advanced-btn a .join-btn {
        padding: 10px 16px;
        width: auto;
        font-size: 16px;
    }
}

@media (max-width :575px) {
    .list-item {
        display: block;
    }

    .list-item li {
        margin-bottom: 10px;
    }
    .list-item li:last-child{
        margin-bottom: 0;
    }
    .advanced-text::after{
        clip-path: inset(13% 3% 14% 3%);
    }
    .main-logo img {
        width: 32%;
    }
    .advanced-text h2,
    .animation-text {
        font-size:20px;
    }

    .advanced-title h3,
    .advanced-title span {
        font-size: 22px;
    }
    .market-text p,
    .market-text span {
        font-size: 20px;
    }
    @keyframes typing {
        0% {
            width: 0;
        }

        50% {
            width: 100px;
        }

        100% {
            width: 0;
        }
    }

}

@media (max-width :425px) {
    
    .advanced-btn {
        margin-bottom: 10px !important;
        margin-top: 16px !important;
    }
    .market-text{
        display: block;
    }
    .advanced-btn a .join-btn{
        padding: 9px 11px;
        font-size: 14px;
    }
    .list-item li{
        font-size: 18px;
    }
}