@font-face {
  font-family: font-light;
  src: url(./fonts/SuisseIntl-Light.woff2);
}
@font-face {
  font-family: font-regular;
  src: url(./fonts/SuisseIntl-Regular.woff2);
}
@font-face {
  font-family: nb;
  src: url(./fonts/NB\ International\ Regular.otf);
}
@font-face {
  font-family: Integral;
  src: url(./fonts/Fontspring-DEMO-integralcf-bold.otf);
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  width: 100%;
  font-family: nb;
}
.page1 {
  height: 100vh;
  width: 100%;
  background-color: #dadada;
  position: relative;
}
.cursor {
  height: 1vw;
  width: 1vw;
  position: fixed;
  z-index: 9;
  border-radius: 50%;
  color: white;
  transform: translate(-50%, -50%);
  background-color: #ff5f38;
}
.cursor h5 {
  font-size: 1.2vw;
  font-weight: 200;
}
#menu {
  cursor: pointer;
}
.full {
  height: 100%;
  width: 100%;
  background-color: #111;
  position: absolute;
  top: -100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  left: 0;
  gap: 30px;
  z-index: 99;
}
.full h1 {
  font-family: Integral;
  color: white;
  font-size: 8vw;
}
#close{
  font-size: 2vw;
  background-color: white;
  padding: 10px 10px;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  right: 10%;
  top: 10%;
}
.page1 video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.page1-content {
  height: 100%;
  width: 100%;
  /* background: #111; */
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  /* padding-bottom: 5vw; */
}
nav {
  width: 94%;
  display: flex;
  /* background-color: red; */
  align-items: center;
  justify-content: space-between;
  padding: 3vw 3vw;
  color: #ff5f38;
}
nav h3 {
  font-size: 1.6vw;
  font-weight: 500;
}
.page1-content h1 {
  font-family: nb;
  font-size: 27vw;
  padding-bottom: 30px;
  /* line-height: 27vw; */
  font-weight: 100;
}
.page2 {
  height: 100vh;
  width: 100%;
  background-color: beige;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}
.elem1 {
  height: 70px;
  width: 90%;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  /* background-color: #FF5F38; */
  border-bottom: 1px solid black;
}
.elem1 h3 {
  font-size: 1.7vw;
  font-weight: 100;
}
.elem2 {
  height: 250px;
  /* background-color: #FF5F38; */
  width: 90%;
  padding-top: 40px;
}
.elem2 h1 {
  /* height: 55px; */
  /* background-color: #FF5F38; */
  text-align: center;
  font-weight: 100;
  font-size: 3.9vw;
}
@media screen and (max-width: 600px) and (min-width: 340px) {
  .cursor {
    display: none;
  }
  .page1 {
    height: 60vh;
  }
  nav h3 {
    font-size: 3.5vw;
  }
  .page2 {
    height: 60vh;
    padding-top: 0px;
  }
  .elem1 h3 {
    font-size: 3vw;
  }
  .elem2 h1 {
    font-size: 6vw;
  }
}
