@media only screen and (max-width: 750px) {
  .event {
    width: 100% !important;
  }

  .event > img {
    width: 100% !important;
  }
}

.event {
  box-sizing: border-box;
  width: 500px;
  padding: 0 20px;

  &:not(:first-of-type) {
    margin-top: 30px;
  }

  > img {
    width: 100%;
  }

  > div:first-of-type {
    margin-bottom: 5px;

    > h4 {
      margin: 0;
    }
  }

  > div {
    display: flex;
    justify-content: space-between;
    align-items: center;

    > div {
      display: flex;
      justify-content: center;
      align-items: center;

      > img {
        width: 20px;
        margin-right: 5px;
      }
    }
  }
}
