.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%;
  }
}

@media only screen and (min-width: 768px) {
  .popup {
    position: fixed;
    top: 5vh;
    left: 5vw;
    width: 30vw;
    height: 30vw;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    display: flex;
    background-color: #fff;
    flex-direction: column;
    justify-content: space-between !important;
    gap: 10px;
    z-index: 999;
  }
  .popupFooter {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: medium !important;
    width: 100%;
    background-color: #003057;
    height: 8vh;
    color: #f0f0f0 !important;
    font-size: 20px;
  }
  .popupHeader {
    /* visibility: hidden; */
    align-items: center;
    justify-content: flex-start;
    font-weight: bold;
    font-size: larger;
    padding-left: 10%;
    max-width: 100%;
    background-color: #003057;
    height: 6vh;
    color: #f0f0f0 !important;
    font-size: 24px;
  }

  .popupContent {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100%;
  }

  .logo {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 130px;
    height: auto !important;
    margin-bottom: 10px !important;
  }

  .heading {
    font-size: 22px; /* Adjust heading size as needed */
    margin-bottom: 20px !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
  }

  .phoneNumber {
    font-weight: bold;
    color: #f0f0f0 !important;
    display: flex;
    font-size: medium !important;
    justify-content: center;
    align-items: center;
    /* width: 80vw; */
    min-width: 80% !important;
    padding: 10px !important;
    font-size: 20px !important;
  }
}