.home-popupcover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* make sure it's above everything */
}

.home-popup {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
	transform: rotate(45deg); /* turns + into x */
}

.popup-close i:before{
  font-size: 24px;
  color: #000;
}

.popup-btn .btn {
  background: #089355;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
	line-height: 34px;
}

.popup-btn .btn i {
	margin-right: 10px;
}
