*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'General Sans';
}
html,body{
    height: 100%;
    width: 100%;
    background-color: black;
    overscroll-behavior : none; 
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}
[data-scroll-container] {
  touch-action: auto;
  will-change: transform;
  overflow: hidden;
}
#minicircle{
    width: 10px;
    height: 10px;
    background-color: #fff;
    position: absolute;
    z-index: 99999;
    border-radius: 50%;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    left: -3px;
    pointer-events: none;     
}
.bounding{
    width: fit-content;
    overflow: hidden;
}

#main{
    width: 100%;

}
#hero{
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: black;
    color: #fff;
}
#nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
    color: #fff;
}
#nav a{
    color: #fff;
    text-decoration: none;
}
#heading{
    margin-top: 90px;
}
#heading h1{
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    opacity: .6;
    margin-left: 30px;
    font-size: 10vw;


}
#heading #secondh1{
    margin-left: 200px;
}
.blocktext{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.blocktext h5{
    text-align: right;
    text-transform: uppercase;
    font-size: 15px;
}
#details{
    margin-top: 60px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: end;
}
#details h5{
    text-transform: uppercase;
    margin-top: 10px;
    text-align: right;
    font-style: 16px;
}
#herofooter{
    padding: 0 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:absolute;
    bottom: 3%;
    width: 100%;
}
#herofooter a{
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}
#iconset{
    display: flex;
    gap: 5px;
}
#herofooter .circle{
    width: 25px;
    height: 25px;
    background-color: #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#second{
    color: white;
    padding-right: 10vw;
    padding-top: 200px;
    width: 100%;
    background-color: black;
}
.elem{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #888;
    padding: 3vw 3vw;
    padding-right: 0;
}
.elem h1{
    text-transform: uppercase;
    font-size: 7vw;
    opacity: .7;
}
.elemlast{
    border-bottom: 1px solid #888;
}
.elem img{
    opacity: 0;
    pointer-events: none;
    height: 140%;
    z-index: 999;
    position: absolute;
    transform: translate(-50%, -50%);
}
#about{
    display: flex;
    align-items: center;

    gap: 50px;
    color: #fff;
    width: 100%;
    background-color: black;
    padding: 10vw 10vw;
    padding-left: 40vw;
    
}
#textabout{
    width: 25rem;

}
#textabout h5{
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 10px;
}
#textabout p{
    line-height: 1.7;
    margin-bottom: 30px;
}
#textabout a{
    padding: 12px 22px;
    border: 1px solid #fff;
    border-radius: 100px;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}
#about img{
    width: 200px;
}
#subscribe{
    background-color: black;
    color: #fff;
    padding: 20px 30px;
    padding-bottom: 3vw;
}
#subscribe h5{
    text-transform: uppercase;
    opacity: .6;
}
#subscribe h3{
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
}
#footer{
    background-color: black;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
}
#footerleft{
    display: flex;
    gap: 20px;
}
#footerright{
    display: flex;
    gap: 30px;
}
#footer a{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}