*{
    
    margin: 0;
    padding: 0;
    
    box-sizing: border-box;

}

html,body{
    width: 100%;
    height: 100%;
    font-family: sans-serif;
}

#main{
    
    width: 100%;
    height: 100vh;
    /* background-color: black; */
}

#back{
    
    width: 100%;
    height: 100vh;
    
}

#back img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}


#top{
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-color: #000000; */
}

#workingarea{
    position: relative;
    margin: 0 auto;
    width: 80%;
    height: 100vh;
    max-width: 1920px;
    /* background-color: #000000; */
    /* border: 1px solid red; */
}

#nav{

    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 30px;
}

#nav img{
    height: 60px;
}


#nleft, #nright{
    display: flex;
    align-items: center;
    gap: 40px;
}


#nav a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    pointer-events: all;

}

#hero{
    position:absolute;
    top: 50%;
    left: 0;
    transform: translate(0%,-50%); 

    display: flex;
    justify-content: space-between;
    width: 100%;
    
    
}

#heroleft{
    margin-top: 30px;
    width: 50%;
}

#heroleft .elem{
    position: relative;
    height: 9.5vw;
    overflow: hidden;
    
}


#heroleft .elem h1:nth-child(1){
    top: 0;
}


#heroleft .elem h1{
    
    position: absolute;
    top: 100%;
    left: 0;
    line-height: .9;
    font-family: "kajiro";
    color: #fff;
    font-weight: 700;
    font-size: 12vw;
    text-transform: uppercase;
    

}

#heroleft button{
    pointer-events: all;
    padding: .8vw 3vw;
    font-size: 2.1vw;
    font-weight: 400;
    margin-top: 15px;
    font-family: "Kajiro";
    background-color: #fff;
    
}

#heroright{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 17%;
    color: #fff;
    padding-bottom: 0px;
    
}

#heroright p{
    
    font-size: 15px;
    font-weight: 300;
    text-align: right;
}

#heroright #imagediv{
    width: 100%;
    height: 170px;
    margin-top: 20px;
    margin-bottom: 30px;
    background-image: url(https://plus.unsplash.com/premium_photo-1664870883044-0d82e3d63d99?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    
    background-size: cover;
    background-position: center;
}

#heroright p:nth-child(3){
    margin-bottom: 100px;
}