@charset "UTF-8";
/* CSS Document: hover over the images to auto scroll the images left or right */

* {
  box-sizing:content-box;
}
 

.landing-wrapper {
  width: 99.9%;
  height: auto;
  margin:20px auto;
  padding:0;
  position: relative;
  overflow:hidden;
  cursor:pointer;
}

.landing-inner-content {
  
  width: 3150px;
  height: 500px;
  padding:0 0 30px 0;
}

.box {
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  width: 450px;
  height: 500px;
  margin: 20px 0 0 0;
  float: left;
  overflow:hidden;
}

.box:first-of-type {
  margin-left:30px;
}

.box:last-of-type {
  margin-right:30px;
}

.box-content {
  background: #fff;
  /*margin-left: auto;
  margin-right: auto;*/
  position: absolute;
  top:0;
  left:0;
  z-index: 999;
}

.box-content img {
  width: 100%;
}
