
.section.-projects {
    text-align: center;
    /* z-index: ; */
    height: 100%;
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) all .3s;
}

.go-up {
    top: 15px;
    /* margin: 0 auto; */
    right: 0;
    left: 0;
}
.projects {
    height: 100%;
    overflow-y: auto
}

.project-list {
    list-style: none;
    padding: 0;
    padding-top: 10px;
    color:white;
    
}

.project-item {
    display: flex;
    flex-direction: column;
}

.project-item .project-title {
    font-size: 14px;
    margin-bottom: 5px;
    color:white
}
.project-item .project-desc {
    font-size: 12px;
    margin-bottom: 5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
}
.project-item .project-tech {
    font-size: 10px;
    color:#23966c;
    opacity: 0.7;
}
.project-item .project-others {
    font-size: 12px;
    opacity: 0.5;
}
.divider {
    margin: 0 auto;
    height: 3px;
    border-radius: 3px;
    background: white;
    width: 150px;
    position: absolute;
    right: 0;
    left: 0;
}

.section.-projects .projects {
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) all .4s;
    transition-delay: .3s;
    opacity: 1;
}

.section.-projects .projects .title {
    /* color:white; */
}

.content:not([data-display="projects"]) .section.-projects {
    height: 0;
}
.content:not([data-display="projects"]) .go-up {
    font-size: 0;
}

.content:not([data-display="projects"]) .projects {
    opacity: 0;

}