﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');:root {
    --main-color: linear-gradient(90deg, #13294B 0%, #1A8E90 100%);
    --second-color: #1A8E90;
}

body {
    font-size: 15px;
    font-family: "Poppins", sans-serif!important;
}

header {
    display: none !important;
}
.top_box_two {
    display: none;
}
.my-header .flex-item-header .my-nav ul li a .fa-bars {
    font-size: 24px;
}

/*========================= Navbar =======================================
*/
.my-header {
    background: var(--main-color);
    padding: 9px 0;
    position: sticky;
    top: 0;
    z-index: 9;
}

    .my-header .flex-item-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap:wrap;
    }

        .my-header .flex-item-header .logo {
            width: 210px;
        }

        .my-header .flex-item-header .search-section {
            display: flex;
            gap: 25px;
            align-items: center;
            flex-wrap:wrap;
        }


            .my-header .flex-item-header .search-section .link-tag {
                display: flex;
                gap: 25px;
            }

        .my-header .flex-item-header .my-nav ul {
            display: flex;
            column-gap: 40px;
            margin-bottom: 0;
        }

            .my-header .flex-item-header .my-nav ul li a {
                color: white;
                font-size: 18px;
                text-decoration: none;
            }
                .my-header .flex-item-header .my-nav ul li a img{
                    width:27px;
                }

                .my-header .flex-item-header .search-section .link-tag a {
                    color: white;
                    font-size: 18px;
                    text-decoration: none;
                }

        .my-header .flex-item-header .search-section .search-box {
            position: relative;
            background: white;
            padding: 7px 20px;
            border-radius: 40px;
        }

            .my-header .flex-item-header .search-section .search-box input {
                border: none;
                background: none;
            }

                .my-header .flex-item-header .search-section .search-box input:focus {
                    outline: none;
                    background: transparent;
                }

            .my-header .flex-item-header .search-section .search-box .fa {
                font-size: 16px;
                color: #bdbdbd;
                font-weight: 300;
            }
/*========================= Navbar =======================================
*/

/*========================= Slider =======================================
*/
.my-slider-section {
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(../../images/nft-banner.png);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

    /* 🔹 Inner Container */
    .my-slider-section .my-slider-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 50px;
        flex-wrap: wrap;
        animation: fadeIn 1.5s ease-in-out forwards;
    }

        /* 🔹 Heading */
        .my-slider-section .my-slider-inner .box h4 {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.4;
            animation: slideUp 1.2s ease-out forwards;
        }

        /* 🔹 Inner Box */
        .my-slider-section .my-slider-inner .box .inner-box {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1.5s ease forwards;
            animation-delay: 0.6s;
        }

            /* 🔹 Icon Box */
            .my-slider-section .my-slider-inner .box .inner-box .icon-box img {
                width: 130px;
                transition: transform 0.5s ease, filter 0.3s ease;
            }

                .my-slider-section .my-slider-inner .box .inner-box .icon-box img:hover {
                    transform: scale(1.1) rotate(5deg);
                    filter: brightness(1.3);
                }

            /* 🔹 Content Box */
            .my-slider-section .my-slider-inner .box .inner-box .content {
                text-align: left;
                max-width: 300px;
            }

                .my-slider-section .my-slider-inner .box .inner-box .content h6 {
                    font-size: 24px;
                    color: #fff;
                    margin-bottom: 8px;
                    animation: slideUp 1.2s ease forwards;
                }

                .my-slider-section .my-slider-inner .box .inner-box .content p {
                    margin: 0;
                    color: #ccc;
                    font-size: 16px;
                    line-height: 1.5;
                    animation: fadeIn 2s ease forwards;
                }

/* 🔹 Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔹 Responsiveness */
@media (max-width: 992px) {
    .my-slider-section {
        padding: 30px 0;
    }

        .my-slider-section .my-slider-inner {
            gap: 30px;
        }

            .my-slider-section .my-slider-inner .box h4 {
                font-size: 26px;
                margin-bottom:0px;
            }

            .my-slider-section .my-slider-inner .box .inner-box .icon-box img {
                width: 100px;
            }
}

