.section_project_gallery .section_description {
	margin-bottom: 50px;
}
.project_gallery_inner{
	position: relative;
}
.gallery_images  {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
    margin-top: 50px;
    text-align: left;
}

.gallery_images .image_holder {
	border-radius: 30px;
	overflow: hidden;

}
.gallery_images .image_holder img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (min-width: 769px) {
	.project_gallery_inner .button_wrap_large {
		position: absolute;
		right: 0;
		top: 0;
		margin-top: 5px;
	}
}

@media only screen and (max-width: 768px) {
	.project_gallery_inner{
		text-align: center;
	}
	.gallery_images  {
		grid-template-columns: 1fr 1fr;
	}
  
}

@media only screen and (max-width: 480px) {
	.gallery_images  {
		grid-template-columns: 1fr;
	}
}