*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

html, body{
    width :100%;
    height: 100%;
}

#main{
    width: 100%;
    height: 100vh;

}
#back{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
   
}
#back img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#top{
    pointer-events: none;/* using this line we can not able to click on top */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
#workingarea{
    position: relative;
    margin: 0 auto; /* this center the area */
    width: 80%;
    height: 100vh;
    max-width: 1920px; /*if your screen is more big then 1920 then we take max-width 1920px  */
}
#nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}
#nav img{
    height: 60px;
}
#nleft, #nright{
    display: flex;
    align-items: center;
    gap: 40px;
}
#nav a{
    pointer-events: all; /* using this line we can able to click on only links */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    color:#fff;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
#hero{
    position: absolute;/*this line */
    top: 50%; /*this line */
    left: 0;/*this line */
    transform: translate(0%, -50%);/*this lines for height wise center any element use this 4 lines*/
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* height: 100px; */
}
#heroleft{
    min-width: 50%;

}
#heroleft .elem{
    position: relative;
    height: 10vw;
    overflow: hidden; /* this line use for hid the element which is out side of the div*/
    margin-bottom: 0.5vw; /* spacing between elements to prevent overlapping */
}

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

#heroleft .elem h1{
    position: absolute;
    top: 100%;
    left: 0;
    font-family: "kajiro";
    line-height: .9;
    font-size: 11vw;
    font-weight: 100;
    color: #fff;
}
#heroleft button{
    pointer-events: all; /* using this line we can able to click on only button*/
    padding: .8vw 3vw;
    font-size: 3vw;
    margin-top: 2vw;
    font-family: "kajiro";
}
#heroright{
    display: flex;/*--*/
    flex-direction: column;/*--*/
    align-items: flex-end;/*-- this 3 lines for align item to right side*/
    width: 17%;
    color: #fff;
}
#heroright p{
    font-size: 14px;
    font-weight: 300;
    text-align: right;
}
#heroright #imagediv{
    width: 100%;
    height: 170px;
    margin-top: 20px;
    margin-bottom: 30px;
    background-image: url(./images/12.jpg);
    background-size: cover;
    background-position: center;
}
#heroright p:nth-child(3){
    margin-bottom: 100px;
}