*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: "Lobster", sans-serif;
}
html::-webkit-scrollbar-track{
    background: transparent;
}
html::-webkit-scrollbar-thumb{
    background: linear-gradient(#0c0908 10%,#e49158 50%);
    border-radius: 10px;
}
html::-webkit-scrollbar{
    width: 10px;
}
body{
    background: black;
}

/* Home Section Start */
.home{
    padding: 100px 11.5% 100px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
    transition: all .50s ease;
}
.home .img{
    flex:  1 1 200px;
}
.home .img img{
    width: 100%;
}
@keyframes c{
    0%, 100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(30px);
    }
}
.home-content{
    flex: 1 1 500px;
    margin-top: 90px;
}
.home-content .text{
    letter-spacing: 1px;
    font-size: 30px;
    color: #fff;
    font-weight: 700;
}
.home-content h3{
    font-size: 43px;
    color: #e49158;
    margin-top: 5px;
    font-weight: 700;
}
.home-content p{
    letter-spacing: 1px;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
}
.home button{
    position: relative;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 7px;
    border: 1px solid #e49158;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background: transparent;
    color: #e49158;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    cursor: pointer;
}
.home button:hover{
    color: #fff;
    background: #e49158;
    box-shadow: 0 0 30px 5px #e49158;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.25s ease-out;
}
.home button:hover::before{
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
}
.home button::before{
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #e49158;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

@keyframes sh02{
    form {
        opacity: 0;
        left: 0%;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        left: 100%;
    }
}
button:active{
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
}
@keyframes animate{
    40%, 60%{
        left: 100%;
    }
    100%{
        left: 0%;
    }
}
@media (max-width:1200px){
    .home{
        padding: 110px 7% 90px;
    }
}
@media (max-width:951px){
    .home{
        padding: 110px 11% 90px;
        height: auto;
    }
    
}
/* Home Section End */

/* Home Section Start */
.c{
    padding: 5px;
    height: 10vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
    transition: all .50s ease;
}
.c .img{
    flex:  1 1 200px;
}
.c .img img{
    width: 100%;
}
@keyframes c{
    0%, 100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(30px);
    }
}
.c-content{
    flex: 1 1 500px;
    margin-top: 90px;
}
.c-content .text{
    letter-spacing: 1px;
    font-size: 30px;
    color: #fff;
    font-weight: 700;
}
.c-content h3{
    font-size: 43px;
    color: #e49158;
    margin-top: 5px;
    font-weight: 700;
}
.c-content p{
    letter-spacing: 1px;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
}
.c button{
    position: relative;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 7px;
    border: 1px solid #e49158;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    background: transparent;
    color: #e49158;
    overflow: hidden;
    box-shadow: 0 0 0 0 transparent;
    cursor: pointer;
}
.c button:hover{
    color: #fff;
    background: #e49158;
    box-shadow: 0 0 30px 5px #e49158;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.25s ease-out;
}
.c button:hover::before{
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
}
.c button::before{
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #e49158;
    box-shadow: 0 0 50px 30px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

@keyframes sh02{
    form {
        opacity: 0;
        left: 0%;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
        left: 100%;
    }
}
button:active{
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
}
@keyframes animate{
    40%, 60%{
        left: 100%;
    }
    100%{
        left: 0%;
    }
}
@media (max-width:1200px){
    .c{
        padding: 110px 7% 90px;
    }
}
@media (max-width:951px){
    .c{
        padding: 110px 11% 90px;
        height: auto;
    }
    
}
/* Home Section End */


/* Top Card Start */
.top-card{
    padding: 0px 11.5% 0px;
    height: 50vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
    transition: all .50s ease;
}
.card-1{
    padding: 20px;
    border: 2px solid #e49158;
    border-radius: 3px;
    transition: 0.5s;
    cursor: pointer;
}
.card-1 h3{
    color: #fff;
    font-size: 18px;
    line-height: 1;
}
.card-1 h3 i{
    margin-right: 5px;
}
.card-1 h3 span{
    color: darkgray;
    font-size: 13px;
    margin-left: 10px;
}

.card-1:hover{
    box-shadow: 0 0 30px 5px #e49158;
}
@media (max-width:920px){
    .top-card{
        grid-template-columns: 1fr;
    }
}
@media (max-width:1200px){
    .top-card{
        padding: 110px 7% 90px;
    }
}
@media (max-width:951px){
    .top-card{
        padding: 110px 11% 90px;
    }
    .top-card{
        height: auto;
    }
}
/* Top Card End */


/* Trending Auction Start */
.trending{
    padding: 100px 11.5% 100px;
    transition: all .50s ease;
}
.trending h6{
    color: #e49158;
    font-size: 20px;
}
.trending h1{
    color: #fff;
    font-size: 32px;
    margin-top: 10px;
}
.trending .card-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, auto));
    gap: 0.90rem;
    margin-top: 30px;
}
.trending .card-content .row{
    width: 100%;
    padding: 15px;
    background-color: #a9a9a92e;
    color: black;
    overflow: hidden;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
}
#profile{
    margin-bottom: 10px;
}
#profile img{
    width: 30px;
}
#profile span{
    color: #fff;
}
#profile i{
    float: right;
    font-size: 20px;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
}
#profile i:hover{
    color: #e49158
}
.trending .img{
    text-align: center;
}
.trending .img img{
    width: 100%;
    border-radius: 10px;
}
.trending .card-body h3{
    margin-top: 15px;
    font-size: 20px;
    color: #fff;
}
.trending .card-body p{
    font-size: 15px;
    margin-top: 10px;
    color: #fff;
}
.trending .card-body h5{
    font-size: 17px;
    color: #fff;
    margin-top: 10px;
}
.trending .card-body h5 i{
    font-size: 25px;
    color: #606061;
}
.trending .card-body h5 button{
    float: right;
    width: 100px;
    height: 30px;
    background-color: #e49158;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
#trending-btn{
    margin-top: 30px;
    width: 150px;
    height: 32px;
    background-color: #fff;
    border-radius: 5px;
    border: none;
    transition: 0.5s ease;
    cursor: pointer;
}
#trending-btn:hover{
    background-color: #e49158;
    color: #fff;
}
@media (max-width:920px){
    .trending .card-content{
        grid-template-columns: 1fr;
        grid-template-columns: repeat(auto-fit, minmax(350px, auto));
    }
}
@media (max-width:1200px){
    .trending{
        padding: 110px 7% 90px;
    }
}
@media (max-width:951px){
    .trending{
        padding: 110px 11% 90px;
        height: auto;
    }
}
@media (max-width:600px){
    .trending .card-content{
        grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    }
} 
/* Trending Auction End */