@media (max-width: 768px) {
    .my-slider-section .my-slider-inner {
        flex-direction: column;
        text-align: center;

    }
    .flex-item-header .my-nav {
        width: 90%;
    }
        .flex-item-header .my-nav ul {
            justify-content: space-between;
        }
    .my-slider-section .my-slider-inner .box .inner-box {
        flex-direction: column;
    }
        .nft-collection {
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)) !important;
        }
    .RESERVE-section {
        padding: 20px 0 !important;
    }
    .mytabs ul.tabs li{
        margin-bottom:5px;
    }
    .video-section .videos{
        width:100%!important;
    }
    .filter-btn {
        display: none;
    }
    .mytabs {
        padding: 20px 0!important;
    }
    .video-section .videos iframe {
        height: auto !important;
    }
    .video-section {
        padding: 10px 0!important;
    }
    .heading-area h2 {
        font-size: 18px !important;
    }
    .my-slider-section .my-slider-inner .box .inner-box .icon-box img {
        width: 50px !important;
    }
    .sidebar ul li {
        margin-bottom: 5px!important;
    }
    .footer-area .col-lg-3 {
        margin-top: 0px !important;
    }
    .footer-area .col-lg-2{
        margin-top:0px!important;
    }
    .single-footer-widget {
        margin-bottom: 0px!important;
    }
        .single-footer-widget h3 {
            margin-bottom: 8px!important;
        }

        .my-slider-section .my-slider-inner .box h4 {
            font-size: 24px;
            padding: 0 15px;
        }

        .my-slider-section .my-slider-inner .box .inner-box .content {
            text-align: center;
        }
    .top_box_two {
        display: block !important;
        position: fixed;
        width: 93%;
        bottom: 3%;
        left: 3%;
        background: #bababa !important;
        color: white;
        z-index: 99999999999;
        border-radius: 50px;
        box-shadow: rgba(0, 0, 0, 0.3) -2px -2px 8px, rgba(0, 0, 0, 0.22) 4px 4px 5px;
    }
        .top_box_two .box_one {
            width: 20%;
            float: left;
            text-align: center;
            padding-top: 0px;
           /* background: none !important;*/
            padding-bottom: 0px;
            height: 58px;
            padding-top: 9px;
        }
            .top_box_two .box_one a {
                color: white !important;
                text-decoration:none;
            }
        .top_box_two p {
            color: #333333;
            font-size: 13px;
            margin-bottom: 0;
            margin-top: 0;
            line-height:normal;
        }

}

@media (max-width: 480px) {
   /* .my-slider-section {
        padding: 60px 0;
    }
*/
        .my-slider-section .my-slider-inner .box h4 {
            font-size: 20px;
        }

        .my-slider-section .my-slider-inner .box .inner-box .icon-box img {
            width: 80px;
        }

        .my-slider-section .my-slider-inner .box .inner-box .content h6 {
            font-size: 18px;
        }
}
/*========================= Slider =======================================
*/
.heading-area {
    text-align: center;
    margin-bottom: 38px;
}

    .heading-area h2 {
        color: white;
        background: var(--main-color);
        font-size: 26px;
        padding: 5px 0;
        border-radius: 20px;
    }
/*========================= NFT =======================================
*/
.nft-collection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    justify-items: center;
}

.my-NFT-collection {
    padding: 50px 0;
}

.last {
    margin-bottom: 0px !important;
}

.nft-item {
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
}

    .nft-item .content .nft-name {
        text-align: left;
        margin-bottom: 4px;
    }

.flex-item-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .flex-item-inner .total-items {
        margin: 0px;
    }

    .flex-item-inner .creator {
        margin: 0px;
        font-size: 14px;
        color: #333;
    }

        .flex-item-inner .creator img {
            width: 30px;
            border-radius: 50%;
            margin-right: 5px;
            border: 2px solid #000;
        }

    .flex-item-inner .total-items {
        background: var(--main-color);
        border-radius: 20px;
        color: white;
        padding: 0 10px;
        font-size: 13px;
    }

.nft-item .flex-item {
    display: flex;
    gap: 0px;
}

.nft-item .content {
    margin: 20px 0;
}

.nft-item .flex-item .nft-img {
    width: 70%;
}

.nft-item .flex-item .right-img {
    width: 30%;
}

    .nft-item .flex-item .right-img img {
        margin-bottom: 8px;
        border-radius: 10px;
        height: 90px;
        width: 90px;
    }

.nft-item:hover {
    transform: scale(1.05);
}

.nft-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.nft-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.creator {
    color: #777;
    font-size: 1rem;
    margin-bottom: 10px;
}

.total-items {
    color: #555;
    font-size: 0.9rem;
}

/*========================= NFT =======================================
*/


/*========================= Reserve =======================================
*/

