@import url("https://fonts.googleapis.com/css2?family=Angkor&display=swap");

@font-face {
  font-family: calibreweb;
  src: url(CalibreWeb-Black.ttf);
}

@font-face {
  font-family: calibrewebReg;
  src: url(CalibreWeb-Regular.ttf);
}

@font-face {
  font-family: migra;
  src: url(Migra-Regular.otf);
}

@font-face {
  font-family: benzin;
  src: url(benzin-bold.ttf);
}

@font-face {
  font-family: sans;
  src: url(GeneralSans-Variable.ttf);
}

@font-face {
  font-family: bulevar;
  src: url(bulevar-poster-webfont-transfonter.ttf);
}

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

*::selection {
  color: black;
  background-color: rgb(216, 18, 18);
}

/* ---------Loader-------- */
#loader {
  height: 100%;
  width: 100%;
  background-color: #0e0e0e;
  position: fixed;
  z-index: 999;
  top: 0;
  transition: all ease 2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader h1 {
  font-size: 3vw;
  /* color: transparent;
  background: linear-gradient(to right, rgb(27, 26, 26), orangered);
  -webkit-background-clip: text; */
  color: white;
  position: absolute;
  opacity: 0;
  animation-name: load;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: linear;
}

.contentLoader{
  position: absolute;
  top: 3%;
  left: 3%;
  width: 100%;
  font-family: calibreweb;
  /* display: flex; */
  /* background: #000; */
}

.contentLoader h2{
  font-size: 3vw;
  margin-bottom: -15px;
  color: white;
}

#loaderTimer{
  position: absolute;
  bottom: 4%;
  right: 4%;
  font-size: 10vw;
  font-family: calibreweb;
  color: transparent;
  -webkit-text-stroke: 2px white;
}

#loader h1:nth-child(2) {
  animation-delay: 2.25s;
}

#loader h1:nth-child(3) {
  animation-delay: 3.5s;
}

#loader h1:nth-child(4) {
  animation-delay: 4.75s;
}

#loader h1:nth-child(5) {
  animation-delay: 6s;
}
#loader h1:nth-child(6) {
  animation-delay: 6.9s;
}

#loader h1:nth-child(7) {
  animation-delay: 7.8s;
}
@keyframes load {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 600px) {
  #loader h1 {
    font-size: 10vw;
  }

  #loader h2 {
    font-size: 10vw;
  }

  #loaderTimer{
    bottom: 4%;
    right: 4%;
    font-size: 25vw;
  }
}
/* ------------Loader-------- */
html {
  scroll-behavior: initial;
}

html,
body {
  width: 100vw;
  overflow: scroll;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: black;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #5c0101;
  border-radius: 10px;
}


/* ---------Circular-text------- */

#circle { position: relative; width: 100%; padding-bottom: 100%; overflow: hidden; position: absolute; z-index: 99; bottom: -25%; right: -35%; display: none;}

#circle text { font-family: 'Helvetica Neue', Arial; font-size: 35px; font-weight: bold; color: white;}

#circle svg { position: absolute; left: 0; top: 0; width: 100%; height: 150px;

  -webkit-animation-name: rotate;
     -moz-animation-name: rotate;
      -ms-animation-name: rotate;
       -o-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 5s;
     -moz-animation-duration: 5s;
      -ms-animation-duration: 5s;
       -o-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
      -ms-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
     -moz-animation-timing-function: linear;
      -ms-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear;

}

@-webkit-keyframes rotate {
    from { -webkit-transform: rotate(360deg); }
    to { -webkit-transform: rotate(0); }
}
@-moz-keyframes rotate {
    from { -moz-transform: rotate(360deg); }
    to { -moz-transform: rotate(0); }
}
@-ms-keyframes rotate {
    from { -ms-transform: rotate(360deg); }
    to { -ms-transform: rotate(0); }
}
@-o-keyframes rotate {
    from { -o-transform: rotate(360deg); }
    to { -o-transform: rotate(0); }
}
@keyframes rotate {
    from { transform: rotate(360deg); }
    to { transform: rotate(0); }
}



