
@media (min-width: 768px) {
  .img-wrapper{
    width: 100%;
  }
  .form-wrapper {
    padding: 0 15%;
  }
  .form-wrapper form {
/*     background: rgba(244, 246, 250, 1); */
  }
}


@media (max-width: 768px) {
  .event-container {
    flex-direction: column;
    align-items: center;
  }
}


{# styling date (day & month) #}
.event-card-date {
  position: relative;
  font-weight: 700;
  padding-left: 1.87rem;
}
.event-card-date::before {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.4125rem;
  background-color: rgba(201, 63, 85, 1.0);
}
.event-card-day {
  font-size: 3.5rem;
}
.event-card-month {
  display: block;
  font-size: 1.75rem;
  margin-top: -0.8125rem;
  text-transform: uppercase;
}
