@font-face {
  font-family: 'Gilroy';
  src: url('./assets/fonts/Gilroy-Medium.woff') format('woff2');
  font-weight: 400;
}

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

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

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

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

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

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

#workingArea {
  position: relative;

  margin: 0 auto;
  height: 100vh;
  width: 80%;
  max-width: 1600px;
}

#navbar {
  width: 100%;
  padding: 20px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

#navbar img {
  height: 60px;
}

#navLeft,
#navRight {
  display: flex;
  align-items: center;
  gap: 40px;
}

#navbar a {
  pointer-events: all;
  color: #fff;
  text-decoration: none;
  font-family: 'Gilroy', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}

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

#heroLeft {
  min-width: 50%;
}

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

#heroLeft .elem h1 {
  top: 100%;
  left: 0;
  position: absolute;
  line-height: 0.9;
  font-family: 'kajiro bold';
  font-size: 11vw;
  color: #fff;
  font-weight: 100;
}

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

#heroLeft button {
  pointer-events: all;
  margin-top: 3vw;
  padding: 0.3vw 1.6vw;
  background-color: #fff;
  font-family: 'kajiro';
  font-size: 2.5vw;
  letter-spacing: 6px;
  cursor: pointer;
}

#heroLeft button:hover {
  transform: scale(0.9);
}

#heroRight {
  width: 17%;
  display: flex;
  flex-direction: column;
  text-align: right;
}

#heroRight p {
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Gilroy', sans-serif;
}

#heroRight p:nth-child(3) {
  margin-bottom: 50px;
}

#heroRight .imageDiv {
  margin-bottom: 20px;
  width: 100%;
  height: 160px;

  background-image: url(https://images.unsplash.com/photo-1622281587418-f2f4fc06ae7a?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OHx8cG9ydGFpdHxlbnwwfHwwfHx8MA%3D%3D);
  background-position: center;
  background-size: cover;
}
