 .banner_scene{
position: relative;
width: 850px;
height: 450px;
margin-left: auto;
margin-right: auto;

 }
 
 .scene {
position: relative;
width: 200px;
height: 200px;
margin: 6px ;
overflow: hidden;
background: #D55852;
float: left;
opacity:1;
transform: scale(1);
transition: all .2s ease-in-out;
}
.scene:hover
{

transform: scale(1.2);
box-shadow:  0 0 8px rgba(0, 0, 0, 0.8);
z-index:9999;

}

.scene img {
 display: block;
 position: relative;
 top: 14px;
 left: 13%;
 width:75%;
 height:75%;
 

}

.scene:hover img
{

}

.scene_text{
position: relative;
top:-14px;
vertical-align: middle;
width:200px;
height:50px;
background: #797979;
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
}

.scene:hover .scene_text
{
box-shadow: inset 0 0 12px rgba(0, 0, 0, 1.2);

}

.scene h2 {
text-decoration: none;
top:+2px;
font-size:14pt;
text-align: center;
position: relative;
color:white;
}


       