@charset "UTF-8";

html {  
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
}
.imgs-outer {
       width: 100%;
       margin: 0 auto;
	   padding:0;
}
.wrap {
	overflow: hidden;
	margin: 0;
}
.box {
	float: left;
 	position: relative;
	width: 33.3%;
    padding-bottom: 20%;
}
.boxInner {
	position: absolute;
	left: 5px;
	right: 15px;
	top: 0;
	bottom: 0;
	overflow: hidden;
}
.boxInner img {
    width: 100%;
    
}
.boxInner .titleBox {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	line-height: 1.2em;
	font-size: 0.7em;
	font-family: AmbleLight, Arial, Helvetica, sans-serif;
	font-style: normal;
	letter-spacing: 0.01em;
    background: rgba(255,255,255, 1.0);
    color: rgba(0,0,0,1.0);
    padding: 1% 0 15px 0;
    text-align: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
body.no-touch .boxInner:hover .titleBox, body.touch .boxInner.touchFocus .titleBox {
    margin-bottom: 0;
}

@media only screen and (max-width : 800px) and (min-width : 480px) {
       /* Tablet view: 2 tiles */
     
  .box {
          width: 50%;
          padding-bottom: 29.5%;
       }
    }
	
	@media only screen and (max-width : 479px) {
       /* Smartphone view: 1 tile */
       .box {
          width: 100%;
          padding-bottom: 58%;
       }
    }