/* Popup Background */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.popup .popup-container {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Popup Content */
}
.popup .popup-container .popup-content {
  background-color: #212121;
  max-width: 560px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.5s;
  /* Close Button */
  /* Call Button */
  /* Call Button Hover Effect */
}
.popup .popup-container .popup-content .head-img {
  height: 6rem;
}
.popup .popup-container .popup-content .close-btn {
  position: absolute;
  top: 11px;
  right: 11px;
  font-size: 24px;
  cursor: pointer;
  background: white;
  padding: 0.3rem 0.3rem;
  /* height: 42px; */
  line-height: 16px;
  border-radius: 18px;
}
.popup .popup-container .popup-content .call-btn {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 10px;
}
.popup .popup-container .popup-content .call-btn:hover {
  background-color: #218838;
}
.popup .popup-container .popup-content .offer-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 600px) {
  .popup-content {
    width: 90%;
    font-size: 16px;
  }
  .popup-content .head-img {
    height: 4rem !important;
  }
  .call-btn {
    font-size: 16px;
    padding: 8px 15px;
  }
}/*# sourceMappingURL=popup.css.map */