* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  width: 100%;
  height: 100%;
}
#main {
  background-color: #efde19;
}

#loader {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  text-align: center;
  z-index: 10;
  /* display: none; */
}
#loader h1 {
  /* background-color: #efde19; */
  color: black;
  font-size: 3vw;
  position: relative;
  color: white;
  font-weight: 100;
  font-family: "Libertinus Serif", serif;
  letter-spacing: -3px;
  z-index: 9;
}
#loader img {
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 6;
}
#yellow1 {
  width: 100%;
  height: 100vh;
  z-index: 8;
  position: absolute;
  background-color: #efde19;
}
#yellow2 {
  width: 100%;
  height: 100vh;
  z-index: 7;
  position: absolute;
  background-color: #efde19;
}
#nav {
  width: 100%;
  /* background: #efde19; */
  height: 1vh;
  position: absolute;
  z-index: 9;
  padding: 5vh 2vw;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
 #nav-svg{
  position: fixed;
  z-index: 100;
  right: 1%;
  padding: 0.4%;
  display: none;
  border-radius: 50%;
  cursor: pointer;
  background-color: #efde19;
}
#nav svg {
  height: 3vh;
}
/* #nav svg path{
  fill: white;
} */
.nav-options ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 3vw;
  padding-right: 2vw;
  color: black;
  font-weight: 500;
}
#page1 {
  height: 100vh;
  width: 100%;

  background-color: #efde19;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#page1 h1 {
  background-color: #efde19;
  color: black;
  font-size: 3vw;
  font-weight: 100;
  font-family: "Libertinus Serif", serif;
  letter-spacing: -3px;
}
#page2 {
  height: 100vh;
  width: 100%;
  background-color: black;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.elem {
  /* background-color: red; */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 2vh;
  /* height: 100%; */
}
.elem h2 {
  font-size: 7vw;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 100;
  line-height: 9vh;
}
.elem .moving {
  width: 100%;
  white-space: nowrap;
  display: flex;
  /* display: none; */
  gap: 2vh;
  transition: all ease 0.5s;
  position: absolute;
  padding: 1vh;
  top: 60%;
  left: 50%;
  background-color: #cb4e05;
  cursor: pointer;
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.blur {
  width: 40%;
  background: linear-gradient(to right, #cb4e05, #cb4e05c3, #cb4e05);
  position: absolute;
  z-index: 100;
  box-shadow: 0 0px 10px 3px #cb4e05d1;
  top: 50%;
  height: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blurr {
  width: 60%;
}
.elem .moving .moving-in {
  display: inline-block;
  animation-name: moving;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  white-space: nowrap;
}
.elem .moving .moving-in h5 {
  padding: 0 1vw;
  display: inline-block;
  font-size: 1.3vw;
  text-transform: uppercase;
}
@keyframes moving {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.elem:hover .moving {
  opacity: 1;
  transform: translate(-50%, -50%) scaleY(1);
}
.elem:hover h2 {
  font-style: italic;
  transform: scale(1.1);
}
#page3 {
  height: auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 2vh;
  padding: 4vh;
  flex-wrap: wrap;
  background-color: #efde19;
}
.line {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}
.img-container {
  width: 30vw;
  height: 60vh;
  background-color: black;
  overflow: hidden;
}
.img-div {
  height: 100%;
  width: 100%;
  position: relative;
}
.img-div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.865);
  text-align: center;
  display: none;
  transition: all linear 1s;
}
.overlay p {
  font-size: 3vw;
  transition: all ease 1s;
  color: white;
}
.img-container:hover .overlay {
  display: flex;
}
.img-container:hover .overlay p {
  opacity: 1;
}
#footer {
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  width: 100%;
  flex-direction: column;
  /* background: black; */
  color: white;
  gap: 1vh;
  margin-top: 2vh;
  height: 20vh;
}
.scroll-top {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: black;
}
.scroll-top h3 {
  font-size: 0.8vw;
  cursor: pointer;
}
.scroll-top i {
  cursor: pointer;
}
.foot {
  height: 80%;
  width: 100%;
  background-color: #cb4e05;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(35, 34, 34);
  color: #efde19;
  font-size: 18px;
  padding: 10px 30px;
}
