@keyframes right-in {
    80% {
        transform: translateX(-20px);
    }
    to {
        transform: translateX(0px);
    }
}

@keyframes fly-up {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

#nftBlock {
    background-image: var(--img-bg-orange);
    background-repeat: repeat;

    padding: 0 0 250px;
    position: relative;
}

#pageHeader {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 350px;
}

#imgTop {
    position: relative;
    transform: translateX(-50%);
    left: 50%;
    height: 250px;
}

#nftArea {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;

    padding: 0 0 50px;

    color: white;
    overflow: hidden;
}

#nftArea > div.title {
    font-size: 30px;
    text-align: center;
    text-shadow: 2px 2px 8px #bd9e77;
}

#ownership {
    display: flex;
    justify-content: space-around;
    width: 75%;
}

#ownership > div:nth-child(1) {
    width: 60%;
    padding: 50px 0 75px;
}

#ownership p {
    line-height: 28px;
}

#ownershipImg {
    width: 30%;
    padding-top: 150px;

    transform: translateX(350px);
}

.sub-title {
    color: #F8FE57;
    font-size: 24px;
}

#nftWrapper {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;

    background-color: #f4e7c1;
    border-radius: 8px;
    border: 1px solid #727272;
    padding: 50px 0;

    color: #EF9740;
    position: relative;
}

#nftWrapper > .title {
    color: #3981F0;
    font-size: 24px;

    text-align: center;
}

#nftWrapper > p.desc {
    width: 80%;
    margin: 0 auto;
}

.corner_topLeft {
    position: absolute;
    top: -23px;
    left: -23px;
    width: 120px;
}

.corner_topRight {
    position: absolute;
    top: -23px;
    right: -23px;
    transform: rotateY(180deg);
    width: 120px;
}

.corner_bottomLeft {
    position: absolute;
    bottom: -23px;
    left: -23px;
    transform: rotateX(180deg);
    width: 120px;
}

.corner_bottomRight {
    position: absolute;
    bottom: -23px;
    right: -23px;
    transform: rotate(180deg);
    width: 120px;
}

#nftList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    width: 80%;
    margin: 0 auto;
}

#nftList > .nft-item:nth-child(1), .nft-item:nth-child(2) {
    width: 45%;
}

.nft-item {
    width: 30%;
    margin-top: 50px;

    opacity: 0;
    transform: translateY(200px);
}

.nft-item > p.title {
    text-align: center;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 20px;
}

.nft-bg {
    background-image: var(--img-ray);
    background-size: contain;
    background-position: 50% top;
    background-repeat: no-repeat;

    width: 100%;
    height: 225px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.nft-img {
    width: 150px;
}

.text-content {
    width: 80%;
    margin: 0 auto;
}

#useInGame {
    position: relative;
    margin: 100px auto 75px;
    height: 600px;
    width: 800px;
}

#useInGame > p.sub-title {
    margin: 0;
    padding: 30px 0;
}

.type-item {
    background-image: var(--img-nft-leaf);
    background-repeat: no-repeat;
    background-size: contain;

    width: 400px;
    height: 232px;

    position: absolute;

    opacity: 0;
    transform: translateY(200px);
}

.type-item-inner {
    width: 77%;
    margin: 0 auto;
    padding-top: 50px;
}

.type-item-inner > p {
    margin: 0;
}

.type-item-inner > p.title {
    padding-bottom: 5px;
    font-size: 24px;
}

.type-item-inner > p.desc {
    font-size: 16px;
}

#typeItem1 {
    left: 0;
}

#typeItem2 {
    left: 370px;
    top: 0;
}

#typeItem3 {
    left: 40px;
    top: 330px;
}

#typeItem4 {
    left: 410px;
    top: 245px;
}

#collectionWrapper > p.desc {
    line-height: 30px;
}

#imgGrass {
    background-image: var(--img-fence);
    background-repeat: repeat-x;
    background-size: auto 200px;

    width: 100%;
    height: 200px;

    position: absolute;
    bottom: 0;
}
