@font-face {
    font-family: Kajiro;
    src: url(./Kajiro\ Bold.ttf);
}

@font-face {
    font-family: Gilroy;
    src: url(./Gilroy-Light.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Gilroy, Arial, Helvetica, sans-serif;
}

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

#main {
    width: 100%;
    height: 100vh;
    position: fixed;
}


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

#back img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#top {
    width: 100%;
    height: 100vh;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

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

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

#nav img {
    height: 60px;
}

#nav-left,
#nav-right {
    display: flex;
    align-items: center;
    gap: 60px;
}

#nav a {
    pointer-events: all;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    /* font-family: Arial, Helvetica, sans-serif; */
}

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

#hero-left {
    min-width: 50%;
}

#hero-left .elem {
    height: 9vw;
    overflow: hidden;
    position: relative;

}

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

#hero-left .elem h1 {
    position: absolute;
    top: 100%;
    left: 0;
    line-height: .9;
    font-family: Kajiro, Arial, Helvetica, sans-serif;
    font-weight: 100;
    color: white;
    font-size: 11vw;
}


#hero-left button{
    pointer-events: all;
    padding: .8vw 3vw;
    font-size: 2vw;
    margin-top: 2vw;
    letter-spacing: 2px;
    font-family: Kajiro, Arial, Helvetica, sans-serif;
}

#hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 17%;
    color: white;
}

#hero-right p{
    font-size: 14px;
    font-weight: 300;
    text-align: right;
}

#hero-right #image{
    width: 100%;
    height: 170px;
    background-image: url(./Images/Image1.avif);
    background-position: center;
    background-size: cover;
    margin-top: 20px;
    margin-bottom: 20px;
}

#hero-right p:nth-child(3){
    margin-bottom: 20px;
}