@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500;600;700&family=Signika+Negative:wght@300;400&display=swap");

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}



@font-face {
  font-family: Averta-Regular;
  src: url(../font/AvertaCY-Regular.ttf);
}

@font-face {
  font-family: Averta-Light;
  src: url(../font/AvertaCY-Light.ttf);
}

@font-face {
  font-family: Gallery-Modern;
  src: url(../font/gallery-modern-regular.woff2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Averta-Regular;
}

*::selection {
  color: #ffff;
  background-color: #000;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* --- Utility --- */

.flex {
  display: flex;
  align-items: center;
}


a {
  text-decoration: none;
}

.selection::selection {
  color: #ffffff;
  background-color: #000;
}

#cursor {
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 100px;
  position: absolute;
  z-index: 9999999;
  transition: 0.2s;
  display: none;
}

.mf-cursor {
  
  @media (hover: hover) {
    display: block;
  }

  @media (hover: none) {
    display: none;
  }
 
}
/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}



.boundary {
  overflow: hidden;
}

.anim-top {
  transform: translateY(100%);
}

.anim-bottom {
  transform: translateY(-150%);
}

.anim-left {
  transform: translateX(150%);
}

.anim-right {
  transform: translateX(-150%);
}

.anim-scale {
  scale: 0;
}

/* --- --- */

.scroll-container {
  width: 100vw;
  height: 70px;
  margin: 4vw 0;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: absolute;
  transform: rotate(5deg);
}

.rotate5{
  transform: rotate(-5deg);
}

.scroll-content {
  display: flex;
  position: absolute;
  white-space: nowrap;
  will-change: transform;
}

.brand {
  display: inline-block;
  padding: 20px;
  color: #fff;
  margin: 0 10px;
  border-radius: 5px;
  width: 25vw !important;
}
.brand img{
  width: 100px;
  height: 100%;
}

.cta-btn{
  width: 100px;
  height: 100px;
  position: fixed;
  bottom: 05%;
  right: 3%;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100px;
}
.cta-border{
  width: 130px;
  height: 130px;
  position: absolute;
  background: url('https://cdn.cuberto.com/cb/intouch/2.svg');
  background-repeat: no-repeat;
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-btn img{
  width: 80%;
  position: absolute;
}

@media (max-width: 575px) {
  .cta-btn{
    display: none;
  }
}


/* Main CSS */

.main {
  width: 100vw;
  background: #ffffff;
  position: relative;
}

#home {
  width: 100%;
  min-height: 100vh;
}

.nav {
  width: 100%;
  display: flex;
  padding: 30px 50px;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  z-index: 99999;
}

.logo {
  font-size: 0.9vw;
  cursor: pointer;
}

.logo span {
  font-family: "Gallery-Modern";
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right a {
  text-decoration: none;
  font-weight: 400;
  color: #000;
  letter-spacing: -1px;
  font-size: 1.2vw;
}

.nav-right i {
  font-size: 25px;
}

.menu {
  width: 40vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: -50%;
  z-index: 9999;
  color: #000;
  background-color: #fff;
  transition: 0.5s;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.256);
}

.menu.active {
  right: 0%;
}

.menu i {
  position: absolute;
  top: 5%;
  right: 8%;
  font-size: 2vw;
}

.menu-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.menu p {
  font-size: 1.5vw;
  color: #c3c3c3;
}

.menu h2 {
  padding: 5px 0;
  font-size: 3vw;
  cursor: pointer;
  color: #000;
}

.menu-link h4 {
  padding: 5px 0;
  cursor: pointer;
  align-items: center;
  transition: all ease 0.3s;
  color: #000;
}

.menu-l .menu-link {
  height: 2vw;
  overflow: hidden;
}

.menu-link:hover h4 {
  transform: translateY(-100%);
  font-family: "Gallery-Modern";
}

.menu-r .menu-link {
  height: 4vw;
  width: 18vw;
  overflow: hidden;
}

.menu-link h2 {
  transition: all ease 0.3s;
}

.menu-link:hover h2 {
  transform: translateY(-100%);
  font-family: "Gallery-Modern";
}

.home-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4vw 10.625vw;
}

