.all_work {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 36px;
}
.all_work .work_block:nth-child(10n) {
    grid-column: span 3;
}
.all_work img {
	object-fit: cover;
	object-position: center;
	height: 310px;
	width: 100%;
	transition: 0.5s;
}
.work_img {
    height: 310px;
}
.work_img {
    overflow: hidden;
}
.work_img:hover img {
    transform: scale(1.05);
}
.all_work h3 {
    font-size: 18px;
    font-weight: 600;
    padding-top: 8px;
}
.all_work a{
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}
.all_work a:hover{
	color: var(--color_primary);
}