.sfq-container {
  display: flex;
  width: 100%;
  padding: 1% 0;
  box-sizing: border-box;
  height: 60vh;
}

.sfq-box {
  flex: 1;
  overflow: hidden;
  transition: .5s;
  margin: 0 0.5%;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  line-height: 0;
	background: #000;
}

.sfq-box > img {
  width: 120%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: .5s;
}

.sfq-box > span {
  font-size: 1.5em;
  display: block;
  text-align: left;
  height: 100%;
	padding-left: 5%;
  line-height: 1.3em;
	margin-top: -32%;
	color: #fff;
}

.sfq-box:hover {
  flex: 1 1 36%;
}

.sfq-box:hover > img {
  width: 100%;
  height: 100%;
  transition: .5s;
	opacity: 0.25;
}


.sfq-box:hover > span {
  font-size: 1.5em;
  display: block;
  text-align: left;
  height: 100%;
  line-height: 1.3em;
	margin-top: -40%;
	color: #fff;
	opacity: 1;
	z-index: 999;
}

.sfq-font10{font-size:0.65em; line-height: 1em;}
.sfq-font12{font-size:0.75em; line-height: 0.85em;}


/*<1000*/
@media screen and (max-width:999px) 
{
	.sfq-container{display:none;}
}

