@font-face {
  font-family: mid;
  src: url("neue-haas-grotesk/NeueHaasDisplayMediu.ttf");
}

@font-face {
  font-family: rom;
  font-weight: 100;
  src: url("neue-haas-grotesk/NeueHaasDisplayRoman.ttf");
}

@font-face {
  font-family: lig;
  font-weight: 100;
  src: url("neue-haas-grotesk/NeueHaasDisplayLight.ttf");
}

@font-face {
  font-family: xthin;
  font-weight: 100;
  src: url("neue-haas-grotesk/NeueHaasDisplayXThin.ttf");
}

@font-face {
  font-family: xxthin;
  font-weight: 100;
  src: url("neue-haas-grotesk/NeueHaasDisplayXXThin.ttf");
}

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

::selection {
  background-color: #fe330ae1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: mid;
  text-decoration: none;
  color: black;
}

body {
  height: 100%;
  width: 100%;
  position: relative;
}

.loader {
  background-color: #000000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000000000000000000000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.55s;
}

.loader h1 {
  font-size: 6.8vw;
  color: transparent;
  background: linear-gradient(to right, #ff9831, #fe330a);
  background-clip: text;
  position: absolute;
  animation-name: loader;
  animation-delay: 0.5s;
  animation-duration: 1s;
  opacity: 0;
  letter-spacing: -0.2vh;
  font-weight: 100;
}

.loader h1:nth-child(2) {
  animation-name: loader;
  animation-delay: 1.4s;
}

.loader h1:nth-child(3) {
  animation-name: loader;
  animation-delay: 2.4s;
}

@keyframes loader {
  0% {
    opacity: 0;
    transition: all ease;
  }

  50% {
    opacity: 1;
    transition: all ease;
  }

  100% {
    opacity: 0;
    transition: all ease;
  }
}

header {
  position: relative;
  width: 100%;
  height: 14vh;
  padding: 5vh 5vh 0vh 4.3vh;
  z-index: 99999;
  background-color: #efeae3;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-ops {
  display: flex;
  justify-content: space-between;
  gap: 1.6vh;
}

.nav-ops h4 {
  border: 1px solid #00000086;
  padding: 1.3vh 2.2vh;
  border-radius: 10vh;
  font-size: 1.9vh;
  font-weight: 100;
  letter-spacing: -0.6px;
  position: relative;
  overflow: hidden;
  color: #efeae3;
  cursor: pointer;
}

.nav-ops h4::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  top: 100%;
  left: 0;
  border-radius: 100%;
  transition: all ease 0.2s;
  z-index: -1;
}

.nav-ops h4:hover::after {
  top: 0;
  border-radius: 50vh;
}

.nav-ops:hover h4:hover {
  color: #efeae3;
}

.nav-ops h4:hover a {
  color: #efeae3;
}

.main {
  position: relative;
  z-index: 99999;
  background-color: #efeae3;
}

.page1 {
  width: 100%;
  height: 84vh;
  padding: 3.6vh 4vh;
}

.page1-cont {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.274);
  display: flex;
  justify-content: space-between;
  padding: 9vh 2vh;
}

.page1-cont .pg1-left {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-right: 19vw;
}

.page1-cont .pg1-left h3 {
  font-size: 2vw;
}

.page1-cont .pg1-right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: right;
}

.page1-cont .pg1-right h1 {
  text-align: right;
  font-size: 10vw;
  line-height: 0.82;
}

.page2 {
  width: 100%;
  height: 100%;
  padding: 4vh 4vh 16vh 4vh;
  position: relative;
}

.pg2-circle {
  width: 55vw;
  height: 100vw;
  position: absolute;
  right: 0;
  top: -23vh;
  overflow: hidden;
}

.pg2-circle .circle1 {
  width: 100%;
  height: 37vw;
  background-color: #fe330a;
  position: absolute;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  filter: blur(2vh);
  animation: pg2-circle1 3s linear infinite alternate;
  top: 8vh;
  overflow: hidden;
}

