@import url(./font/paralucent-heavy-cufonfonts/ParalucentMedium.otf);
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

@font-face {
    font-family: 'ParalucentMedium';
    src: url('./font/paralucent-heavy-cufonfonts/ParalucentMedium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ParalucentBold';
    src: url('./font/paralucent-heavy-cufonfonts/ParalucentBold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ParalucentExtralight';
    src: url('./font/paralucent-heavy-cufonfonts/ParalucentExtraLight.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    text-decoration: none;
}


html{
    font-size: 10px;
}

body{
    font-family:  'ParalucentMedium', sans-serif;
    font-family:  'ParalucentBold', sans-serif;
    font-family:  'ParalucentExtralight', sans-serif;
    background-color: black;
}

body::-webkit-scrollbar{
    width: 10px;
    background-color: rgb(255, 255, 255);
}
body::-webkit-scrollbar-thumb{
    border-radius: 10px 0px 0px 10px;
    background-color: rgb(0, 0, 0);
}
body::-webkit-scrollbar-thumb:hover{
    cursor: pointer;
}

/* .parent{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: black;
}

.parent img{
    position: absolute;
    width: 20rem;
   
    transform: translate(-50%,-50%);
}

#img1{
    left: 40%;
    top: 40%;
    animation: img1 4s ease-in-out infinite;
}
#img2 {
    left: 55%;
    top: 60%;
    animation: img1 8s ease-in-out infinite;
  
}








.parent2{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar{
    position: relative;
    width: 5%;
    height: 80px;
    background-color: #231f20;
    border-radius: 30px;
    transition: 1s ease-in-out;
}
.navbar img{
    position: absolute;
    top: 20%;
}

.navoptions{
    position: absolute;
    background-color: #231f20;
    width: 00px;
    height: 100%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: white;
    text-wrap: nowrap;
    overflow: hidden;
    transition: 2s ease-in-out;
    opacity: 0;
}


button{
    position: absolute;
    top: 80%;
    width: 320px;
    height: 70px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    z-index: 9999;
    border: 2px solid black;
    border-radius: 30px;
    font-size: 1.8rem;
    transition: 0.3s ease-in-out;
}

button:hover{
    background-color: black;
    color: white;
    cursor: pointer;
} */

a{
    color: white;
}
.loader-main{
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: black;
    z-index: 9999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader {
    --size: 20px;
  
    display: flex;
    justify-content: center;
    align-items: center;
  
    /* gap: 10px; */
    gap: calc(var(--size) / 2);
  
    /* height: 100px; */
    height: calc(var(--size) * 5);
  }
  
  .loader div {
    /* width: 20px; */
    width: var(--size);
  
    /* height: 20px; */
    height: var(--size);
  
    /* border-radius: 20px; */
    border-radius: var(--size);
  
    background-color: #64e3bf;
    animation: wave 2s infinite ease-in-out;
  }
  
  @keyframes wave {
    /* 0%, 100% {
      height: 20px;
      background-color: #ffd700;
    } */
  
    25% {
      /* height: 100px; */
      height: calc(var(--size) * 5);
      background-color: #b065df;
    }
  
    50% {
      /* height: 20px; */
      height: var(--size);
      background-color: #9c73f8;
    }
  
    /* 100% {
      height: 20px;
      background-color: #ffd700;
    } */
  }
  
  /* .loader :nth-child(1) {
    animation-delay: 0s;
  } */

  
  .loader :nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .loader :nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .loader :nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .loader :nth-child(5) {
    animation-delay: 0.8s;
  }


.page-1st{
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 47rem;
    background-color: rgb(255, 255, 255);
display: flex;
justify-content: center;
align-items: center;
}

.main-div{
    position: relative;
    width: 98%;
    height: 95%;
    border-radius: 35px;
border: 1px solid #FFF;
backdrop-filter: blur(0px);
}

.main-div video{
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
}


.branding h1{
    background-color: rgba(255, 0, 0, 0);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branding h1 span{
    display: inline-block;
}

.navbar{
    position: absolute;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 0 10px 0 10px;
    z-index: 9999999999;
}

.navoption{
    width: 40rem;
    height: 90%;
    background-color: #231F20;
    display: flex;
    align-items: center;
    padding-left: 10px;
    justify-content: space-between;
    border-radius: 28px;
    z-index: 9999999999;
}
.options{
    width: 25rem;
    height: 100%;
    background-color: rgba(0, 0, 255, 0);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 9999999999;
}

.options options{
    color: #FFF;
    text-align: right;
    font-family: 'ParalucentMedium', sans-serif;
    font-size: 1.7rem; 
    line-height: normal;
    z-index: 9999999999;
}


.navoption img{
    width: 74px;
}


.contact-btn{
    width: 110px;
    height: 90%;
    background-color: #231F20;
    border-radius: 23px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
}

.contact-btn:hover{
    cursor: pointer;
}

.branding{
    position: absolute;
    top: 14%;
    width: 100%;
    height: 10vw;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.branding h1{
    color: #231F20;
    text-align: center;
    font-family: 'ParalucentBold', sans-serif;
    font-size: 10vw;
    font-style: normal;
    font-weight: 400;
    line-height: 244px; 
    letter-spacing: 12px;
}

.landing-content{
    position: absolute;
    width: 45vw;
    height: 19vw;
    background-color: rgba(255, 0, 0, 0);
    bottom: 10px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.landing-text{
    width: 100%;
    height: auto;
    overflow: hidden;
    /* background-color: red; */
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.landing-text h2{
    color: #231F20;
    font-family: "Space Grotesk", sans-serif;
font-size: 4vw;
font-weight: 300;
line-height: 4.5vw;
overflow: hidden;
}
.book-now{
    width: 27.4vw;
    height: 60px;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    border-radius: 23px;
    border: 2px solid black;
    font-family: 'ParalucentMedium', sans-serif;
    font-size: 20px;
    font-weight: 200;
    transition: 0.5s ease-in-out;

}

.book-now:hover{
    background-color: black;
    color: white;
    cursor: pointer;
}


.landingpage-review{
    position: absolute;
    width: 320px;
    height: 40px;
    right: -150px;
    bottom: 170px;
    background-color: rgba(255, 0, 0, 0);
    overflow: hidden;
    transform: rotateZ(-90deg);
}

.landingpage-review p{
    font-size: 25px;
    font-family:  'ParalucentExtralight', sans-serif;
letter-spacing: 4.2px;

}

#menu {
    z-index: 2;
    position: fixed;
    display: none;
  }
  
  #menu-bar {
    padding-top: 13px;
    width: 45px;
    height: 40px;
    margin: 30px 0 20px 20px;
    cursor: pointer;
  }
  
  .bar {
    height: 5px;
    width: 100%;
    background-color: #000000;
    display: block;
    border-radius: 5px;
    transition: 0.3s ease;
  }
  
  #bar1 {
    transform: translateY(-4px);
  }
  
  #bar3 {
    transform: translateY(4px);
  }
  
  .nav {
    transition: 0.3s ease;
    display: none;
  }
  
  .nav ul {
    padding: 0 22px;
  }
  
  .nav li {
    list-style: none;
    padding: 12px 0;
  }
  
  .nav li a {
    color: white;
    font-size: 20px;
    text-decoration: none;
  }
  
  .nav li a:hover {
    font-weight: bold;
  }
  
  .menu-bg, #menu {
    top: 07px;
    right: 3vw;
    position: absolute;
  }
  
  .menu-bg {
    z-index: 1;
    width: 0;
    height: 0;
    margin: 30px -581px 20px 20px;
    background: rgb(0, 0, 0);
    border-radius: 50%;
    transition: 0.3s ease;
  }
  
  .change {
    display: block;
  }
  
  .change .bar {
    background-color: white;
  }
  
  .change #bar1 {
    transform: translateY(4px) rotateZ(-45deg);
  }
  
  .change #bar2 {
    opacity: 0;
  }
  
  .change #bar3 {
    transform: translateY(-6px) rotateZ(45deg);
  }
  
  .change-bg {
    width: 520px;
    height: 460px;
    transform: translate(-60%,-30%);
  }




