@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;

    font-family: 'Roboto', sans-serif;
}


.section {
    position: relative;
    min-height: 100vh;
}

.section .content {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.section .content canvas {
    width: 100%;
    height: 100vh;
    position: absolute;
}

.section .content .canvasOverlay {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.cursor {
    /* display: none; */
    position: fixed;
    background-color: aquamarine;
}





@-webkit-keyframes scroll-ani {
    0% {
      opacity: 1;
      top: 29%;
    }
    15% {
      opacity: 1;
      top: 50%;
    }
    50% {
      opacity: 0;
      top: 50%;
    }
    100% {
      opacity: 0;
      top: 29%;
    }
  }
  
  @-moz-keyframes scroll-ani {
    0% {
      opacity: 1;
      top: 29%;
    }
    15% {
      opacity: 1;
      top: 50%;
    }
    50% {
      opacity: 0;
      top: 50%;
    }
    100% {
      opacity: 0;
      top: 29%;
    }
  }
  
  @keyframes scroll-ani {
    0% {
      opacity: 1;
      top: 29%;
    }
    15% {
      opacity: 1;
      top: 50%;
    }
    50% {
      opacity: 0;
      top: 50%;
    }
    100% {
      opacity: 0;
      top: 29%;
    }
  }
  
  .mouse-scroll {
      position: absolute;
      z-index: 99;
      top: 0;
      left: 90%;
  
  
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: #7F8C8D;
    color: #FFF;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 2px;
    margin-top: 10%;
    text-decoration: none;
    overflow: hidden;
  }
    
    .mouse {
      position: relative;
      display: block;
      width: 46px;
      height: 73px;
      margin: 0 auto 20px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      border: 3px solid #FFF;
      border-radius: 23px;
      
    }
      .mouse-movement { 
        position: absolute;
        display: block;
        top: 29%;
        left: 50%;
        width: 8px;
        height: 8px;
        margin: -4px 0 0 -4px;
        background: #FFF;
        border-radius: 50%;
        -webkit-animation: scroll-ani 4s linear infinite;
        -moz-animation: scroll-ani 4s linear infinite;
        animation: scroll-ani 4s linear infinite;
      }
      
      
    .mouse-message { 
        float: left;
        margin: 0 0 0 7px;
        padding: 0;
        -webkit-animation: scroll-ani 4s linear infinite;
        -moz-animation: scroll-ani 4s linear infinite;
        animation: scroll-ani 4s linear infinite;
    }




    .pr-3 {
      padding-right: 2rem;
  }


  .d-none {
      display: none;
  }