/**
*@helpers
*/
@media (min-width: 230px) {
  .product {
    border: 1px solid #e0e0e0; }
    .product .frame {
      padding-top: 93.056%; }
    .product .product__title {
      border-top: 1px solid #0069bb;
      padding: 1rem;
      margin-bottom: 0; }
      .product .product__title a {
        font-size: 1.4rem;
        line-height: 2.6rem;
        width: 100%;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        height: -webkit-calc(2.6rem * 2);
        height: -moz-calc(2.6rem * 2);
        height: calc(2.6rem * 2);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        color: #1e1e1e;
        font-weight: 600;
        font-family: "JosefinSans-SemiBold"; }
        .product .product__title a:hover {
          text-decoration: none; } }

@media (min-width: 1200px) {
  .product {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease; }
    .product .frame {
      -webkit-transition: opacity 0.3s ease;
      -o-transition: opacity 0.3s ease;
      -moz-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease; }
    .product .product__title {
      padding: 2rem;
      margin-bottom: 0; }
      .product .product__title a {
        font-size: 1.6rem; }
    .product:hover {
      -webkit-transform: translateY(-10px);
      -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      transform: translateY(-10px); }
      .product:hover .frame {
        opacity: 0.8; }
      .product:hover .product__title a {
        color: #0a4089; } }