/* ------------------Cursor---------------------*/

.cursorHero {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  z-index: 9;
  /* margin: 0 -2vw; */
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background-color: #dc0000a6;
  border: 2px solid antiquewhite;
  height: 9vw;
  width: 9vw;
  color: antiquewhite;
  /* color: rgba(22, 14, 14, 0.468); */
  object-fit: contain;
  background-size: contain;
}

.cursorHero h1 {
  font-size: 1.5vw;
  font-family: migra;
}

.cursorHero1 {
  display: none;
}


.cursorCanvas {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  z-index: 1;
  /* margin: 0 -2vw; */
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(137, 137, 137, 0.237);
  border: 2px solid rgb(255, 255, 255);
  height: 15vw;
  width: 15vw;
}

.cursorCanvas p {
  font-size: 2.5vw;
  font-family: migra;
  color: whitesmoke;
}

/* ------------------------------CUrsor-------------------------- */

.container {
  width: 95%;
  /* margin: auto; */
}

section {
  padding: 50px 0;
  /* background-color:black; */
  /* height: 60vh;
    display: flex;
    align-items: center; */
}

/* ------------------------nav menu--------------------- */

.logo {
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: 99;
  padding: 1vw 2vw;
  left: 0;
  cursor: pointer;
}

.logo img {
  width: 80px;
}

.menu {
  text-align: right;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  gap: 2vh;
  pointer-events: auto;
  position: absolute;
  top: 0;
  z-index: 99;
  font-family: calibreweb;
  margin: 1vw 2vw;
  right: 0;
  color: white;
  padding: 1.5vw;
  padding-top: 1vw;
  /* background-color: #cda050; */
}

.text-div {
  height: 1.5vw;
  overflow: hidden;
  z-index: 99;
}

.hoverEffect h1 {
  font-size: 1.2vw;
  font-weight: 500;
  transition: all ease-out 0.5s;
  z-index: 99;
  cursor: pointer;
}

.hoverEffect:hover h1 {
  transform: translateY(-100%);
  color: #d14836;
}

.logo h1 {
  color: #d14836;
  cursor: pointer;
}

/* ------------------------nav menu--------------------- */

.heroText h1 {
  text-transform: uppercase;
  color: white;
  font-family: calibreweb;
  position: absolute;
  z-index: 9;
  bottom: -6%;
  font-size: 18vw;
  line-height: 12vw;
  pointer-events: none;
}

.hero {
  position: relative;
  cursor: default;
  /* background-color: black; */
}

/* -------------------canvas-hero------------------- */
#bridge {
  display: block;
  width: 100vw;
  height: 100vh;
  cursor: grab;
}

#video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* -------------------canvas-hero------------------- */

/* ---------------------page 2 - about----------------- */

.about2 {
  height: 60rem;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: black;
  padding: 16vw 4vw 6vw 4vw;
  color: #ffffff;
}

.aboutHeading {
  width: 50%;
  text-transform: uppercase;
  font-weight: 600;
  /* background-color: #51ddac; */
  position: relative;
}

.aboutContent {
  width: 50%;
  font-family: calibrewebReg;
  font-size: 1.7vw;
  /* background: #000; */
  padding-top: 50vh;
}

.aboutH {
  font-size: 7vw;
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgb(171, 171, 171);
  color: transparent;
  font-family: benzin;
  margin-bottom: -3vw;
  /* background: #8700b0; */
}

.floatingHeading {
  position: absolute;
}

.fill {
  color: white;
  -webkit-text-stroke: 2px white;
}

.aboutLineImage {
  position: absolute;
  right: -5%;
  top: 45%;
  scale: 0.7;
}

