@font-face {
  font-family: sun-roman;
  src: url(./NeueHaasDisplay-Roman.ttf);
}
@font-face {
  font-family: sun-mediu;
  src: url(./NeueHaasDisplay-Mediu.ttf);
}

@font-face {
  font-family: heading;
  src: url(./AtypDisplayTRIAL-Bold-BF65727125c8d1d.otf);
}
@font-face {
  font-family: para;
  src: url(./AtypDisplayTRIAL-Medium-BF65727125b8683.otf);
}


* {
  margin: 0;
  font-family: sun-roman;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}
#loader {
  height: 100%;
  width: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  transition: all ease 1s;
  z-index: 1111;
}
#loader h1 {
  position: absolute;
  color: transparent;
  background: linear-gradient(to right, #D94C29, #D94C29);
  -webkit-background-clip: text;
  font-size: 7vw;
  opacity: 0;
  animation-name: loader;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 1s;
  font-family: heading;
}
#loader h1:nth-child(2) {
  animation-delay: 2s;
}
#loader h1:nth-child(3) {
  animation-delay: 3s;
}
@keyframes loader {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#main {
  position: relative;
  background-color: transparent;
}
#bg4 {
  background-color: #efeae3;
}
#page1 {
  min-height: 100vh;
  max-width: 100vw;
  overflow: hidden;
  padding: 0vw 2vw;
  background-color: #efeae3;
}
#page1 nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5vw 0;
}
#navbut {
  display: flex;
}
#navbut h4 {
  border: 1px solid #917e78dc;
  margin: 0 7px;
  border-radius: 50px;
  padding: 13px 21px;
  position: relative;
  overflow: hidden;
  transition: all ease 0.4s;
}
#navbut a {
  text-decoration: none;
  color: black;
  z-index: 9;
  position: relative;
}
#navbut h4::after {
  content: "";
  background-color: black;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
}
#navbut h4:hover::after {
  bottom: 0;
  border-radius: 0;
}
#navbut h4:hover a {
  color: white;
}
#menu {
  display: none;
}

.menu-items {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to right, #ff9831, #fe330a);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  border-radius: 8px;
}


.menu-items.show {
  max-height: 300px;
  opacity: 1;
}

.menu-items h5 {
  margin: 10px 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color:none;
}


.menu-items h5:last-child {
  border-bottom: none;
}

.menu-items a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-items a:hover {
  color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-items {
      width: 90%;
  }

  .menu-items a {
      font-size: 16px;
  }
}

#center {
  display: flex;
  width: 100%;
  height: 68vh;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #bfbbb6;
  padding-bottom: 9vh;
}
#left h3 {
  font-family: sun-mediu;
  width: 63%;
  padding-left: 1vw;
  font-size: 2vw;
}
#right h1 {
  font-family: sun-mediu;
  font-size: 10vw;
  text-align: end;
  line-height: 82%;
  padding-right: 1vw;
}
#page1 video {
  margin-top: 8vh;
  width: 100%;
  border-radius: 27px;
  position: relative;
}
#hero-shape {
  width: 55vw;
  height: 37vw;
  position: absolute;
  right: 0;
  top: 83vh;
}
#hero-1 {
  width: 100%;
  height: 100%;
  position: absolute;
  filter: blur(20px);
  background: linear-gradient(#fe330a, #fe3116);
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
#hero-2 {
  width: 30vw;
  height: 30vw;
  position: absolute;
  filter: blur(25px);
  background: linear-gradient(#fe330a, #fe4416);
  border-radius: 50%;
  animation-name: anime1;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

/* #hero-3{
    width: 30vw;
    height: 30vw;
    display: flex;
    overflow: hidden;
    position: absolute;
    filter: blur(20px);
    background: linear-gradient(#FE330A,#FE5216);
    border-radius: 50%;
    animation-name: anime2;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    
} */
@keyframes anime1 {
  from {
    transform: translate(-5%, 20%);
  }
  to {
    transform: translate(33%, -10%);
  }
}
@keyframes anime2 {
  from {
    transform: translate(70%, 10%);
  }
  to {
    transform: translate(90%, -15%);
  }
}

#page2 {
  position: relative;
  padding-top: 8vw;
  width: 100%;
  height: 70vh;
  background-color: #efeae3;
}
#moving-line {
  white-space: nowrap;
  overflow-x: auto;
}
#moving-line::-webkit-scrollbar {
  display: none;
}
.con {
  white-space: nowrap;
  display: inline-block;
  animation-name: moving;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.con h1 {
  font-family: sun-mediu;
  font-size: 9vw;
  display: inline-block;
}
#gola {
  height: 5vw;
  width: 5vw;
  border-radius: 50%;
  background-color: #fe330a;
  display: inline-block;
  margin: 1vw 2vw;
}

