@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
@font-face {
  font-family: gr;
  src: url(./Gilroy-Regular.ttf);
}

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

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

#main {
  width: 100%;
  height: 100vh;
  /* background-color: black; */
}

#back {
  width: 100%;
  height: 100vh;
  background-color: red;
}
#back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#top {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* background-color: #000000; */
}
#workingarea {
  position: relative;
  margin: 0 auto;
  width: 80%;
  max-width: 1920px;
  /* background-color: black; */
  height: 100vh;
  /* border: 1px solid red; */
}

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

#nav img {
  height: 60px;
}
#nleft,
#nright {
  display: flex;
  align-items: center;
  gap: 60px;
}
#nav a {
  text-decoration: none;
  color: white;
  pointer-events: all;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

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

#heroleft {
  min-width: 50%;
  /* height: 100px; */
  /* background-color: yellow; */
}

#heroleft .elem {
  position: relative;
  height: 9vw;
  overflow: hidden;
  /* background-color: red; */
}
#heroleft .elem h1:nth-child(1) {
  top: 0;
}

#heroleft .elem h1 {
  position: absolute;
  top: 100%;
  left: 0;
  line-height: 0.9;
  font-family: "kajiro";
  color: white;
  font-weight: 100;
  font-size: 11vw;
}

#heroleft button {
  cursor: pointer;
  pointer-events: all;
  padding: 0.8vw 3vw;
  font-size: 3vw;
  font-family: "kajiro";
  margin-top: 2vw;
}
#heroright {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 17%;
  /* height: 100px; */
  /* background-color: green; */
  color: #fff;
}

#heroright p {
  /* margin-bottom: 50px; */
  text-align: right;
  font-size: 14px;
  font-weight: 300;
}

#heroright #imagediv {
  width: 100%;
  height: 170px;
  margin-top: 20px;
  margin-bottom: 30px;
  background-image: url(david-chang/nick-andreka-WWQzZO6kORA-unsplash.jpg);
  background-size: cover;
}

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

/* responsivenesss --------- */