@keyframes pg2-circle1 {
  from {
    transform: translate(10%);
  }
}

.page2 .circle2 {
  width: 30vw;
  height: 30vw;
  position: absolute;
  border-radius: 50%;
  right: 0;
  filter: blur(2vh);
  top: 10vh;
  right: 40vh;
  background: linear-gradient(#fe330a, #fe4416);
  animation: pg2-circle2 3s linear infinite alternate;
}

@keyframes pg2-circle2 {
  from {
    transform: translate(-5%, 20%);
  }

  to {
    transform: translate(33%, -10%);
  }
}

.page2 video {
  position: relative;
  border-radius: 3vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.marquee {
  width: 100%;
  height: 20vh;
}

.marquee-cont {
  white-space: nowrap;
  overflow: hidden;
}

.marquee-cont .cont {
  animation: marquee 12s linear infinite;
  white-space: nowrap;
  display: inline-block;
}

.marquee-cont .cont h1 {
  font-size: 18vh;
  display: inline-block;
}

.marquee-cont .cont img {
  width: 10vh;
  height: 10vh;
  margin: 0 4vh;
  display: inline-block;
  margin-bottom: 1.2vh;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

.page3 {
  width: 100%;
  height: 100vh;
  padding: 8vh 12vh;
  position: relative;
}

.page3-cont {
  width: 100%;
  height: 100%;
  display: flex;
}

.pg3-left {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 22.6vh;
  padding-right: 10vh;
}

.pg3-left h1 {
  font-size: 4.2vw;
  line-height: 0.98;
  z-index: 3;
}

.pg3-right {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 2vh;
}

.pg3-right img {
  border-radius: 2vh;
  width: 19.6vw;
  height: 26vh;
}

.pg3-right h5 {
  margin-top: 5.8vh;
  font-size: 1.8vh;
  letter-spacing: -0.06vh;
  padding-left: 7vw;
  padding-right: 0.5vw;
  font-weight: 100;

}


.pg3-circle {
  position: absolute;
  width: 32vw;
  height: 32vw;
  top: 48%;
  left: 27%;
  border-radius: 50%;
  background-color: #ff9831;
  filter: blur(10px);
  z-index: 1;
}

.pg3-circle .circle1 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ff9831;
  filter: blur(1vh);
  z-index: 100;
  animation: pg3-circle1 3s ease-in infinite alternate;
}

.pg3-circle .circle2 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fe330a;
  filter: blur(5vh);
  z-index: 100;
  animation: pg3-circle2 3s ease-in infinite alternate;
}

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

  100% {
    transform: translate(5%, -6%) skew(-10deg);
  }
}

@keyframes pg3-circle2 {
  0% {
    transform: translate(-5%, 10%);
  }

  100% {
    transform: translate(5%, -6%);
  }
}

.page4 {
  width: 100%;
  height: 100%;
  padding: 1vh 0vh 0vh 0vh;
  position: relative;
  z-index: 10000000;
}

.page4-cont {
  width: 100%;
  height: 100%;
}

.p4-head {
  width: 100%;
  height: 16vh;
  padding: 0 4vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

.p4-head img {
  width: 1vh;
  height: 1vh;
  object-fit: contain;
  margin-right: 1vh;
}

.p4-head h5 {
  font-family: lig;
  font-size: 1.6vh;
}

.element-section {
  width: 100%;
  height: 56vw;
  position: relative;
}

.element {
  width: 100%;
  height: 17.3vh;
  position: relative;
  cursor: pointer;
}

.page-4-image {
  position: relative;
  width: 25vw;
  height: 29vw;
  position: fixed;
  z-index: 999999999;
  border-radius: 1vw;
  left: 50vw;
  bottom: 9.6vw;
  display: none;
  background-size: cover;
  background-position: center;
}

.element:hover.element img {
  opacity: 1;
}

.element-cont {
  position: relative;
  width: 100%;
  height: 17.3vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #00000031;
  padding: 0vh 4vh;
  cursor: pointer;
  overflow: hidden;
}

.element-cont .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ff9831;
  left: 0;
  top: -100%;
  transition: all ease 0.2s;
}

