section.project {
    padding-top: 160px;
}

section.project .project-bg, section h2 {
    margin-bottom: 64px;
}

.projectList {
    column-fill: balance;
    column-count: 2;
    column-gap: 24px;
}

.projectItem {
    break-inside: avoid;
    margin-bottom: 32px;
}

.projectItem ul {
    margin-bottom: 16px;
}

.seeMore {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

.seeMore .see-more:hover {
    cursor: pointer;
    font-weight: bold; 
}

.seeMore .see-more:hover .fa {
    bottom: -5px;
}

.seeMore .see-more .fa {
    font-weight: bold;
    position: relative;
    bottom: 0;
    transition: ease 0.5s; 
}

.gallery {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.photo {
    margin: 12px 16px;
}

.photo img {
    margin-bottom: 8px;
    transition: transform .2s;
}

.photo img:hover {
    cursor: pointer;
    transform: scale(1.05) rotate(1deg);
}

.maintenanceProject {
    display: none;
    flex-direction: column;
    justify-content: center;
}
    /* ${({display}) => display &&`
        display: -webkit-flex;
        display: flex;
    `} */

.maintenanceProject .item {
    align-items: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.maintenanceProject .item .time {
    display: inline-block;
    margin-right: 32px;
    width: 80px;
}

.maintenanceProject .item .title {
    display: inline-block;
    width: 400px;
}

@media screen and (max-width: 1024px) {
    .gallery {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    section.project {
        padding-top: 120px;
    }

    .gallery {
        justify-content: space-evenly;
    }

    .photo {
        margin-right: 0;
    }
}

@media screen and (max-width: 414px) {
    .projectList {
        column-fill: auto;
        column-count: auto;
    }

    .maintenanceProject .item .time {
        margin-right: 8px;
        width: 130px;
    }
}