@keyframes moving {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

#page2bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4vw 6vw;
  height: 80vh;
  gap: 20px;
}
#part1 {
  width: 63%;
}
#part2 {
  padding-top: 41vh;
  padding-right: 1vw;
  width: 22%;
}
#page2bottom h1 {
  font-size: 4.2vw;
  z-index: 9;
  position: relative;
  font-family: sun-mediu;
  font-weight: 900;
  line-height: 4vw;
}
#part2 img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  margin-bottom: 3vw;
}
#circle {
  position: absolute;
  width: 32vw;
  height: 32vw;
  top: 61%;
  left: 27%;
  border-radius: 50%;
  background-color: #ff9831;
  filter: blur(10px);
}
#circle1 {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  background-color: #ff9831;
  filter: blur(10px);
  animation-name: circle1;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
#circle2 {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  background-color: #fe330a;
  filter: blur(50px);
  animation-name: circle2;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes circle1 {
  from {
    transform: translate(-5%, 10%) skew(0deg);
  }
  to {
    transform: translate(5%, -6%) skew(-10deg);
  }
}

@keyframes circle2 {
  from {
    transform: translate(-5%, 10%);
  }
  to {
    transform: translate(5%, -6%);
  }
}

#page3 {
  min-height: 100vh;
  background-color: #efeae3;
}
#sec {
  display: flex;
  gap: 0.5vw;
  padding: 3vw 2vw;
  align-items: center;
}
#elem-con {
  padding: 1vw 0;
  position: relative;
  z-index: 0;
  cursor: pointer;
}
#gol {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: #fe330a;
}
.elem {
  height: 6vw;
  width: 100%;
  padding: 1vw 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(207, 201, 201);
  overflow: hidden;
}
.elem:hover #overlay {
  top: 0%;
}
#overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: -100%;
  background-color: #ff9831;
  transition: all ease 0.2s;
}
.elem img {
  display: none;
}
#proj {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
}
#proj h2 {
  position: relative;
  z-index: 10;
  font-family: sun-mediu;
  font-weight: bolder;
  font-size: 3vw;
}
#proj div {
  text-align: right;
  position: relative;
  z-index: 10;
}
#proj div h4 {
  font-weight: 300;
}
#proj div p {
  color: rgb(173, 167, 167);
}
.elem:hover #proj div p {
  color: #b36b22;
}
#mob-elem {
  display: none;
}
#fixed-image {
  height: 30vw;
  width: 25vw;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: fixed;
  left: 50%;
  top: 18%;
  z-index: 50;
  display: none;
}
#page4 {
  min-height: 150vh;
  max-width: 100vw;
  overflow: hidden;
  background-color: #efeae3;
  padding: 6vw 0;
  z-index: 9999;
}
#but {
  padding: 3vw 2vw;
}
#black-box {
  height: 110vh;
  margin: 0vw 2vw;
  background-color: black;
  border-radius: 21px;
  display: flex;
  align-items: center;
}
#black-box img {
  width: 60%;
  height: 100%;
  background-size: cover;
  border-radius: 21px;
}
#tab-sec h2 {
  font-family: sun-mediu;
  font-size: 4.5vw;
  font-weight: bolder;
  position: relative;
  cursor: pointer;
  color: #504a45;
}
#tabs {
  position: relative;
  border-left: 2px solid #504a45;
  padding-left: 2vw;
}
#tabs h2 a {
  position: relative;
  text-decoration: none;
}
#Design {
  right: 2vw;
}
#design {
  color: #efeae3;
}
#black-box #tab-sec {
  color: #efeae3;
  display: flex;
  flex-direction: column;
  padding: 0 9vw;
  gap: 14px;
}
/* #desc{
    padding: 1vw 0;
    font-size: 1.1vw;
    width: 94%;
} */
#sec2 {
  display: flex;
  gap: 0.5vw;
  padding: 8vw 6vw 0;
  align-items: center;
}
#page4Swipe {
  height: 100vh;
  width: 100%;
  background-color: #efeae3;
}

