*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow";
    
}

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

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

}

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

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

#Top{
    z-index: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

}

#workingarea{
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    max-width: 1920px;

}

#nav{
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 40px 20px;
}

#nav img{
    height: 60px;
}

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

#nav a{
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

#hero{
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;


}

#heroleft{
    min-width: 50%;
   margin-left: 5vw;
  
}

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

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

#heroleft .elem h1{
    position: absolute;
    top: 100%;
    left: 0;
    line-height: 1;
    font-family:"Barlow";
    color: white;
    font-size: 7vw;
}

#heroleft button{
    pointer-events: auto;
    margin-top: 2vw;
    padding: 1vw 2vw;
    background-color: transparent;
    font-family: "Barlow";
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    font-size:1.5vw;
    cursor: pointer;
}

#heroleft button:hover{
    transition: all 0.5s ease;
    background-color: white;
    color: black;
}

#heroleft button:active{
    background-color: rgba(0, 0, 0, 0.241);
    color: rgb(255, 0, 0);
}

#heroright{
    margin-right: 5vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 20%;
}

#heroright p{
    text-align: right;
    font-size: 14px;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#heroright #imgdiv{
    width: 100%;
    height: 170px;
    background-image: url(https://images.unsplash.com/photo-1552234994-66ba234fd567?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8cG90cmFpdHxlbnwwfHwwfHx8MA%3D%3D);
    background-size: cover;
    background-position: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

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