@media (max-width:1299px) {
    .landing-text h2 {
        font-size: 5.5rem;
        line-height: 6.7rem;
    }

    .landing-content {
        height: 27rem;
        width: 57rem;
        
    }
    .book-now {
        width: 37.4rem;
    }
}

@media (max-width:900px){
    .branding {
        top: 20%;
    }
}

@media (max-width:750px){
    .landing-content{
        top: 55%;
        left: 50%;
        transform:translate(-50%,-50%);
        text-align: center;
        align-items: center;
    }
    .branding {
        top: 17%;
    }

    .branding h1 {
        font-size: 6rem;
    }
}

@media (max-width:623px){
    .landingpage-review {
        display: none;
    }
    .branding h1 {
        font-size: 5rem;
    }
}



@media (max-width:602px){
    .options {
       
        display: none;
    }

    .navoption {
        position: relative;
        width: 6rem;
        height: 74%;
        border-radius: 43px;
        padding-right: 10px;
    }
    .navbar{
        align-items: center;
    }
    .contact-btn{
        display: none;
    }
    #menu{
        display: block;
    }
    
}



@media (max-width:552px){
    .landing-content {
        width: 98vw;
    }
    .landing-text h2 {
        font-size: 4.5rem;
        line-height: 5.7rem;
    }
    .branding h1 {
        font-size: 8vw;
    }
    .landing-text h2 {
        font-size: 9.5vw;
        line-height: 12.7vw;
    }
    .book-now {
        width: 66.4vw;
    }

}



