/* --------------------------------- *\

	Porfolio flip card

\* --------------------------------- */
.product {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  display: block;
}
.product__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
}
.product__content {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-white);
  padding: 5.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.product__content > * {
  position: relative;
}
.product__content:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.65;
  background: var(--color-black);
  transition: background 0.5s ease-in-out;
}
.product__name {
  color: var(--color-white);
  transition: color 0.35s ease-in-out;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.25em;
  color: var(--color-white);
}
.product__button {
  --button-height: 3rem;
  --button-text-size: 1rem;
  --button-padding: 3rem;
  margin-top: auto;
  width: 12rem;
}

@media (pointer: fine) {
  .product:hover .product__image {
    transform: scale(1.15);
  }
  .product:hover .product__content:before {
    background: var(--color-main);
  }
  .product:hover .product__name {
    color: var(--color-black);
  }
  .product:hover .product__button {
    --button-bg: var(--color-black);
    --button-bg-hover: var(--color-black);
    --button-text: var(--color-white);
  }
}
@media (max-width: 767px) and (orientation: portrait), (max-width: 567px) {
  .product__content {
    padding: 4rem 2rem;
  }
  .product__name {
    font-size: 2rem;
  }
  .product__arrow {
    width: 5rem;
    height: 5rem;
  }
}
/* --------------------------------- *\

	Products single

\* --------------------------------- */
.product-text .cols--pmtm {
  --col-count: 2;
}
.product-text .cols--pmtm > .col:nth-child(2) {
  padding: 0 0 0 3rem;
  justify-content: center;
  align-items: center;
  display: flex;
}
.product-text .cols--pmtm-right {
  flex-direction: row-reverse;
}
.product-text .cols--pmtm-right > .col:nth-child(2) {
  padding: 0 3rem 0 0;
}
.product-text .cols.margin-t-large + .cols--pmtm {
  margin-top: var(--margin-large);
}

@media (max-width: 767px) and (orientation: portrait), (max-width: 567px) {
  .product-text .cols--pmtm {
    margin-top: var(--margin-large);
  }
  .product-text .cols--pmtm > .col:nth-child(2) {
    padding: var(--margin-large) 0 0 0;
  }
}

/*# sourceMappingURL=--9-3-proudcts.css.map */
