@charset "UTF-8";

.pop-up {
  position: fixed;
  display: flex;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  justify-content: center;
}

.pop-up img {
  transition: ease-in-out .05s;
  border-radius: 1rem;
  height: 15rem;
	
}

.pop-up img:hover {
  transition: ease-in-out .05s;
  transform: scale(1.1);
}

@media (max-width: 992px) {
	.pop-up img {
		height: 8rem !important;
	}
}