.no-scroll {
  overflow: hidden;
}
.text-center {
  text-align: center;
}
.container {
  position: relative;
}
.popup-overlay {
  background: rgba(30, 51, 92, 0.95);
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  top: 0px;
  left: 0px;
  color: #fff;
  overflow-y: scroll;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 2;
}
.popup-overlay .popup-content {
    margin-top: 150px;
}
.popup-overlay h4 {
  font-size: 55px;
  font-weight: bold;
  line-height: 25px;
  margin-top: 0px;
  margin-bottom: 20px;
}
.popup-overlay p {
  font-size: 18px;
  font-weight: 100;
}
.popup-overlay .close-popup {
  background: none, url(../images/close-popup-02.svg);
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 15px;
  top: 5px;
}
.popup-overlay #popup-message {
  margin-bottom: 30px;
}
.popup-overlay form {
  margin-top: 40px;
}
.popup-overlay form input,
.popup-overlay form select {
  width: 100%;
  height: 40px;
  border: 1px solid #fff;
  background: none;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  color: #fff;
  outline: none;
  margin-bottom: 30px;
  padding: 10px;
}
.popup-overlay form select option {
  background: #1e335c;
}
.popup-overlay form input[type="submit"] {
  background: #fff;
  color: #1e335c;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  line-height: 1em;
}
::-webkit-input-placeholder {
  color: #fff;
}
::-moz-placeholder {
  color: #fff;
}
/* firefox 19+ */
:-ms-input-placeholder {
  color: #fff;
}
/* ie */
input:-moz-placeholder {
  color: #fff;
}
