*{
    margin: 0;
    padding: 0;
    font-family: "General Sans";
    box-sizing: border-box;
}

html, body{
    width: 100%;
    height: 100%;
}

#minicircle{
   transition: all cubic-bezier(0.19,1,0.22,1) 1s;
    width: 10px;
    height: 10px;
    position: absolute;
    z-index: 9999;
    border-radius: 50%;
    background-color: #fff;


 }

 .bounding{
   width: fit-content;
   
   overflow: hidden;
 }
 .bounding .boundingelem{
   transform: translateY(100%);   
 }


 #main{
    width: 100%;
    background-color: black;
       overflow-x: hidden;
        
 }



 #hero{
   position: relative;
    color: white;
    width: 100%;
    height: 100vh;
    background-color: black;
 }

 #navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    width: 100%;
    padding: 20px 40px;
    color: white;
    
 }
 #navbar a{
    text-decoration: none;    
    font-size: 18px;
      color: white; 
 }

 #heading{
    margin-top: 90px;
 }

  #heading h1{
    margin-left: 30px;
    opacity: .6;
    line-height: 1;
    font-size: 9vw;
    text-transform: uppercase;
    font-weight: 900;
  } 

#heading #sec {
    margin-left: 230px;
}

  .blocktext{
   width: fit-content;
   display: flex;
   flex-direction: column;
   align-items: end;
   
  }

.blocktext h5{
   text-transform: uppercase;
   font-size: 13px;
   text-align: right;
  }
  #chhotiheadings{
   margin-top: 100px;
   padding-right: 50px;
   display: flex;
   flex-direction: column;
   align-self: end;
  }
#chhotiheadings h5{
   text-transform: uppercase;
   margin-top: .5vw;
   font-size: 1vw;
   text-align: right;

}
#herofooter{
   padding: 0 2vw;
   width: 100%;
   position:absolute;
   bottom: 3%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   
}
  #herofooter a{
   color: white;
   text-transform: uppercase;
   text-decoration: none;

  }


#herofooter #iconset{
   display: flex;
   gap: 5px;
}

#herofooter .circle{
   display: flex;
   align-items: center;
   justify-content: center;
   width: 25px;
   height: 25px;
   border-radius: 50%;
   background-color: #888;
}

#second{
   color: white;
   padding-right: 10vw;
   
   background-color: black;
   width: 100%;
     padding: 100px 10vw;
    display: block;
    
}

#second,#about,#subscribe,#footer{
   
   width: 100%;
}

.elem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3.5vw 3vw;
    padding-right: 0;
    border-top: 1px solid #888;
    overflow: hidden;
}

.elem h1 {
    text-transform: uppercase;
    font-size: 7.6vw;
    opacity: .7;
    margin: 0;
}

.elem:last-child {
    border-bottom: 1px solid #888;
}

.elem img{
   
   /* opacity: 0; */
   height: 80%;
   z-index: 999;
   position: absolute;
}

#about{
   display: flex;
   align-items: center;
   gap: 50px; ;
   width: 100%;
   background-color: black;
   height: 100vh;
   padding: 10vw 10vw;
   padding-left: 40vw;
   min-height: auto;

}

#about img{
   width: 200px;
}

#textabout{
   width: 25rem;
   
}

#textabout p{
   color: white;
   font-family: "General Sans";
   line-height: 1.7;
   margin-bottom: 30px;

}

#textabout a{
   text-decoration: none;
   color: white;
  padding: 12px 22px;
  border: 1px solid #fff;
  border-radius: 100px;
  text-transform: uppercase;
  font-size: 12px;
}
#textabout h5{
   text-transform: uppercase;
   opacity: .7;
   color: white;
   margin-bottom: 10px;
}

#subscribe{
   background-color: black;
   color: white;
   padding: 20px 30px;
   min-height: auto;

}

#subscribe h5 {
   text-transform: uppercase;
   opacity: .6;
}

#subscribe h3{
   text-transform: uppercase;
   font-size: 14px;
   margin-top: 10px;

}

#footer {
    color: #fff;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
    margin-top: 40px;
    min-height: auto;
}

#footer-left {
    display: flex;
    gap: 20px;
}

#footer-right {
    display: flex;
    gap: 30px;
}

#footer a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}