@media (max-width:410px){
    .branding h1 {
        font-size: 6vw;
    }
    .landing-text h2 {
        color: #000000;
    }
}

@media (max-width:350px){
    .book-now {
        border: 1px solid black;
        height: 47px;
       font-size: 17px;
       color: rgba(0, 0, 0, 0.719);
        border-radius: 12px
    }
}

.page-2nd{
    position: relative;
    width: 100vw;
    height: 120vh;
    min-height: 69rem;
    background-color: rgb(255, 255, 255);
   padding-left: 10px;
   padding-right: 10px;
   overflow: hidden;
}

.branding2{
   position: absolute;
   top: 30%;
   left: 50%;
   transform: translate(-50%,-50%);
    width: 100%;
    height: 60%;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(199, 199, 199, 0.43);;
    text-align: center;
    font-size: 12vw;
    letter-spacing: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family:  'ParalucentMedium', sans-serif;
   
}
.branding2 span{
    letter-spacing: 51px;
    overflow: hidden;
}

.animation-2nd{


    position: absolute;
    width: 60vw;
    height: 40vw;
    min-height: 39rem;
    background-color: black;
    border-radius: 50px;
    top: 80%;
    left: 50%;
    transform: translate(-50%,-50%);
    overflow: hidden;
    z-index: 999;
    box-shadow: 0px 4px 57px 6px rgba(0, 0, 0, 0.18);
    opacity: 0;
   

    
}

.animation-2nd video{
width: 100%;
height: 100%;
object-fit: cover;
overflow: hidden;
}

.video-base{
    position: absolute;
    width: 80vw;
    height: 10vw;
    background-color: black;
    background: url(./src/ritilo.v2.jpg)  lightgray 80% / cover no-repeat;
    /* background-position: cover; */
    bottom: 0%;
    left: 50%;
    border-radius: 60px;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: end;
}

#pointing{
   width: 15vw;
   height: 15vw;
   position: absolute;
   bottom: 3.8vw;
   right: 6vw;
   z-index: 999999999;
}


@media (max-width:1203px) {
    .animation-2nd {
       
        width: 81rem;
        height: 50rem;
    }

    .video-base {
        
        width: 101rem;
        height: 14rem;
    }
    #pointing {
        width: 15vw;
        height: 15vw;
        position: absolute;
        bottom: 5.8rem;
        right: 2rem;
    }    
}

@media (max-width:1011px){
    .video-base {
        width:98%;
    } 
    #pointing {
        width: 19vw;
        height: 19vw;
        right: -2rem;
    } 
}

@media (max-width:859px){
    .animation-2nd {
        width: 69rem;
    }
    .branding2 {
        position: absolute;
        top: 26%;
    }
    #pointing {
        width: 28vw;
        height: 28vw;
        right: 0rem;
    } 
}

