@font-face {
  font-family: "kajiro";
  src: url(./kajiro/Kajiro/Kajiro_Bold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: kajiro;
}

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

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

#workingArea {
  position: relative;
  margin: 0 auto;
  width: 80%;
  max-width: 1920px;
  height: 100vh;
  /* border: 2px solid red; */
}
/** NAV **/
#nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px 0;
}

#nav img {
  height: 60px;
}

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

#nav a {
  pointer-events: all;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-family: system-ui;
}
/** HERO **/

#hero {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  /* height: 100px; */
  /* background-color: red; */
}

#heroLeft {
  min-width: 50%;
  /* background-color: yellow; */
}
#heroLeft button {
  pointer-events: all;
  padding: 0.8vw 3vw;
  font-size: 3vw;
  margin-top: 2vw;
  /* background-color: grey; */
  /* color: white; */
}
#heroLeft .elem {
  position: relative;
  height: 9vw;
  overflow: hidden;
  /* background-color: green; */
}

#heroLeft .elem h1:nth-child(1) {
  top: 0%;
}
#heroLeft .elem h1 {
  position: absolute;
  top: 100%;
  left: 0%;
  color: white;
  font-weight: 100;
  font-size: 11vw;
  line-height: 0.85;
}
/** right **/
#heroRight {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 17%;
  color: white;
  /* background-color: green; */
}
p {
  font-family: system-ui;
}

#heroRight p {
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}
#heroRight p:nth-child(3) {
  margin-bottom: 100px;
}

#heroRight #imagediv {
  width: 100%;
  height: 170px;
  margin-top: 20px;
  margin-bottom: 30px;
  background-position: center;
  background-size: cover;
  background-image: url(https://images.unsplash.com/photo-1718900351979-3e00f88386a3?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHwzfHx8ZW58MHx8fHx8);
}
