*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

button{
    cursor: pointer;
    border: none;
    outline: none;
}

body{
    background-color: #2b2b2b;
    font-family: work-sans, sans-serif;
    
    header{
        .header-container{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            width: 90%;
            margin: 0 auto;

            .logo{
                width: 200px;
            }

            .right-header{
                display: flex;
                align-items: center;
                gap: 30px;

                ul{
                    display: none;
                }

                .sign-up{
                    display: none;
                }

                .burger{
                    width: 38px;
                }
            }
        }

        .burger-menu{
            position: fixed;
            top: 79px;
            left: 0;
            width: 100%;
            height: calc(100dvh - 79px);
            background-color: #2b2b2b;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-end;
            text-align: right;
            padding: 40px;
            gap: 30px;
            transform: translateX(-100%);
            transition: 0.3s linear;
            z-index: 100;

            ul{
                display: flex;
                flex-direction: column;
                gap: 30px;

                li a{
                    font-size: 25px;
                    color: #FFFFFF;
                }
            }

            .sign-up{
                display: flex;
                align-items: center;
                gap: 12px;
                background-color: #A259FF;
                color: #FFFFFF;
                padding: 18px 30px;
                border-radius: 20px;
                font-weight: 600;
                font-size: 16px;

                img{
                    width: 20px;
                }
            }
        }

        .show{
            transform: translateX(0);
        }
    }
}