@media (max-width:733px){
    .animation-2nd {
        width: 90%;
        border-radius: 31px
    }
    .branding2 {
        font-size: 20vw;
        letter-spacing: 0;
        top: 20%;
    }
    .branding2 span{
        letter-spacing: 0;
    }
}

@media (max-width:498px){
    .video-base {
        height: 11rem;
        border-radius: 20px;
    }
    #pointing {
        width: 15rem;
        height: 15rem;
        bottom: 4.8rem;
        right: -2rem;
    }
    .branding2 {
        letter-spacing: 0;
        top: 20%;
    }
    .animation-2nd{
        height: 70vh;
    }
}

.page-3rd{
    position: relative;
    width: 100vw;
    height: 120vh;
    min-height: 65rem;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}
.branding-3rd{
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 12vw;
    color: #101010;
background-color: rgba(255, 0, 0, 0);
text-align: center;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-style: normal;
font-weight: 400;
    font-family:  'ParalucentExtralight', sans-serif;
    font-size: 10.5vw;
    letter-spacing: 2vw;
    padding-top: 2.2vw;
    overflow: hidden;
}
.branding-3rd span{
    
    overflow: hidden;
    margin-bottom: 0;
}

#observing{
    position: absolute;
    width: 15vw;
    bottom: -1.2vw;
    right: 0;
}
.flat-phone{
    position: relative;
    width: 100%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10vw;
    overflow: hidden;
    scale: 3;
}

#f-phone{
    width: 85vw;
    transform: rotateZ(-90deg);
}

.cards{
    position: absolute;
    width: 59vw;
    height: 28vw;
    background-color: rgba(255, 0, 0, 0);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    overflow: hidden;
    opacity: 0;
}
.card{
    position: relative;
    width: 20vw;
    height: 12vw;
    background-color: rgb(243 240 241);
    border-radius: 50px;
    overflow: hidden;
}
.card video{
    position: absolute;
    width: 9vw;
    right: -1.4vw;
    bottom: -1.8vw;
    border: none;
    outline: none;
}
.micro-animation-video1{
    position: absolute;
    width: 9vw;
    right: -1.4vw;
    bottom: -1.8vw;
    background-image: url("./src/Creative Design and Development Agency (3).mp4") center;
    background-size: cover;
    background-color: transparent;
    z-index: 1;
}
.micro-animation-video2{
    position: absolute;
    width: 9vw;
    right: -1.4vw;
    bottom: -1.8vw;
    background-image: url("./src/Creative Design and Development Agency (1).mp4") center;
    background-size: cover;
    background-color: transparent;
    z-index: 1;
}
.micro-animation-video3{
    position: absolute;
    width: 9vw;
    right: -1.4vw;
    bottom: -1.8vw;
    background-image: url("./src/Creative Design and Development Agency (2).mp4") center;
    background-size: cover;
    background-color: transparent;
    z-index: 1;
}
.micro-animation-video4{
    position: absolute;
    width: 9vw;
    right: -1.4vw;
    bottom: -1.8vw;
    background-image: url("./src/time-color.mp4") center;
    background-size: cover;
    background-color: transparent;
    z-index: 1;
}

.card h2{
    position: absolute;
color: #000;
text-align: center;
font-family:  'ParalucentMedium', sans-serif;
font-size: 4vw;
font-style: normal;
font-weight: 400;
left: 1vw;
top: 1vw;
}

.card-content{
    position: absolute;
    width: 60%;
    height: 50%;
    top: 50%;
    background-color: rgba(255, 0, 0, 0);
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(0, 0, 0, 0.43);
    font-size: 1vw;
    padding-left: 1vw;
}

@media (max-width:1064px) {
    #f-phone{
        width: 100vw;
    }
    .card {
        position: relative;
        width: 25vw;
        height: 13vw;
        border-radius: 20px;
    }
    

    .page-3rd{
        height: 100vh;
        
    }
    .branding-3rd {
        bottom: -2.8vw;
        height: auto;
    }

    #observing {
        bottom: -1.2rem;
    }
}

@media (max-width:700px) {
    #f-phone{
        transform: rotateZ(0deg);
        width: 100rem;
        
    }
    .page-3rd{
        height: 110vh;
        
    }
    .flat-phone{
        top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    scale: 1;
    }


    .flat-phone {
        top: 47%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80rem;
        height: 100rem;
    }


