    /* demo styles
  --------------------------------------------- */

  body, html {
    overflow: hidden;
    width: 100%;
    min-width: 400px;
    min-height: 700px;
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
    font-weight: 300;
  }

  body {
    font: 100% / 1.5;
  }

  * {
    margin:0;
    padding:0;
  }

   /* centre the content in the parallax layers */
  .title {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  #content {
    position: fixed;
    z-index: 1;
    top: 100%;
  }

  #bg {
    position: fixed;
    z-index: -2;
    height: 100%;
    visibility: hidden;
  }

  #modal-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
  }

  .blur {
    /* -webkit-filter: blur(12px);
       -moz-filter: blur(12px);
        -ms-filter: blur(12px);
         -o-filter: blur(12px);
            filter: blur(12px);
        transition: .5s; */
  }

  #logo.blur {
    /* -webkit-filter: blur(3px);
       -moz-filter: blur(3px);
        -ms-filter: blur(3px);
         -o-filter: blur(3px);
            filter: blur(3px);
        transition: .5s; */
  }

  .bgwidth {
    width: 100%;
    min-width: 500px;
  }

  .bgwidth-xtra {
    width: 2560px;
    min-width: 500px;
  }

  .bgheight {
    height: 100%;
    min-width: 500px;
  }

  #logo {
    position: absolute;
    width: 25%;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    border-radius: 50%;
    visibility: hidden;
    z-index: 3;
  }

  #logo img {
    width: 60%;
    max-width: 400px;
  }

  #message {
    position: fixed;
    z-index: 5;
    bottom: 50px;
    right: 50px;
    background: white;
    width: 100%;
    max-width: 400px;
    padding-bottom: 167px;
    display: none;
    border-radius: 10px;
    box-shadow: 10px 10px 100px 10px rgba(0, 0, 0, .2);
  }

  #message .head {
    height: 50px;
    line-height: 50px;
  }

  #message .head h3 {
    text-align: center;
    font-size: 17px;
    font-weight: 400;
  }

  #message .head .close {
    position: absolute;
    cursor: pointer;
    padding: 0 20px;
    right: 0;
    top: 0;
    font-size: 22px;
  }

  #message #messages {
    display: none;
    max-height: 400px;
    overflow: scroll;
  }

  #message form {
    position: absolute;
    bottom: 4px;
    max-width: 370px;
    margin-bottom: -7px;
    width: 100%;
  }

  #message textarea {
    height: 100px;
    -webkit-appearance: none;
    resize: none;
    border-radius: 0 0 10px 10px;
  }

  #message input {
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
  }



  #message input[type="text"], #message textarea {
    border: 1px solid #FFF;
    width: 100%;
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 15px;
    padding: 12px 15px;
    border: 0;
    background-color: #F2F2F2;
  }

  #message input[type="text"]:focus, #message textarea:focus {
    outline: none;
    border-color: rgba(0,0,0,0);
    background-color: white;
  }

  #message input[type="text"].error {
    background: rgb(255,59,48);
    color: white;
  }

  #message input[type="text"] {
    border-bottom: 2px solid #FFF;
  }

  #message .submit {
    position: absolute;
    bottom: 10px;
    right: -20px;
    cursor: pointer;
  }

  #message .submit img {
    height: 25px;
  }

  #message .submit.disabled {
    display: none;
  }

  #message .message {
    list-style: none;
    margin: 15px;
  }

  #message .message.hide {
    display: none;
  }

  #message .message.me {
    text-align: right;
  }

  #message .message .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 15px;
    float: left;
  }

  #message .message .body {
    background: rgb(0,122,255);
    color: #FFF;
    border-radius: 20px;
    display: inline-block;
    line-height: 18px;
    padding: 10px 20px;
    text-align: right;
    margin-right: 8px;
    margin-left: 8px;
  }

  #message .message.bobby .body {
    background: #EEE;
    color: #000;
    max-width: 200px;
    margin-top: 3px;
    margin-bottom: 3px;
    text-align: left;
  }

  #contact {
    position: fixed;
    z-index: 4;
    bottom: 80px;
    right: 80px;
    border-radius: 50%;
    background: rgb(0,122,255);
    text-align: center;
    cursor: pointer;
    width: 42px;
    height: 42px;
    padding: 15px;
    transition: .3s;
  }

  #contact:hover {
    background: rgb(0,102,225);
    margin-right: 3px;
    margin-bottom: 3px;
    padding: 12px;
  }

  #contact img {
    height: 32px;
    width: 32px;
    margin-top: 3px;
  }

  @media screen and (max-width: 500px) {
    body {
      max-width: 500px;
    }

    #logo {
      position: fixed;
      top: 0;
      left: 0;
      border-radius: 0;
      text-align: center;
      width: 100%;
      padding: 40px 0 20px 0;
      background-color: white;
    }

    #logo img {
      text-align: center;
      margin: 0 auto;
      width: 50%;
    }

    #contact {
      bottom: 0;
      right: 0;
      width: 100%;
      max-width: 500px;
      border-radius: 0;
      line-height: 50px;
    }

    #contact:hover {
      margin: 0;
      padding: 15px;
    }

    #contact img {
      margin-left: 25px;
    }

    #copy {
      display: none;
    }

    #message {
      bottom: 0;
      right: 0;
      width: 100%;
      max-width: 500px;
      border-radius: 0;
    }

    #message form {
      max-width: 470px;
    }

    #message .submit {
      bottom: 7px;
      right: 10px;
    }

  }
