.qr {
	display: inline-block;
	padding-top: 8px;
	margin: 10px;
	background: white;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	transition: transform .2s ease, box-shadow .2s ease;
	text-decoration: none;
}

.qr:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.qr img {
	width: 132px;
	height: 132px;	
}

.qr span {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	padding: 14px 14px 0;
}