*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'gilroy', sans-serif;
    text-transform: uppercase;
}

body, html{
    height: 100%;
    width: 100%;
}
.wrapper{
    width: 100%;
    height: 100vh;
}

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

#back img{
    width: 100%;
    height: 100%;
    background-size: cover;
}

#top{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
}

#workingarea{
    width: 80%;
    max-width: 1920px;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

#nav{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

#nav img{
    height: 60px;
}

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

#nav a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;

}

#hero{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#heroleft{
    min-width: 50%;
}
.ele{
    height: 6vw;
    position: relative;
    overflow: hidden;
}
.ele h1:nth-child(1){
    top: 0%;
}
.ele h1{
    font-family: kajiro;
    color: #fff;
    font-weight: 100;
    font-size: 7vw;
    line-height: .9;
   position: absolute;
   top: 100%;
   left: 0;
}

#heroleft button{
    padding: 0.7vw 32px;
    font-size: 3vw;
    font-family: "kajiro";
    width: fit-content;
    letter-spacing: 0.1rem;
    margin: 0 auto;
    /* pointer-events: all; */
}

#heroright{
    /* background-color: blue; */
    color: #fff;
    width: 20%;
    text-align: end;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#heroright p{
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    font-family: 'gilroy', sans-serif;
}

#heroright #imagediv{
    width: 100%;
    height: 170px;
    background-color: #fff;
    align-self: flex-end;
    background-image: url(./assets/larm-rmah-bbsoBGUlHog-unsplash.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#heroright p:last-child{
    margin-top: 2.4rem;
}


@media screen and (max-width: 1141px){
    #heroright p{
        font-size: 10px;
      
    }
    .ele{
        height: 7vw;
    }
    .ele h1{
        font-size: 7vw;
        font-weight: 100;
        letter-spacing: 0.1rem;
    }
}

@media screen and (max-width: 718px){
   #heroright p:nth-child(2) , #heroright p:nth-child(3){
       display: none;
   }
   #nav a {
    font-size: 11px;
  }
  #nright, #nleft{
        gap: 20px;
  }
  
}

@media screen and (max-width: 498px){
    #heroright #imagediv{
        height: 70px;
    }
    

}