
#gal-section
{
	max-height: 600px;
	display: table;
	padding: 100px 0px 100px 0px;
	margin: 0px auto;
	max-width: 1300px;
}
.bigs-img
{
	background: rgba(0,0,0,.8);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: scale(0);
	height: 100vh;
	transition: transform 350ms;
	width: 100vw;
	z-index: 4;
}
.bigs-img .imgs-opn
{
	max-height: 80%;
	position: absolute;
	margin: auto;
	top: 5%;
	bottom: 5%;
	left: 10%;
	right: 10%;
	max-width: 80%;
}
.big-img .img-close
{
	position: absolute;
	font-size: 50px;
	cursor: pointer;
	right: 50px;
	top: 20px;
	color: #fff;
}
.img-box
{
	position: relative;
	overflow: hidden;
	float: left;
	height: 250px;
	margin: 1.5% 1.5% 1.5% 1.5%;
	width: 30.3%;
}
.img-box .shw-thumb
{
	height: 100%;
	width: 100%;
}
.img-box .expand
{
	cursor: pointer;
	display: table;
    height: 50px;
	position: absolute;
    width: 50px;
    background: #1370b5;
    color: #ffffff;
	justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    transform: scale(0);
	transition: transform 350ms;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 100px auto;
	line-height: 50px;
	text-align: center;
}
.img-box .expand:before
{
	content: '\26F6';
	font-size: 28px;
	font-weight: 800;
}
.img-box:hover .expand
{
	transform: scale(1);
	transition: transform 350ms;
}