/* ============================================ *
 *  Card Component
 * ============================================ */
.card {
  position: relative;
}
.card_primary {
  background-color: #878787;
  min-height: 1em;
  padding: 60px;
  clear: both;
}
.card_secondary {
  padding-top: 70px;
  display: none;
  min-height: 1em;
  clear: both;
}
.card_reveal {
  height: 100%;
  display: block;
}
.card_reveal:hover {
  text-decoration: none;
  cursor: pointer;
}
.card_unreveal {
  font-size: 20px;
  float: right;
  margin-top: -90px;
  z-index: 1060;
  cursor: pointer;
}
.card.m_active .card_reveal:after {
  color: #fff;
  content: "\f078";
  font-family: "FontAwesome";
  font-size: 20px;
  position: absolute;
  bottom: -20px;
  left: calc(38%);
  border-radius: 50%;
  background: #313635;
  width: 40px;
  height: 40px;
  padding-left: 10px;
  padding-top: 10px;
}
.card_secondary.m_active {
  display: block;
}
/* ============================================ *
* MAX WIDTH QUERIES
* ============================================ */
@media (max-width: 769px) {
  .card_unreveal {
    display: none;
  }
}
/* ============================================ *
* MIN WIDTH QUERIES
* ============================================ */
