:root {
  --bodyFont: "Jost", sans-serif;
  --titleFont: "Jost", sans-serif;
  --transition: all .3s ease;
  --body_bg: #ffffff;
  --globalColor: #F5F5F5;
  --borderColor: #DFE0E4;
  --bodyColor: #404A60;
  --titleColor: #222E48;
  --primaryColor: #2660B5;
  --secondaryColor: #EB7A23;
  --whiteColor: #ffffff;
  --blackColor: #171717;
  --linkColor: #2660B5;
  --hoverColor: var(--secondaryColor);
  --boxBorderRadius: 5px;
  --imageBorderRadius: 4px;
  --btnBorderRadius: 5px;
  --btnBgColor: #2660B5;
  --btnHoverBgColor: #EB7A23;
  --btnColor: #ffffff;
  --btnHoverColor: #ffffff;
  --btnBgColor2: transparent;
  --btnHoverBgColor2: #2660B5;
  --btnColor2: #222E48;
  --btnHoverColor2: #ffffff;
}

.tp-product-cat-single {
  min-height: 460px;
  background-size: cover;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: start;
  align-items: end;
}
.tp-product-cat-single::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, #000 100%);
  width: 100% !important;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.tp-product-cat-single .tp-product-cat-content {
  padding: 35px;
  position: relative;
  z-index: 1;
  margin-bottom: -35px;
  transition: all 0.5s linear 0s;
}
.tp-product-cat-single .tp-product-cat-content .tp-product-cat-title {
  margin-bottom: 0;
}
.tp-product-cat-single .tp-product-cat-content .tp-product-cat-title a {
  color: #fff;
}
.tp-product-cat-single .tp-product-cat-content .tp-product-cat-title a:hover {
  color: var(--primaryColor);
}
.tp-product-cat-single .tp-product-cat-content .tp-product-cat-btn {
  opacity: 0;
  visibility: hidden;
  margin-top: 7px;
  transition: all 0.5s linear 0s;
  display: block;
  color: #fff;
}
.tp-product-cat-single:hover .tp-product-cat-content {
  margin-bottom: 0;
}
.tp-product-cat-single:hover .tp-product-cat-btn {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}
.tp-product-cat-single:hover .tp-product-cat-btn:hover {
  color: var(--primaryColor);
}/*# sourceMappingURL=product-cat.css.map */