.element-cont:hover .overlay {
  top: 0;
}

.pg4-ele-left img {
  display: none;
}

.element .pg4-ele-left h1 {
  position: relative;
  font-size: 6.3vh;
}

.element .pg4-ele-right {
  position: relative;
}

.element .pg4-ele-right h6 {
  font-family: lig;
  text-align: right;
  font-size: 1.6vh;
}

.element .pg4-ele-right p {
  font-family: rom;
  text-align: right;
  color: #ada7a7;
}

.p4-bottom {
  width: 100%;
  height: 19vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0vh 5vh;
  margin-top: 4vh;
}

.p4-bottom a {
  border: 1px solid rgba(0, 0, 0, 0.384);
  border-radius: 10vh;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.p4-bottom a h1 {
  font-size: 1.8vh;
  padding: 1.4vh 2vh;
  z-index: 3;
  font-weight: 100;
}

.p4-bottom a h1::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  top: 100%;
  transition: all ease 0.2s;
  z-index: -1;
}

.p4-bottom a h1:hover::after {
  border-radius: 20vh;
  top: 0;
}

.p4-bottom a h1:hover {
  color: #efeae3;
}

/*  PAGE 5  */
.page5 {
  width: 100%;
  height: 136vh;
  padding: 12vh 4vh;
}

.page5-cont {
  width: 100%;
  height: 100%;
  background-color: #000000;
  border-radius: 2vh;
  display: flex;
}

.pg5-left {
  width: 46.5%;
  height: 100%;
  border-radius: 2vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 9vw;
}

.pg5-left .top {
  border-left: 2px solid #504a45;
  width: 48vh;
  position: relative;
}

.pg5-left .top h1 {
  color: #504a45;
  font-size: 9.4vh;
  margin-left: 3.8vh;
  cursor: pointer;
  letter-spacing: -1px;
  transition: all ease 0.3s;
  font-weight: 300;
  margin-left: 0.8vh;
  color: #efeae3;
}

.pg5-left .bottom {
  width: 54vh;
  height: 10vh;
  font-size: 1.8vh;
  line-height: 2vh;
  margin-top: 2vh;
}

.pg5-left .bottom p {
  color: #efeae3;
  font-family: lig;
  text-align: left;
  transition: all ease 0.3s;
}

.pg5-right {
  width: 55.5%;
  height: 100%;
  border-radius: 2vh;
  position: relative;
}

.pg5-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2vh;
}

.pg5-left .top .bar {
  position: absolute;
  width: 0.2vh;
  height: 11.4vh;
  top: 0;
  left: -0.2vh;
  background-color: #fe330a;
  transition: all ease-in-out 0.2s;
}

/* SWIPER */

.swiper {
  width: 100%;
  height: 100%;
  padding: 2vw 6vw;
  padding-bottom: 18vh;
}

.swiper-head {
  display: flex;
  align-items: center;
  margin-bottom: 12vh;
}

.swiper-head .swiper-head-circle {
  background-color: #fe330a;
  width: 1vh;
  height: 1vh;
  border-radius: 50%;
}

.swiper-head h1 {
  font-family: lig;
  font-size: 1.8vh;
  margin-left: 1vh;
  letter-spacing: 0.1vh;
}

.swiper-slide {
  cursor: pointer;
  padding: 0 2vw;
  padding-right: 8vw;
  border-left: 0.01vh solid rgba(0, 0, 0, 0.281);
  width: 25vw;
}

.swiper-slide p {
  font-family: lig;
  font-size: 2.35vh;
}

.swiper-slide img {
  height: 4.4vw;
  margin-bottom: 2vh;
}

/* FOOTER */

.trans-footer {
  width: 100%;
  height: 100vh;
}

footer {
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  padding: 4vh 3vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: fixed;
  bottom: 0;
}

footer * {
  color: #efeae3;
}

