.ti_card_product {
  width: calc(33.334% - 1.5rem);
  min-width: 18rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 12/16;
}
@media (max-width: 780px) {
  .ti_card_product {
    width: calc(50% - 1rem);
    min-width: 10rem;
  }
}
.ti_card_product > a {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.ti_card_product__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.ti_card_product__image > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease;
}
.ti_card_product__image--brand {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 5rem;
  width: 12rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 0 0 1rem 1rem;
}
@media (max-width: 780px) {
  .ti_card_product__image--brand {
    height: 3rem;
    width: 8rem;
    padding: 0;
  }
}
.ti_card_product__image--brand img {
  height: 90%;
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease;
}
@media (max-width: 780px) {
  .ti_card_product__image--brand img {
    height: 100%;
    width: 100%;
  }
}
.ti_card_product:hover .ti_card_product__image > img {
  transform: scale(1.1);
}
.ti_card_product:hover .ti_card_product__image--brand img {
  height: 100%;
  width: 100%;
}/*# sourceMappingURL=index.css.map */