@font-face {
    font-family: gilroy;
    src: url(./fonts/Gilroy-Regular.ttf);
}
@font-face {
    font-family: kajiro;
    src: url(./fonts/Kajiro\ Bold.ttf);
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Gilroy";
}

html,body{
    height: 100%;
    width: 100%;
}

#main{
    height: 100vh;
    width: 100%;
   
}

.back{
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.back img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.top{
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    /* background-color: #000000d5; */
}

#workingspace{
    position: relative;
    height: 100vh;
    width: 80%;
    max-width: 1920px;
    /* border: 1px solid red; */
    margin: 0 auto;
}

#nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    width: 100%;
}

#nav img{
    height: 60px;
}

#nav #lnav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

#nav #rnav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
}

#nav a{
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

#hero{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    display: flex;
    justify-content: space-between;
    /* height: 100px; */
    width: 100%;
    /* background-color: red; */
}

#heroleft{
   
    min-width: 50%;
    /* background-color: yellow; */
}
#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;
    color: #fff;
    font-family: kajiro;
    font-weight: 100;
    font-size: 11vw;
    line-height: .9;
}

#heroleft button{
    font-family: kajiro;
    padding: .3vw 2vw;
    font-size: 3vw;
    letter-spacing: 5px;
    margin-top: 2vw;
}

#heroright{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 20%;
    /* background-color: green; */
}

#heroright p{
    color: #fff;
    text-align: right;
    font-size: 12px;
    font-weight: 300;
}

#heroright #imagediv{
    height: 160px;
    width: 100%;
    background-image: url(https://plus.unsplash.com/premium_photo-1670282392820-e3590c1c5c54?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzY1fHxwb3J0cmFpdHxlbnwwfHwwfHx8MA%3D%3D);
    background-size: cover;
    background-position: top;
    margin-top: 30px;
    margin-bottom: 40px;
    
}

#heroright p:nth-child(3){
    margin-bottom: 100px;
}