a.btn {
    background: #011926;
    border-radius: 4px;
    box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.25);
    color: #ffffff;
    display: inline-block;
    padding: 6px 30px 8px;
    position: relative;
    text-decoration: none;
    transition: all 0.1s 0s ease-out;
  }
  .no-touch a.btn:hover {
    background: #00a2ad;
    box-shadow: 0px 8px 2px 0 rgba(0, 0, 0, 0.075);
    transform: translateY(-2px);
    transition: all 0.25s 0s ease-out;
  }
  .no-touch a.btn:active,
  a.btn:active {
    background: #008a93;
    box-shadow: 0 1px 0px 0 rgba(255, 255, 255, 0.25);
    transform: translate3d(0, 1px, 0);
    transition: all 0.025s 0s ease-out;
  }
  div.cards {
    margin: 80px auto;
    max-width: 960px;
    text-align: center;
  }
  div.cardW {
    background: #ffffff;
    display: inline-block;
    margin: 8px;
    max-width: 300px;
    perspective: 1000;
    position: relative;
    text-align: left;
    transition: all 0.3s 0s ease-in;
    width: 300px;
    z-index: 1;
  }
  div.cardW img {
    width: 100%;
    height: 225px;
  }
  div.cardW .card__image-holder {
    background: rgba(0, 0, 0, 0.1);
    height: 0;
    padding-bottom: 75%;
  }
  div.cardW div.card-titleW {
    background: #ffffff;
    padding: 6px 15px 10px;
    position: relative;
    z-index: 0;
  }
  div.cardW div.card-titleW a.toggle-infoW {
    border-radius: 32px;
    height: 32px;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 1px;
    width: 32px;
  }
  div.cardW div.card-titleW a.toggle-infoW span {
    background: #ffffff;
    display: block;
    height: 2px;
    position: absolute;
    top: 16px;
    transition: all 0.15s 0s ease-out;
    width: 12px;
  }
  div.cardW div.card-titleW a.toggle-infoW span.left {
    right: 14px;
    transform: rotate(45deg);
  }
  div.cardW div.card-titleW a.toggle-infoW span.right {
    left: 14px;
    transform: rotate(-45deg);
  }
  div.cardW div.card-titleW h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.05em;
    margin: 0;
    padding: 0;
  }
  div.cardW div.card-titleW h2 small {
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.025em;
  }
  div.cardW div.card-description {
    padding: 0 15px 10px;
    position: relative;
    font-size: 14px;
  }
  div.cardW div.card-actions {
    box-shadow: 0 2px 0px 0 rgba(0, 0, 0, 0.075);
    padding: 10px 15px 20px;
    text-align: center;
  }
  div.cardW div.card-flap {
    background: #d9d9d9;
    position: absolute;
    width: 100%;
    transform-origin: top;
    transform: rotateX(-90deg);
  }
  div.cardW div.flap1 {
    transition: all 0.3s 0.3s ease-out;
    z-index: -1;
  }
  div.cardW div.flap2 {
    transition: all 0.3s 0s ease-out;
    z-index: -2;
  }
  div.cards.showing div.cardW {
    cursor: pointer;
    opacity: 0.6;
    transform: scale(0.88);
  }
  .no-touch div.cards.showing div.cardW:hover {
    opacity: 0.94;
    transform: scale(0.92);
  }
  div.cardW.show {
    opacity: 1 !important;
    transform: scale(1) !important;
  }
  div.cardW.show div.card-titleW a.toggle-infoW {
    background: #ff6666 !important;
  }
  div.cardW.show div.card-titleW a.toggle-infoW span {
    top: 15px;
  }
  div.cardW.show div.card-titleW a.toggle-infoW span.left {
    right: 10px;
  }
  div.cardW.show div.card-titleW a.toggle-infoW span.right {
    left: 10px;
  }
  div.cardW.show div.card-flap {
    background: #ffffff;
    transform: rotateX(0deg);
  }
  div.cardW.show div.flap1 {
    transition: all 0.3s 0s ease-out;
  }
  div.cardW.show div.flap2 {
    transition: all 0.3s 0.2s ease-out;
  }
  