.RESERVE-section {
    padding: 50px 0;
    background: #f7f7f7;
}

    .RESERVE-section .mymaindiv {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
        gap: 70px;
        align-items: center;
    }

        .RESERVE-section .mymaindiv h4 {
            font-size: 34px;
            font-weight: 800;
            background: var(--main-color);
            -webkit-background-clip: text; /* Chrome, Safari */
            background-clip: text; /* Standard */
            color: transparent;
        }

        .RESERVE-section .mymaindiv p {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .RESERVE-section .mymaindiv a {
            background: var(--main-color);
            color: white;
            padding: 10px 23px;
            border-radius: 20px;
            text-transform: uppercase;
            font-weight: 700;
            margin-right: 17px;
        }
/*========================= Reserve =======================================
*/


/*========================= Mytabs =======================================
*/
.mytabs {
    padding: 50px 0;
}

    .mytabs ul.tabs {
        margin: 0px;
        padding: 0px;
        list-style: none;
    }

        .mytabs ul.tabs li {
            background: none;
            background: #ededed;
            color: #222;
            display: inline-block;
            padding: 3px 23px;
            cursor: pointer;
            border-radius: 20px;
        }

            .mytabs ul.tabs li.current {
                background: var(--main-color);
                color: #fff;
            }

    .mytabs .tab-content {
        display: none;
    }

        .mytabs .tab-content.current {
            display: inherit;
        }

.tabs-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tab-flex-inner .box {
    background: white;
    padding: 10px;
    border-radius: 10px;
}

    .tab-flex-inner .box .img-section {
        position: relative;
    }

        .tab-flex-inner .box .img-section img {
            border-radius: 10px;
        }

.tab-flex-inner .position-img {
    width: 52px;
    position: absolute;
    bottom: -15px;
    left: 15px;
    z-index: 9999999;
    border-radius: 50px !important;
    border: 1px solid black;
    z-index: revert-layer;
}

.tab-flex-inner .box .content-tbas {
    margin: 22px 0 10px 0;
}

    .tab-flex-inner .box .content-tbas h3 {
        margin: 0px 0 5px 0;
        font-size: 16px;
        word-break: break-all;
    }

    .tab-flex-inner .box .content-tbas img {
        background: var(--second-color);
        width: 20px;
        height: 20px;
        padding: 4px;
        border-radius: 50px;
    }

    .tab-flex-inner .box .content-tbas .foot {
        display: flex;
        align-items: center;
        gap: 4px;
    }

        .tab-flex-inner .box .content-tbas .foot span {
            font-size: 13px;
        }

.tab-flex-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(222px, 1fr));
    gap: 10px;
    align-items: center;
}

.mytabs .view-btn {
    text-align: center;
    margin: 17px 0 0 0;
}

    .mytabs .view-btn a {
        padding: 10px 39px 10px 39px;
        display: inline-block;
        border-radius: 20px;
        background: var(--main-color);
        color: white;
        font-weight: 600;
    }



/*========================= Mytabs =======================================
*/



/*========================= Video =======================================
*/

.video-section {
    padding: 50px 0;
    background: #f7f7f7;
}

    .video-section .videos {
        width: 80%;
        margin: 0 auto
    }

        .video-section .videos iframe {
            width: 100%;
            height: 500px;
        }


/*========================= Mytabs =======================================
*/

