* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto";
}

html, body {
    width: 100%;
    height: 100%;
}

#main {
    width: 100%;
    height: 100vh;
}

#back {
    width: 100%;
    height: 100vh;
}

#back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#top {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}


#workingarea {
    position: relative;
    margin: 0 auto;
    width: 80%;
    max-width: 1920px;
    height: 100vh;
}

#nav {
    display: flex;
    justify-content:space-between;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}

#nav img {
    height: 60px;
}

#nav a {
    pointer-events: all;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

#nleft {
    display: flex;
    align-items: center;
    gap: 60px;
}

#nright {
    display: flex;
    align-items: center;
    gap: 60px;
}

#hero {
    display: flex;
    position: absolute;
    top: 30%;
    left: 0;
    transform: translate(0%,-50%);
    justify-content: space-between;
    width: 100%;
    height: 100px;
}

#heroleft {
    min-width: 50%;
}

#heroleft .elem {
    position: relative;
    height: 9vw;
    overflow: hidden;
 
}

#heroleft .elem h1:nth-child(1){
    top: 0;
}

#heroleft .elem h1 {
    position: absolute;
    top: 100%;
    left: 0;
    font-family: "kajiro";
    color: white;
    font-weight: 100;
    font-size: 11vw;
    line-height: .9;
}

#heroleft button {
    pointer-events: all;
    padding: .3vw 1.5vw;
    font-size: 2vw;
    font-family: "kajiro";
    margin-top: 2vw;
    letter-spacing: 2px;
}

#heroright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 17%;
    color: white;
}

#heroright p {
    text-align: right;
    font-size: 14px;
    font-weight: 300;
}

#heroright #imagediv {
    width: 100%;
    height: 170px;
    margin-top: 20px;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
}

#heroright p:nth-child(3){
    margin-bottom: 50px;
}

















































