*{
    margin: 0;
    font-family: "gilroy";
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Kajiro";
    src: url("KajiroBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
  }
  
  body {
    font-family: "Kajiro", sans-serif;
  }
  
html,body{
    height: 100%;
    width: 100%;
}
#main{
    height: 100vh;
    width: 100%;
    /* background-color: black; */
}
#back{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 0;
}

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


#top{
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    /* pointer-events: auto; */
    /* background-color: rgba(0, 0, 0, 0.553); */
}


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

#nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}
#nleft, #nright{
    display: flex;
    align-items: center;
    gap: 50px;
}

#nleft img{
height: 60px;
}

#nav a{
    pointer-events: all;
    color: #fff;
    font-family: "gilroy";
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}
#hero{
    position: absolute;
    top: 30%;
    left: 0;
    display: flex;
    width: 100%;
    
    /* background-color: red; */
    justify-content: space-between;
    transform: translateY(0,-50%);
}

#heroleft{
    width: 50%;    
}

#heroleft .elem{
    position: relative;
height: 9vw;
/* background-color: red; */
overflow: hidden;
}
#heroleft .elem h1:nth-child(1){
    top: 0;
}


#heroleft .elem h1{

    position: absolute;
    top: 100%;
    left: 0;
    line-height: 0.9;
    font-family: "Kajiro";
    color: white;
    font-weight: 100;
    font-size: 11vw;
}

#heroright{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 20%;
    color: #fff;
    /* background-color: green; */
}
#heroleft button{
    pointer-events: all;
    padding: 0.8vw 3vw;
    font-size: 3vw;
    font-family: "kajiro";
    margin-top: 2vw;
}

#heroright p{
    /* margin-bottom: 50px; */
    text-align: right;
    font-size: 14px;
    font-weight: 300;

}

#heroright #imagediv{
    width: 100%;
    height: 170px;
    margin-top: 20px;
    margin-bottom: 30px;
    background-image: url(https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTV8fHBvcnRyYWl0fGVufDB8fDB8fHww);
    background-size: cover;
    background-position: center;
}

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