/*========================= User =======================================
*/
.account {
    padding: 50px 0;
}

    .account .main-section .login-form {
        background: var(--main-color);
        width: 30%;
        text-align: center;
        padding: 36px 0;
        border-radius: 15px;
    }

        .account .main-section .login-form .logo-section {
            text-align: center;
            height: 140px;
            width: 140px;
            margin: 0 auto;
            border-radius: 50%;
        }

            .account .main-section .login-form .logo-section img {
                width: 100%;
                height: 100%;
                border-radius: 50%;
            }

        .account .main-section .login-form .content-area .user-id {
            margin: 8px 0;
        }

            .account .main-section .login-form .content-area .user-id span {
                color: white;
                font-size: 18px;
                margin-right: 10px;
            }

            .account .main-section .login-form .content-area .user-id h6 {
                font-size: 18px;
                margin-top: 6px;
                margin-bottom: 11px;
                color: white;
            }

        .account .main-section .login-form .content-area .lable-section button {
            display: block;
            margin: 6px auto;
            padding: 0 56px;
            border-radius: 26px;
            outline: none;
            width: 203px;
            height: 34px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .account .main-section .login-form .content-area .lable-section button img {
                width: 28px;
                height: 28px;
            }

        .account .main-section .login-form .content-area .legal-info a {
            color: white;
            text-decoration: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

    .account .main-section {
        display: flex;
        border: 2px solid #ebebeb;
        border-radius: 15px;
    }

        .account .main-section .data-section {
            width: 70%;
            padding: 15px 30px;
        }

            .account .main-section .data-section .wallet-section {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap:wrap;
            }

                .account .main-section .data-section .wallet-section .top .top-inner {
                    display: flex;
                    align-items: anchor-center;
                    justify-content: end;
                    gap: 7px;
                }

                .account .main-section .data-section .wallet-section .top img {
                    width: 30px;
                    height: 30px;
                }

                .account .main-section .data-section .wallet-section .top span {
                    font-size: 35px;
                    font-weight: 800;
                }

                .account .main-section .data-section .wallet-section .top p {
                    font-size: 32px;
                    font-weight: 800;
                }

                .account .main-section .data-section .wallet-section .top button {
                    display: block;
                    background: linear-gradient(90deg, #13294B 0%, #1A8E90 100%);
                    color: white;
                    padding: 6px 10px;
                    margin: 13px 0;
                    width: 134px;
                    border-radius: 20px;
                    border: none;
                    font-weight: 800;
                }

                    .account .main-section .data-section .wallet-section .top button .fa {
                        margin-right: 5px;
                    }

.data-section-bottom .table tr td img {
    margin-right: 6px;
}

.my-team-section .team-main-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}
    .my-team-section .team-main-section .box-team {
        border: 1px solid #d3d3d3;
        border-radius: 9px;
        padding: 22px;
    }
.my-team-section {
    margin-bottom: 50px;
}
.my-team-section .team-main-section .box-team .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
    .my-team-section .team-main-section .box-team .top h5 {
        margin-bottom: 0px;
        font-weight: 700;
    }
        .my-team-section .team-main-section .box-team .team-inner {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            align-items: center;
            gap: 20px
        }
        .my-team-section .team-main-section .box-team .top a {
            text-decoration: none;
            color: #a9a9a9;
        }
    .my-team-section .team-main-section .box-team .team-inner .team-inner-box {
        text-align: center;
        padding: 10px 12px;
        border-radius: 10px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
            .my-team-section .team-main-section .box-team .team-inner .team-inner-box p {
                margin-bottom: 0px;
                font-weight: 900;
                line-height: normal;
                margin-top: 4px;
            }
    .my-team-section .team-main-section .box-team .team-inner2 .team-inner-box {
        box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
            .my-team-section .team-main-section .box-team .team-inner2 .team-inner-box p {
                margin-bottom: 0px;
                font-weight: 700;
                line-height: normal;
                margin-top: 8px;
            }
            .my-team-section .team-main-section .box-team .team-inner2 .team-inner-box img {
                width: 24px;
                margin-top: 4px;

            }
                   
/*========================= USer =======================================
*/

@media only screen and (max-device-width: 767px) {
    .my-header .flex-item-header {
        justify-content: center;
    }
    .my-header .flex-item-header .search-section{
        justify-content:center;
    }
        .my-header .flex-item-header .search-section {
            justify-content: center;
            margin-bottom: 7px;
        }
    .my-header .flex-item-header {
        justify-content: center !important;
        flex-direction: column;
    }
        .sidebar {
            top: 137px !important;
        }
    .my-header .flex-item-header .logo {
        width: 140px;
        margin-bottom: 4px;
    }
    .RESERVE-section .mymaindiv {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .my-header .flex-item-header .my-nav ul li a{
        font-size:15px!important;
    }
        .my-header .flex-item-header .my-nav ul li a img {
            width: 25px;
        }
        .my-header .flex-item-header .my-nav ul {
            column-gap: 30px;
        }
      
    .my-header .flex-item-header .search-section .search-box{
        display:none;
    }
    .my-header .flex-item-header .search-section .link-tag a {
        font-size: 15px;
    }
    .username h3 {
        font-size: 20px!important;
    }
    .profile {
        gap: 15px;
        align-items: center !important;
        padding: 6px 13px!important;
    }
        .profile .img-section {
            width: 44px;
        }
    .username{
        margin-bottom:0px!important;
    }
    .username img{
        width:30px;
    }
    .point span {
        font-size: 14px;
    }
    .mytabs ul.tabs li {
        font-size: 14px;
    }
    .account .main-section{
        flex-wrap:wrap;
    }
        .account .main-section .login-form{
            width:100%;
        }
        .account .main-section .data-section{
            width:100%;
        }
            .account .main-section .data-section .wallet-section{
                justify-content:center;
            }
                .account .main-section .data-section .wallet-section .top .top-inner {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
    .my-team-section .team-main-section .box-team .team-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .my-team-section .team-main-section {
        grid-template-columns: repeat(auto-fit, minmax(304px, 1fr));
        gap: 10px;
    }
    .account .main-section .data-section .wallet-section .top p {
        font-size: 22px;
    }
}

@media screen and (min-device-width: 767px) and (max-device-width: 992px) {
    
}