.contentPicturesGallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	max-width: 1200px;
	width: 100%;
	margin: auto;
	grid-column-gap: 3vw;
	grid-row-gap: 1vw;
	justify-items: center;
}

.contentPicturesGallery .overlay h3,
.contentPicturesGallery .overay li {
	justify-items: center;
	text-align: center;
}

.contentPicturesGallery ul:not([type]) li::before {
	top:3px;
}

.contentPicturesGallery .pic{
	border-radius: var(--Scarlett-Radius);
	background: #fff;
	position: relative;
	border: 10px solid #fff;
	transition: all .4s ease;
}

.contentPicturesGallery .pic:hover {
	box-shadow: 8px 28px 50px rgba(39,44,49,.07), 1px 6px 12px rgba(39,44,49,.04);
	transform: translate3d(0,-1px,0) scale(1.02);
}

.contentPicturesGallery .overay ul li {
	padding: 0 15px;
}
