/*зум по клику для сертифицкатов*/

.img-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 999999;
}

.img-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.img-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* Крестик */
.img-modal .close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 64px;
  font-weight: 300;
  color: white;
  cursor: pointer;
  z-index: 1000000;
  transition: opacity .2s ease;
}

.img-modal .close-btn:hover {
  opacity: 0.6;
}