@media only screen and (max-width: 500px) {

.cursorHero {
  display: none;
}

.hero {
  position: relative;
}

.cursorHero1 {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  z-index: 9;
  /* margin: 0 -2vw; */
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background-color: #dc0000a6;
  border: 2px solid antiquewhite;
  height: 8rem;
  width: 8rem;
  color: antiquewhite;
  /* color: rgba(22, 14, 14, 0.468); */
  object-fit: contain;
  background-size: contain;
}

.cursorHero1 h1 {
  font-size: 1.5rem;
  font-family: migra;
}

.cursorCanvas {
  display: none;
}




#circle{
  display: block;
}

  .heroText h1 {
    bottom: 0%;
  }

  .about2 {
    height: 120vh;
    flex-direction: column;
    /* background: #3d16ff; */
  }

  .aboutHeading {
    width: 100%;
    position: relative;
  }

  .aboutContent {
    width: 93%;
    display: block;
    margin: 0 auto;
    font-size: 1.6rem;
    padding-top: 30vh;
  }

  .aboutH {
    font-size: 3rem;
    margin-bottom: -3vw;
    /* background: #8700b0; */
  }

  .floatingHeading {
    position: absolute;
    margin-top: 2vh;
  }

  .aboutLineImage {
    position: absolute;
    right: -5%;
    top: -150%;
    scale: 0.5;
    margin-top: 20vh;
  }
}

@media only screen and (min-width: 500px) and (max-width: 1200px) {
  .about2 {
    height: 115vh;
    flex-direction: column;
    /* background: #3d16ff; */
  }

  .aboutHeading {
    width: 100%;
    position: relative;
  }

  .aboutContent {
    width: 93%;
    display: block;
    margin: 0 auto;
    font-size: 1.8rem;
    padding-top: 30vh;
  }

  .aboutH {
    font-size: 4rem;
    margin-bottom: -3vw;
    /* background: #8700b0; */
  }

  .floatingHeading {
    position: absolute;
    margin-top: 0vh;
  }

  .aboutLineImage {
    position: absolute;
    left: 3%;
    top: 10%;
    scale: 0.5;
    margin-top: 20vh;
  }
}

/* ---------------------page 2 - about----------------- */

/* ------------------Page 3 - Scroll to open-------------- */

/* ----------------Scroll to Open---------------- */
.ScrollToOpen {
  height: 100vh;
  width: 100%;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.top {
  position: absolute;
  width: 100%;
  height: 50vh;
  background-color: #000000;
  top: 0%;
  z-index: 9;
  overflow: hidden;
  /* transform: rotate(180deg); */
}

.center {
  width: 100%;
  height: 150vh !important;
  background-color: #000000;
  position: relative;
}

.bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50vh;
  background-color: white;
  overflow: hidden;
  z-index: 3;
}

.ScrollToOpen h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9vw;
  font-weight: 900;
  font-family: benzin;
  white-space: nowrap;
}

.top-h {
  top: 100% !important;
  color: rgb(0, 0, 0);
  /* transform: rotate(180deg); */
}

.bottom-h {
  top: 0% !important;
  color: rgb(0, 0, 0);
}

.content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: wheat;
  /* background-color: blueviolet; */
  margin-top: 100vh;
  background-color: black;
  cursor: none;
  position: relative;
}

#canvas-container canvas {
  cursor: pointer;
  z-index: 2;
  position: relative;
}

#canvas-container canvas:hover .cursorHero {
  opacity: 0;
  scale: 0;
}

.stroke {
  -webkit-text-stroke: 2px black;
  color: transparent;
  font-family: sans-serif;
  position: absolute;
  font-family: benzin;
}

.top-stroke {
  top: 65% !important;
}

.bottom-stroke {
  top: 35% !important;
}

@media only screen and (max-width: 750px) {
  .ScrollToOpen h1 {
    font-size: 2.5rem;
  }

  .top-stroke {
    margin-top: 10vh;
  }

  .bottom-stroke {
    margin-top: -10vh;
  }
}

/* ----------------Scroll to Open----------------  */

/* ------------------------Pagge 4------------------------ */
.page4 {
  height: 65vh;
  width: 100vw;
  background-color: rgb(0, 0, 0);
  position: relative;
  margin-bottom: -10vh;
  z-index: 2;
}

.pg4H {
  font-size: 7vw;
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgb(171, 171, 171);
  color: transparent;
  /* position: absolute; */
  font-family: benzin;
  margin-bottom: -3vw;
}

