
.bapp_grid {
	transform:translate(-50%,0px);
	margin-left:50%;
	margin-bottom:100px;
	display: grid;
	grid-auto-rows: auto;
	align-items: center;
	justify-items: center;
	width:100%;
	max-width:1300px;
	grid-template-columns: repeat(4, auto);
	@media (max-width: 1500px) {
		width:1000px;
		grid-template-columns: repeat(3, auto);
	}
	@media (max-width: 1050px) {
		width:660px;
		grid-template-columns: repeat(2, auto);
	}
	@media (max-width: 760px) {
		width:380px;
		grid-template-columns: repeat(1, auto);
	}
}


.bapp_outer {
	border:1px solid rgba(0,0,0,.2);
	border-radius:20px;
	padding:20px;
	cursor:pointer;
	font-size:24px;
	font-weight:200;
	user-select:none;
	background-color:#FFF;
	color:#FFF;
	width:220px;
	height:220px;
	overflow:hidden;
	box-shadow:inset 0px 0px 100px rgba(0,0,0,.15);
}
.bapp_inner_name {
	text-align:center;
	width:220px;
	height:60px;
	z-index:100;
	color:rgba(0,0,0,.75);
	letter-spacing:-1px;
	line-height:25px;
	text-shadow:0px 0px 15px rgba(255,255,255,1);
	font-size:28px;
	font-weight:800;
	margin-top:15px;
	display: flex;
	align-items: center;
	justify-content: center;

}
.bapp_inner_icon {
	transform:translate(40px,15px);
	width:140px;height:140px;filter:blur(10px);opacity:1;
}
