@font-face {
  font-family: headline;
  src: url(fonts/Rejouice-Headline.ttf);
}

@font-face {
  font-family: International;
  src: url(fonts/NBInternationalProBoo.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: International;
}

/* .....................................utility................................... */

.underline {
  position: relative;
}

.underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--width, 0);
  height: 1px;
  background: #000;
}

.underline-r-close {
  position: relative;
}
.underline-r-close::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: var(--right, none);
  left: var(--left, 0);
  width: var(--width, 0);
  height: 1px;
  background: #000;
}

p.underline-r-close::after {
  background: #fff;
}

.navbar .underline-r-close::after{
  background: #fff;
}

.bold-underline {
  position: relative;
}

.bold-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--width, 100%);
  height: 0.4rem;
  background: #000;
}

/* .....................................loader................................... */

.loader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 999;
}

.loader h1 {
  color: #fff;
  font-size: 2vw;
  font-weight: 100;
}

/* .....................................cursor................................... */

.cursor {
  position: fixed;
  height: 14vh;
  width: 7vw;
  border-radius: 50%;
  background: #0000005f;
  color: #fff;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%) scale(0);
  cursor: default;
  font-size: 1vw;
  white-space: nowrap;
}

/* .....................................page1................................... */

.page-1 {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 3;
}
.page-1 video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3vw 2.7vw;
  color: #fff;
  z-index: 5;
}

.navbar h1 {
  font-size: 1.4vw;
  font-weight: 100;
  cursor: pointer;
}

h1.title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 0.8;
  font-family: headline;
  color: #fff;
  font-size: 27vw;
  font-weight: 100;
  z-index: 2;
}

h1.title span {
  display: inline-block;
}

/* .....................................page2................................... */

.page-2 {
  position: relative;
  margin-top: 6vw;
  padding: 0 2.5vw;
  height: 100vh;
  width: 100%;
}

.page-2-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1vw;
}

.page-2 h1 {
  overflow: hidden;
  font-size: 1.6vw;
  font-weight: 300;
}

.page-2 h1 span {
  display: inline-block;
  position: relative;
}

.page-2-center {
  margin-top: 1vw;
}

.page-2-center h1 {
  font-size: 4vw;
  font-weight: 300;
  text-align: center;
  overflow: hidden;
}

.page-2-bottom {
  margin-top: 8vw;
  margin: none auto;
  text-align: center;
}

.page-2-bottom p {
  font-size: 1.2vw;
  margin-bottom: 0.5vw;
  overflow: hidden;
}

.page-2-bottom p span {
  display: inline-block;
}

.page-2-bottom p span span {
  display: inline-flex;
  font-size: 0.7vw;
  margin: 0;
  padding: 0.3vw 0.5vw;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 5rem;
}

.page-2-bottom h1 {
  font-size: 4vw;
  font-weight: 500;
  cursor: pointer;
}

/* .....................................page3................................... */

.page-3 {
  position: relative;
  height: 100vh;
  width: 100%;
  margin-top: 12vw;
  padding: 0 2.5vw;
}

.page-3-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-3-top h1 {
  font-weight: 200;
  font-size: 1.5vw;
}

.page-3-top h1:last-of-type {
  cursor: pointer;
}

.page-3-bottom {
  position: relative;
  width: 100%;
  height: 80vh;
  margin-top: 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-3-bottom div {
  position: relative;
  width: 32.7%;
  height: 100%;
  cursor: pointer;
}

.page-3-bottom div video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.page-3-bottom div img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: 0.4s opacity ease;
}

.page-3-bottom div:hover img {
  opacity: 0;
}

/* .....................................page4................................... */

.page-4 {
  position: relative;
  height: 100vh;
  width: 100%;
  margin-top: 6vw;
  padding: 0 2.5vw;
}

.page-4 h1 span {
  display: inline-block;
}

.page-4-top {
  padding-bottom: 1vw;
}

.page-4-top h1 {
  font-weight: 200;
  font-size: 1.5vw;
  text-align: left;
  overflow: hidden;
}

.page-4-bottom {
  margin-top: 0.5vw;
}

.page-4-bottom h1 {
  font-size: 4vw;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
}

/* .....................................page5................................... */

.page-5 {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 0 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-5 video {
  position: absolute;
  width: 40vw;
  height: 80vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-5-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 40vh;
  width: 20vw;
  border-radius: 50%;
  border: 2px solid #ffffff77;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.page-5-center h1 {
  font-size: 3.5vw;
  font-weight: 500;
  z-index: 2;
}

.page-5-center p {
  font-size: 1.5vw;
  font-weight: 500;
  z-index: 2;
}

/* .....................................page6................................... */

.page-6 {
  position: relative;
  height: 80vh;
  width: 100%;
  margin-top: 6vw;
  padding: 0 2.5vw;
}

.page-6 span {
  display: inline-block;
}

.page-6-top {
  padding-bottom: 1vw;
}

.page-6-top h1 {
  font-weight: 200;
  font-size: 1.5vw;
  text-align: left;
  overflow: hidden;
}

.page-6-bottom {
  margin-top: 0.5vw;
}

.page-6-bottom h1 {
  font-size: 4vw;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
}

/* .....................................page7................................... */

.page-7 {
  position: relative;
  height: 100vh;
  width: 100%;
  margin-top: 6vw;
  padding: 0 2.5vw;
}

.page-7-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding-bottom: 0.5vw;
}

.page-7-top h1 {
  font-family: headline;
  font-size: 7vw;
  font-weight: 500;
}