main{
    .hero{
        max-width: 90%;
        margin: auto;

        .hero-text{
            margin-top: 30px;

            h1{
                font-size: 35px;
                color: #FFFFFF;
            }

            p{
                width: 100%;
                color: #FFFFFF;
                margin-top: 20px;
            }

            button{
                display: none;
            }

            .statistic{
                display: none;
            }
        }

        .hero-img{
            width: 100%;
            margin-top: 30px;

            .main-img{
                width: 100%;
                display: block;
            }

            .person{
                padding: 20px;
                background-color: #3B3B3B;
                border-bottom-left-radius: 20px;
                border-bottom-right-radius: 20px;

                h4{
                    color: #FFFFFF;
                    font-size: 25px;
                }

                div{
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-top: 10px;

                    .avatar{
                        width: 30px;
                    }

                    p{
                        color: #FFFFFF;
                    }
                }
            }
        }

        .hero-mobile{
            button{
                margin-top: 40px;
                background-color: #A259FF;
                color: #FFFFFF;
                padding: 23px 30px;
                border-radius: 20px;
                font-weight: 600;
                font-size: 16px;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 12px;
            }

            .statistic{
                display: flex;
                justify-content: space-between;
                margin-top: 40px;

                .statistic-item{
                    h3{
                        font-size: 32px;
                        color: #FFFFFF;
                    }

                    p{
                        font-size: 16px;
                        color: #FFFFFF;
                    }
                }
            }
        }
    }


    // ------------------------------collection------------------------------


    .collection{
        max-width: 90%;
        margin: 80px auto;
        
        .collection-text{
            h2{
                font-size: 32px;
                color: #FFFFFF;
                font-weight: 700;
            }

            p{
                width: 100%;
                max-width: 500px;
                color: #FFFFFF;
                font-weight: 500;
                margin-top: 15px;
                letter-spacing: 1px;
            }
        }

        .collection-cards{
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;

            .mobile-card, .tablet-card, .desktop-card{
                width: 100%;
                margin-top: 40px;
                display: block;

                .card-main-img{
                    width: 100%;
                    display: block;
                }

                .small-img{
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 12px;
                    margin-top: 12px;

                    img{
                        width: 100%;
                        display: block;
                    }

                    .number{
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background-color: #A259FF;
                        color: #FFFFFF;
                        font-size: 20px;
                        font-weight: 600;
                        border-radius: 20px;
                    }
                }

            .person{
                padding-top: 20px;

                h4{
                    color: #FFFFFF;
                    font-size: 25px;
                }

                div{
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-top: 10px;

                    .avatar{
                        width: 30px;
                    }

                    p{
                        color: #FFFFFF;
                    }
                }
            }
            }

            .tablet-card, .desktop-card{
                display: none;
            }
        }
    }

        .data {
        max-width: 90%;
        margin: 80px auto;


                .data-header {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                    margin-bottom: 40px;

                .data-text {
                    h2 {
                        color: #FFFFFF;
                        font-size: 28px;
                        font-weight: 600;
                    }
                    p {
                        color: #FFFFFF;
                        font-size: 16px;
                        margin-top: 10px;
                    }
                }

                .view-rankings {
                    display: none;
                }
            }
        .creators-grid {
            display: grid;
            grid-template-columns: 1fr; 
            gap: 20px;

            #creator-6, #creator-7, #creator-8, #creator-9, 
            #creator-10, #creator-11, #creator-12 {
                display: none;
            }

            .creator-card {
                background: #3B3B3B;
                border-radius: 20px;
                padding: 20px;
                display: flex;
                align-items: center;
                gap: 20px;
                position: relative;
                transition: 0.3s;

                .rank {
                    position: absolute;
                    left: 12px;
                    top: 12px;
                    background: #2B2B2B;
                    color: #858584;
                    width: 24px;
                    height: 24px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 12px;
                }

                img {
                    width: 60px;
                    height: 60px;
                    border-radius: 50%;
                    object-fit: cover;
                }

                .creator-info {
                    h3 {
                        color: #FFFFFF;
                        font-size: 18px;
                        margin-bottom: 5px;
                    }
                    p {
                        color: #858584;
                        font-size: 14px;
                        span {
                            color: #FFFFFF;
                        }
                    }
                }
            }
        }

        .mobile {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background-color: transparent;
            border: 2px solid #A259FF;
            color: #FFFFFF;
            padding: 18px 30px;
            border-radius: 20px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            font-size: 16px;
            text-transform: capitalize;
            cursor: pointer;
            width: 100%;
            margin-top: 2rem;

            img {
                width: 20px;
                height: 20px;
            }

            &:hover {
                background-color: #A259FF;
                transition: 0.3s ease-in-out;
            }
        }
    }

    .categories{
        .categories-header{
            max-width: 90%;
            margin: auto;
            h1{
                font-size: 28px;
                color: #FFFFFF;
            }

            #categories-cards{
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 3rem;
                
                img{
                    width: 100%;
                }

                h4{
                    background-color: #3B3B3B;
                    padding: 20px;
                    border-bottom-left-radius: 15px;
                    border-bottom-right-radius: 15px;
                    margin-top: -7px;
                    color: #FFFFFF;
                }
            }
        }
    }

    // ----------------nft------------------

    .nft{
        display: flex;
        flex-direction: column;
        max-width: 90%;
        margin: 6rem auto;

        .nft-header{
            display: flex;
            flex-direction: column;
            gap: 12px;

            h1{
                color: #FFFFFF;
                font-size: 28px;
                font-weight: 600;
            }

            p{
                color: #FFFFFF;
                font-size: 16px;
                margin-top: 10px;
            }

            .nft-btn{
                display: none;
            }
        }

        #nft-cards{
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            margin-top: 3rem;

            .nft-card{
                background: #3B3B3B;
                border-radius: 20px;
                overflow: hidden;
                padding: 0;
                transition: transform 0.3s ease;
                
                img {
                    width: 100%;
                    height: 250px;
                    object-fit: cover;
                    display: block;
                }

                .nft-bottom{
                    padding: 30px;

                    h3{
                        color: #FFFFFF;
                        font-size: 20px;
                        margin: 0;
                        font-weight: 600;
                    }

                    .artist{
                        color: #858584;
                        font-size: 14px;
                        margin-top: 10px;
                        display: flex;
                        align-items: center;
                        gap: 15px;
                        
                        img{
                            width: 30px;
                            height: 30px;
                        }
                    }

                    .price-info {
                        display: flex;
                        justify-content: space-between;
                        gap: 20px;
                        margin-top: 1rem;

                        .label {
                            color: #858584;
                            font-size: 15px;
                        }

                        .value {
                            color: #FFFFFF;
                            font-size: 14px;
                            font-weight: 300;
                            margin-top: 5px;
                        }
                    }
                }
            }
        }
        .mobile {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background-color: transparent;
            border: 2px solid #A259FF;
            color: #FFFFFF;
            padding: 18px 30px;
            border-radius: 20px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            font-size: 16px;
            text-transform: capitalize;
            cursor: pointer;
            margin-top: 2rem;
            
            img {
                width: 20px;
                height: 20px;
            }
            
            &:hover {
                background-color: #A259FF;
                transition: 0.3s ease-in-out;
            }
        }
    }
    
    .auctions{
        background-image: url(../img/Glowing\ psychedelic\ mushroom\ close-up.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        margin: 5rem 0;
        width: 100%;

        .auction-header{
            max-width: 90%;
            margin: auto;
            padding: 9rem 0 4rem 0;

            .auction-left-desktop{

                .seller{
                    display: flex;
                    align-items: center;
                    gap: 1rem;
                    background-color: #3B3B3B;
                    border-radius: 20px;
                    padding: 10px;
                    width: 150px;

                    img{
                        width: 30px;
                        height: 30px;
                    }

                    h4{
                        font-weight: 200;
                        color: #FFFFFF;
                    }
                }

                h1{
                    font-size: 38px;
                    color: #FFFFFF;
                    margin-top: 2rem;
                }

                .auction-desktop-btn{
                    display: none;
                }
            }

            .auction-right{
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
                margin-top: 2rem;

                .count-down{
                    background-color: #3B3B3B;
                    filter: opacity(0.5);
                    border-radius: 20px;
                    padding: 20px;
                }

                .auction-mobile-btn{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 12px;
                    background-color: #ffffff;
                    color: #000000;
                    padding: 18px 30px;
                    border-radius: 20px;
                    font-weight: 600;
                    margin-top: 40px;
                    width: 100%;
                    font-size: 16px;

                    img{
                        width: 20px;
                    }
                }
            }
        }
    }

    .get-started{
        .get-started-header{
            max-width: 90%;
            margin: auto;

            .get-started-text{
                display: flex;
                flex-direction: column;
                gap: 2rem;

                h1{
                    color: #FFFFFF;
                    font-weight: 600;
                    font-size: 28px;
                }

                p{
                    color: #FFFFFF;
                    font-weight: 0;
                    font-size: 28px;
                }
            }

            .get-started-cards{
                display: flex;
                flex-direction: column;
                gap: 2rem;
                margin-top: 4rem;

                .card{
                    background-color: #3B3B3B;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    border-radius: 20px;

                    img{

                    }

                    .card-text{
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;

                        h2{
                            color: #FFFFFF;
                            font-weight: 600;
                            font-size: 22px;
                        }

                        p{
                            color: rgb(215, 212, 212);
                            font-weight: 0;
                            font-size: 16px;
                            padding: 0 10px 0 0;
                        }
                    }
                }
            }
        }
    }

    .inbox{
        max-width: 90%;
        margin: 80px auto;

        .inbox-header{
            display: flex;
            flex-direction: column;
            gap: 12px;

            img{
                width: 100%;
            }

            .inbox-text{
                display: flex;
                flex-direction: column;
                gap: 12px;

                h1{
                    color: #FFFFFF;
                    font-size: 28px;
                    font-weight: 600;
                }

                p{
                    color: #FFFFFF;
                    font-size: 18px;
                    margin-top: 10px;
                    font-weight: 100;
                }

                .input-btn{
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                    align-items: center;
                    margin-top: 20px;

                    input{
                        width: 100%;
                        padding: 18px 30px;
                        border-radius: 25px;
                        background-color: #ffffff;
                        border: none;
                        outline: none;
                        font-size: 18px;
                    }

                    button{
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 12px;
                        background-color: #A259FF;
                        color: #FFFFFF;
                        padding: 18px 30px;
                        border-radius: 25px;
                        font-weight: 600;
                        font-size: 16px;
                        width: 100%;

                        img{
                            width: 20px;
                        }
                    }
                }
            }
        }
    }
}


