.signature-projects {
    margin: 37px 0 48px;
    position: relative;
    overflow: hidden;
}
.signature-projects h2 {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--rubik);
    color: var(--dark-blue);
    letter-spacing: 5px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.signature-projects .projects {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.signature-projects .project {
    width: 48%;
    text-decoration: none;
    margin-bottom: 22px;
    position: relative;
    transition: 0.5s;
}
.signature-projects .project:nth-child(2n-1) { margin-right: 4%; }

.signature-projects .project:nth-child(2n).slide-in.slide-in-ready {
    left: 100vw;
    transition: 0;
}
.signature-projects .project:nth-child(2n - 1).slide-in.slide-in-ready {
    left: -100vw;
    transition: 0;
}
.signature-projects .project.slide-in { left: 0; }

.signature-projects .project.slide-in:nth-child(3),
.signature-projects .project.slide-in:nth-child(4) { transition-delay: 0.4s; }

.signature-projects .project.slide-in:nth-child(5),
.signature-projects .project.slide-in:nth-child(6) { transition-delay: 0.8s; }

.signature-projects .project.slide-in:nth-child(7),
.signature-projects .project.slide-in:nth-child(8) { transition-delay: 1.2s; }

.signature-projects .project img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.7777777778;
    display: inline-block;
    object-fit: cover;
    margin-bottom: 10px;
}
.signature-projects .project h3 {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--blue);
    text-align: center;
}


@media (max-width: 721px) {
    .signature-projects {
        padding-top: 30px;
        margin-bottom: 20px;
    }
    .signature-projects h2 { margin-bottom: 28px; }

    .signature-projects .project {
        margin-right: 0 !important;
        width: 100% !important;
        margin-bottom: 42px;
    }
    .signature-projects .project:last-of-type { margin-bottom: 0; }

    .signature-projects .project { left: 0 !important; }
}