.cards {
    width: 40rem;
    height: 57rem;
}

.card {
    width: 24rem;
    height: 13rem;
}

.card h2 {

font-size: 4rem;
}
.card-content {
font-size: 1rem;
}

.card video {

width: 9rem;
right: -1.4rem;
bottom: -1.8rem;
}
.micro-animation-video1,.micro-animation-video2,.micro-animation-video3,.micro-animation-video4{
    width: 9rem;
    right: -1.4rem;
    bottom: -1.8rem;
}

#observing {

width: 24vw;
}

}
    

@media (max-width:350px){
    .flat-phone {
       
        width: 71rem;
    } 

    .card {
        width: 22rem;
        height: 11rem;
    }

    .cards {
        height: 48rem;
    }
}




.page-4th{
    position: relative;
    width: 100vw;
    height: 150vh;
    background-color: black;
    min-height: 66rem;
}

#phone1,#phone2{
    position: absolute;
    width: 25vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#phone1{
    left: -120%;
    animation: img1 8s ease-in-out infinite;
    z-index: 99999;
}
#phone2{
    top: 65%;
 left: 120%;
 animation: img2 8s ease-in-out infinite reverse; 
 z-index: 99999;
}
.smart-dev{
    position: absolute;
    width: 60vw;
    height: 20vw;
    background-color: rgba(255, 0, 0, 0);
    top: 4vw;
    z-index: 9999;
}

.smart-dev p{
    font-size: 8vw;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.764);
       
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.smart-dev span {
    background: -webkit-linear-gradient( yellow,#73f830, #37f8eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 5s infinite;
    background-size: 200% 200%;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes img1 {
    50%{
        transform: translate(-50%,-52%) ;
    }
}
@keyframes img2 {
    50%{
        transform: translate(-50%,-48%) ;
    }
}


.content-4th{
    position: absolute;
    bottom: 0;
    width: 35vw;
    height: 9vw;
    background-color: rgba(150, 126, 130, 0.014);
    font-size: 1.6vw;
    left: 20px;
    color:  rgba(255, 255, 255, 0.58);
    font-family:  'ParalucentExtralight', sans-serif;
    letter-spacing: 2px;
    z-index: 99999;
}
.content-4th p{
    overflow: hidden;
}
.check{
    width: 20vw;
    height: 4vw;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    right: 6vw;
    bottom: 3.5vw;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.685);
    color: rgba(255, 255, 255, 0.746);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    font-family:  'ParalucentExtralight', sans-serif;
    letter-spacing: 2px;
    transition: 0.5s ease-in-out;
    z-index: 99999;
    overflow: hidden;
    text-wrap: nowrap;
    
}

.check:hover{
    background-color: white;
    color: rgb(0, 0, 0);
    cursor: pointer;
}

@keyframes infiniteScroll {
    from {transform: translateX(0)}
    to {transform: translateX(-50%)}
  }
  .container {
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 25vw;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.062);
    letter-spacing: 4px;
    font-weight: bolder;
  }
  .horizontal-scrolling-items {
    display: flex;
    font-size: 10vw;
    width:auto;
    animation-name: infiniteScroll;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  .horizontal-scrolling-items__item {
    white-space: nowrap;
  }

  @media (max-width:1216px) {
    .check{
        width: 27rem;
    }

    #phone1, #phone2 {
        width: 30rem;
    }
  }

  

    @media (max-width:828px){
        .page-4th {
            position: relative;
            width: 100vw;
            height: 116vh;
        }

        .check {
            width: 18rem;
           
            border-radius: 11px;
           
            font-size: 1.1rem;
        }
    }

    @media (max-width:640px){
.check{
    height: 3rem;
}
    }

    @media (max-width:484px){
        #phone1, #phone2 {
            width: 25rem;
        }
        .page-4th {
            height: 100vh;
            min-height: 90rem;
        }

        #phone2 {
            top: 54%;
        }
 
         #phone1{
            top: 41%;
         }

        .content-4th {
            
            width: 18rem;
            height: 8rem;
        }
        .content-4th {
            width: 25rem;
            height: 7rem;
            background-color: rgba(255, 0, 0, 0);
            display: flex;
            justify-content: center;
            align-items: center;
            bottom: 8vh;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            font-size: 1.2rem;
            overflow: hidden;
            line-height: 1.3rem;
        }
        .check {
            height: 3rem;
            left: 50%;
            transform: translateX(-50%);
            bottom: 3.5rem;
        }
    }

    @media (max-width: 401px) {
        #phone1, #phone2 {
            width: 21rem;
        }
        .smart-dev {
            position: absolute;
            width: 100%;
            height: 20rem;
        }

        .smart-dev p {
            font-size: 13vw;
        }
        .check {
            height: 4rem; 
            bottom: 1.5rem;
        }
        }


        .page-5th{
            position: relative;
            width: 100vw;
            height: 100vh;
            background-color: black;
            padding-top: 120px;
            overflow: hidden;
            max-height: 1300px;
            min-height: 1100px;
            
        }

        .right,.left{
            position: absolute;
            width: 50%;
            height: auto;
            background-color: rgba(255, 0, 0, 0);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .right{
            background-color: rgba(42, 204, 42, 0.008);
            right: -15%;
        }
        .left{
            left: -12%;
        }

        .right img{
            width: 49%;
            height: 32%;
            border-radius: 30px;
        }

        .left img{
            width: 49%;
            height: 32%;
            border-radius: 30px;
        }

     #hold-phone{
        position: absolute;
        width: 100vw;
        z-index: 99999;
       top: 70%;
       left: 150%;
       transform: translate(-50%,-50%);

     }


     #phone-anim{
        position: absolute;
        width: 18.7vw;
        border-radius: 40px;
        left: 150%;
        top: 53%;
        transform: translate(-50%,-50%);
       
     }
     .video-hand-div{
        position: absolute;
        width: 18.7vw;
        border-radius: 40px;
        left: 150%;
        top: 53%;
        transform: translate(-50%,-50%);
        z-index: 99;
        background-image: url("./src/newPhone.mp4") center;
        background-size: cover;
        background-color: transparent;
     }


