.project-page {
    margin-bottom: 20px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
}
@media (max-width: 767px) {
    .project-page {
        grid-template-columns:  minmax(200px, 1fr);
    }
}
.project-page .info {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}
.project-page .info h3 {
    margin: 0 0 20px;
    font-weight: normal;
}
.project-page .info > p {
    opacity: .5;
    margin-bottom: 56px;
}
@media (max-width: 767px) {
    .project-page .info h3 {
        font-size: 14px;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .project-page .info > p {
        font-size: 14px;
        margin-bottom: 28px;
    }
}
.project-page .info > span {
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: .5;
    font-size: 14px;
}
.project-page .info .images {
    display: flex;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.project-page .info .images img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid white;
}
.project-page .info .images img:not(:first-child) {
    margin-left: -15px;
}
.project-page .info .skills {
    margin-top: 16px;
    display: flex;
    justify-content: right;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.project-page .info .skills span {
    background-color: #eee;
    border-radius: 6px;
    padding: 4px 8px;
    width: fit-content;
    font-size: 13px;
    margin-left: 5px;
}
@media (max-width: 767px) {
    .project-page .info .skills {
        flex-direction: column;
        margin: 0;
    }
    .project-page .info .skills span {
        margin-top: 10px;
    }
}
.project-page .info .line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.project-page .info .line span {
    display: block;
    height: 8px;
    width: 260px;
    border-radius: 6px;
    background-image: linear-gradient(to right, var(--green-color) 70%, #eee 70%);
}
.project-page .info:nth-of-type(2) .line span,
.project-page .info:nth-of-type(5) .line span {
    background-image: linear-gradient(to right, var(--red-color) 30%, #eee 30%);
}
.project-page .info:nth-of-type(3) .line span,
.project-page .info:nth-of-type(7) .line span {
    background-image: linear-gradient(to right, var(--blue-color) 90%, #eee 90%);
}
.project-page .info .line p {
    color: var(--grey-color);
    font-size: 17px;
    margin: 0;
}
@media (max-width: 767px) {
    .project-page .info .line {
        display: block;
    }
    .project-page .info .line span {
        width: 184px;
    }
    .project-page .info .line p {
        text-align: center;
        font-size: 14px;
        margin-top: 10px;
    }
}