.swiper {
  width: 100%;
  min-height: 35vh;
  padding: 5vw 6vw;
  padding-right: 6vw;
  cursor: grab;
  background-color: #efeae3;
}

.swiper-slide {
  text-align: center;
  padding-left: 2vw;
  background: #efeae3;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 25px;
  border-left: 1px solid #a39e9783;
}

.swiper-slide img {
  display: inline-block;
  position: relative;
  width: 51%;
  object-fit: cover;
}

.swiper-slide p {
  width: 79%;
  color: #2a2929f4;
  font-size: 1.08vw;
}

.swiper-slide {
  width: 20%;
}
#page5 {
  min-height: 90vh;
  max-width: 100vw;
}

#footer {
  position: fixed;
  height: 108vh;
  width: 100%;
  background-color: black;
  color: #efeae3;
  bottom: 0%;
  z-index: 0;
}
#footerupper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 6.2vw 5.7vw;
  padding-bottom: 4vw;
}

#footerupper a{
  color: #fff;
  text-decoration: none;
}

#footer h2 {
  font-family: sun-mediu;
  font-size: 2.1vw;
  font-weight: 700;
}
#footer p {
  font-size: 1.3vw;
}
#email {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  width: 26%;
}
#email h6 {
  font-size: 1.2vw;
  font-weight: 200;
  padding-bottom: 0.5vw;
  border-bottom: 1px solid #d3cdc1df;
  color: #d3cdc1df;
}
#footerlower {
  position: relative;
  padding: 0 1.5vw;
}
/* #footer h1{
    font-family: sun-mediu;
    font-weight: bolder;
    font-size: 23.5vw;
} */
#footerlower div {
  padding: 1vw 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footerlower div h5  {
  font-size: 1.1vw;
  font-weight: 200;
  cursor: pointer;
}

#footerlower div h5 a {
  text-decoration: none;
  color: #fff;
}

#footerlower img {
  margin-top: 5vw;
  border-bottom: 1px solid #504a45;
  padding-bottom: 2vw;
  width: 100%;
}
#footer #shape1 {
  position: absolute;
  background-color: #fe330a;
  filter: blur(50px);
  top: 30%;
  left: -20%;
  width: 90%;
  height: 90%;
  animation-name: shape1;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
#footer #shape2 {
  position: absolute;
  background-color: #fe330a;
  filter: blur(50px);
  right: -27%;
  top: 35%;
  width: 70%;
  height: 90%;
  animation-name: shape2;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes shape1 {
  from {
    transform: rotate(-10deg);
  }
  to {
    transform: rotate(-20deg);
  }
}
@keyframes shape2 {
  from {
    transform: rotate(30deg);
  }
  to {
    transform: rotate(45deg);
  }
}

