      /* The Modal (background) */

      .modal {
        position: fixed;
        visibility: hidden;
        padding-top: 5%;
        /* Location of the box */
        left: 0;
        top: 0;
        width: 100vw;
        /* Full width */
        height: 100vh;
        /* Full height */
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.4);
        transition: all 0.3s;
      }

      .md-show {
        visibility: visible;
      }

      .md-show ~ .modal {
        opacity: 1;
        visibility: visible;
      }
      /* Modal Content */

      .modal-content {
        background-color: #fefefe;
        margin: auto;
        border: 1px solid #888;
        width: 700px;
        box-shadow: 00 24px 38px 3px rgba(0, 0, 0, 0.14),
          0 9px 46px 8px rgba(0, 0, 0, 0.12),
          0 11px 15px -7px rgba(0, 0, 0, 0.2);
        z-index: 2000;
        backface-visibility: hidden;
        transform: translateX(-50%) translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      .modal-content h4 {
        margin: 20px;
      }

      .modal-content img {
        width: 150px;
        margin: 20px;
      }

      @media only screen and (max-width: 600px) {
        .modal-content {
          width: 95%;
        }
        .modal-content h4 {
          margin: 25px;
        }
        .modal-content .lp-btn {
          width: 95%;
        }
      }
      /* The Close Button */

      .close {
        color: #aaaaaa;
        float: right;
        font-size: 36px;
        font-weight: bold;
        margin-right: 5px;
        align-self: flex-end;
      }

      .close:hover,
      .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
      }
      /* Effect 1: Fade in and scale up */

      .md-effect-1 .modal-content {
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
      }

      .md-show.md-effect-1 .modal-content {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
      }

      .lp-btn {
        align-items: center;
        background-color: #01e675;
        border-bottom-style: none;
        border-color: #000000;
        border-left-style: none;
        border-radius: 100px;
        border-right-style: none;
        border-top-style: none;
        border-width: 0px;
        color: #fff;
        cursor: pointer;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        font-family: Ubuntu, sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: bold;
        height: 70px;
        justify-content: center;
        line-height: 1.42857;
        margin-bottom: 15px;
        margin-top: 15px;
        max-width: 356px;
        text-align: center;
        text-decoration: none;
        width: 100%;
      }

        .float {
          display: block;
          position: fixed;
          width: 50px;
          height: 50px;
          bottom: 20px;
          right: 20px;
          background-color: #25d366;
          color: #fff;
          border-radius: 50px;
          text-align: center;
          font-size: 30px;
          z-index: 100;
          cursor: pointer;
        }

.float:hover{
  box-shadow: 0 0 10px 2px rgba(0,0,0,0.7);
  color: #eee;
}


        .my-float {
          margin-top: 10px;
        }