/**** Base ****/

  body {
  /*  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
    font-size: 1rem;
    line-height: 1.25em;
  }

  input,
  .btn {
    width: 100%;
    height: 52px;
    padding: 0 1em;
    background: rgba(0,0,0,.05);
    border: 0;
    outline: none;
  }
    input {
      background: rgba(255,255,255,.95);
    }
    input::placeholder {
      color: rgba(0,0,0,.8);
    }
  .btn {
    position: relative;
    z-index: 1;
    width: auto;
    min-width: 180px;
    background: #e7fc00;
    outline: none;
    color: #000;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    cursor: pointer;
  }
    .btn:after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      top: 8px;
      left: 6px;
      z-index: -1;
      background: url(/assets/img/rep-club-button_repeating.svg) 0 0 repeat-x;
    }
      .btn:hover:after {
        animation: slide 6s linear infinite;
      }
      @keyframes slide {
        from { background-position: 0 0; }
        to { background-position: -204px 0; }
      }
    .btn-black {
      background: #000;
      color: #e7fc00;
      -webkit-font-smoothing: subpixel-antialiased;
      -moz-osx-font-smoothing: auto;
    }
      .btn-black:after {
        background: url(/assets/img/rep-club-button-black_repeating.svg) 0 0 repeat-x;
      }
  .icon {
    display: block;
    width: 44px;
    height: 44px;
    background: url(/assets/img/rep-club-icons-alt.svg) 0 0 no-repeat;
    border: 0;
    outline: 0;
    cursor: pointer;
  }
    .icon-instagram {
      background-position: -44px 0;
    }
    .icon-facebook {
      background-position: -88px 0;
    }


/**** Sections ****/

  /*#logo h1:after {
    content: '';
    position: fixed;
    top: 2rem;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 21px;
    background: red;
    background: url(/assets/img/rep-club-logo_repeating.svg) 40px 0 repeat-x;
    // mix-blend-mode: difference;
    cursor: pointer;
  }*/

  #description {
    width: 260px;
    margin: 16rem auto 0;
    padding: 1rem 2rem;
    background: #e7fc00;
  }
    .cssanimations #description {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      z-index: 1;
      margin: 0 0 0 -130px;
    }

  #follow {
    opacity: 0;
    position: realtive;
    z-index: 3;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: #000;
    transition: opacity .3s ease-out, transform .3s ease-out, z-index 0s;
  }
    .ready #follow {
      opacity: 1;
    }
    .cssanimations #follow {
      position: absolute;
      top: 6rem;
      left: 50%;
      z-index: 3;
      width: 260px;
      margin: 0 0 2rem -130px;
      z-index: -10;
      opacity: 0;
      transform: translate3d(0, -1rem, 0);
    }
      .cssanimations .show-follow-overlay #follow {
        z-index: 3;
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }

    #btn-close {
      display: none;
      position: absolute;
      top: 0;
      right: 0;
      z-index: 1;
    }
      .cssanimations #btn-close {
        display: block;
      }

  #background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
    #background:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      background: #000;
    }
    #background:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1;
      background: rgba(0,0,0,.15);
      opacity: 0;
      transition: opacity .15 ease;
    }
    .bg-image {
      position: absolute;
      top: 0;
      left: 0;
      overflow: hidden;
      visibility: hidden;
      height: 100vh !important;
      background-size: cover !important;
    }
      .bg-image.pr-active {
        position: static;
        display: block;
        visibility: visible;
      }


/**** 650+ ****/

  @media only screen and (min-width: 650px) {

    /*#logo h1:after {
      width: 200%;
      top: auto;
      left: 2rem;
      bottom: -240px;
      transform: rotate(-90deg);
      transform-origin: 0 0;
    }*/

    #description,
    .cssanimations #description {
      bottom: auto;
      top: 62%;
      margin-top: -156px;
    }

    #follow,
    .cssanimations #follow {
      bottom: auto;
      top: 62%;
      margin-top: -192px;
    }
      .cssanimations .show-follow-overlay #follow {
        z-index: 3;
      }
      #btn-follow {
        display: none;
      }
        .cssanimations #btn-follow {
          display: inline-block;
        }
  }