    /* popup css start  */
  .floating_popup_form .contact-btn {
      position: fixed;
      top: 50%;
      right: 0;
      background: #0054a7;
      border-radius: 5px;
      border: 1px solid #ffffff;
      box-shadow: 0 0 4px rgba(0, 0, 0, .1), 0 2px 6px 2px rgba(0, 0, 0, .03);
      box-sizing: border-box;
      transform: rotate(-90deg) translateX(150px);
      transform-origin: right bottom;
      color: #fff !important;
      z-index: 9999;
    }
  .floating_popup_form  .contact-btn.contact-btn:hover{
      background: #013d76;
    }
    .popup {
      width:100%;
      height:100%;
      display:none;
      position:fixed;
      top:0px;
      left:0px;
      background:rgba(0,0,0,0.75);
      overflow: auto;
      /* display: flex; */
      /* justify-content: center;
      align-items: center;
      position: fixed;
      overflow: auto;
      max-height: 100%; */
      z-index: 999;
    }
    .popup .pop-nu{
      width: 100%;
      min-height: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding-top: 100px;
      padding-bottom: 50px;
      overflow: auto;
    }
    /* Inner */
    .popup-inner {
      max-width:700px;
      width:90%;
      padding:20px 40px;
      /* position:absolute; */
      /* top:50%; */
      /* left:50%; */
      /* -webkit-transform:translate(-50%, -0%); */
      /* transform:translate(-50%, -0%); */
      box-shadow:0px 2px 6px rgba(0,0,0,1);
      border-radius:3px;
      background:#fff;
      position: relative;
      /* max-height: 80%; */
    }
    /* Close Button */
    .popup-close.popup-close {
      width:30px;
      height:30px;
      padding-top:4px;
      display:inline-block;
      position:absolute;
      top:0px;
      right:0px;
      transition:ease 0.25s all;
      -webkit-transform:translate(50%, -50%);
      transform:translate(50%, -50%);
      border-radius:1000px;
      background:rgba(0,0,0,0.8);
      font-family:Arial, Sans-Serif;
      font-size:20px;
      text-align:center;
      line-height:100%;
      color:#fff;
      text-decoration: none;
    }
    .popup-close:hover {
      -webkit-transform:translate(50%, -50%) rotate(180deg);
      transform:translate(50%, -50%) rotate(180deg);
      background:rgba(0,0,0,1);
      text-decoration:none;
    }
    /* popup css end  */