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

    position: relative;
    padding-bottom: 100px;
}

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

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

#roadmapContent {
    width: 90%;
    max-width: 1000px;
    min-height: 2150px;
    margin: 20px auto 150px;

    position: relative;
}

#roadmapContent > .title {
    color: white;
    text-align: center;
    font-size: 45px;
    line-height: 54px;
    text-shadow: 2px 2px 10px #d87707;
    position: relative;
}

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

    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
    justify-content: space-between;
}

.phase-item-holder {
    width: 38%;
    height: 0;
}

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

.phase-item {
    background-image: var(--img-roadmap-card);
    background-repeat: no-repeat;
    background-size: 105% 107%;
    background-position: 50% 50%;

    position: relative;
    width: 38%;
    padding: 15px 30px;

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

.phase-item .corner_topLeft {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 70px;
}

.phase-item .corner_topRight {
    position: absolute;
    top: -15px;
    right: -15px;
    transform: rotateY(180deg);
    width: 70px;
}

.phase-item-title {
    background-image: var(--img-roadmap-title);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 50% 50%;

    color: white;
    border-radius: 7px;
    height: 50px;
    line-height: 50px;
}

.phase-item-title .name {
    font-size: 20px;
    margin: 0 20px;
    font-family: sans-serif;
}

.phase-item-title .title {
    font-weight: bold;
    font-size: 20px;
}

.phase-item-content {
    color: #ff8c1c;
    font-size: 18px;
    margin: 10px 0;
}

.phase-item-list {
    padding-top: 1px;
    display: flex;
    flex-direction: column;
}

.item-detail {
    display: flex;
    font-size: 14px;
}

.item-detail .title {
    color: #ff8c1c;
    font-weight: bold;
    width: 33%;
    font-family: sans-serif;
}

.item-detail .content {
    color: #b67e67;
    width: 63%;
    font-family: Arial, Helvetica, sans-serif;
}

.clsOrange {
    width: 75px;
    position: absolute;
}

#man {
    position: absolute;
    top: -30px;
    left: 150px;
    width: 250px;
}

#stone1 {
    position: absolute;
    top: 1750px;
    right: calc(50% - 400px);
    width: 450px;
}

#stone2 {
    position: absolute;
    top: 1050px;
    left: 25%;
    width: 300px;
}

#stone3 {
    position: absolute;
    top: 530px;
    right: 10%;
    width: 320px;
}

#cock {
    position: absolute;
    top: 250px;
    right: 15%;
    width: 100px;
}

#tree1 {
    position: absolute;
    top: 245px;
    left: 22%;
    width: 250px;
}

#tree2 {
    position: absolute;
    top: 380px;
    left: 38%;
    width: 330px;
}

#tree3 {
    position: absolute;
    top: 1260px;
    right: 37%;
    width: 200px;
}

#tree4 {
    position: absolute;
    top: 1980px;
    right: 15%;
    width: 250px;
}


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

    width: 100%;
    height: 200px;

    position: absolute;
    bottom: 0;
}