
/* BEGIN b-card-36 */
.b-card-36 {
  display: block;
  height: calc(100% - 30px);
  border-radius: 12px;
  position: relative;
  margin-bottom: 30px;
  background-color: #fff;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.b-card-36 .b_content {
  padding: 0 15px;
}
.b-card-36 .b_title {
  font-size: 16px;
  font-weight: bold;
  padding-top: 12px;
  color: var(--color-primary);
  margin-bottom: 15px;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.b-card-36 .b_desc {
  /* display: -webkit-box; */
  /* -webkit-box-orient: vertical; */
  /* -webkit-line-clamp: 2; */
  /* overflow: hidden; */
  color: #666;
  text-align: justify;
  margin-bottom: 15px;
}
.b-card-36 .b_btn {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  padding: 10px 25px;
  background-color: var(--red-color);
  text-transform: uppercase;
  position: relative;
  bottom: -5px;
}
.b-card-36 .b_btn::after {
  content: "";
  border-top: 5px solid #666;
  border-right: 5px solid transparent;
  position: absolute;
  right: -5px;
  bottom: 0;
}
.b-card-36 .b_thumb {
    position: relative;
}
.b-card-36 .b_thumb::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: linear-gradient(0deg, rgba(60, 188, 255, 0.47), rgba(166, 221, 250, 0.2));
  transform-origin: bottom center;
  transform: scaleY(0);
}
.b-card-36 .b_icon {
  width: 100%;
  font-size: 40px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  position: absolute;
  position: absolute;
  bottom: 150px;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  color: #fff;
}
.b-card-36:hover .b_thumb::after {
    transform: scale(1);
}
.b-card-36:hover .b_icon {
  opacity: 1;
  visibility: visible;
  top: 150px;
  z-index: 99999;
}
@media screen and (min-width: 992px) {
  .b-card-36 .b_content {
    padding: 12px 25px;
  }
  .b-card-36:hover {
    /* -webkit-transform: translateY(-5px); */
    -ms-transform: translateY(-5px);
    /* transform: translateY(-5px); */
  }
  .b-card-36:hover .b_title {
    color: var(--red-color);
  }
}

/* END b-card-36 */
.s-list-product {
    margin-top: 50px;
}
