h1, h2, h3, h4, h5, h6{
  margin: 0;
  padding: 0;
}
span, p, strong, ul, li{
  margin: 0;
  padding: 0;
  list-style: none;
}
a{
  text-decoration: none;
  color: #000;
}
img{
  max-width: 100%;
  height: auto;
}
.img_card img {
  width: 100%;
}
.evcal_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.evcal_wrap .img_card {
  position: relative;
}
.location a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ev_data .date_f, .time_f, .lo_info .location, .info {
  gap: 5px;
  display: flex;
  align-items: center;
}

.ev_data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ev_cal_btn {
  margin: 25px 0px 0px;
}

.lo_info .location span {
  line-height: 1.4em;
}

@media(max-width: 991px){
  .evcal_wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  @media(max-width: 767px){
    .evcal_wrap {
      grid-template-columns: repeat(1, 1fr);
    }
  }