/* Instagram */
.instagram-carousel {
    padding-bottom: 50px;
    line-height: 1;
}
.instagram-item {
	position: relative;
	background-size: 100%;
    line-height: 0;
    display: inline-block;
	border-radius: 3px;
    overflow: hidden;
	box-shadow: 0 0 17px 0 rgba(2,6,19,0.12) !important;
}
.instagram-item:hover{
	background-size: 105%;
}
.instagram-item img{
	border-radius: 3px;
    transition: transform .5s ease;
}
.instagram-item:hover img {
	transform: scale(1.03);
}
.instagram-item:after{
	content: '';
	background-color: transparent;
	pointer-events: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: background-color 0.8s ease;
}
.instagram-item:hover:after{
	background-color: rgba(000,000,000,0.1);
}
/* with content */
/* .instagram-item .content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	background:rgba(0,0,0,0.3);
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.3s ease;
}

.instagram-item  .content .text {
    max-height: 130px;
    overflow: hidden;
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
}
.instagram-item:hover .content {
	opacity: 1; 
} */