#links-section{
    width: 100%;
    height: 768px;
    background-image: url('../img/main_banner.jpg');
    background-size: cover;
    color: white;
    position: relative;
    z-index: 5;
}

#header-links-menu{
    margin-top: 120px;
    height: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.header-links-item{
    list-style: none;
    list-style-position: inside;
}

.link-title{
    position: relative;
    padding: 0;
    margin: 5px 0;
    display: inline;
    transition: .2s ease-out;
}

.link-title:hover{
    margin-left: 5px;
    transition: .3s ease-in;
}

.link-title::before{
    opacity: 0;
    position: absolute;
    content: '';
    background-color: white;
    height: 30px;
    width: 3px;
    left: -20px;
    top: 2px;
    transition: .2s ease-out;
}

.link-title:hover::before{
    opacity: 1;
    transition: .3s ease-in;
}

.link-description{
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    font-size: 18px;
}

.main-section{
    /* padding: 10px 50px; */
    box-sizing: border-box;
    background-color: #1F1F1F;
    color: white;
    position: relative;
}

.header-box{
    width: 100%;
    height: 80px;
    background-color: #3D111B;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.section-title{
    text-align: center;
    position: relative;
    font-size: 20px;
    opacity: .5;
}

.section-title.selected{
    opacity: 1 !important;
}

.section-title::after{
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #CB5F31;
    bottom: -10px;
    left: 0;
    transform: scaleX(0);
    transition: transform .2s ease-in;
}

.section-title.selected::after{
    transform: scaleX(1);
    transition: all .5s ease-out;
}

.section-body{
    width: 100%;
}

#recent-project-box{
    display: grid;
    grid-template-columns: repeat(auto-fill, 350px);
    grid-gap: 5px;
    justify-content: center;
    justify-items: center;
}

#recent-project-box.disable{
    display: none;
}

#recent-projects{
    -webkit-box-shadow: 0px 20px 140px 230px #1f1f1f;
    box-shadow: 0px 20px 140px 230px #1f1f1f;
}

.card{
    width: 350px;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.card img{
    width: 100%;
    height: 100%;
}

.card:hover .card-caption-box{
    bottom: 0;
    transition: all 0.6s ease-out;
}

.card-caption-box{
    width: 100%;
    position: absolute;
    height: 30%;
    bottom: -30%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    transition: bottom .4s ease-in;
}

.card-title{
    margin: 0;
    padding: 5px;
}

.card-description{
    padding: 5px;
    margin: 0;
}

.skeleton{
    width: 100%;
    min-height: 700px;
    display: none;
    grid-template-columns: repeat(auto-fill, 350px);
    grid-gap: 5px;
    justify-content: center;
    justify-items: center;
}

.skeleton.active{
    display: grid;
}

.skeleton-box{
    background-color: #9c9c9c;
    width: 350px;
    height: 350px;
    background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, .5) 50%,
    rgba(255, 255, 255, 0) 60%
    ) #9c9c9c;
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s loading ease-in-out infinite;
    min-height: 1.6rem;
    border-radius: 4px;
    animation-delay: .05s;
}

@keyframes loading {
  to {
    background-position-x: -20%;
  }
}


#recent-nft{
    z-index: 10;
}

.nft-banner{
    width: 100%;
}

#contact{
    text-align: center;
    -webkit-box-shadow: 0px 100px 6px 0px #1F1F1F;
    box-shadow: 0px 20px 60px 120px #1F1F1F;
}


.contact-description{
    text-align: center;
    width: 500px;
    margin-inline: auto;
    font-size: 30px;
    font-family: gadugib;
    font-weight: bold;
}

.contact-description a{
    text-decoration: solid;
}

@media screen and (max-width:500px) {
    #links-section{
        background-position: 25% 0;
    }

}

@media screen and (max-width:300px) {
    .card{
        width: 100%;
        height: 100vw;
    }

}