@media (max-width:1540px) {
    #hold-phone{
        top: 65%;
        width: 147rem;
    }

    #phone-anim {
      
        width: 27.55rem;
        border-radius: 32px;
       
        top: 52.8%;
       
    }
    .video-hand-div{
        width: 27.55rem;
        border-radius: 32px;
       
        top: 52.8%;
     }

  
}

@media (max-width:1008px) {
    .right, .left {
        
        width: 51rem;
    }
}


@media (max-width:868px) {
    .right, .left {

        height: 159rem;
    }
    .left {
        left: -22%;
    }
    .right{
        right: -23%;
    }    
}

@media (max-width:806px){

    .right, .left {

        height: 153rem;
    }
}

@media (max-width:767px) {
    .right img {
        width: 44%;
    }
    
    .left img {
        width: 45%;
    }
        .right, .left {
            height: 145rem;
        }
        .page-5th {
            width: 100%;
            height: 118vh;
        }

        #phone-anim {
            width: 28rem;
           
            top: 52.5%;
        }
        .video-hand-div{
            width: 28rem;
           
            top: 52.5%; 
        }
}

@media (max-width:690px) {
    .left {
        left: -34%;
    }
    .right {
        right: -40%;
    }
}

@media (max-width:588px) {
    .left {
        left: -40%;
    }
    .right {
        right: -48%;
    }
}
@media (max-width:550px) {
    .left img,.right img {
        width: 23rem;
    }
.right, .left {
        width: 26rem;
        height:auto;
    }
    .left {
        left: -12%;
    }
    .right {
        right: -18%;
    }
}



    
     @media (max-width:450px){
        .left {
            left: -25%;
        }
        .right {
            right: -32%;
        }


        #hold-phone {
            width: 130rem;
            top: 62%
        }
        #phone-anim {
            width: 24.5rem;
            top: 51%;
        }
        .video-hand-div{
            width: 24.5rem;
            top: 51%;
        }
     }


     .page-6th{
        position: relative;
        width: 100%;
        height: 100vh;
        background-color: black;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        flex-direction: column;
        gap: 60px;
     }
#b-btn2{
    border: 2px solid white;
    color: white;
    transition: 0.5s ease-in-out;
}