.fill {
  color: white;
  -webkit-text-stroke: 2px white;
}

.titlePg4 {
  position: absolute;
  right: 5%;
  top: 0%;
}

@media only screen and (max-width: 750px) {
  .page4 {
    height: 30vh;
    margin-bottom: -10vh;
  }

  .pg4H {
    font-size: 3rem;
  }
}

/* -------------------------Horizontal scroll----------- */
#horizontal {
  padding: 100px 0;
  width: 250%;
  overflow-x: hidden;
}

/* .workHor .pin-spacer{*/
/* background-color:black; */
/* }  */

.horizontal__content {
  display: flex;
  flex: 1;
  overflow-x: hidden;
  flex-wrap: nowrap;
}

.horizontal__item {
  /* border: 1px solid #efefef; */
  height: 570px;
  width: 950px;
  border-radius: 10px;
  /* background-color:pink; */
  display: flex;
  align-items: center;
  padding-left: 2%;
  position: relative;
}


@media only screen and (min-width: 750px) and (max-width: 1150px) {
  .horizontal__item {
    height: 390px;
  }
  .aboutLineImage {
    display: none;
  }
  .bottomContent h2 {
    margin-bottom: -26px!important;
  }
}

@media only screen and (min-width: 1150px) and (max-width: 1300px) {
  .horizontal__item {
    height: 480px;
  }
  .bottomContent h2 {
    margin-bottom: -26px!important;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1400px) {
  .horizontal__item {
    height: 514px;
  }
}

  @media only screen and (min-width: 1400px) and (max-width: 1500px) {
    .horizontal__item {
      height: 544px;
    }
}

@media only screen and (min-width: 1650px) and (max-width: 1850px) {
  .horizontal__item {
    height: 630px;
  }
}

@media only screen and (min-width: 1850px) and (max-width: 2500px) {
  .horizontal__item {
    height: 700px;
  }
}

.horizontal__item:nth-child(1) {
  margin-left: 8vw;
}

.card {
  /* background-color: purple; */
  height: 90%;
  width: 50%;
  position: relative;
  overflow-y: hidden;
  cursor: none;
}

.projectImg {
  width: 80%;
  position: absolute;
  bottom: -7%;
  left: 10%;
  cursor: none;
}

.horizontal__item .card .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: blur(5px);
  cursor: none;
  /* background: #ffe600be; */
}

.horizontal__item:not(:last-child) {
  margin-right: 3vw;
}

.topNumber {
  position: absolute;
  top: -10%;
  left: 0%;
  color: white;
  font-size: 12vw;
  font-weight: 600;
  font-family: calibreweb;
  z-index: 5;
  /* color: #d1483657; */
}

.bottomContent {
  position: absolute;
  bottom: 0%;
  left: 50%;
  color: white;
}

.bottomContent h1 {
  font-size: 8vw;
  font-weight: 600;
  font-family: calibreweb;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
  color: transparent;
  text-transform: capitalize;
  /* background-color: aqua; */
}

.bottomContent h2 {
  font-size: 4vw;
  font-weight: 600;
  font-family: calibreweb;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
  color: transparent;
  /* background-color: #ff98a2; */
  margin-bottom: -41px;
}

.bottomContent p {
  font-size: 1vw;
  font-weight: 200;
  font-family: benzin;
  width: 85%;
  padding-left: 8%;
}

.horizontal__num {
  font-size: 80px;
  font-weight: 900;
  font-stretch: condensed;
  color: #ff98a2;
}

.vertical {
  height: 100vh;
  width: 100%;
  /* background-color: red; */
}

