@keyframes projectsContainerAnim {
    from {
        left: -50vw;
        opacity: 0;
    }
    to {
        left: 11.19vw;
        opacity: 1;
    }
}

button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}
.title span img {
    width: 3.43vw;
}
.project img{
    width: 100%;
    height: 100%;
    background-color: black;
    object-fit: contain;
}
.projects {
    position: absolute;
    bottom: 5.18vh;
    left: 11.19vw;
    display: flex;
    z-index: 6;
    animation: projectsContainerAnim 1.5s cubic-bezier(.57,.27,0,.98);
}
.project-item {
    position: relative;
    width: 20.88vw;
    height: 76.29vh;
    margin-right: 1.25vw;
    z-index: 6;
}
.close-btn {
    position: relative;
    top: 0;
    left: 0;
    width: 3.69vw;
    height: 3.69vw;
    margin-bottom: -5.5vh;

}
.close-btn:hover {
    cursor: pointer;
}
.close-btn img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: -5.5vh;
    display: none!important;
}
.project {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(27.25% 0, 100% 0, 100% 84.65%, 71.75% 100%, 0 100%, 0 14.75%);
}
.project-image {
    top: 19.41%;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-size: 2.93vh;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 6;
}
.project-image p {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 19.41%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-text {
    width: 100%;
    height: 61.28%;
    padding: 0 1.56vw;
    padding-top: 2.96vh;
    padding-bottom: 9.62vh;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: 400ms;
}
.project-item:hover .project-text ,.project-item.active .project-text{
    transform: translateY(0);
}
.project-text p {
    width: 100%;
    height: 97%;
    overflow: hidden;
    font-size: 1.49vh;
    line-height: 138%;
    text-align: left;
}
.project-footer {
    position: absolute;
    display: flex;
    align-items: center;
    padding-left: 27%;
    width: 100%;
    height: 7.52%;
    font-size: 1.85vh;
    text-transform: uppercase;
    z-index: 6;
    bottom: 0;
}