/* Nfts Art Start */
.nfts-art{
    padding: 100px 11.5% 100px;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
    transition: all .50s ease;
}
.nfts-art .card-2 h3{
    font-size: 36px;
    color: #fff;
}
.nfts-art .card-2 p{
    color: darkgray;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 10px;
}
.nfts-art .card-2 button{
    width: 150px;
    height: 32px;
    background-color: #e49158;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.5s;
    cursor: pointer;
}
.nfts-art .card-2 button:hover{
    width: 165px;
}
.nfts-art .card-3 img{
    width: 100%;
}
@media (max-width:920px){
    .nfts-art{
        grid-template-columns: 1fr;
    }
}
@media(max-width:1200px){
    .nfts-art{
        padding: 110px 7% 90px;
    }
}
@media (max-width:951px){
    .nfts-art{
        padding: 110px 11% 90px;
        height: auto;
    }
}
/* Nfts Art End */



/* Road Map Start */
.road-map{
    padding: 100px 11.5% 100px;
    transition: all .50s ease;
}
.road-map .main-text h3{
    margin-top: 30px;
    color: #fff;
    text-align: center;
}
.road-map .card-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
    gap: 0.90rem;
    margin-top: 30px;
}
.road-map .card-content .row{

    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #0c0908 5%, #0c0c534a 50%);
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
}
.road-map .card-body{
    padding: 20px;
}
.road-map .card-body h3{
    margin-top: 15px;
    font-size: 15px;
    color: #fff;
}
.road-map .card-body h3 span{
    color: #e49158;
    font-weight: bold;
    font-size: 20px;
}
@media(max-width:920px){
    .road-map .card-content{
        grid-template-columns: 1fr;
        grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    }
}
@media(max-width:1200px){
    .road-map{
        padding: 110px 7% 90px;
    }
}
@media(max-width:951px){
    .road-map{
        padding: 110px 11% 90px;
        height: auto;
    }
}
/* Road Map End */

/* Meta Start */
.meta{
    padding: 100px 11.5% 100px;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
    transition: all .50s ease;
}
.meta-img img{
    width: 100%;
    background-color: #705d4a00;
    border-radius: 10px;
    transition: all .50s ease;
    cursor: pointer;
}
.meta-info h3{
    color: #fff;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 30px;
}
.meta-info h6{
    margin-top: 20px;
    font-size: 15px;
    letter-spacing: 2px;
    color: #606061;

}
.meta-info h6 span{
    color: #e49158;
    font-size: 20px;
}
#meta-btn{
    width: 150px;
    height: 36px;
    margin-top: 30px;
    background: #e49158;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
}
#meta-btn:hover{
    width: 165px;
}
@media(max-width:920px){
    .meta{
        grid-template-columns: 1fr;
    }
    .meta-img{
        order: 2;
    }
    .meta-img img{
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}
@media(max-width:1200px){
    .meta{
        padding: 110px 7% 90px;
    }
}
@media(max-width:951px){
    .meta{
        padding: 110px 11% 90px;
        height: auto;
    }
}
/* Meta Start */


/* NFTs Start */
.nfts{
    padding: 100px 11.5% 100px;
    transition: all .50s ease;
}
.nfts .main-text{
    text-align: center;
}
.nfts .main-text h1{
    color: #fff;
    font-size: 32px;
    margin-top: 10px;
}
.nfts .main-text h2{
    color: #e49158;
    font-size: 32px;
    margin-top: 10px;
    border-bottom: 2px solid #e49158;
    display: inline-block;
}
.nfts .card-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, auto));
    gap: 0.90rem;
    margin-top: 30px;
}
.nfts .card-content .row{
    width: 100%;
    padding: 15px;
    background-color: #a9a9a92e;
    color: black;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
}
.nfts .img{
    text-align: center;
}
.nfts .img img{
    width: 100%;
    border-radius: 10px;
}
.nfts .card-body h3{
    margin-top: 15px;
    font-size: 20px;
    color: #fff;
}
.nfts .card-body h3 button{
    float: right;
    padding: 5px;
    background-color: #e49158;
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.nfts .card-body h5{
    margin-top: 10px;
    color: #fff;
    font-weight: 300;
    font-size: 15px;
}
.nfts .card-body h5 span{
    float: right;
    color: #8b8b8b;
}
@media (max-width:920px){
    .nfts .card-content{
        grid-template-columns: 1fr;
        grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    }
}
@media(max-width:1200px){
    .nfts{
        padding: 110px 7% 90px;
    }
}
@media(max-width:951px){
    .nfts{
        padding: 110px 11% 90px;
        height: auto;
    }
}
/* NFTs End */

