.event--card {
  padding: 5px;
  max-width: 390px;
  width: 100%;
  background: linear-gradient(-120deg, #ffcd04 0%, #6d243e 60%, #522b39 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 1em;

}
.event--card--filter {
  height: 212px;
  overflow: hidden;
  position: relative;
  object-fit: cover;
}
.event--card--filter::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  mix-blend-mode: multiply;
  /*background: linear-gradient(-150deg, #ffcd04 0%, #6d243e 100%);*/
  z-index: 1;
}
.event--card--photo {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.event--card--container {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background: #fff;
  padding: 1em;

}

.event--card-text {
  flex: 1 0 auto;
}
.event--card h2 {
  font-size: 27px;
  color: #522b39;
  letter-spacing: -1.06px;
  margin: 0 0.4em 0.4em 0;
}

.event--card h2 a{
  color: #522b39;
}
.event--card time, .event--card p, .event--card .event--car--location {

  font-size: 14px;
  color: #535353;
  margin: 0.18em;
}
.event--card--location {
  text-decoration-color: #ffcd04;
  -webkit-text-decoration-color: #ffcd04;
  transition: all 250ms ease;
  max-width: 13.3em;
}
.event--card--location:hover {
  background-color: rgba(109, 36, 62, 0.2);
  text-decoration-color: rgba(109, 36, 62, 0.2);
}
.event--card--buttons {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 1.5em 0 0.5em 0;
  flex-direction: row;
}
.event--card--buttons .btn {
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  text-align: center;
  display: block;
  flex: 1 1 100%;
  color: #522b39;
  padding: 1em;
}
.event--card--buttons .btn:hover {
  -webkit-animation: gradient 1.3s ease infinite;
  -moz-animation: gradient 1.3s ease infinite;
  animation: gradient 1.3s ease infinite;
}
.event--card--buttons .btn:hover i {
  -webkit-animation: levitate 1.3s ease infinite;
  -moz-animation: levitate 1.3s ease infinite;
  animation: levitate 1.3s ease infinite;
}
.event--card--buttons .primary {
  position: relative;
  background-image: linear-gradient(to right, #6d243e, #3022AD);
  background-size: 150% 150%;
  transition: all 0.4s ease;
  z-index: 1;
}
.event--card--buttons .secondary {
  position: relative;
  background-image: linear-gradient(to right, #ffcd04, #ffcd04);
  background-size: 150% 150%;
  transition: all 0.4s ease;
  z-index: 1;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes levitate {
  0% {
    padding-left: 0px;
  }
  50% {
    padding-left: 5px;
  }
  100% {
    padding-left: 0px;
  }
}
@media (max-width: 400px) {
  .event--card .fas {
    display: none;
  }

  .event--card--buttons {
    display: inline;
  }
}
.event--card--list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
.event--card-wrapper {

  display: flex;
  flex-flow: column nowrap;
  flex: 1 0 auto;
  width: 100%;
}
.event--card--tag {
  background-color: #522b39;
  z-index: 1;
  text-transform: uppercase;
  margin: 10px 0 10px 0;
  clear: both;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  padding: 5px 12px 2px 11px;
  letter-spacing: 0.5px;
  line-height: 23px;
}
