* {
	box-sizing: border-box;
}
.modalWrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #00000052;
	padding: 20px;
}

.modalBox {
	position: absolute;
	max-width: 500px;
	width: 100%;
	border: 15px solid #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: relative;
}
.closeBtn {
	position: absolute;
	right: 5px;
	top: 5px;
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	background: #000;
	color: #fff;
	z-index: 9999;
	font-size: 15px;
	cursor: pointer;
}
.full-w {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
.galleryWrap {
	max-width: 1350px;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
}
.g-row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.g-col-3 {
	width: 33%;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 57px;
	cursor: pointer;
	position: relative;

}


.g-col-3 .product_name {
	background: #f0c880 !important;
	color: #252729;
	font-size: 18px;
	position: absolute;
	bottom: -8% !important;
	left: 25%;
	padding: 7px 0;
	font-weight: bold;
	width: 50%;
	text-align: center;
}


.g-col-3 img {
	border: 8px solid #fff;
}

@media (max-width: 767px) {
	.g-col-3 {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.g-col-3 {
		width: 100%;
	}
}