.home-main h1 {
  font-size: 8.5vw;
  font-family: Averta-Light;
  font-weight: 300;
  line-height: 1;
}

.home-main h1:last-child{
  font-size: 7vw;
}

.home-main h1 i {
  color: transparent;
  -webkit-text-stroke: 3px;
  -webkit-text-stroke-color: #000;
}

.home-main h1 span {
  font-family: Gallery-Modern;
}

.home-gif {
  width: 12vw;
  height: 7vw;
  margin-right: 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.proj-comp {
  display: inline-block;
  padding: 2vw;
  height: 10vw;
  margin-left: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 12px;
  font-size: 2vw;
  position: relative;
  background-color: rgb(238 238 238 / 50%);
  z-index: 1 !important;
}

.proj-comp h3 {
  font-size: 4vw;
  font-weight: 400;
}

.proj-comp p {
  display: flex;
}

#hero-shape {
  /* display: none; */
  position: absolute;
  width: 26vw;
  height: 16vw;
  right: 0;
  top: 62vh;
}

#hero-1 {
  height: 100%;
  width: 100%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  filter: blur(10px);
  position: absolute;
}

#hero-2 {
  background: linear-gradient(#fb953a, #fe3f0a);

  height: 30vw;
  width: 30vw;
  border-radius: 50%;
  position: absolute;
  animation-name: anime2;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  filter: blur(25px);
}

