.element {
	height: 200px;
	width: 100%;
	//min-width: 200px;
}

.element a{
	z-index: 0;
	width: 100%;
	height: 100%;
}

.element h2{
	z-index: 0;
}

.element {
  margin-bottom: 10px;
  float: left;
  overflow: hidden;
  position: relative;
  background: #000;
  color: #222;
  //opacity: 0.5;
}

.child {
 width: 100%; height: 100%;
background-repeat:no-repeat;
  background-size:cover;
  transition: transform 0.5s;
  opacity: 0.5;
  z-index: 3;
}

.element:hover  .child:hover {
  display: block;
  opacity: 1;
  transform:scale(1.2);
  z-index: 3;
}

.element:hover>h2{
	z-index:2;
}

.element:focus  .child:focus {
  display: block;
  opacity: 0.5;
  transform:scale(1.2);
}

.element:focus>h2{
	z-index:2;
}

.element * {
  position: absolute;
  margin: 0;
}

.element .symbol {
  color: #FFF;
}

.element .name {
  letter-spacing: 2pt;
  font-weight: bold;
  font-size: 13pt;
  font: Arial;
  left: 15px;
  bottom: 30px;
  color: #FFF;
  text-transform: uppercase;
}