.gallary {
	display: inline-block;
	flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;	
}

.gallary_item {
	overflow: hidden;
	position: relative;
	width: 32%;
    height: auto;
    padding: 5px;
    display: inline-block;
}

.gallary_item img {
	width: 100%;
	height: auto;
	max-width: 100%;
	display:block;
	-webkit-transition:all 0.2s ease-out;
	-moz-transition:all 0.2s ease-out;
	-o-transition:all 0.2s ease-out;
	-ms-transition:all 0.2s ease-out;
	transition:all 0.2s ease-out;
}

.gallary_item:hover img {
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	-o-transform:scale(1.1);
	-ms-transform:scale(1.1);
	transform:scale(1.1);
}