@font-face {
  font-family: leafy;
  src: url("./font/leafy.otf");
}
@font-face {
  font-family: gilmer;
  src: url("./font/Gilmer-Light.otf");
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ranga:wght@400;700&display=swap');


:root{
  --red: rgb(255, 17, 0);
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar-corner {
  background-color: #000
}

::-webkit-scrollbar-thumb {
  background-color: var(--red);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: leafy;
  cursor:url(./assets/images/work/cursor.png) 2 2, none;
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
}
#rotate-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-image: url(./assets/images/work/rotate.gif);
  background-size: 100% 100%; /* Stretch the image to fit the div without maintaining aspect ratio */
  background-position: center;
  background-repeat: no-repeat;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


#loading p {
  font-size: 5em;
  color: #333333;
}

#website {
  display: none;
}

.website-border{
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}

.website-border>img{
  width: 100%;
  height: 100%;
}

.redtxt {
  color: var(--red);
  text-decoration: none; /* Remove the default underline */
  border-bottom: 1px solid transparent; /* Initially transparent underline */
  transition: border-bottom 0.3s ease; /* Add a smooth transition effect */
}

.redtxt:hover {
  border-bottom: 1px solid var(--red); /* Solid red underline on hover */
}

a{
  text-decoration: none;
  color: #000;
}

.nav{
  position: fixed;
  top: 0;
  left: 0;
  padding: 1.5% 3.5% 1.5% 5.5%;
  height: 20vh;
  width: 100%;
  display: flex;
  justify-content: center;
  font-family: gilmer;
  z-index: 1000;
}

.logo{
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
}

.dot-logo{
  color: var(--red);
  text-transform: lowercase;
  font-size: 2rem;
  font-weight: bolder;
}

.nav-content{
  display: flex;
  justify-content: space-between;
  display: none;
}

.btn {
  z-index: 99999;
  width: 80px;
  height: 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--red);
  background-color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin-left: 5px;
  }

  .btn:hover {
    background-color:var(--red);
    box-shadow: 0px 15px 20px rgba(218, 7, 7, 0.4);
    color: #fff;
    transform: translateY(-2px);
  }

  .talk-btn{
    background: var(--red);
    color: white;
    width: 90px;
  }

  .talk-btn:hover {
    background-color:white;
    box-shadow: 0px 15px 20px rgba(212, 205, 205, 0.4);
    color: var(--red);
    transform: translateY(-2px);
  }



li{
  text-decoration: none;
  list-style-type: none;
}

