* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;  
  
  }

  
  /* all Mobile*/ 
  @media only screen and (max-width: 785px) {

  body{
    cursor: pointer !important;
  }
    
  img.responsive {
    width: auto;
    height: 50px;
    position: static;
    display: flex;
   
   
    
    }
  
     .streetlight-icon{
        
        height: auto;
        width: auto;
        padding-left: 2rem;
        position: absolute;
        left: 0;
        
        } 
  .container{
  
  background-color: #000;
  width: 100%;
  height: 12rem;
  display: flex;
  justify-content: flex-end;
  
  
  }
  
 
  
  

       
         

    
  .footer-background {
  width: 100%;
        height: 80px;
        background-size: cover;
        background: radial-gradient(circle,rgba(42, 31, 255, 1) 0%, rgba(0, 0, 222, 1) 35%, rgba(0, 4, 115, 1) 100%);
        padding-top: 2rem;
        display: flex;
        }
          
    
   
        .media-logos{
        width: 40px;
        height: auto;
        margin: .5rem;
        }
          
        .social-media{
        display: flex; 
        align-content: center;
        align-items: flex-end;
        flex-direction: row;
        margin-left: auto;
        margin-bottom: .5rem;
        padding-right: 1.5rem;
        }   
  
  .copyright {
        font-family: "Michroma", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: .7rem;
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        align-items: center;
        color: white;
        padding-left: 2rem;
         margin-top: -.5rem;
       
        
        }
  .btn-section{  
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    text-decoration: none !important;
}


  .btn-container{  
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
    flex-direction: row;
    align-items: center;
    text-decoration: none !important;
}

    button{
    text-decoration: none !important;
    background-color: red;
    border-radius: 2rem;
    border-style: none;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2rem;
    text-align: left;
    padding: .6rem;
    width: 6rem;
    margin: .5rem;
   
    text-align: center;
    transition: 0.3s;
    }



    button:hover{
        background-color: #333333;
        color:#fff;
        transition: 0.3s;
        transform: scale(0.9);
        box-shadow: 0 12px 16px 0 rgb(0 0 0 /24%), 0 17px 50px 0 rgb(0 0 0 /19%);
        cursor: pointer;
        text-decoration:none;
    }
     
 
  
  p { 

    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 2rem;
    text-align: left;

  }

  h2 {
    font-family: "Michroma", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2rem;
    color: red;
  }

 

  

/*Mobile nav bar*/ 

    
  header{
    width: 100%;
    height: auto;
    background: radial-gradient(circle,rgba(42, 31, 255, 1) 0%, rgba(0, 0, 222, 1) 35%, rgba(0, 4, 115, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
  }

  
  .hamburger {
    display: block;
    cursor: pointer;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 2rem;
    margin-left: auto;
    
  }

  .hamburger .line {
    width: 30px;
    height: 3px;
    background: white;
    margin: 6px 0;
    

  }

  .nav-bar ul li a {
      
    display: block;
    color: white;
    font-size: 1.2rem;
    padding: .9rem 1.4rem;
    border-radius: 50px;
    transition: 0.2s;
    margin: 0 5px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    margin: 1.3rem;
    

  }

  li{
    text-decoration: none;
    list-style-type: none;
  }

  .nav-bar ul li a:hover {
    color: white;
    background: #2f2f2f;
    
  }

  .nav-bar ul li a:active {
    color: white;
    background: #000;
    
  }

  .nav-bar{
    height: 0;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    width: auto;
    background: radial-gradient(circle,rgba(255, 0, 0, 1) 0%, rgba(194, 0, 0, 1) 50%, rgba(120, 0, 0, 1) 100%);
    transition: 0.5s;
    overflow: hidden;
    z-index: 1;
  }

  .nav-bar.active{
    height: 25rem;
  }

  .nav-bar ul {
    display: block;
    width: fit-content;
    margin: 80px auto 0 auto;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
  }

  .nav-bar.active ul {
    opacity: 1;
  }

  .nav-bar ul li a{
    margin-bottom: 12px;
  }

  }
    
/* Deskstop */
body{
   cursor: none;
}
  
  @media (min-width: 786px) {   

    .cursor-dot{
      width: 15px;
      height: 15px;
      background-color: #ffd000;
      /* opacity: 80%; */
       box-shadow: 2px -2px 10px 5px #47020299;
    }

    .cursor-outline {
      width: 40px;
      height: 40px;
      border: 3px solid  #ffd000;
      /* opacity: 80%; */
      box-shadow: 2px -2px 10px 1px #47020299;

    }

    .cursor-dot, .cursor-outline {
      position: fixed;
      top: 0;
      left: 0;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      z-index: 10;
      pointer-events: none;
    }

    header{
      width: 100%;
      height: auto;
      padding-top: 1rem;
      padding-bottom: 1rem;
      padding-right: 1.7rem;
      background: radial-gradient(circle,rgba(42, 31, 255, 1) 0%, rgba(0, 0, 222, 1) 35%, rgba(0, 4, 115, 1) 100%);
      display: flex;
      justify-content: flex-end;
      z-index: 2;
    }
    
    .hamburger {
      display: none;
    }
    
   
    .nav-bar ul {
      display: flex;
    }

    
    .nav-bar ul li a {
      
      display: block;
      color: white;
      font-size: 1.2rem;
      padding: 10px 1.4rem;
      border-radius: 50px;
      transition: 0.2s;
      margin: 0 5px;
      text-decoration: none;
      font-family: "Poppins", sans-serif;
    }



    li{
      text-decoration: none;
      list-style-type: none;
    }

    .nav-bar ul li a:hover {
      color: red;
      background: white;
      
    }

    .nav-bar ul li a:active {
      color: red;
      background: white;
      
    }
/* end */

  p { 

      font-family: "Poppins", sans-serif;
      font-weight: 300;
      font-size: 1.2rem;
      line-height: 2rem;
      text-align: left;
  
    }
  
  h2 {
      font-family: "Michroma", sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 2rem;
      line-height: 2.5rem;
      color: red;
    }
  
  

        
  img.responsive {
    width: auto;
    height: 50px;
    position: static;
    display: flex;
     cursor: pointer !important;
   
   
    
    }
  
     .streetlight-icon{
        
        height: auto;
        width: auto;
        padding-left: 2rem;
        position: absolute;
        left: 0;
        
        
        } 
  .container{
  
    background-color: #000;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    
    
    }
    
   
    
    .btn-section{  
      display: flex;
      justify-content: center;
      padding-bottom: 2rem;
      flex-direction: column;
      align-items: center;
  }
  

    .btn-container{  
      display: flex;
      justify-content: center;
      padding-bottom: 2rem;
      flex-direction: row;
      align-items: center;
  }
  
      button{
      text-decoration: none;
      background-color: red;
      border-radius: 2rem;
      border-style: none;
    
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 1rem;
      line-height: 2rem;
      text-align: left;
      padding: .9rem;
      width: 8rem;
      margin: .5rem;
      text-align: center;
      transition: 0.3s;
      }


  
      button:hover{
          background-color: #333333;
          color:#fff;
          transition: 0.3s;
          transform: scale(0.9);
          box-shadow: 0 12px 16px 0 rgb(0 0 0 /24%), 0 17px 50px 0 rgb(0 0 0 /19%);
          cursor: pointer;
      }
    .wrapper{
      z-index: 0
    }
      
  footer{
    z-index: 1;
    
       
    
   
  }
  
  #btn-text{
    padding-left: 2rem;
    padding-right: 2rem;
  }

      .footer-background {
        width: 100%;
        height: 80px;
        background-size: cover;
        background: radial-gradient(circle,rgba(42, 31, 255, 1) 0%, rgba(0, 0, 222, 1) 35%, rgba(0, 4, 115, 1) 100%);
        padding-top: 2rem;
        display: flex;
       
        
        }
          
        .media-logos{
        width: 40px;
        height: auto;
        margin: .5rem;
        }
          
        .social-media{
        display: flex; 
        align-content: center;
        align-items: flex-end;
        flex-direction: row;
        margin-left: auto;
        margin-bottom: .5rem;
        padding-right: 1.5rem;
        }   
        
        .copyright {
        font-family: "Michroma", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: .8rem;
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        align-items: center;
        color: white;
        padding-left: 2rem;
         margin-top: -.5rem;
       
        
        }

        
  .wrapped-arrow {
    width: 100%;
    text-align: center;
}

.wrapped-arrow img {
    height: 50px;
    margin: auto;
}

.bounce {
    animation-iteration-count: infinite;
    animation-duration: 1.5s;
    animation: bounce 3.6s ease infinite;
    transform-origin: 50% 50%;
}

.bounce {
    animation-iteration-count: infinite;
    animation-duration: 1.5s;
    animation: bounce 3.6s ease infinite;
    transform-origin: 50% 50%;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    5.55556% {
        transform: translateY(0);
    }

    11.11111% {
        transform: translateY(0);
    }

    22.22222% {
        transform: translateY(-15px);
    }

    27.77778% {
        transform: translateY(0);
    }

    33.33333% {
        transform: translateY(-15px);
    }

    44.44444% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

      
 
}

