*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "gilroy";

}
html,body{
    width: 100%;
    height: 100%;
}
#main{
    width: 100%;
    height: 100vh;
    /* background-color: black; */
    position: relative;
}

#back{
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0);
}

#top{
    pointer-events: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: rgba(0, 0, 0, 0.849); */
}
#workarea{
    width: 80%;
    height: 100vh;
    max-width: 1920px;
    margin: 0 auto;
    padding: 2px solid red;
    position: relative;
}
#nav{
    width: 100%;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#nleft img{
    height: 60px;
}
#nleft, #nright{
    display: flex;
    align-items: center;
    gap: 60px;

}
#nleft a{
    pointer-events: all;
text-decoration: none;
color: #fff;
font-family: "gilroy";
text-transform: uppercase;
font-size: 12px;
font-weight: 500;
}
#nright a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    }
#hero{
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}
#lhero{
    min-width: 50%;
}

#lhero .elem{
    position: relative;

   
    height: 8vw;
    overflow: hidden;
}
#lhero .elem h1:nth-child(1){
    top: 0%;
}
#lhero .elem h1{
    position: absolute;
    left: 0;
    top: 100%;
    font-size: 10vw;
    font-family: "kajiro";
color: #fff;
font-weight: 100;
line-height: .9;
}
#lhero button{
    padding: .7vw 2.8vw ;
    font-size:2.7vw;
    margin-top: 1vw;
    font-family: "kajiro";
    text-transform: uppercase;
    pointer-events: all;


}
#rhero{
    color: #fff;
   width: 20%;
    /* background-color: green; */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#rhero p{
font-size: 14px;
font-weight: 300;
text-align: end;
}
#rhero #imagediv{
    width: 100%;
    height: 135px;
    margin-top: 20px;
    margin-bottom: 30px;
  background-size: cover;
  background-position: center;
    background-image: url(frontimg.png);
}

#rhero p:nth-child(3){
    margin-bottom: 100px;
}
#back img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}