.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup {
  position: relative;
  width: 50%;
  border-radius: 30px;
  /*background-color: #565656;*/
  /*padding: 7px;*/
}

.popup-wrapper {
  padding: 100px 40px;
  border-radius: 30px;
  background-color: #FFF;
  text-align: center;
  border: 7px solid #565656;
}

.popup svg {
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 25px;
}

.popup h2 {
  margin: 0 0 20px;
  color: #111562;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 700;
}

.popup p {
  margin: 0 0 10px;
  color: #111562;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
}

.popup p span {
  color: #9588E8;
}

.popup-buttons {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px
}

.popup a {
  cursor: pointer;
  transition: 0.2s;
  padding: 15px 40px;
  background-color: transparent;
  border-radius: 16px;
  border: 1px solid #9588E8;

  color: #000;
  font-size: 20px;
  text-decoration: none;
}
.popup a:hover {
  background-color: #9588E8;
  color: #fff;
}

@media (max-width: 1300px) {
  .popup {
    width: 70%;
  }
}

@media (max-width: 750px) {
  .popup {
    width: 90%;
  }

  .popup h2 {
    font-size: 28px;
  }

  .popup p {
    font-size: 14px;
  }

  .popup-buttons {
    gap: 30px;
  }

  .popup a {
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 450px) {
  .popup svg {
    top: 20px;
    right: 20px;
  }

  .popup h2 {
    font-size: 22px;
  }

  .popup p {
    font-size: 12px;
  }

  .popup-wrapper {
    padding: 20px;
  }

  .popup-buttons {
    flex-direction: column;
    gap: 15px;
  }
}