.product-main {
  height: 350px;
  width: 100%;
}
.product-main .product-img {
  height: 308px;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.product-main .product-img img {
  height: 308px;
  width: 100%;
}
.product-main .product-body {
  height: 308px;
  display: flex;
  justify-content: end;
  align-items: end;
  position: relative;
  top: 42px;
  z-index: 1;
  background: #ffffff;
}
.product-main .product-body i {
  display: none;
}
.product-main .product-body p {
  font-size: 18px;
}
.product-main:hover .product-body {
  background: #3383e8;
  transition: background 0.6s ease-in-out;
}
.product-main:hover .product-body p {
  color: #ffffff;
  transform: scale(1.1);
}
.product-main:hover .product-body p i {
  display: inline-block;
}
.product-main:hover .card-img-top {
  transition: 0.6s;
  transform: scaleX(0.95);
  height: 292px;
}
@media (max-width: 475px) {
  .product-main {
    height: 240px;
    width: 100%;
  }
  .product-main .product-img {
    height: 200px;
    width: 100%;
    position: absolute;
    z-index: 2;
  }
  .product-main .product-img img {
    height: 200px;
    width: 100%;
  }
  .product-main .product-body {
    height: 200px;
    display: flex;
    justify-content: end;
    align-items: end;
    position: relative;
    top: 36px;
    z-index: 1;
    background: #ffffff;
  }
  .product-main .product-body i {
    display: none;
  }
  .product-main:hover .product-body {
    background: #3383e8;
    transition: background 2s ease-in-out;
  }
  .product-main:hover .product-body p {
    color: #ffffff;
    transform: scale(1.1);
  }
  .product-main:hover .product-body p i {
    display: inline-block;
  }
  .product-main:hover .card-img-top {
    transition: 0.8s;
    transform: scaleX(0.95);
    height: 190px;
  }
}
/*# sourceMappingURL=productList.css.map */