.pop-up {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 1;
}

.pop-up-modal {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  padding: 10px;
  background-color: #fff;
  border-bottom: 5px solid #efece3;
  border-radius: 1rem;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.pop-up-modal-about {
  flex-direction: column;
  align-items: center;
}

.pop-up-modal-blog {
  flex-direction: column-reverse;
  position: absolute;
}

.pop-up-modal-content {
  margin-bottom: 0px !important;
  padding: 10px;
  align-self: center;
}

.pop-up-modal-about-row {
  display: flex;
  width: 100%;
}

.pop-up-modal-meetup-img {
  padding: 10px;
}

.pop-up.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  z-index: 10;
  background-color: rgb(0 0 0 / 50%);
}

@media only screen and (max-width: 575px) {
  .pop-up-modal-about {
    width: 90%;
  }

  .pop-up-modal-blog {
    width: 90%;
  }

  .pop-up-modal-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 50px;
    z-index: -1;
    opacity: 0.3;
  }
}