.banner .overlay {
  cursor: pointer;
}
.banner{
  display: none;
}
.popup {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
  background-color: #fff;
}

.popupHeader {
  background-color: #bf1111;
  color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-weight: bold; */
  width: 100%;
  padding: 20px 0;
}

.popupContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
}

.logo {
  width: 325px;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.popupheading {
  text-align: center;
  font-weight: 750;
  color: #050505cb;
  margin: 24px 0px;
}

.phoneNumber {
  /* font-weight: bold; */
  background-color: #bf1111;
  color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 60px;
  border-radius: 6px;
  font-size: 25px;
}

.popupFooter {
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-weight: bold; */
  background-color: #bf1111;
  color: #f0f0f0;
  width: 100%;
}

@media only screen and (max-width: 428px) {
  .banner{
    display: block;
  }
  .popupheading {
    font-size: 34px !important;
  }
  .popupFooter {
    font-size: 1.1rem;
    height: 10vh;
  }
  .phoneNumber {
    width: 80vw;
    padding: 18px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .banner{
    display: block;
  }
  .popup {
    width: 100%;
    height: 100%;
    justify-content: space-between;
  }
  .popupHeader p {
    font-size: 20px;
  }
  .popupFooter {
    font-size: 25px;
    height: 12vh;
  }
}

@media only screen and (min-width: 768px) {
  .popup {
    top: 5vh;
    left: 5vw;
    width: 22vw;
    padding-top: 3vw;
    height: fit-content;
    border-radius: 6px;
  }
  .popupFooter {
    font-size: 20px;
    height: 8vh;
  }
  .popupheading {
    font-size: 22px;
  }
  .phoneNumber {
    min-width: 80%;
  }
}
