.inner-projects-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 77px;
    position: relative;
    top: 120px;
    margin-bottom: 60px;
}

.inner-projects-content {
    width: 100%;
    max-width: 1212px;
}

.projects-title {
    background-color: #666666;
    color: white;
    font: 20px "BPG Mrgvlovani";
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.projects-description {
    color: var(--text-color);
    font: 15px "BPG Mrgvlovani";
    line-height: 21px;
    margin-bottom: 52px;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 31px;
    row-gap: 30px;
    max-width: 1212px;
    margin: 0 auto 102px;
    width: 100%;
    justify-items: center;
}

.gallery-content a {
    cursor: pointer;
    width: 100%;
    height: 249px;
}

.gallery-content a img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Inner Projects Responsive Design */
@media screen and (min-width: 789px) and (max-width: 1173px) {
    .gallery-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 320px) and (max-width: 789px) {
    .gallery-content {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-content a {
        height: auto;
    }

    .projects-title {
        font-size: 15px;
    }
}