#b-btn2:hover{
    background-color: white;
    color: black;
}

     .content-6th{
       width: 60%;
       font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       height: auto;
       font-size: 4vw;
       color: white;
       background-color: rgba(144, 144, 144, 0);
       text-align: center;
      
     }

.content-6th p{
    line-height: 3.8vw;
    overflow: hidden;
}

     .content-6th span:nth-child(1){
        color: #74DB8D;
     }
     .content-6th span:nth-child(2){
        color: #9E9E9E;
     }

.page-6th img{
    position: absolute;
    width: 15vw;
}

#fig4{
   bottom: -9vw; /* 9vw */
    left: 15vw;
    animation: floater 10s ease-in-out infinite;
}

#fig3{
    width: 12vw;
    top: 15vw; /* 5 */
     right: 15vw;
     animation: floater2 120s ease-in-out infinite;
 }

 #fig2{
    width: 17vw;
    top: 10vw; /* 4 */
     left: 4vw;
     animation: floater4 180s ease-in-out reverse infinite; 
 }
 #fig1{
    bottom: -5vw; /* 2 */
     right: 18vw;
     width: 18vw;
     animation: floater3 160s ease-in-out reverse infinite;
 }

 #dance{
    bottom: -2.5rem;
    right: 50px;
 }


 @keyframes floater {
    50%{
     
        transform:translateY(-20px) rotateZ(20deg);
    }
 }

 
 @keyframes floater2 {
    50%{
     
        transform:translateX(50px) translateY(-100px) rotateZ(-460deg);
    }
 }

  
 @keyframes floater3 {
    50%{
     
        transform:translateX(100px) translateY(-100px) rotateZ(460deg);
    }
 }

   
 @keyframes floater4 {
    50%{
     
        transform:translateX(100px) translateY(-50px) rotateZ(360deg);
    }
 }


@media (max-width:1300px) {
    #fig3 {
        width: 18rem;
        right: 4rem;
    }
    #fig2 {
        width: 25rem;
        left: -1rem;
    }
    #fig4{
        width: 20rem;
    }
    #fig1 {
        width: 24rem;
    }
    .content-6th {
        width: 75%;
       
        font-size: 6rem;
    }
    .content-6th p {
        line-height: 6.5rem;}
}
@media (max-width:1121px){
    
    .content-6th {
        width: 90%;
    }
}

@media (max-width:967px){
    .content-6th {
        width: 75%;
        font-size: 5vw;
    }
    .content-6th p {
        line-height: 5.5rem;
    }
}


@media (max-width:750px){
    .content-6th p {
        line-height: 6vw;
    }
    #fig4 {
        bottom: -9vw;
        left: -7rem;
    }
    #fig1 {
        
        right: 2rem;
    }
    #fig2 {
        
        left: 2rem;
    }
    #fig3 {
        right: -9rem;
    }

}
@media (max-width:650px){
    #b-btn2{
        width: 25rem;
        font-size: 1.5rem;
        height: 5rem;
     }
}





