.popup-section{
  width: 100%;
  height: 100%;
  background-color: #000000c0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  /* display: none; */
}
.popup-section .popup {
  background-color: #C5DDFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px 0;
  padding: 70px;
  width: 600px;
  height: 400px;
  position: fixed;
  border-radius: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.popup-section .popup .fa-xmark{
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 5%;
  right: 4%;
}
.popup-section .popup .btn-one-rounded{
  margin-top: 3rem;
  background-color: #000;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .popup-section .popup {
    width: 90%;
    height: 350px;
    padding: 70px 25px;
  }
  .popup-section .popup h2{
    font-size: 2rem;
  }
  .popup-section .popup h3{
    font-size: 1.6rem;
  }
  .popup-section .popup .btn-one-rounded{
  margin-top: 1.8rem;
}
}