*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: 'General Sans', sans-serif;
}

html,body{
    height: 100%;
    width: 100%;
}
#circle{
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    width: 10px;
    height: 10px;
    position: absolute;
    z-index: 99999;
    border-radius: 50%;
    background-color: #fff;
}

.bounding{
    width: fit-content;
    overflow: hidden;
}
.bounding .boundingelem{
    transform: translateY(100%);
}

#main{
    width: 100%;
    background-color: black;
}

#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 28px;
    color: white;
}
#nav 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:  10vw;
    text-transform: uppercase;
    font-weight: 900;
}

#heading #secondh1{
    margin-left: 200px;

}
.blocktext{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: fit-content;
}
.blocktext h5{
    text-align: right !important;
    font-size: 15px;
    margin-top: 8px;
    text-transform: uppercase;
}

#smallheading{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 90px;
    padding-right: 26px;
}

#smallheading h5{
  text-align: right;
  margin-top: .5vw;
  font-size: 1.1vw;
  text-transform: uppercase;
}

#herofooter{
    padding: 0 1.6vw;
    width: 100%;
    position: absolute;
    bottom: 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#herofooter a{
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .5s ease-in-out;
}
#herofooter a:hover{
    color: #fff;
    text-decoration: underline;
}
#herofooter #iconset{
    display: flex;
    margin-bottom: 60px;
    gap: 10px;
}

#herofooter .circle{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #929292;
}

#second{
    color: #fff;
    padding-right: 10vw;
    padding-top: 150px;
    background-color: black;
    width: 100%;
    height: 100vh;
}

.elem{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 3vw 3vw;
    padding-right: 0;
    border-top: 1px solid #888;
}
.elem h5{
    font-weight: 300;
}
.elem h1{
    text-transform: uppercase;
    font-size: 6.8vw;
    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{
    margin-top: 50px;
    display: flex;
    align-items: center;    
    justify-content: center;
    gap: 50px;
    padding-right: 8.3vw;
    padding: 10vw 10vw;
    background-color: black;
    color: white;
    width: 100%;
}

#textabout{
    width: 25rem;
}
#about img{
    width: 180px;
}
#textabout h5{
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 10px;
}

#textabout p{
    line-height: 1.6;
    margin-bottom:  25px;
    font-weight: 400;
}
#textabout a{
    padding: 10px  20px;
    border: 1px solid white;
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: all .3s ease-in;
}
#textabout a:hover{
    background-color: white;
    color: black;
    font-weight: 900;
}


#subscribe{
    background-color: black;
    color: white;
    padding: 20px 30px;
    padding-bottom: 6vw;
    
}

#subscribe h5{
    font-size: 12px;
    text-transform: uppercase;
    opacity: .5;
}

#subscribe h3{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    margin-top: 6px;
}

#subscribe h3:hover{
    cursor: pointer;
    text-decoration: underline;
}

#footer{
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 34px  30px;
}

#footerleft{
 display: flex;
 gap: 20px;
}

#footerright{
    display: flex;
    gap: 24px;
}

#footer a{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease-in;
}
#footer a:hover{
    color: #fff;
    text-decoration: underline;
}
#menu{
    color: white;
    transition: all .3s ease-in;
}
#menu:hover{
    cursor: pointer;
    text-decoration: underline;
    color: #fff;
}