.homepage{
  position: relative;
  width: 100vw;
  height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.scroll-msg.arrow{
  font-size: 2rem;
}

.arrow {
  -webkit-animation: mover 1s infinite  alternate;
  animation: mover 1s infinite  alternate;
}
.arrow {
  -webkit-animation: mover 1s infinite  alternate;
  animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes mover {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}


.scroll-msg{
  position: absolute;
  bottom: 0; /* Adjust the distance from the bottom as needed */
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.homepage>h2{
  font-size: 4em;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 800;
  color: var(--red);
}

.scroll-msg>h2{
  font-size: 2em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--red);
}
.scroll-msg>h1{
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--red);
}


.homepage>h3{
  text-decoration: underline;
  font-size: 1.5em;
  font-weight: 400;
  text-align: center;
}

canvas{
  /* box-shadow: 0px -40px 40px 0px black; */
  height: 100vh;
  width: 100%;
  background: #000;
  scroll-behavior: smooth;
}


.work-content {
  color: #fff;
  padding: 10px 40px;
}

.work-content-holder{
  padding: 50px 50px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
}

.container {
	width: 200vw;
	height: 90vh;
	display: flex;
	flex-wrap: nowrap;
  border: 1px solid white;
}

.panel{
  width: 110vw;
  padding: 100px;
}

.panel-content{
  width: 100%;
  height: 100%;
  background: red;
  border-radius: 30px;
}

.plyr__video-embed{
  width: 100%;
  flex: 1;
  position: relative;
  height: 90vh;
}

video{
  position: absolute;
  width: 150%;
  object-fit: cover;
  filter: brightness(0.9);
}

.work-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.work-content-holder>h3{
  font-size: 1.3em;
}

.work-content>h1{
  color: var(--red);
  font-size: 1.3em;
}

.work-items{
  width: 100%;
  margin-top: 0px;
  padding: 0px 50px 50px 50px;
}

.item{
  overflow: hidden;
  background: #000;
  width: 100%;
  display: flex;
  margin: 50px 0px;
  height: 80vh;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

/* .view-btn{
  font-size: 10em;
  position: absolute;
  bottom: 0;
  right: 0;
} */

.writeup{
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  position: absolute;
  top: 90%;
  left: 125vw;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
  padding: 0px 30px;
}

.view-btn{
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: white;
  cursor: pointer;
  font-size: 1em;
  z-index: 9999999;
}

button{
  cursor: pointer;
}

#player{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.more-work{
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 1.5em;
  margin-bottom: 40px;
  cursor: pointer;
}

.more-work>a>h2{
  border-bottom: 2px solid white;
  padding: 10px;
  cursor: pointer;
  color: white;
}



.write3{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  padding: 100px;
  width: 100%;
  height: 100vh;
  margin-top: 10px;
  background-image: url("./assets/images/work/bg1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* border-bottom: 40px solid rgb(130, 27, 17); */
  /* border-top: 40px solid rgb(130, 27, 17); */
}
.inner-shadow {
  width: 100%;
  height: 100vh;
  box-shadow: inset rgb(130, 27, 17) 0px 0px 60px -12px; 
}
.write3>h3{
  text-align: center;
  font-size: 2em;
}
.write3>h4{
  text-align: center;
  font-size: 0.5em;
  font-family: "Ranga", cursive;
}

.write2>h4{
  text-align: center;
  font-size: 0.5em;
  font-family: "Ranga", cursive;
}

.write2{
  font-size: 3em;
  padding: 100px;
  width: 100%;
  height: 100vh;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("./assets/images/work/bg2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.write2>h2{
  font-size: 2em;
}

.write2>h3{
  font-size: 1.1em;
  padding: 10px;
}

i{
  color: white;
}


.footer{
  font-family: gilmer, sans-serif;
  margin-top: 20px;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 50px;
  background: rgb(165, 3, 3);
}

#changingText{
  font-family: gilmer, sans-serif;
  font-weight: 900;
  color: #000;
}


.contact{
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  font-size: 2.5em;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact>h3{
  font-family: gilmer, sans-serif;
  font-weight: 900;
  font-size: 2em;
  margin-bottom: 100px;
  width: 100%;
  text-align: center;
  z-index: 200
}

.contact-main-item>h3{
  font-size: 0.8em;
  text-decoration: underline;
}

.contact-main{
  font-weight: bolder;
  color: #fff;
  font-size: 0.8em;
  font-family: gilmer;
}

.contact-main-item{
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
  height: 40%;
}

.contact-tail>h4{
  font-weight: bolder;
  font-size: 0.8em;
  color: #000;
  font-family: gilmer;
}

.copyr{
  margin-bottom: 40px;
  border-top: 1px solid black;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

#copyright{
  font-family: gilmer, sans-serif;
  font-weight: 900;
  color: black;
}

#scroll {
  position:fixed;
  z-index: 99999;
  right: 2px;
  bottom: 2px;
  width:40px;
  height:40px;
  background-color: var(--red);
  text-indent:-9999px;
  -webkit-border-radius:10px;
  -moz-border-radius:60px;
  border-radius:10px;
}
#scroll span {
  position:absolute;
  top:50%;
  left:50%;
  margin-left:-8px;
  margin-top:-12px;
  height:0;
  width:0;
  border:8px solid transparent;
  color: #fff;
  border-bottom-color:#ffffff;
}
#scroll:hover {
  background-color:#e74c3c;
  opacity:1;filter:"alpha(opacity=100)";
  -ms-filter:"alpha(opacity=100)";
}

@media only screen and (max-width: 768px) {
  .spacer > h1{
    width:550vw;
    font-size:4em;
    font-weight:500;
  }
  .write2{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    padding: 40px;
    width: 100%;
    height: 80vh;
  }
  .spacer{
    height: 5em;
  }
}

.progress-bar-container {
  display: flex;
  position: fixed;
  top: 30vh;
  right: 0;
  width: 35px;
  height: 50vh;
  background-color: black;
  z-index: 9999;
  overflow: hidden;
}

.progress-bar {
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  width: 5px;
  background-color: var(--red);
  transition: all 0.3s ease;
}

.progress-bar-image{
  overflow: hidden;
}
