.div-block {
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.project-popup {
  z-index: 20;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 12px;
  width: 280px;
  height: auto;
  margin-bottom: 0;
  padding-bottom: 20px;
  display: none;
  position: absolute;
  overflow: hidden;
}

.image {
  border: 0 solid #000;
  width: 100%;
  height: auto;
  display: none;
}

.heading {
  margin: 10px 5px 0 10px;
  font-size: 18px;
  line-height: 22px;
}

.text-block, .link {
  margin-left: 10px;
}

@media screen and (max-width: 991px) {
  .project-popup {
    background-color: #fff;
    display: none;
  }

  .heading {
    margin-bottom: 2px;
  }

  .text-block {
    margin-right: 5px;
    padding-bottom: 5px;
  }

  .link {
    margin-left: 5px;
  }
}


