:root {
  --bodyFont: "Poppins", sans-serif;
  --titleFont: "Tomorrow", sans-serif;
  --transition: all 0.5s ease-in-out;
  --transition-sec: all 1.8s ease-in-out;
  --transition-third: all 2.2s ease-in-out;
  /* Color styles */
  --primaryColor: #ed2a00;
  --titleColor: #ffffff;
  --textColor: #474747;
  --bodyColor: #000000;
  --blackColor: #000000;
  --whiteColor: #ffffff;
  --menuColor: #000000;
  --borderColor: #e6e6e6;
  --borderColor2: #ffffff14;
  --btnTextColor: #000000;
  --btnTextHoverColor: var(--primaryColor);
  --btnBgColor: var(--primaryColor);
  --btnBgHoverColor: var(--primaryColor5);
  --linkColor: var(--secondaryColor);
  --linkHoverColor: var(--primaryColor);
  --neutralColor0: #ffffff;
  --neutralColor10: #fafafa;
  --neutralColor20: #f5f5f6;
  --neutralColor30: #ebebed;
  --neutralColor40: #dfdfe1;
  --neutralColor50: #c2c2c6;
  --neutralColor60: #b3b3b8;
  --neutralColor70: #a7a7ac;
  --neutralColor80: #98999e;
  --neutralColor90: #898a91;
  --neutralColor100: #7b7b83;
  --neutralColor200: #6c6d75;
  --neutralColor300: #5d5e67;
  --neutralColor400: #51525c;
  --neutralColor500: #42434e;
  --neutralColor600: #363742;
  --neutralColor700: #252632;
  --neutralColor800: #161725;
  --neutralColor900: #0a0b19;
  --neutralColor1000: #0d0d0d;
}

@keyframes waves {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes fadeIn2nd {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.tp-product-cat-single {
  min-height: 460px;
  width: 100%;
  background-size: cover;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: start;
  align-items: end;
}
.tp-product-cat-single.item-big {
  height: 100%;
}
.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 {
  width: 100%;
  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);
}

.tp-product-style2 .tp-product-cat-single {
  height: 100%;
  min-height: 330px;
  max-height: 330px;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .tp-product-style2 .tp-product-cat-single.item-big {
    max-height: 700px;
    min-height: 700px;
    height: 100%;
  }
}/*# sourceMappingURL=product-cat.css.map */