.brnd-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brnd-primary-blue-opa50);
  z-index: 9998;
  display: none;
}

.brnd-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 520px;
  transform: translate(-50%, -50%);
  padding: 180px 50px 180px 500px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border-radius: 20px;
}

.brnd-popup h2 {
  font-size: 24px;
}

.brnd-popup p {
  font-size: 16px;
}

.brnd-popup img {
  display: none; /* Hide the image element */
}

.brnd-popup {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 320px;  Set the desired height for the background image */
}

.brnd-popup .brnd-popup-close {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 36px;
  cursor: pointer;
  transition: transform .3s ease;
}

.brnd-popup .brnd-popup-close:hover{
  transform: rotate(90deg);
}