#hero-3 {
  background: linear-gradient(#fb953a, #fe3f0a);
  height: 30vw;
  position: absolute;
  width: 30vw;
  border-radius: 50%;
  filter: blur(25px);
  animation-name: anime1;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes anime1 {
  from {
    transform: translate(55%, -3%);
  }

  to {
    transform: translate(0%, 10%);
  }
}

@keyframes anime2 {
  from {
    transform: translate(5%, -5%);
  }

  to {
    transform: translate(-20%, 30%);
  }
}

.projects{
  width: 100%;
  padding: 4vw;
}

.bottom-hero {
  width: 100vw;
  height: max-content;
  position: relative;
}

.client-card {
  width: 0vw;
  height: 16vw;
  margin: 0 2vw;
  background-color: #fff;
  position: absolute;
  border-radius: 25px;
  background: url("https://www.shutterstock.com/image-photo/portrait-cheerful-young-manager-handshake-600nw-1312231271.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.client-card div {
  width: 100%;
  height: 100%;
  background-color: #00000078;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 2vw;
  line-height: 2.7vw;
  backdrop-filter: blur(2px);
}

.service-container {
  width: 11vw;
  height: 5vw;
  background-color: #000;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0%;
  left: 15%;
  border-radius: 25px;
  overflow: hidden;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.service-container h1{
    font-size: 1.3vw;
    line-height: 28px;
}

.showreel {
  width: 0vw;
  height: 98vh;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #000;
  -webkit-mask-image: url("../Subtract.png");
  mask-image: url(../Subtract.png);
  mask-size: 96vw;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  color: #fff;
  border-radius: 25px;
}

.showreel video {
  width: 100%;
}

.video-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  background-color: #00000061;
  border-radius: 25px;
}

.speciality {
  width: 75%;
  height: fit-content;
  position: absolute;
  top: 0%;
  left: 25%;
  padding: 1vw 3vw;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  z-index: 999;
}

.speciality h2 {
  font-weight: 300;
}

.speciality .arrow {
  font-size: 2vw;
  color: #fff;
}

.skill-set {
  max-width: 40%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.skill-set .skill {
  padding: 0.5vw 1vw;
  margin: 2px 0px;
  background-color: #fff;
  border-radius: 100px;
  color: #000;
  font-size: 0.8vw;
  font-family: 200;
  cursor: pointer;
  transition: 0.3s all;
}

.skill:hover {
  transform: scale(1.2);
  background-color: #f3f3f3;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.26);
}

.tagline {
  width: 70%;
  position: absolute;
  bottom: 05%;
  padding: 2vw 4vw;
  font-size: 2vw;
  font-weight: 400;
}

.mob-showreel {
  display: none;
}

.about-section {
  min-height: 100vh;
  margin: 4vw 0;
  display: flex;
  flex-direction: column;
  padding: 0vw 7vw;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 1%;
}

.about-img {
  width: 40vw;
  height: fit-content;
  border-radius: 25px;
}

.about-video {
  width: 100%;
  height: 40vh;
  margin-top: 1rem;
  object-fit: cover;
  border-radius: 25px;
}

.about {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.about-left {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.about-text {
  padding-bottom: 1vw;
  font-family: Averta-Light;
  font-weight: 700;
  border-bottom: 1px solid #000;
}

.about .number {
  display: flex;
  width: fit-content;
  margin: 1vw 0vw;
  gap: 4vw;
  align-items: baseline;
  font-size: 2vw;
}

.about div h3 p {
  font-size: small;
  font-weight: 600;
}

/* Service We Provide */
.service-wrapper {
  width: 50%;
}

.about-service-container {
  display: flex;
  font-size: 2vw;
  margin: 0 2vw 2vw 2vw;
  overflow: hidden;
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item {
  margin: 0 2vw;
  width: 50%;
}

/* .service-anim{
    transform: translateY(120%);
} */

.about-service-container p {
  font-size: 18px;
}

.about-btn {
  margin-top: 2vw;
  padding: 3vw 8vw;
  border: 1px solid #000;
  border-radius: 100px;
  background-color: transparent;
  font-size: 2vw;
  transition: 0.8s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.about-btn h1 {
  text-align: center;
  font-size: 2vw;
  height: 3vw;
  transition: all ease 0.3s;
}

.about-btn:hover {
  color: #ffffff;
}

.about-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 50% 50% 0 0;
  background-color: #000000;
  z-index: -1;
  transition: 0.5s;
}
.about-btn:hover::before {
  height: 180%;
}

/* Company Section */
.company {
  width: 110vw;
  padding: 1.5vw 5vw;
  margin: 4vw 0;
  font-size: 2vw;
  background-color: #f1f1f1;
  color: #9ba2ad;
  transform: rotate(10deg) translate(-2%, 50%);
}

.featured {
  border-radius: 100px 100px 0 0;
  background-color: #000;
  color: #fff;
  position: sticky;
  top: 0%;
}

.fheading {
  width: 100vw;
  height: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 11vw;
  line-height: 10vw;
  font-size: 6vw;
}

.proj-gif {
  width: 12vw;
  height: 7vw;
  margin-right: 10px;
  border-radius: 100px;
  background-size: 114%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("https://i.pinimg.com/originals/2a/53/65/2a53651a35816f499270d8275fd5318f.gif");
}

.fheading h1:nth-child(2) {
  color: transparent;
  display: flex;
  align-items: center;
  font-style: italic;
  -webkit-text-stroke: 0.1px #ffffff;
}

.fsub {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 200;
}
.fsub h4{
  font-family: Gallery-Modern;
  font-size: 2vw;
}

.projects {
  display: flex;
  gap: 6rem;
  max-width: 106rem;
  margin: 1vw 0 0 0;
  padding: 4vw;
}

.proj-right {
  margin-top: 10vw;
}

.proj {
  margin-bottom: 4vw;
}

.proj-elem {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
}

.proj h3 {
  margin-top: 10px;
  font-weight: 400;
}

.proj-btn {
  margin: 2vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-btn button {
  padding: 1.3vw 2.5vw;
  border-radius: 100px;
  border: 2px solid #e6e6e6;
  font-size: 1vw;
  background-color: #ffffff;
  font-weight: 500;
}

.philo {
  width: 100vw;
  height: 100vw;
  margin-top: 10vw;
  background-color: #fff;
  border-radius: 100px 100px 70px 0;
  color: #000;
}

.p-head {
  width: 100vw;
  height: 40vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 11vw;
  line-height: 10vw;
}

.philo h1 {
  font-family: Averta-Light;
  font-size: 12vw;
  line-height: 11vw;
}

.philo h1:nth-child(2) {
  font-style: italic;
  font-family: Gallery-Modern;
}

.philo-section {
  width: 100%;
  padding: 0 2%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.philo-video {
  width: 40%;
}

.philo-section video{
  width: 40%;
}

.philo-section .about{
  width: 40% !important;
}
.philo-text {
  width: 100%;
}

.footer {
  position: relative;
  padding: 3vw 10vw;
  background-color: #000;
  color: #fff;
  font-family: Averta-Light;
  font-weight: 400;
  border-top-left-radius: 100px;
  display: flex;
  gap: 20px;
}

.footer-l {
  width: 45vw;
  border-right: 1px solid #fff;
}

.footer-r {
  width: 40%;
}

.address,
.phone {
  width: 40vw;
  margin: 20px;
  display: flex;
  align-items: center;
}

.address i,
.phone i {
  font-size: xx-large;
  margin: 15px;
}

.address h2,
.phone h2 {
  font-weight: 400;
}

.phone {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid #fff;
  border-radius: 100px;
}

.footer-links a {
  color: #fff;
}

.footer-links p {
  width: 100%;
  padding: 1vw 0;
  position: relative;
  font-size: 2vw;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.footer-links p img {
  width: 150px;
  display: none;
  float: right;
  transform: translate(0%, -50%);
  z-index: 999;
  opacity: 0;
}

.footer-bottom {
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-bottom .fobo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.footer-bottom h1 {
  font-size: 8vw;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-family: "Averta-Light";
}
.footer-bottom .tell-btn {
  width: fit-content;
  height: fit-content;
  border: 1px solid #fff;
  border-radius: 200px;
  padding: 1vw 5vw;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 9;
  color: #fff;
}
.footer-bottom .tell-btn:hover {
  background-color: #fff !important;
  color: #000 !important;
}

@media screen and (max-width: 575px) {
  * {
    font-size: 4vw;
  }

  body,
  html {
    width: 100%;
    overflow-x: hidden;
    position: relative;
  }

  .nav {
    padding: 3vw 4vw !important;
    font-size: 5vw;
    position: fixed;
    z-index: 999;
    background-color: #fff;
  }

  .nav h1,
  .nav span {
    font-size: 6vw;
  }

  .nav-right a {
    font-size: 4vw !important;
  }

  .menu {
    width: 100vw;
    right: -110%;
    border-bottom-left-radius: 150px;
    box-shadow: 0 0 20px #00003343;
  }

  .menu-container {
    flex-direction: column-reverse;
    gap: 25vw;
    padding: 0 4vw;
  }

  .menu i {
    font-size: 8vw;
    width: 50px;
    height: 50px;
    background-color: #000;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  .menu-l p,
  .menu-r p {
    font-size: 5vw;
    width: fit-content;
    border-bottom: 2px solid #dadada;
  }

  .menu-l .menu-link,
  .menu-r .menu-link {
    height: 10vw;
    width: fit-content;
  }

  .menu-l h4,
  .menu-r h2 {
    font-size: 7vw;
    font-family: "Gallery-Modern";
  }

  #home {
    min-height: 100vw;
    margin-bottom: 0;
  }

  .home-main {
    height: 100vw;
    padding: 0 0vw 12vw 4vw;
    position: relative;
    justify-content: end;
  }

  .home-main h1,
  i,
  .home-main span {
    font-size: 12vw;
    font-weight: 600;
    line-height: 15vw;
  }

  .home-main h1:last-child{
    font-size: 12vw !important;
  }

  .home-main i {
    font-style: normal;
    font-weight: 100;
    -webkit-text-stroke: 2px;
    
  }

  .home-gif {
    width: 40vw;
    height: 24vw;
    position: absolute;
    right: 0;
    display: none;
  }

  .proj-comp {
    display: none;
  }

  #hero-shape {
    position: absolute;
    z-index: -9;
    width: 26vw;
    height: 16vw;
    right: 0;
    top: 42vh;
  }

  .showreel {
    display: none;
  }

  .mob-showreel {
    display: block !important;
    width: 100%;
    height: 100vw;
    margin: 0 2%;
    position: relative;
   /*  left: 50%;
    transform: translate(-50%, 0); */
    background-color: #000;
    -webkit-mask-image: url("../img/mob-showreel.png");
    mask-image: url(../img/mob-showreel.png);
    mask-size: 96%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    color: #fff;
  }

  .mob-showreel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-bg {
    border-radius: 0px;
    background: linear-gradient(to top, #00000099, #00000000) !important;

  }

  .service-container {
    /* display: none; */
    width: 33%;
    border-radius: 15px;
    height: 10.5vw;
    left: 02%;
    background: #fb7f36;
  }

  .service-container h1 {
    font-size: 3vw;
    padding: 0;
  }

  .client-card {
    width: 11vw;
    height: 17vw;
    border-radius: 8px;
    display: none;
  }

  .client-card div {
    backdrop-filter: blur(0.5px);
    border-radius: 8px;
  }

  .client-card h1,
  .client-card h5 {
    font-size: 12px;
  }

  .skill-set .skill {
    padding: 2px;
    font-size: 12px;
  }

  .speciality {
    display: none;
  }

  .speciality svg {
    width: 50%;
  }

  .tagline {
    /* display: none; */
    bottom: 5%;
  }
  .tagline p, .tagline span, .tagline h1{
    font-size: 22px;
  }

  .about-section {
    height: fit-content;
    padding: 4vw;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .about {
    width: 100%;
    min-height: fit-content;
    flex-direction: column;
  }

  .about-left {
    width: 100%;
    position: relative;
  }

  .number {
    width: 96% !important;
    position: relative;
    gap: 5px !important;
  }

  .number .boundary{
    min-width: 25%;
    max-width: 25%;
  }

  .about-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: url("logo-mock.jpg");
    background-repeat: no-repeat;
    background-size: 110%;
    background-position: center;
  }

  .about-video {
    width: 90vw;
    height: 56vw;
    object-fit: cover;
    border-radius: 35px;
    margin-top: 4vw;
  }

  .about-text {
    height: fit-content;
    margin: 20px 0;
    padding: 2vw 0;
  }

  .service-wrapper {
    width: 100%;
    margin-top: 4vw;
  }

  /* .about div{
        padding: 1vw 0;
    } */

  .about div h3 {
    font-size: 6vw;
  }

  .about-btn {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 20px;
    text-align: center;
    font-size: 6vw;
  }

  .about-service-container {
    margin: 0px 0 10px 0;
    gap: 10px;
  }

  .about-service-container p {
    font-size: 4vw;
  }

  .service-icon {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
  .service-item{
    margin: 0;
    padding: 5px;
    background-color: #eeeeee80;
    border-radius: 8px;
  }

  .service-item h5 {
    font-size: 25px;
    line-height: 30px;
  }

  .featured {
    border-top-right-radius: 10vw;
    border-top-left-radius: 10vw;
  }

  .fheading h1 {
    font-size: 12vw;
    font-weight: 600;
    line-height: 12vw;
  }

  .fheading h1:nth-child(2) {
    font-weight: 600;
    font-family: "Gallery-Modern";
    -webkit-text-stroke: 1px #ffffff;
    font-style: normal;
  }

  .proj-gif {
    width: 8vh;
    margin-top: 5px;
  }

  .fsub h4 {
    font-family: "Gallery-Modern";
  }

  .projects {
    gap: 10px;
    flex-direction: column;
  }

  .proj-right {
    margin: 0;
  }

  .philo {
    height: fit-content;
    border-top-right-radius: 0;
  }

  .philo-section {
    flex-direction: column;
    padding: 4vw 8vw 18vw 8vw;
    margin: 0px;
  }

  .philo-section video {
    width: 100%;
  }

  .philo-section .about{
    width: 95% !important;
  }
  .philo-text {
    width: 94%;
  }
  .footer-l {
    width: 100%;
    border: none;
  }

  .footer-r {
    display: none;
  }

  .address {
    width: fit-content;
  }

  .footer-bottom {
    min-height: 100vh;
  }
  .footer-bottom video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  .fobo-text{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .fobo-text span{
    font-family: Gallery-Modern;
    font-size: 25vw;
  }
  .fobo-text h1{
    font-size: 25vw;
    line-height: 21vw;
  }
  .tell-btn{
    width: 80%;
    font-size: 18vw;
    margin-top: 4vw;
    color: #fff;
  }



}
