/*capcha*/
.wwl-capcha{
    position: fixed;
    background: rgba(0,0,0,0.5);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -9999;
    display: none;
  }
  .wwl-capcha.show{
    display: block;
    z-index: 9999;
  }
  .wwl-capcha .wwl-capcha-inner{
    position: absolute;
    left: 15px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 450px;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin: auto;
  }
  .wwl-capcha input[type=text] {
    padding: 12px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 30px;
    box-sizing: border-box;
    height: 44px;
    font-size: 16px;
    line-height: 18px;
    font-family: 'hn-medium';
    width: 100%;
  }
  .wwl-capcha-input{
    flex: 1;
  }
  .wwl-capcha button{
    background-color: #175cff;
    border: none;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    margin: 0px;
    cursor: pointer;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 20px;
    width: 120px;
    margin-left: 5px;
  }
  .wwl-capcha canvas{
  /*prevent interaction with the canvas*/
  pointer-events:none;
  }
  .wwl-capcha .wwl-capcha-flex {
    display: flex;
    width: 100%;
  }
  .wwl-capcha-inner h3 {
    text-align: center;
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  div#captcha {
    text-align: center;
    margin-bottom: 20px;
  }
  /*end captcha*/

section.contact-popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.7);
    display: none;
}
section.contact-popup.show{
    display: block;
}
.cp-inner {
  background: #ffffff;
  max-width: 600px;
  padding: 30px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  text-align: center;
  border-radius: 4px;
  background-image: url(../images/pop-back.jpg);
  background-size: cover;
  background-position: bottom;
  overflow: hidden;
}
.cp-inner h3 {
  font-family: hn-bold !important;
  font-size: 36px;
  line-height: 40px;
  margin: 0;
  color: #175cff;
}
.cp-inner p {
  font-size: 24px;
  line-height: 28px;
  font-family: hn-medium !important;
  margin: 18px 0 32px 0;
  color: #575757;
}
.cp-inner button {
  background: #175cff;
  color: #fff;
  border: 1px solid #175cff;
  line-height: 18px;
  text-transform: uppercase;
}