@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

:root {
    --scrollbar-track: #f1f1f1;
    --scrollbar-thumb: #885af3;
    --text-dark: #0f051d;
    --text-light: #7b7583;
    --white: #fff;
    --gradient: linear-gradient(7deg, #2600fc 0%, #ff00ea 100%);
    --border: rgba(131, 131, 131, 0.267);
    --gr-bg: #872bff;
    --input-bg: rgba(0, 0, 0, 0.05);
    --back-to-top: #e6e6ff;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 1rem;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 1rem;
}

.container {
    max-width: 144rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.heading {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.text-secondary {
    font-size: 1.7rem;
    color: var(--text-light);
}

.secondary {
    color: var(--text-light);
}

.btn-primary {
    display: inline-flex;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--white);
    font-weight: 600;
    border-radius: 3rem;
    cursor: pointer;
    border: 0.15rem solid var(--gr-bg);
    outline: none;
    transition: all 0.5s ease;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--gr-bg);
    border: 0.15rem solid var(--gr-bg);
}

.btn-primary ion-icon,
.btn-secondary ion-icon {
    font-size: 2rem;
    transform: rotate(45deg);
}

.btn-secondary {
    color: var(--text-dark);
    display: inline-flex;
    gap: 1rem;
    font-weight: 600;
    padding: 0.3rem 0;
    border-bottom: 0.15rem solid var(--text-light);
}

.text-center {
    text-align: center;
}

.text-gr {
    color: var(--gr-bg);
}

#home {
    background: url('images/hero-bg.png') no-repeat center/cover;
}

.navigation {
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    width: 10rem;
}
.logo1 {
    font-size: 30px;
    color: black;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    
}


.nav_list {
    display: inline-flex;
    margin: 0 1rem;
}

.nav_link {
    font-weight: 700;
    color: var(--text-dark);
}

.action_link {
    display: inline-flex;
    margin: 0 1rem;
    cursor: pointer;
}
.black {
    color: black;
}
.action_link ion-icon {
    font-size: 2rem;
}

.home-container {
    padding: 10rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 2rem;
    align-items: center;
}

.home-image img {
    width: 100%;
}

.home-content .text-secondary {
    margin: 3rem 0;
}

.status {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
}

.members {
    display: inline-flex;
    margin-left: 2rem;
}

.member {
    margin-left: -2rem;
}

.member img {
    width: 4rem;
}

.status-info .secondary {
    font-size: 1.4rem;
}

.nav_toggle {
    display: none;
}
/* whatsapp */
#whatsapp .wtsapp {
    position: fixed;
    transition: all .5s ease;
    background-color: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    border-right: none;
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    bottom: 100px;
    left: 15px;
    border: 0;
    z-index: 9999;
    width: 50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;

}
/* #whatsapp .wtsapp::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500mx ease-out infinite;
    animation: pulse-border 1500mx ease-out infinite;
} */
#whatsapp .wtsapp:focus {
    border: none;
    outline: none;
}
@keyframes pulse-border {
    0%{
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
         opacity: 1;
        }
    100%{
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
         opacity: 0;
        }
}