@media (max-width:500px){
    .content-6th {
        width: 87%;
        font-size: 6vw;
    }
    #fig3 {
        width: 13rem;
    }
    #fig2 {
        width: 20rem;
    }
    #fig4 {
        width: 18rem;
        left: -9vw;
    }
    #fig1 {
        width: 24rem;
        right: -12vw;
    }
    .content-6th p {
        line-height: 3.5rem;
    }

 #b-btn2{
    width: 15rem;
    font-size: 1.5rem;
    height: 4rem;
 }
 .page-6th{
    gap: 16px;
 }
}















 .footer{
    width: 100vw;
    height: 80vh;
    background-color: rgb(0, 0, 0);
    position: relative;
    overflow: hidden;
 }

 .footer-content{
    margin-top: 400px;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 250px 250px 0px 0px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
 }

 .lets-go{
    background-color: rgb(255, 255, 255);
    width: 38vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
 }

 .lets-go p{
    color: rgb(0, 0, 0);
    text-align: center;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 8vw;
font-style: normal;
font-weight: 400;
/* 25% */
 }
 .gya{
    width: 60%;
    height: 8rem;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 40px;
    border: 4px solid black;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.8vw;
font-style: normal;
font-weight: 500;
transition: 0.5s ease-in-out;
 }
 
 .gya:hover{
    background-color: black;
    color: white;
    cursor: pointer;
 }

 #f-logo{
    position: absolute;
    width: 10vw;
    left: 8rem;
    top: 10px;
 }

 .s-media{
    position: absolute;
    width: 36rem;
    height: 10rem;
    background-color: rgba(255, 182, 182, 0);
    left: 2rem;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
 }
 .s-media p{
    color: rgb(178, 178, 178);
    font-size: 1.4rem;
    margin-left: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }
 .s-images{
    width: 90%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    
    overflow: hidden;
    border-radius: 20px;
 }




 
 @media (max-width:1100px) {
    .gya {
        width: 26rem;
        height: 6rem;
        font-size: 1.8rem;
    }
    .lets-go p {
        font-size: 9rem;
    }
    .lets-go {
        width: 38rem;
    }
 }

 @media (max-width:600px){
    .s-media{
        align-items: center;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
    #f-logo {
        position: absolute;
        width: 8rem;
        left: 5rem;
       
    }
 }
 @media (max-width:382px) {
    .lets-go p {
        font-size: 6rem;
    }
    .gya {
        width: 20rem;
        height: 5rem;
        font-size: 1.5rem;
    }
 }

 @media (max-width:320px) {
    .s-images {
        width: 100%;
        height: auto;
    }
 }



 @keyframes blink {
    10%{
        background-color: #28ff62;
    }
    20%{
        background-color: white;
    }
    30%{
        background-color: #28ff62;
    }
    40%{
        background-color: white;
    }
    50%{
        background-color: #28ff62;
    }
    60%{
        background-color: white;
    }
    70%{
        background-color: #28ff62;
    }
    100%{
        background-color: white;
    }
 }

.body{
    overflow: hidden;
}

 .blogs{
    z-index: 99999999999999999;
    position: fixed;
    width: 98%;
    height: 98%;
    background-color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 30px;
    overflow-y: auto;
    display: none;
 }
 .blog1{
    width: 100%;
    height: 100%;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    
    text-align: center;
    
 }
 .blogs h2{
    font-size: 8vw;
    text-align: start;
    line-height: 8vw;
    overflow: hidden;
 }

 .blogs h3{
    font-size: 6vw;
 }

 .blogs p{
    font-family: Arial, Helvetica, sans-serif;
    width: 90rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.791);
 }
 .blogs pre{
    font-size: 2rem;
    width: 50rem;
 }

 #blog-L{
    justify-content: center;
 }

 #blog-2{
    justify-content: center;
 }

 .demo,.demo2,.demo3{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: 9999999999999999999;
    color: white;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 50px;
 }

 .demo2{
    z-index:9999999999999;
 }

 .demo3{
    z-index: 99999999999;
 }

 .clickFor{
    width:10rem;
    height: 60px;
    background-color: black;
    border: 1px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: 0.5s ease-in-out;
 }

 .clickFor:hover{
    background-color: white;
    color: black;
 }

 .contact-box-view{
    position: fixed;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.256);
    backdrop-filter: blur(10px);
    z-index: 999999999999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
 }

 .contact-msg-box{
    position: relative;
    width: 50%;
    height: 60%;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 20px;
    
 }
 .contact-msg-box > p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2vw;
    margin-bottom: 0.5vw;
 }
 .contact-msg-box > h2{
    font-size: 3vw;
    margin-bottom: 2vw;
 }
 .contact-msg-box > span{
    position: absolute;
    right: 1.5vw;
    top: 1vw;
    font-size: 2rem;
    color: red;
 }
 .contact-msg-box > span:hover{
    cursor: pointer;
 }

 @media (max-width:600px) {
    .contact-msg-box{
        width: 90%;
        height: 30%;
    }
    .contact-msg-box > p{
        font-family: Arial, Helvetica, sans-serif;
        font-size: 5vw;
        margin-bottom: 0.5vw;
     }
     .contact-msg-box > h2{
        font-size: 5vw;
        margin-bottom: 2vw;
     }
 }


 .fe > a{
    color: rgba(0, 0, 0, 0.331);
 }