.standard-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  -o-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  border-bottom: 2px solid #ccc; }
  .standard-card:hover {
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.5); }
  .standard-card .image_holder {
    position: relative;
    padding-top: 70%;
    width: 100%; }
    .standard-card .image_holder .card-image {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0; }
  .standard-card .event-card-body {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    width: 100%; }
    .standard-card .event-card-body .card-image {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0; }
    .standard-card .event-card-body .button_round {
      background-color: #c0b45d;
      color: #fff;
      border-radius: 50px; }
      .standard-card .event-card-body .button_round:hover {
        background-color: #14284b; }
  .standard-card .card-title {
    font-family: gotham-regular;
    font-weight: bold;
    color: #14284b;
    font-size: 28px; }
  .standard-card .date_time {
    font-size: 12px;
    font-weight: bold; }
    .standard-card .date_time .divider {
      margin: 0 15px; }
