.implemented-project-section {
    margin-top: 4.375rem;
}

.implemented-project-section h2 {
    margin-bottom: 2.5rem;
}

.grid-project-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 2.5rem;
	grid-row-gap: 2.5rem;
}

.row-image-project:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.row-image-project:nth-child(2) {
    grid-area: 1 / 2 / 3 / 3;
}

.row-image-project:nth-child(3) {
    grid-area: 1 / 3 / 2 / 5;
}

.row-image-project:nth-child(9) {
    grid-area: 3 / 3 / 4 / 5;
}

.row-image-project img {
    width: 100%;
    height: 100%;
}

@media (max-width:766px) {
	.grid-project-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: inherit;
    grid-column-gap: inherit;
    grid-row-gap: inherit;
    gap: 1rem;
}
	
	.row-image-project img {
    object-fit: cover;
}
	

	.row-image-project:nth-child(3) {
    grid-area: 2 / 1 / 3 / 2;
}
	
	.row-image-project:nth-child(4) {
    grid-area: 3 / 1 / 4 / 3;
}
	
	.row-image-project:nth-child(5) {
    grid-area: 4 / 1 / 5 / 2;
}
	
	.row-image-project:nth-child(6) {
    grid-area: 4 / 2 / 5 / 3;
}
	
	.row-image-project:nth-child(7) {
    grid-area: 5 / 1 / 6 / 2;
}
	
	.row-image-project:nth-child(8) {
    grid-area: 5 / 2 / 6 / 3;
}
	
	.row-image-project:nth-child(9) {
    grid-area: 6 / 1 / 7 / 3;
}
	
}