.footer-circle .foot-circle1 {
  position: absolute;
  background-color: #fe330a;
  filter: blur(5vh);
  top: -48%;
  left: -20%;
  width: 90%;
  height: 90%;
  animation: foot-circle1 3s linear infinite alternate;
}

@keyframes foot-circle1 {
  from {
    transform: rotate(-14deg);
  }

  to {
    transform: rotate(-20deg);
  }
}

.footer-circle .foot-circle2 {
  position: absolute;
  background-color: #fe330a;
  filter: blur(5vh);
  top: -40%;
  right: -30%;
  width: 90%;
  height: 90%;
  animation: foot-circle2 3s linear infinite alternate;
}

@keyframes foot-circle2 {
  from {
    transform: rotate(36deg);
  }

  to {
    transform: rotate(20deg);
  }
}

.foot-top {
  display: flex;
  justify-content: space-between;
  padding: 0vh 8.6vh 19.4vh 8.6vh;
  align-items: flex-end;
  position: relative;
}

.foot-top .top-left h1 {
  font-size: 4.4vh;
}

.foot-top .top-right {
  margin-right: vh;
}

.foot-top .top-right p {
  font-family: rom;
  font-size: 2.7vh;
}

.foot-top .top-right input::placeholder {
  color: rgba(255, 255, 255, 0.733);
}

.foot-top .top-right input {
  background-color: transparent;
  border: 0;
  border-bottom: 0.2vh solid #efeae3;
  padding-bottom: 1vh;
  font-size: 2.5vh;
  color: #efeae3;
  outline: none;
  margin-top: 4.2vh;
  width: 49vh;
  font-family: rom;
}

.foot-mid {
  width: 100%;
  height: 38vh;
  display: flex;
  justify-content: center;
  margin-bottom: 4vh;
  position: relative;
}

.foot-mid img {
  width: 100%;
  object-fit: contain;
}

.foot-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #efeae375;
  margin-bottom: 1vh;
}

.foot-bottom h1 {
  font-family: rom;
  font-size: 2.1vh;
  padding-top: 2.4vh;
  letter-spacing: 0.1vh;
}

.menu {
  display: none;
}

.page1-cont2 {
  display: none;
}

