
.contain_archive {
  width: 100%;
}
.row_nm_videos {
  overflow-y: hidden;
  width: 100%;
background:#a4e3ff;
}

.row_nm_videos::-webkit-scrollbar {
    display: none;
}
.row__inner {
  -webkit-transition: 450ms transform;
  transition: 450ms transform;
  font-size: 0;
  white-space: nowrap;
  margin: 25px 0;
  padding-bottom: 10px;
}





.tile {
box-shadow: 2px 0px 7px 0px #000a30;
  position: relative;
  display: inline-block;
  width: 250px;
  height: 110px;
  margin-right: 10px;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: 450ms all;
  transition: 450ms all;
  -webkit-transform-origin: center left;
          transform-origin: center left;
		  border-radius:18px;
}
.tile__img {
  width: 250px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
	 	  border-radius:18px;
}



.tile__details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  border-radius:18px;
  font-size: 10px;
  opacity: 0.50;
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  -webkit-transition: 450ms opacity;
  transition: 450ms opacity;
  animation: blinker 5s linear infinite;
}
.tile__details:after,
.tile__details:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
    display: block;
}

.tile__details:before {
    content: '▶';
    left: 0;
    color: #fff;
	background:transparent;
	box-sizing: content-box;
    width: 100%;
    font-size: 30px;
    margin-left: 4px;
    margin-top: -18px;
    text-align: center;
    z-index: 2;
    top: 52%;
}

.tile__details:after {
  margin-top: -18px;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border: 1px solid #ecf0f1;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: #000a30;
  z-index: 1;
}
   @media all and (max-width: 400px) and (min-width: 100px) {
.tile__details:after{
border: 0px solid #ecf0f1;
	background:transparent;
   }
   }
.tile:hover .tile__details {
  opacity: 1;
}
.tile__title {
  position: absolute;
  bottom: 0;
  padding: 10px;
}
.row__inner:hover {
  -webkit-transform: translate3d(-50px, 0, 0);
          transform: translate3d(-50px, 0, 0);
}
.row__inner:hover .tile {
  opacity: 0.7;
}
.row__inner:hover .tile:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  opacity: 1;
}
.tile:hover ~ .tile {
  -webkit-transform: translate3d(80px, 0, 0);
          transform: translate3d(80px, 0, 0);
}

.tile_desc{
  position: absolute;
  bottom: 10px;  
  color: #fff;
  font-size: .610em;
  font-family: "Crimson Text";
  margin-left: 10px;
  font-weight: 100;
}
.tile_desc:after {
    display: block;
    width: 20px;
    height: 0;
    font-weight: 100;
    border-bottom: 0.160em solid;
    content: "";
    color: #fff;
}


@keyframes blinker {
  50% {
    opacity: 0;
  }
}