// ------------------------------footer------------------------------


.footer {
    background-color: #3b3b3b;
    color: white;
    padding: 40px 0;
    font-family: 'Work Sans', sans-serif;

    .footer-header {
        max-width: 90%;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {

        .logo{
            margin-bottom: 20px;
        }

        h3 {
            font-family: 'Space Mono', monospace;
            margin-bottom: 20px;
            font-size: 22px;
        }

        p {
            color: #cccccc;
            line-height: 1.5;
            margin-bottom: 20px;
            font-size: 16px;
        }

        ul {
            list-style: none;

            li {
                margin-bottom: 15px;

                a {
                    color: #858584;
                    text-decoration: none;
                }
            }
        }
    }

    .subscribe-form {
        display: flex;
        flex-direction: column;
        gap: 16px;

        input {
            padding: 16px 20px;
            border-radius: 20px;
            border: none;
            outline: none;
            font-size: 16px;
            background-color: white;
            color: black;
            width: 100%;
        }

        button {
            background-color: #a259ff;
            color: white;
            padding: 16px;
            border-radius: 20px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
    }

    .footer-bottom {
        border-top: 1px solid #858584;
        padding-top: 20px;
        max-width: 90%;
        margin: 40px auto 0 auto;

        p {
            color: #858584;
            font-size: 12px;
        }
    }
}

@media (min-width: 768px){
main{
    .hero{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        padding: 40px 0;

        .hero-text{
            width: 50%;
            margin-top: 0;

                h1{
                    font-size: 38px;
                    color: #FFFFFF;
                }

                p{
                    width: 100%;
                    max-width: 330px;
                    font-size: 18px;
                    color: #FFFFFF;
                }

                button{
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-top: 40px;
                    background-color: #A259FF;
                    color: #FFFFFF;
                    padding: 18px 30px;
                    border-radius: 20px;
                    font-weight: 600;
                    font-size: 16px;
                }

                    .statistic{
                        display: flex;
                        justify-content: flex-start;
                        margin-top: 40px;

                        .statistic-item{
                            h3{
                                font-size: 28px;
                                color: #FFFFFF;
                            }

                            p{
                                font-size: 16px;
                                color: #FFFFFF;
                                margin-top: 0 !important;
                            }
                        }
                    }
                }

                .hero-img{
                    width: 50%;
                    margin-top: 0;
                }

                .hero-mobile{
                    display: none;
                }
            }

        .collection{
            max-width: 90%;
            margin: 80px auto;
                
            .collection-text{
                h2{
                    font-size: 32px;
                    color: #FFFFFF;
                    font-weight: 700;
                }

                p{
                    width: 100%;
                    max-width: 500px;
                    color: #FFFFFF;
                    font-weight: 500;
                    margin-top: 15px;
                    letter-spacing: 1px;
                }
            }

            .collection-cards{
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;

                .tablet-card{
                    display: block;
                }
            }
        }

    .data {
        max-width: 90%;
        margin: 80px auto;


        .data-header {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 40px;

            .data-text {
                h2 {
                    color: #FFFFFF;
                    font-size: 28px;
                    font-weight: 600;
                }
                p {
                    color: #FFFFFF;
                    font-size: 16px;
                    margin-top: 10px;
                }
            }

            .view-rankings {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 12px;
                background-color: transparent;
                border: 2px solid #A259FF;
                color: #FFFFFF;
                padding: 18px 30px;
                border-radius: 20px;
                font-family: 'Work Sans', sans-serif;
                font-weight: 600;
                font-size: 16px;
                text-transform: capitalize;
                cursor: pointer;

                img {
                    width: 20px;
                    height: 20px;
                }

                &:hover {
                    background-color: #A259FF;
                    transition: 0.3s ease-in-out;
                }
            }
        }

        .creators-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); 
            gap: 20px;

                #creator-6{
                    display: block;
                }
            }

            .mobile{
                display: none;
            }
        }

        .categories{
            .categories-header{

                #categories-cards{
                    grid-template-columns: repeat(4, 1fr);

                    h4{
                        padding: 30px 20px;
                    }
                }
            }
        }

    .nft{
            display: flex;
            flex-direction: column;
            max-width: 90%;
            margin: 4rem auto;

            .nft-header{
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;

                h1{
                    color: #FFFFFF;
                    font-size: 28px;
                    font-weight: 600;
                }

                p{
                    color: #FFFFFF;
                    font-size: 16px;
                    margin-top: 10px;
                }

                .nft-btn {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 12px;
                    background-color: transparent;
                    border: 2px solid #A259FF;
                    color: #FFFFFF;
                    padding: 18px 30px;
                    border-radius: 20px;
                    font-family: 'Work Sans', sans-serif;
                    font-weight: 600;
                    font-size: 16px;
                    text-transform: capitalize;
                    cursor: pointer;
                    width: 200px;

                    img {
                        width: 20px;
                        height: 20px;
                    }

                    &:hover {
                        background-color: #A259FF;
                        transition: 0.3s ease-in-out;
                    }
                }
            }

            #nft-cards{
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 3rem;

                #nft-3{
                    display: none
                }

                .nft-card{
                

                    .nft-bottom{
                        padding: 30px;

                        h3{
                            color: #FFFFFF;
                            font-size: 20px;
                            margin: 0;
                            font-weight: 600;
                        }

                        .artist{
                            color: #858584;
                            font-size: 14px;
                            margin-top: 10px;
                            display: flex;
                            align-items: center;
                            gap: 15px;
                            
                            img{
                                width: 30px;
                                height: 30px;
                            }
                        }

                        .price-info {
                            display: flex;
                            justify-content: space-between;
                            gap: 20px;
                            margin-top: 1rem;

                            .label {
                                color: #858584;
                                font-size: 15px;
                            }

                            .value {
                                color: #FFFFFF;
                                font-size: 14px;
                                font-weight: 300;
                                margin-top: 5px;
                            }
                        }
                    }
                }
            }
            .mobile {
                display: none;
            }
        }

        .auctions{

            .auction-header{
                display: flex;
                align-items: center;
                justify-content: space-between !important;
                padding: 15rem 0 4rem 0;

                .auction-left-desktop{

                    .auction-desktop-btn{
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 12px;
                        background-color: #ffffff;
                        color: #000000;
                        padding: 18px 30px;
                        border-radius: 20px;
                        font-weight: 600;
                        margin-top: 40px;
                        width: 200px;
                        font-size: 16px;

                        img{
                            width: 20px;
                        }
                    }
                }

                .auction-right{
                    width: 300px;
                    margin: 0;

                    .auction-mobile-btn{
                        display: none;
                    }
                }
            }
        }

        .get-started{
            .get-started-header{
                max-width: 90%;
                margin: auto;

                .get-started-text{
                    display: flex;
                    flex-direction: column;
                    gap: 2rem;

                    h1{
                        color: #FFFFFF;
                        font-weight: 600;
                        font-size: 28px;
                    }

                    p{
                        color: #FFFFFF;
                        font-weight: 0;
                        font-size: 28px;
                    }
                }

                .get-started-cards{
                    display: flex;
                    flex-direction: row;
                    gap: 2rem;
                    margin-top: 4rem;

                    .card{
                        background-color: #3B3B3B;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                        align-items: center;
                        border-radius: 20px;
                        padding: 20px;
                        text-align: center;

                        img{

                        }

                        .card-text{
                            display: flex;
                            flex-direction: column;
                            gap: 1rem;

                            h2{
                                color: #FFFFFF;
                                font-weight: 600;
                                font-size: 22px;
                            }

                            p{
                                color: rgb(215, 212, 212);
                                font-weight: 0;
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }

        .inbox{
            background-color: #3B3B3B;
            border-radius: 20px;

            .inbox-header{
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 40px;
                padding: 40px;

                .astronant{
                    width: 50%;
                    height: 100%;
                }

                .inbox-text{
                    display: flex;
                    flex-direction: column;
                    gap: 12px;

                    h1{
                    }

                    p{
                    }

                    .input-btn{
                        display: flex;
                        flex-direction: column;
                        gap: 15px;
                        align-items: center;
                        margin-top: 20px;

                        input{
                        }

                        button{
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            gap: 12px;
                            background-color: #A259FF;
                            color: #FFFFFF;
                            padding: 18px 30px;
                            border-radius: 25px;
                            font-weight: 600;
                            font-size: 16px;

                            img{
                            }
                        }
                    }
                }
            }
        }
    }

    .footer {
        .footer-header {
            max-width: 90%;
            margin: auto;
        }

        .footer-column {
            width: 50%;
        }

        .subscribe-form {
            flex-direction: row;
            position: relative;

            input {
                width: 100%;
                padding: 16px 20px;
                border-radius: 20px;
                border: none;
                outline: none;
                font-size: 16px;
                background-color: white;
                color: black;
            }

            button {
                width: auto;
                padding: 17.5px 40px;
                position: absolute;
                right: 0;
                top: 0;
            }
        }
    }
}

@media (min-width: 1024px){
    body{
        header{
            .header-container{
                .right-header{
                    ul{
                        display: flex;
                        gap: 50px;
                        li a{
                            color: #FFFFFF;
                            font-size: 16px;
                            font-weight: 600;
                        }
                    }

                    .sign-up{
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        background-color: #A259FF;
                        color: #FFFFFF;
                        padding: 18px 30px;
                        border-radius: 20px;
                        font-weight: 600;
                        margin-left: 50px;

                        img{
                            width: 20px;
                        }
                    }

                    .burger{
                        display: none;
                    }
                }
            }
            .burger-menu {
                display: none;
            }
        }
    }
    
    main{
        .hero{
            .hero-text{
                h1{
                    font-size: 67px;
                    line-height: 1.1;
                }
                .statistic{
                    gap: 50px;
                }
            }
        }

        .collection{
            max-width: 90%;
            margin: 130px auto;
            
            .collection-text{
                h2{
                    font-size: 32px;
                    color: #FFFFFF;
                    font-weight: 700;
                }

                p{
                    width: 100%;
                    max-width: 500px;
                    color: #FFFFFF;
                    font-weight: 500;
                    margin-top: 15px;
                    letter-spacing: 1px;
                }
            }

            .collection-cards{
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;

                .desktop-card{
                    display: block;
                }
            }
        }

        .creators-grid {
            grid-template-columns: repeat(4, 1fr) !important;
            gap: 30px;


            #creator-6, #creator-7, #creator-8, #creator-9, 
            #creator-10, #creator-11, #creator-12 {
                display: block !important; 
            }


            .creator-card {
                flex-direction: column;
                align-items: center; 
                text-align: center;  
                padding: 20px;          

                img {
                    width: 120px;     
                    height: 120px;
                }

                .creator-info {
                    h3 {
                        font-size: 22px;
                    }
                    p {
                    }
                }
            }
        }

        .nft{
            margin-top: 8rem;

            .nft-header{

                h1{

                }

                p{

                }

                .nft-btn {


                    img {

                    }

                    &:hover {

                    }
                }
            }

            #nft-cards{
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
                margin-top: 3rem;

                #nft-3{
                    display: block
                }

                .nft-card{
                

                    .nft-bottom{


                        h3{

                        }

                        .artist{

                            
                            img{

                            }
                        }

                        .price-info {


                            .label {

                            }

                            .value {

                            }
                        }
                    }
                }
            }
        }

        .auctions{
            width: 100% !important;
            .auction-header{
                padding: 20rem 0 4rem 0;


                .auction-right{

                    .auction-mobile-btn{
                        display: none;
                    }
                }
            }
        }

        .get-started{
            .get-started-header{
                margin-top: 9rem;

                .get-started-text{

                    h1{
                    }

                    p{
                    }
                }

                .get-started-cards{
                    justify-content: space-between;

                    .card{
                        width: 280px;

                        img{
                            width: 300px;
                            height: 300px;
                        }

                        .card-text{
                            display: flex;
                            flex-direction: column;
                            gap: 1rem;

                            h2{
                                color: #FFFFFF;
                                font-weight: 600;
                                font-size: 28px;
                            }

                            p{
                                color: rgb(215, 212, 212);
                                font-weight: 0;
                                font-size: 19px;
                            }
                        }
                    }
                }
            }
        }

        .inbox{
            max-width: 90%;
            margin: 130px auto;

            .inbox-header{
                gap: 80px;
                padding: 60px;

                .astronant{
                    width: 400px;
                    height: auto;
                }

                .inbox-text{
                    gap: 20px;

                    h1{
                        font-size: 38px;
                    }

                    p{
                        font-size: 20px;
                    }

                    .input-btn{
                        display: flex;
                        flex-direction: row;
                        gap: 0;
                        position: relative;

                        input{
                            width: 100%;
                        }

                        button{
                            position: absolute;
                            right: 0;
                            top: 0;
                            height: 100%;
                            width: 200px;
                            border-radius: 25px;
                        }
                    }
                }
            }
        }
    }

    .footer{
        .footer-header{
            flex-direction: row;
            justify-content: space-between;
            gap: 0;
        

            .footer-column{
                width: 30%;
            }

            .subscribe-form{
                width: 100%;
            }
        }
    }
}

@media (min-width: 1300px){
    body{
        header{
            .header-container{
                width: 1200px;
                max-width: 1200px;
            }
        }
    }
    main{
        .hero, .collection, .data, .categories-header, .nft, .get-started-header, .auction-header, .inbox{
            max-width: 1200px !important;
        }

        .get-started{
            .get-started-header{


                .get-started-cards{

                    .card{
                        width: 350px;
                    }
                }
            }
        }
    }

    .footer-header, .footer-bottom{
        max-width: 1200px !important;
        margin: auto;
    }
}