.full-menu {
  display: none;
}

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

  header {
    position: relative;
    width: 100%;
    height: 12vh;
    padding: 2.2vh 2.4vh 0vh 2vh;
    z-index: 9999999;
    background-color: #efeae3;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav img {
    transition: all ease-in-out 0.2s;
    z-index: 99999;
  }

  .nav-ops {
    display: none;
  }

  .menu {
    display: block;
    position: relative;
    border: 1px solid #00000057;
    padding: 1.3vh 1.5vh;
    border-radius: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .menu svg {
    width: 7vw;
    margin-right: 0.8vh;
  }

  .menu h4 {
    font-size: 2.2vh;
  }

  .full-menu {
    display: block;
    width: 100%;
    height: 100vh;
    background-color: #0000009d;
    position: fixed;
    z-index: 9999999;
    top: -100vh;
    transition: all ease 0.5s;
  }

  .full-menu-cont {
    width: 100%;
    height: 46vh;
    background-color: #efeae3;
    border-bottom-right-radius: 3vh;
    border-bottom-left-radius: 3vh;
    padding: 3vh;
    padding-top: 17vh;
  }

  .full-menu-cont h1 {
    text-align: right;
    font-size: 14vw;
    line-height: 8vh;
    cursor: pointer;
  }

  /* PAGE 1 */

  .page1 {
    width: 100%;
    height: 53vh;
    padding: 0;
    position: relative;
    padding-right: 6vw;
    padding-left: 3vw;
  }

  .page1-cont {
    display: none;
  }

  .page1-cont2 {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.274);
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .page1-cont2 .pg1-top {
    width: 100%;
    height: 30vh;
    display: flex;
    align-items: flex-end;
    justify-content: right;
    z-index: 999999;
    margin-bottom: 4vh;
  }

  .page1-cont2 .pg1-top h1 {
    text-align: right;
    font-size: 18vw;
    line-height: 0.82;
  }

  .page1-cont2 .pg1-bottom {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
    padding-right: 22.5vw;
    margin-bottom: 4vh;
    z-index: 999999;
    margin-top: 2vh;
  }

  .page1-cont2 .pg1-bottom h3 {
    font-size: 5vw;
  }

  /* PAGE 2 */

  .page2 {
    width: 100%;
    height: 63vh;
    padding: 3.4vh 3.4vh 6vh 3.4vh;
    position: relative;
  }

  .pg2-circle {
    width: 100%;
    height: 100vw;
    position: absolute;
    right: 0;
    top: -23vh;
  }

  .pg2-circle .circle1 {
    width: 55vw;
    height: 77vw;
    background-color: #fe330a;
    position: absolute;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(2vh);
    animation: pg2-circle1 3s linear infinite alternate;
    top: 8vh;
    right: 0;
    overflow: hidden;
  }

  @keyframes pg2-circle1 {
    from {
      transform: translate(10%);
    }
  }

  .page2 .circle2 {
    width: 50vw;
    height: 50vw;
    position: absolute;
    right: 0;
    filter: blur(2vh);
    top: 10vh;
    right: 0vh;
    background: linear-gradient(#fe330a, #fe4416);
    animation: pg2-circle2 3s linear infinite alternate;
    overflow: hidden;
  }

  @keyframes pg2-circle2 {
    from {
      transform: translate(-5%, 20%);
    }

    to {
      transform: translate(33%, -10%);
    }
  }

  .page2 video {
    position: relative;
    border-radius: 1.4vh;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  /* MARQUEE */
  .marquee {
    width: 100%;
    height: 10vh;
  }

  .marquee-cont {
    white-space: nowrap;
    overflow: hidden;
  }

  .marquee-cont .cont {
    animation: marquee 11s linear infinite;
    white-space: nowrap;
    display: inline-block;
    justify-content: center;
    align-items: center;
  }

  .marquee-cont .cont h1 {
    font-size: 6vh;
    display: inline-block;
  }

  .marquee-cont .cont img {
    width: 2.6vh;
    height: 2.6vh;
    margin: 0 1vh;
    display: inline-block;
    margin-bottom: 1vh;
  }

  /* PAGE 3 */
  .page3 {
    width: 100%;
    height: auto;
    padding: 4vh 0vh 0vh 4vh;
    position: relative;
  }

  .page3-cont {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0;
  }

  .pg3-left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding-bottom: 4.6vh;
    padding-right: 7.4vw;
  }

  .pg3-left h1 {
    font-size: 6.5vw;
    line-height: 3vh;
    z-index: 3;
  }

  .pg3-right {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 2vh;
    flex-direction: column;
    z-index: 3;
  }

  .pg3-right img {
    border-radius: 2vh;
    width: 69.6vw;
    height: 26vh;
  }

  .pg3-right h5 {
    width: 69vw;
    margin-top: 0vh;
    font-size: 2.3vh;
    letter-spacing: -0.06vh;
    line-height: 2.7vh;
    padding-left: 0;
    font-family: lig;
    font-weight: 200;
    margin-top: 3vh;
  }

  .pg3-circle {
    position: absolute;
    width: 62vw;
    height: 62vw;
    top: 0;
    left: 38%;
    border-radius: 50%;
    background-color: #ff9831;
    filter: blur(10px);
    z-index: 1;
    overflow: hidden;
  }

  .pg3-circle .circle1 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ff7231;
    filter: blur(1vh);
    z-index: 100;
    animation: pg3-circle1 3s ease-in infinite alternate;
  }

  .pg3-circle .circle2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fe330a;
    filter: blur(5vh);
    z-index: 100;
    animation: pg3-circle2 3s ease-in infinite alternate;
  }

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

    100% {
      transform: translate(5%, -6%) skew(-10deg);
    }
  }

  @keyframes pg3-circle2 {
    0% {
      transform: translate(-5%, 10%);
    }

    100% {
      transform: translate(5%, -6%);
    }
  }

  /* PAGE 4 */
  .page4 {
    width: 100%;
    height: 146vh;
    height: 100%;
    padding: 1vh 0vh 0vh 0vh;
    position: relative;
    z-index: 10000000;
  }

  .page4-cont {
    width: 100%;
    height: 100%;
  }

  .p4-head {
    width: 100%;
    height: 16vh;
    padding: 0 4vh;
    display: flex;
    align-items: center;
    z-index: 1;
  }

  .p4-head img {
    width: 1vh;
    height: 1vh;
    object-fit: contain;
    margin-right: 1vh;
  }

  .p4-head h5 {
    font-family: lig;
    font-size: 1.6vh;
  }

  .element-section {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .element {
    width: 100%;
    height: auto;
    position: relative;
    cursor: pointer;
    padding-bottom: 4vh;
  }

  .page-4-image {
    position: relative;
    width: 25vw;
    height: 29vw;
    position: fixed;
    z-index: 999999999;
    border-radius: 1vw;
    left: 50vw;
    bottom: 9.6vw;
    display: none;
    background-size: cover;
    background-position: center;
  }

  .element-cont {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 0px solid #00000031;
    padding: 0vh 2vh;
    cursor: pointer;
    overflow: hidden;
  }

  .element-cont .overlay {
    display: none;
  }

  .element .pg4-ele-left img {
    width: 100%;
    height: 49vh;
    object-fit: cover;
    object-position: center;
    border-radius: 2vh;
    display: block;
  }

  .element .pg4-ele-left h1 {
    position: relative;
    font-size: 4.9vh;
    margin-top: 1.2vh;
  }

  .element .pg4-ele-right {
    position: relative;
    margin-top: 1vh;
  }

  .element .pg4-ele-right h6 {
    font-family: lig;
    text-align: left;
    font-size: 3.3vh;
    letter-spacing: 0.2vh;
  }

  .element .pg4-ele-right p {
    font-family: rom;
    font-size: 2.4vh;
    text-align: left;
    color: #ada7a7;
  }

  .p4-bottom {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0vh 2vh;
    margin-top: 0vh;
  }

  .p4-bottom a {
    border: 1px solid rgba(0, 0, 0, 0.384);
    border-radius: 10vh;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .p4-bottom a h1 {
    font-size: 2.2vh;
    padding: 1.8vh 2.4vh;
    z-index: 3;
  }

  .p4-bottom a h1::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    top: 100%;
    transition: all ease 0.2s;
    z-index: -1;
  }

  .p4-bottom a h1:hover::after {
    border-radius: 20vh;
    top: 0;
  }

  .p4-bottom a h1:hover {
    color: #efeae3;
  }

  /*  PAGE 5  */
  .page5 {
    width: 100%;
    height: 100%;
    padding: 3vh 3vh;
  }

  .page5-cont {
    width: 100%;
    height: 100%;
    background-color: #000000;
    border-radius: 2vh;
    display: flex;
    flex-direction: column;
  }

  .pg5-left {
    width: 100%;
    height: 40vh;
    border-radius: 2vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 9vw;
    padding-top: 3vh;
  }

  .pg5-left .top {
    border-left: 2px solid #504a45;
    width: 100%;
    position: relative;
  }

  .pg5-left .top h1 {
    color: #504a45;
    font-size: 4.4vh;
    cursor: pointer;
    letter-spacing: -1px;
    transition: all ease 0.3s;
  }

  .pg5-left .top .h1 {
    margin-left: 0.8vh;
    color: #efeae3;
  }

  .pg5-left .bottom {
    width: 70vw;
    height: 14vh;
    font-size: 1.8vh;
    line-height: 2vh;
    margin-top: 2vh;
  }

  .pg5-left .bottom p {
    color: #efeae3;
    font-family: lig;
    text-align: left;
    transition: all ease 0.3s;
    font-size: 1.9vh;
  }

  .pg5-right {
    width: 100%;
    height: 44vh;
    border-radius: 2vh;
    position: relative;
  }

  .pg5-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2vh;
  }

  .pg5-left .top .bar {
    position: absolute;
    width: 0.2vh;
    height: 5.26vh;
    top: 0;
    left: -0.2vh;
    background-color: #fe330a;
    transition: all ease-in-out 0.2s;
  }

  /* SWIPER */
  .swiper {
    width: 100%;
    height: 100%;
    padding: 2vw 6vw;
    padding-bottom: 14vh;
  }

  .swiper-head {
    display: flex;
    align-items: center;
    margin-bottom: 6vh;
  }

  .swiper-head .swiper-head-circle {
    background-color: #fe330a;
    width: 1vh;
    height: 1vh;
    border-radius: 50%;
  }

  .swiper-head h1 {
    font-family: lig;
    font-size: 1.8vh;
    margin-left: 1vh;
    letter-spacing: 0.1vh;
  }

  .swiper-slide {
    cursor: pointer;
    padding: 0 8vw;
    padding-right: 12vw;
    border-left: 0.01vh solid rgba(0, 0, 0, 0.281);
    width: 68vw;
  }

  .swiper-slide p {
    font-family: lig;
    font-size: 2.1vh;
    line-height: 2.3vh;
  }

  .swiper-slide img {
    height: 20vw;
    margin-bottom: 2vh;
  }

  /* FOOTER */
  .trans-footer {
    width: 100%;
    height: 82vh;
  }

  footer {
    width: 100%;
    height: 70vh;
    background-color: rgb(0, 0, 0);
    padding: 4vh 1vh 4vh 1vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: fixed;
    bottom: 0;
  }

  footer * {
    color: #efeae3;
  }

  .footer-circle .foot-circle1 {
    position: absolute;
    background-color: #fe330a;
    filter: blur(5vh);
    top: -48%;
    left: -20%;
    width: 90%;
    height: 90%;
    animation: foot-circle1 3s linear infinite alternate;
    overflow: hidden;
  }

  @keyframes foot-circle1 {
    from {
      transform: rotate(-14deg);
    }

    to {
      transform: rotate(-20deg);
    }
  }

  .footer-circle .foot-circle2 {
    position: absolute;
    background-color: #fe330a;
    filter: blur(5vh);
    top: -40%;
    right: -30%;
    width: 90%;
    height: 90%;
    animation: foot-circle2 3s linear infinite alternate;
    overflow: hidden;
  }

  @keyframes foot-circle2 {
    from {
      transform: rotate(36deg);
    }

    to {
      transform: rotate(20deg);
    }
  }

  .foot-top {
    display: flex;
    flex-direction: column;
    padding: 0vh 2.6vh 8vh 2.6vh;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }

  .foot-top .top-left h1 {
    font-size: 4.8vh;
  }

  .foot-top .top-left {
    margin-bottom: 2.6vh;
  }

  .foot-top .top-right p {
    font-family: rom;
    font-size: 2.5vh;
    line-height: 2.8vh;
  }

  .foot-top .top-right input::placeholder {
    color: rgba(255, 255, 255, 0.411);
  }

  .foot-top .top-right input {
    background-color: transparent;
    border: 0;
    border-bottom: 0.08vh solid #efeae37e;
    padding-bottom: 1vh;
    font-size: 2.2vh;
    color: #efeae3;
    outline: none;
    margin-top: 3.4vh;
    width: 39vh;
    font-family: rom;
  }

  .foot-mid {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 3vh;
    position: relative;
  }

  .foot-mid img {
    width: 100%;
    object-fit: contain;
  }

  .foot-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #efeae375;
    margin-bottom: 0vh;
    flex-wrap: wrap;
  }

  .foot-bottom h1 {
    font-family: rom;
    font-size: 2vh;
    padding-top: 2.4vh;
    letter-spacing: 0.1vh;
    line-height: 1vh;
  }
}