@media only screen and (max-width: 750px) {
  #horizontal {
    padding: 20vh 0;
    width: 700%;
    height: 70vh;
    /* background-color: #55bb74; */
    overflow-x: hidden;
  }

  .horizontal__item {
    height: 20rem;
    width: 60rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding-left: 2%;
    position: relative;
  }

  .card {
    /* background-color: purple; */
    height: 90%;
    width: 60%;
  }

  .topNumber {
    position: absolute;
    top: -3%;
    left: 2%;
    color: white;
    font-size: 4rem;
  }

  .bottomContent {
    position: absolute;
    bottom: 15%;
    left: 50%;
  }

  .bottomContent h1 {
    font-size: 3.5rem;
  }

  .bottomContent h2 {
    font-size: 1.7rem;
    margin-bottom: -21px;
  }

  .bottomContent p {
    font-size: 0.8rem;
    font-weight: 200;
    font-family: benzin;
    width: 90%;
    padding-left: 8%;
  }

  .horizontal__num {
    font-size: 80px;
    font-weight: 900;
    font-stretch: condensed;
    color: #ff98a2;
  }

  .vertical {
    height: 100vh;
    width: 100%;
    /* background-color: red; */
  }

  .projectImg {
    width: 60% !important;
    /* position: absolute;
  bottom: -10%;
  left: 10%;   */
  }
}
/* ----------------------------------------Horizontal Scrolll---------------------- */
/* ------------------------Pagge 4------------------------ */

.page5 {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #c65d5d; */
  /* margin: 20vh 0; */
}

.colChange {
  background-color: #000000;
}

.heroCanvas {
  width: 90%;
  height: 150%;
  /* border-radius: 10px; */
  /* display: block;
  margin: auto; */
  object-fit: contain;
  /* background-color: #e7e7e7; */
  z-index: 2;

  /* display: none; */
}

.scrollFooter {
  height: 10vh;
  background-color: rgb(208, 1, 1);
  display: flex;
  align-items: end;
  /* justify-content: center; */
}

.rail {
  display: flex;
  margin-bottom: -10px;
}

.rail h4 {
  white-space: nowrap;
  font-size: 3.5vw;
  font-weight: 900;
  letter-spacing: ls(120);
  line-height: 1em;
  margin: 0 20px 0 0;
  color: rgb(0, 0, 0);
  font-family: benzin;
  text-transform: uppercase;
}

footer {
  height: 80vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}

footer h1 {
  font-size: 9vw;
  color: #ffffff;
  font-family: calibreweb;
  text-transform: uppercase;

  /* color: #B31312; */
}

footer h3 {
  font-size: 1.5vw;
  color: #ffffff;
  font-family: calibrewebReg;
  margin-bottom: -2vw;
}

.footerHeading {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: #FFE600; */
  padding-top: 5vw;
}

footer img {
  width: 60%;
}

.socials {
  display: flex;
  font-size: 2vw;
  font-family: migra;
  text-transform: capitalize;
  justify-content: space-around;
  width: 100%;
  /* background-color: #cda050; */
}

.socials h2 {
  padding: 8vw 8%;
  z-index: 99;

  cursor: pointer;
  /* background-color: #ff98a2; */
}

.socials h2 a {
  color: white;
  cursor: pointer;
  text-decoration: none;
}

.page5 h1 {
  background-color: #ffe600;
  width: 100%;
  font-size: 3vw;
  font-family: migra;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .rail {
    display: flex;
    margin-bottom: -5px;
  }

  .rail h4 {
    font-size: 2.5rem;
  }

  .scrollFooter {
    height: 7vh;
  }

  footer h1 {
    font-size: 3.5rem;
  }

  footer h3 {
    font-size: 1.2rem;
  }

  .socials {
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
  }

  .page5 h1 {
    background-color: #ffe600;
    width: 100%;
    font-size: 2rem;
    font-family: migra;
    text-align: center;
  }

  .menu {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    position: absolute;
    top: 0;
    z-index: 99;
    font-family: calibreweb;
    margin:5vw;
    right: 0;
    color: white;
    padding: 1.5vw;
    padding-top: 0;
  }

  .text-div {
    height: 1.5rem;
    overflow: hidden;
    z-index: 99;
  }

  .hoverEffect h1 {
    font-size: 1.2rem;
    font-weight: 600;
    transition: all ease-out 0.5s;
    z-index: 99;
    cursor: pointer;
  }

  .cursorHero {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    height: 8rem;
    width: 8rem;
  }

  .cursorHero h1 {
    font-size: 1.5rem;
  }
}