.page-7-top p {
  align-self: flex-end;
  font-size: 1.7vw;
  font-weight: 100;
  cursor: pointer;
}

/* .....................................swiper................................... */

.swiper {
  z-index: 12;
  width: 100%;
  height: 50%;
  margin: 2vw auto;
  cursor: grab;
}

.swiper-slide {
  width: 100%;
  display: flex;
  gap: 2.5vw;
  align-items: center;
}

.swiper-slide img {
  width: 20%;
  object-fit: cover;
  object-position: center;
}

/* .....................................page8................................... */

.page-8 {
  position: relative;
  height: 45vh;
  width: 100%;
  padding: 0 2.5vw;
  text-align: center;
}

.page-8 p {
  font-size: 1.2vw;
}

.page-8 h1 {
  font-size: 4.3vw;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
}

.page-8 h1 span {
  position: relative;
  display: inline-block;
}

/* .....................................footer................................... */

.footer {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 0 2.5vw;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.footer p {
  width: fit-content;
}

.footer-top {
  padding-top: 2vw;
  display: flex;
  justify-content: space-between;
}

.footer-top h1 {
  font-size: 1.8vw;
  font-weight: 500;
  cursor: pointer;
}

.footer-top button {
  margin-top: 1.5vw;
  font-size: 1vw;
  padding: 1vw 2vw;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 5rem;
  transition: 0.3s background ease;
  cursor: pointer;
}

.footer-top button:hover {
  background: #fff;
  color: #000;
}

.ft-right {
  display: flex;
  gap: 5vw;
}

.ft-right p {
  font-size: 1.2vw;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 13vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-bottom p {
  font-size: 1.2vw;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.fb-right {
  display: flex;
  gap: 5vw;
}

.footer > h1 {
  line-height: 0.9;
}

@media(max-width:600px){

/* .....................................utility................................... */

  .bold-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--width, 100%);
    height: 0.2rem;
    background: #000;
  }
  
/* .....................................loader................................... */

.loader h1 {
  font-size: 6vw;
}

/* .....................................page1................................... */


.overlay {
  display: none;
}

.cursor{
  display: none;
}

.navbar h1 {
  font-size: 5vw;
}

.page-1>h1{
  display: none;
}

/* .....................................page2................................... */

.page-2 {
  position: relative;
  margin-top:8vw;
  padding: 0 4vw;
  min-height: 80vh;
  width: 100%;
}

.page-2-top {
  padding-bottom: 2vw;
}

.page-2-top h1{
  font-size: 3.3vw;
}

.page-2-center {
  margin-top: 3vw;
}

.page-2-center h1 {
  font-size: 8vw;
  text-align: center;
}

.page-2-bottom {
  margin-top: 40vw;
}

.page-2-bottom p {
  font-size: 4vw;
}

.page-2-bottom p span span {
  font-size: 3vw;
  padding: 0.9vw 2vw;
}

.page-2-bottom h1 {
  font-size: 8vw;
}

/* .....................................page3................................... */

.page-3 {
  margin-top: 15vw;
}

.page-3-top h1 {
  font-weight: 200;
  font-size: 3.7vw;
}

.page-3-bottom {
  width: 100%;
  min-height: 80vh;
  margin-top: 1vw;
  flex-direction: column;
}

.page-3-bottom div {
  margin-top: 5vw;
  width: 100%;
  height: 60vh;
}

/* .....................................page4................................... */ 

.page-4 {
  position: relative;
  height:60vh;
  width: 100%;
  margin-top: 180vw;
  padding: 0 4vw;
}

.page-4-top {
  padding-bottom: 4vw;
}

.page-4-top h1 {
  font-size: 4vw;
}

.page-4-bottom {
  margin-top: 3vw;
}

.page-4-bottom h1 {
  font-size: 8vw;
}

/* .....................................page5................................... */

.page-5 {
  padding: 0 4vw;
}

.page-5 video{
  width: 100vw;
  height: 50vh;
}

.page-5-center {
  height: 30vh;
  width: 60vw;
  border: none;
}

.page-5-center h1 {
  font-size: 15vw;
}

.page-5-center p {
  font-size: 6vw;
}


/* .....................................page6................................... */

.page-6 {
  height: 70vh;
  margin-top: 6vw;
  padding: 0 4vw;
}


.page-6-top {
  padding-bottom: 3vw;
}

.page-6-top h1 {
  font-size: 4vw;
}

.page-6-bottom {
  margin-top: 4vw;
}

.page-6-bottom h1 {
  font-size: 8vw;
}

/* .....................................page7................................... */

.page-7 {
  height: 50vh;
  padding: 0 4vw;
}

.page-7-top {
  padding-bottom: 3vw;
}

.page-7-top h1 {
  font-size: 11vw;
}

.page-7-top p {
  font-size: 4vw;
}

.swiper {
  height:30%;
}

/* .....................................page8................................... */

.page-8 {
  height: 20vh;
  padding: 0 4vw;
}

.page-8 p {
  font-size: 4vw;
}

.page-8 h1 {
  font-size: 12vw;
}

/* .....................................footer................................... */

.footer {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 0 4vw;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.footer-top {
  padding-top: 10vw;
  gap: 4vw;
}

.footer-top h1 {
  font-size: 5vw;
}

.footer-top button {
  margin-top: 3vw;
  font-size: 2.5vw;
  padding: 3vw 4vw;
}

.ft-right p {
  font-size: 3vw;
}


.footer-bottom {
  margin-top: 65vw;
}

.footer-bottom p {
  font-size: 3vw;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.footer>h1{
  bottom: 7%;
}



}