@media (max-width: 600px) {
  #page1 {
    min-height: 100vh;
    max-width: 100vw;
    overflow: hidden;
    height: 100%;
    padding: 2vw 2vw;
    background-color: #efeae3;
  }
  #page1 nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5vw 2vw;
  }

  #page1 img{
    width:90px;
  }

  #buttons {
    display: none;
  }
  #menu {
    display: block;
    margin-right: 2vw;
  }
  #menu h4 {
    border: 1px solid #ab9e9a74;
    border-radius: 50px;
    color: rgba(40, 38, 38, 0.984);
    font-weight: 200;
    padding: 3vw;
    padding-left: 8vw;
  }
  #center {
    display: flex;
    width: 100%;
    height: 42vh;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column-reverse;
    border-bottom: 1px solid #bfbbb6;
    padding-bottom: 5vh;
  }
  #left h3 {
    font-family: sun-mediu;
    width: 72%;
    font-size: 5vw;
    font-weight: 800;
  }
  #right {
    padding-right: 4vw;
    padding-top: 8vw;
  }
  #right h1 {
    font-family: sun-mediu;
    text-align: end;
    line-height: 15vw;
    font-size: 16vw;
  }
  #hero-shape {
    width: 59vw;
    height: 66vw;
    position: absolute;
    right: 0;
    top: 51vh;
  }
  #page1 video {
    margin-top: 4vh;
    width: 92%;
    object-fit: cover;
    object-position: center;
    height: 60vh;
    margin-left: 4%;
    border-radius: 12px;
    position: relative;
  }
  #gola {
    height: 4vw;
    width: 4vw;
    border-radius: 50%;
    background-color: #fe330a;
    display: inline-block;
    margin: 1vw 2vw;
  }
  #page2bottom {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 6vh;
    padding-left: 6vw;
  }
  #part1 {
    width: 96%;
    padding-top: 6vh;
  }
  #part2 {
    display: flex;
    flex-direction: column;
    width: 78%;
    padding: 0;
    z-index: 9;
    position: relative;
  }
  #page2,
  #page3,
  #page4,
  #page5 {
    max-width: 100vw;
    overflow: hidden;
    height: 100%;
  }
  #page2 {
    height: 79vh;
  }
  #page2bottom h1 {
    font-size: 6.5vw;
    z-index: 9;
    position: relative;
    font-family: sun-mediu;
    font-weight: 900;
    letter-spacing: normal;
    line-height: 3vh;
  }
  #part2 img {
    width: 100%;
    height: 50%;
    border-radius: 15px;
    margin-bottom: 3vh;
  }
  #part2 p {
    font-size: 4vw;
  }
  #circle {
    position: absolute;
    width: 58vw;
    height: 58vw;
    top: 27%;
    left: 44%;
    border-radius: 50%;
    background-color: #ff9831;
    filter: blur(10px);
  }
  #loader {
    height: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
  }
  #loader h1 {
    font-size: 5vh;
  }
  #footer {
    position: fixed;
    height: 100%;
    max-width: 100vw;
    background-color: black;
    color: #efeae3;
    bottom: 0%;
    z-index: -1;
  }
  #footer #shape2 {
    display: none;
  }
  #fixed-image {
    display: none;
  }
  .elem {
    display: none;
  }
  #mob-elem {
    background-color: #efeae3;
    display: flex;
    flex-direction: column;
    padding: 4vw;
    gap: 1vh;
  }
  #mob-elem img {
    width: 100%;
    height: 50vh;
    object-position: center;
    object-fit: cover;
    border-radius: 16px;
  }
  #mob-elem h2 {
    font-family: sun-mediu;
    font-weight: 700;
    font-size: 9vw;
  }
  #mob-elem h4 {
    font-weight: 400;
    font-size: 6vw;
  }
  #mob-elem p {
    font-weight: 200;
    color: rgb(173, 167, 167);
    font-size: 4vw;
  }
  #page3 {
    min-height: 100vh;
  }
  #black-box {
    height: 80vh;
    margin: 2vw 6vw;
    background-color: black;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #black-box img {
    width: 100%;
    height: 53%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
  }
  #tab-sec h2 {
    font-family: sun-mediu;
    font-size: 7vw;
    font-weight: bolder;
  }
  #tabs {
    border-left: 3px solid #504a45;
    padding-left: 3vw;
  }
  #tabs h2 a {
    text-decoration: none;
  }
  #black-box #tab-sec {
    color: #efeae3;
    display: flex;
    flex-direction: column;
    padding: 4vh 9vw;
    gap: 3vh;
  }
  #desc {
    font-size: 3.3vw;
  }
  #sec2 {
    display: flex;
    gap: 0.5vw;
    padding: 8vw 6vw 0;
    align-items: center;
    background-color: #efeae3;
  }
  .swiper {
    min-height: 28vh;
    padding: 7vh 6vw;
  }

  .swiper-slide img {
    display: inline-block;
    position: relative;
    object-fit: cover;
    width: 100%;
  }

  .swiper-slide p {
    width: 100%;
    color: #2a2929f4;
    font-size: 2vh;
  }

  .swiper-slide {
    width: 48%;
    padding-left: 8vw;
    padding-top: 2vh;
  }
  #page5 {
    min-height: 116vh;
  }
  #footer {
    position: fixed;
    height: 110vh;
    width: 100%;
    background-color: black;
    color: #efeae3;
    bottom: 0%;
    z-index: 0;
  }
  
  #footerupper {
    flex-direction: column;
    top: 35%;
    align-items: flex-start;
  }
  #footer h2 {
    font-size: 5vh;
  }
  #footer p {
    font-size: 2.5vh;
  }
  #email {
    display: flex;
    flex-direction: column;
    padding-top: 2vh;
    gap: 3vh;
    width: 90%;
  }
  #email h6 {
    font-size: 2vh;
    font-weight: 200;
    padding-bottom: 1vh;
    border-bottom: 1px solid #504a45;
    color: #504a45;
  }
  #footerlower {
    top: 38%;
  }
  #footerlower img {
    padding-bottom: 3vh;
  }
  #footerlower div {
    padding: 3vw 2vw;
    display: flex;
    flex-wrap: wrap;
    gap: 1vh;
    align-items: center;
    justify-content: space-between;
  }
  #footerlower div h5 {
    font-size: 2vh;
  }
  #footer #shape1 {
    top: -5%;
    left: -2%;
    width: 100%;
    height: 81%;
    filter: blur(30px);
  }
  #footer #shape2 {
    display: none;
  }
  @keyframes shape1 {
    from {
      transform: rotate(-70deg);
    }
    to {
      transform: rotate(-80deg);
    }
  }
}
@media only screen and (min-width: 800px) and (max-width: 1100px) {
  #page5 {
    min-height: 86vh;
  }
  #footerupper {
    top: 18%;
  }
  #footer h2 {
    font-size: 3vw;
  }
  #email {
    width: 32%;
  }
  #email h6 {
    font-size: 1.7vw;
    padding-bottom: 0.7vw;
  }
  #footer p {
    font-size: 2vw;
  }
  #footerlower {
    top: 25%;
  }
  #footerlower div h5 {
    font-size: 1.7vw;
  }
  .swiper-slide img {
    display: inline-block;
    position: relative;
    object-fit: cover;
    width: 100%;
  }

  .swiper-slide p {
    width: 100%;
    color: #2a2929f4;
    font-size: 2vh;
  }

  .swiper-slide {
    width: 21%;
    padding-top: 2vh;
    margin-top: 3vh;
    margin-right: 35px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 800px) {
  #page5 {
    min-height: 86vh;
  }
  #footerupper {
    top: 26%;
  }
  #footer h2 {
    font-size: 4vw;
  }
  #email {
    width: 38%;
  }
  #email h6 {
    font-size: 2.1vw;
  }
  #footer p {
    font-size: 2.4vw;
  }
  #footerlower {
    top: 35%;
  }
  #footerlower div {
    padding: 2vw 0;
  }
  #footerlower div h5 {
    font-size: 2.2vw;
  }
  .swiper-slide img {
    display: inline-block;
    position: relative;
    object-fit: cover;
    width: 100%;
  }

  .swiper-slide p {
    width: 100%;
    color: #2a2929f4;
    font-size: 2vh;
  }

  .swiper-slide {
    width: 25%;
    padding-top: 2vh;
    margin-top: 3vh;
    margin-right: 35px;
  }
}
