.container {
  display: flex;
  width: 100%;
  padding: 0% 0%;
  box-sizing: border-box;
  height: 60vh;
  margin-bottom: 70px;
}

.box {
  flex: 1;
  overflow: hidden;
  transition: .5s;
  margin: 0 0%;
  box-shadow: 0 20px 30px rgba(0,0,0,.1);
  line-height: 0;
}

.box > img {
  width: 200%;
  height: calc(100% - 10vh);
  object-fit: cover; 
  transition: .5s;
}

.box > h {
  width: 200%;
  height: calc(100% - 10vh);
  object-fit: cover; 
  transition: .5s;
}

.box > span {
  font-size: 3.8vh;
  display: block;
  text-align: center;
  height: 10vh;
  line-height: 2.6;
}


.mystyle {
	flex: 1 1 35%;
}

.mystyle > img {
  width: 100%;
  height: 100%;
}

.mystyle > h {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 479px) {
	
  .container {
  display: flex;
  width: 100%;
  padding: 0% 0%;
  box-sizing: border-box;
  height: 240px;
  margin-bottom: -150px;
}

.mystyle {
	flex: 1 1 100%;
}

.mystyle > img {
  width: 100%;
  height: 100%;
}

}