.projects-title-bg {
    background-color: var(--primary-color);
    color: var(--primary-bg-color);
    height: 328px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    h1 {
        color: var(--primary-bg-color);
        margin: 0;
    }

    .triangle--down {
        width: 100%;
        height: 72px;
        background: var(--primary-color);
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        position: absolute;
        bottom: -72px;
    }
}

.project-content {
    h2 {
        text-align: center;
        margin-top: 104px;
    }
}