h3.tituloInstagramName{
    font-size: 16px;
    letter-spacing: 0;
    font-weight: bold;
    text-align: center;
    color: #000000;
}

.container_instagram_feed{
    width: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto; 
}

.row_instagram_feed{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;    
    justify-content: center;
    align-items: center;
}


.feed {
    max-width: 200px;
    background: #FFF;
    display: block;
    margin-left: 2px;
    margin-right: 2px;
    overflow: hidden;
}

.feed img{
    width: 100%;
    height: 190px;
    object-fit: cover;
    max-width: 100%;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.feed img:hover{
    -moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}   


/** Imagens em grid */
.gallery_grid{
	margin: 0 0.65rem;
}

.gallery-item{
	height: auto;
	margin: 0.5rem;
    overflow: hidden;
}

.gallery-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
    max-width: 100%;
    -moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.gallery-item img:hover{
    -moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
} 

@media (min-width: 640px){
	.gallery_grid{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-template-rows: repeat(5, auto);
		grif-auto-flow: row dense;
	}

	.gallery-item{
		margin: 0.7rem;
	}
	
	
}
@media (min-width: 960px){
	.gallery_grid{
		grid-template-columns: repeat(5,1fr);
		grid-template-rows: repeat(3, auto-flow);
		grif-auto-flow: row dense;
	}
}