.clearfix .row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display:block;
  display: flex;*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.clearfix .row1 .youtube_video {
  width: 100%;
  background-color: #000;
  position: relative;
  padding-bottom: 33.25%;
  height: 0;
}

.clearfix .row1 .youtube_video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.clearfix .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  /* display:block;*/
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.clearfix .gallery .item {
  /*width:25%;*/
  width: calc(96% / 4);
  position: relative;
  float:left;
  padding:4px;
}

.clearfix .gallery .item img {
  width: 100%;
  display: block;
}

.clearfix .gallery .item .youtube_icon {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.clearfix .gallery .item .youtube_icon:hover {
  background-color: rgba(0, 0, 0, 0);
}

.clearfix .gallery .item .youtube_icon.active {
  background-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: 5px 5px 10px;
          box-shadow: 5px 5px 10px;
}

.clearfix .gallery .item .youtube_icon.active img {
  opacity: 0;
}

.clearfix .gallery .item .youtube_icon img {
  width: 50px;
}
@media(max-width:786px){
	.clearfix .gallery .item .youtube_icon img {
  width: 25px;
}