/**
* Transition-timing-function property@mixin 
*/
/*background RGBA
============================================*/
/****/
/* RIGHT TO LEFT */
/**
 * Web Application Prefix Apply For Making Owner Styles
 */
/**
 *   Blocks Layout Selectors 
 */
/***********************************************************************/
/** CHECKOUT BY STEP */
#subcategories {
  margin-bottom: 10px;
}

.page-subheading {
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Signika", sans-serif;
}

.subcategories {
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.subcategories .image {
  margin: 0px;
  overflow: hidden;
  position: relative;
}
.subcategories .image img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
  -o-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
  transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
  display: inline-block;
  width: 100%;
}
.subcategories .image > a {
  display: block;
  background-color: black;
  overflow: hidden;
}
.subcategories .cat-name {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.001) 0%, rgba(0, 0, 0, 0.6) 100%);
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  height: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.subcategories .cat-name a {
  font-size: 14px;
  color: white;
  font-family: "Montserrat", sans-serif;
}
.subcategories .cat-desc {
  margin: 5px 0px;
  overflow: hidden;
  height: 35px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.subcategories:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
