<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.box {
  text-align: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 5px #555;
}

.box img {
  width: 100%;
  height: auto;
}

.box .box-layer {
  width: 100%;
  height: 100%;
  background: rgba(69, 88, 65, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transition: all 0.4s cubic-bezier(0, 1.31, 1, -0.29) 0.4s;
  -o-transition: all 0.4s cubic-bezier(0, 1.31, 1, -0.29) 0.4s;
  -webkit-transition: all 0.4s cubic-bezier(0, 1.31, 1, -0.29) 0.4s;
  -moz-transition: all 0.4s cubic-bezier(0, 1.31, 1, -0.29) 0.4s;
  transition: all 0.4s cubic-bezier(0, 1.31, 1, -0.29) 0.4s;
}

.box:hover .box-layer {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}

.box .box-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  color: #fff;
  opacity: 0;
  padding-top: 25px;
  -ms-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}

.box:hover .box-content {
  opacity: 1;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -ms-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

/*Complete Classes and Media Queries not mentioned to reduce the direct copy of work.*/
</pre></body></html>