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

@font-face {
  font-family: gilroy-ultra-light;
  src: url(Font/Gilroy-UltraLight.ttf);
}
@font-face {
  font-family: gilroy-medium;
  src: url(Font/Gilroy-Medium.ttf);
}
@font-face {
  font-family: gilroy-regular;
  src: url(Font/Gilroy-Regular.ttf);
}
@font-face {
  font-family: gilroy-semi-bold;
  src: url(Font/Gilroy-SemiBold.ttf);
}

@font-face {
  font-family: gilroy-bold;
  src: url(Font/Gilroy-Bold.ttf);
}
@font-face {
  font-family: gilroy-extra-bold;
  src: url(Font/Gilroy-ExtraBold.ttf);
}
@font-face {
  font-family: gilroy-heavy;
  src: url(Font/Gilroy-Heavy.ttf);
}
@font-face {
  font-family: gilroy-thin;
  src: url(Font/Gilroy-Thin.ttf);
}

@font-face {
  font-family: kajiro;
  src: url(Font/Kajiro.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-modify: none;
  font-family: gilroy-light;
  cursor: pointer;
}
body {
  margin: 0;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  /* background-color: black; */
}
main {
  width: 100%;
  height: 100%;
}

.page-front {
  pointer-events: none;
  width: 100%;
  height: 100dvh;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.page-content {
  position: relative;

  margin: 0 auto;
  width: 80%;
  height: 100vh;
}

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

.nav-left,
.nav-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  height: 50px;
}

.nav-link {
  pointer-events: all;
  color: #ffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: gilroy-light;
}

.page-hero {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  width: 100%;
}
.hero-left {
  min-width: 50%;
}
.headings {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.headings > h1:nth-child(1) {
  top: 0;
}

.headings > h1 {
  position: absolute;
  left: 0;
  top: 100%;
  line-height: 0.9;
  font-size: 140px;
  text-transform: uppercase;
  color: white;
  font-weight: 100;
  font-family: kajiro;
}
.explore-btn {
  pointer-events: all;
  padding: 0.8vw 5vw;
  font-size: 3vw;
  margin-top: 2vw;
  font-family: kajiro;
  letter-spacing: 1px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 25%;
  color: #fff;
}

.hero-right > p {
  font-size: 14px;
  font-weight: 300;
  text-align: right;
}
.hero-right > p:nth-child(3) {
  margin-bottom: 60px;
}
.right-img {
  margin-top: 20px;
  margin-bottom: 30px;
  width: 300px;
  height: 200px;
}

.page-back {
  width: 100%;
  height: 100dvh;
}

.page-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1450px) {
  .page-content {
    width: 100%;
  }

  nav {
    padding: 20px 0px;
  }

  .nav-left {
    width: 50%;
    justify-content: flex-start;
    gap: 30px;
    padding: 0 20px;
  }
  .nav-right {
    width: 50%;
    justify-content: flex-end;
    gap: 30px;
    padding: 0 20px;
  }

  .page-hero {
    width: 100%;
    top: 55%;
    padding: 20px 20px;
  }

  .hero-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .headings {
    width: 100%;
  }

  .explore-btn {
    font-size: 50px;
  }
  .hero-right {
    display: none;
  }
}

@media (max-width: 800px) {
  html,
  body {
    overflow-y: auto;
  }
}

@media (max-width: 660px) {
  nav {
    padding: 20px 0px;
  }

  .nav-left {
    width: 70%;
    gap: 20px;
  }
  .nav-right {
    width: 30%;
    gap: 20px;
  }

  /* .page-hero {
    top: 30%;
  } */

  /* .headings {
    height: 100px;
  } */

  .explore-btn {
    font-size: 40px;
  }
  .hero-right {
    display: none;
  }
}

@media (max-width: 600px) {
  .headings {
    height: 130px;
  }

  .headings > h1 {
    font-size: 130px;
  }
}

@media (max-width: 470px) {
  nav {
    padding: 10px 0px;
  }
  nav {
    gap: 15px;
  }
  .nav-left {
    width: 100%;
    justify-content: space-evenly;
    gap: 15px;
    padding: 0 0;
  }
  .nav-right {
    width: 100%;
    justify-content: space-evenly;
    gap: 15px;
    padding: 0 0;
  }
  .headings {
    height: 100px;
  }

  .headings > h1 {
    font-size: 100px;
  }
}
@media (max-width: 350px) {
  .headings {
    height: 80px;
  }

  .headings > h1 {
    font-size: 80px;
  }
  .explore-btn {
    margin-top: 6vw;
  }
}
