/* Service */
.prdtitle {
    font-family:var(--ff-poppins);
    font-weight: 500;
    display: inline-block;
    color: var(--text-color1);
  }
.prdcontent {
    font-family:var(--ff-poppins);
	font-size:14px;
    font-weight: 500;
    display: display-block;
    color: var(--text-color2);
  }

.product-list {
    overflow: hidden;
  }
  .product-list .thumb {
    position: relative;
  }
  .product-list .thumb img {
    transition: all 300ms ease-in-out 0s; 
  }
  .product-list .thumb a {
    display: block;
  }
  .product-list .thumb a:hover {
    text-decoration: none;
  }
  .product-list .thumb p {
    color: #fff;
	margin-top:15px;
  }
  .product-list .thumb .product-list-link {
    color: var(--text-color1);
    font-weight: 500;
  }
  .product-list .thumb .product-list-link:hover {
    color: var(--product-list-link-text-color-hover);
  }
  .product-list .thumb .title {
    font-family: var(--ff-cabin);
    bottom: -74%;
    color: var(--product-list-thumb-title-text-color);
    height: 100%;
    padding: 15px;
    position: absolute;
    transition: all 300ms ease-in-out 0s;
    width: 100%;
    background: var(--bg-color2);
  }
  .product-list .thumb .title h3 {
    color: #fff;
    margin: 0 0 10px;
  }
  .product-list:hover .thumb .title {
    bottom: 0;
    opacity: 0.7;
    padding-top: 30px;
    background: var(--bg-color-hover2);
  }
  .product-list:hover .thumb img {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  /* #Service */