.pop-up {
  position: fixed;
  display: none;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0, 0.6);
}
.pop-up .pop-content {
  width: 70%;
  height: auto;
  background-color: white;
  border-radius: 10px;
  position: relative;
  padding: 43px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pop-up .pop-content .close {
  position: absolute;
  padding: 2px 3px;
  right: 15px;
  top: 15px;
}

.popup-open {
  display: block;
}

.event-des ul {
  list-style: none;
  margin: 0;
  padding: 16px 0px;
}
.event-des ul li i {
  display: inline-block;
  width: 30px;
}

@media only screen and (max-width: 767px) {
  .event-img {
    margin-bottom: 16px;
  }
  .pop-up .pop-content {
    width: 90%;
  }
}
