#popUpPromo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  cursor: pointer;
  margin: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  background: #105157b4;
  font-family: Arial, sans-serif;
}
#popUpPromo * {
  box-sizing: border-box;
}
.popUp {
  width: 800px;
  height: 687px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #008080;
  box-shadow: 0 0 10px 0 #00000029;
}

.popup-image {
  width: 50%;
  background-image: url("../images/image-left.jpg");
  background-size: cover;
  background-position: center;
}

.popup-content {
  width: 50%;
  padding: 70px 55px 40px;
  box-sizing: border-box;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  font-size: 32px;
  color: #777;
  cursor: pointer;
  line-height: 38px;
}

.title-popup {
  margin: 0 0 28px;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 800;
}

.text-popup {
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 40px;
}

.btn-popup {
  display: inline-block;
  padding: 19px 75px;
  border-radius: 35px;
  background: #fff;
  color: #666;
  text-decoration: none;
  font-size: 16px;
}

@media (max-width: 768px) {
  .popUp {
    width: 90%;
    height: auto;
    flex-direction: column;
  }
  .popup-image,
  .popup-content {
    width: 100%;
  }
  .popup-image {
    height: 186px;
  }
}