.partners {
    padding: 10rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: 2rem;
}
#about {
    padding: 80px 0;
}
.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1 {
    flex-basis: 35%;
}
.about-col-1 img {
    width:70%;
    border-radius: 15px;
    margin-left: 50px;
}
.about-col-2 {
    flex-basis: 65%;
}
.about-col-2 p{
    font-weight: 400;
}
.sub-title {
    font-size: 50px;
    font-weight: 600;
    margin-left: 50%;
    margin-bottom: 30px;
}
.tab-titles {
    display: flex;
    margin: 20px 0 40px;
}
.tab-links {
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff005f;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after {
    width: 50%;
}
.tab-contents ul li {
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span {
    color: #ff004f;
    font-size: 14px;
}
.tab-contents {
    display: none;
}
.tab-contents.active-tab {
    display: block;
}
/* .somto {
    color: #0f051d7a;
} */
/* data */
.data {
    font-weight: 700;
}

/* skills */
.som {
    text-align: center;
    align-items: center;
    margin-bottom: 35px;
    font-size: 40px;
    font-weight: 700;
}
.skill {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.skills {
    width: 160px;
    height: 160px;
    /* background: cornflowerblue; */
    position: relative;
}
.outer {
    height: 160px;
    width: 160px;
    border-radius: 50%;
    /* border: 1px solid red; */
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
                -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    padding: 20px;
}
.inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    /* border: 1px solid red; */
    box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
                inset 4px 4px 6px -1px rgba(255, 255, 255, 0.7),
                -0.5px -0.5px 0px rgba(255,255,255,1),
                0.5px 0.5px 0px rgba(0,0,0,0.15);
                /* 0px 12px 10x -10px rgba(0,0,0,0.05); */
}
#number {
    font-weight: 600;
    color: #555;
}
/* html */
circle {
    fill: none;
    stroke: url(#GradientColor);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: anim 2s linear forwards;
}
svg {
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes anim {
    100%{
        stroke-dashoffset: 110;
    }
}

.cir {
    fill: none;
    stroke: url(#GradientColor);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: anim2 2s linear forwards;
}
svg {
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes anim2 {
    100%{
        stroke-dashoffset: 90;
    }
}
/* mern */
.ci {
    fill: none;
    stroke: url(#GradientColor);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: anim3 2s linear forwards;
}
svg {
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes anim3 {
    100%{
        stroke-dashoffset: 160;
    }
}



/* javascript */
.circ {
    fill: none;
    stroke: url(#GradientColor);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: anim1 2s linear forwards;
}
svg {
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes anim1 {
    100%{
        stroke-dashoffset: 130;
    }
}
.cis {
    fill: none;
    stroke: url(#GradientColor);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: anim5 2s linear forwards;
}
svg {
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes anim5{
    100%{
        stroke-dashoffset: 180;
    }
}




.partner {
    text-align: center;
}

.section-before {
    text-align: center;
    padding: 2rem 0;
}

.section-heading {
    padding: 5rem 0;
    text-align: center;
}

.nft-collection-container {
    padding: 5rem 0;
    margin-bottom: 5rem;
    
}

.swiper-wrapper {
    display: flex;
}

.nft-item {
    width: 25rem;
    text-align: center;
}

.nft-image img {
    width: 100%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev,
.swiper-button-next {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--white);
    border: 0.1rem solid var(--border);
    box-shadow: 0rem 0.3rem 0.8rem -0.1rem var(--input-bg);
}

.swiper-button-prev ion-icon,
.swiper-button-next ion-icon {
    font-size: 2rem;
    color: var(--text-light);
}

.swiper-pagination-bullet {
    opacity: 0.1;
    background: var(--text-dark);
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

#why-us {
    padding: 5rem 0;
}

.why-us {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(27rem, 1fr));
    gap: 1.5rem;
    justify-content: center;
    place-items: center;
}

.why-item {
    padding: 3rem 2.5rem;
    border: 0.1rem solid var(--border);
    border-radius: 2rem;
}

.why-item:nth-child(even) {
    margin-top: 5rem;
}

.why-item .why-title {
    padding: 2.5rem 0;
    font-size: 2.5rem;
}
.footer {
    height: 50px;
    width: 100%;
    background: #0f051d;
}
.footer-text {
    margin: 10px auto;
    color: #e6e6ff;
    
    margin-bottom: 100px;
}

@media (max-width: 800px) {
    /* Navigation CSS */
    .nav_toggle {
        display: inline-flex;
    }
    .nav_toggle ion-icon {
        font-size: 2.3rem;
    }
    .nav_menu {
        position: absolute;
        top: 0;
        right: 0;
        height: 100vh;
        width: 0;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
        overflow: hidden;
        transition: width 0.5s ease;
    }
    .nav_list {
        display: block;
        width: 100%;
        text-align: center;
        padding-bottom: 0.7rem;
        border-bottom: 0.1rem solid var(--text-light);
    }
    .active_menu {
        width: 30rem;
    }
    .about-col-1 img {
        margin-left: 100%;
    }
    .sub-title {
        font-size: 50px;
        font-weight: 600;
        margin-left: 15%;
        margin-bottom: 30px;
    }
    .about-col-1 img {
        /* width:70%;
        border-radius: 15px;
        margin-left: 50px; */
        margin-bottom: 20px;
    }
    
}