@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Space+Grotesk:wght@400;500&display=swap');

@font-face {
    font-family: inter;
    src: url('./Inter-Regular.woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: inter;
}
canvas {
    position: relative;
    height: 100vh;
    width: 100vw;
    z-index: 9;
}
#nav {
    display: flex;
    align-items: center;
    justify-content: space-around   ;
    height: 10vh;
    width: 45%;
    max-width: 800px;
    background-color: #ffffff54;
    backdrop-filter: blur(10px);
    padding: 10px;
    font-size: 15px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 3%;
    transform: translateX(-50%);
    border-radius: 12px;
}

#nav .logo {
    margin-bottom: 4px;
    width: 10%;
}

#nav input[type="checkbox"] {
    display: none;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

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

#nav a {
    text-decoration: none;
    color: black;
    margin-right: 15px;
    font-size: 18px;
}

#nav button {
    padding: 15px 10px;
    border-radius: 10px;
    border: none;
    background-color: #ffcd6d;
}

/* Media query for smaller screens */
@media only screen and (max-width: 768px) {
    #nav{
        width: 90%;
    }
    .menu-items {
        display: none;
        flex-direction: column;
        justify-content: start;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 70%;
        background-color: #ffffff;
        padding: 20px;
        z-index: 98;
        overflow-y: auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .menu-items a {
        margin: 10px 0;
    }

    #nav label.menu-icon {
        display: block;
    }

    #nav input[type="checkbox"]:checked + .menu-items {
        display: flex;
    }
    #nav .logo {
        margin-bottom: 4px;
        width: 20%;
    }
}


#main {
    position: relative;
    overflow: hidden;
    /* background-color: #e4e0dd; */
}

.page {
    width: 100vw;
    height: 100vh;
    /* font-size: 30px; */
}
.page>h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    position: absolute;
    font-size: 78px;
    z-index: 100;
    text-align: center;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.page>h4 {
    position: absolute;
    font-size: 20px;
    font-weight: 100;
    z-index: 100;
    text-align: center;
    top: 7%;
    left: 50%;
    line-height: 28px;
    transform: translate(-50%, -50%);
    color: #121718;
}

.page1 {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.page1>h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    position: absolute;
    font-size: 78px;
    z-index: 99;
    text-align: center;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page1>h4 {
    position: absolute;
    font-size: 20px;
    font-weight: 100;
    z-index: 99;
    text-align: center;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #121718;
}

.page-extra {
    position: relative;
    z-index: 99;
    height: 100vh;
    width: 100vw;
    background-color: transparent;
}

.page2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 99;
    height: 100vh;
    width: 100vw;
    text-align: center;
    background-color: #e4e0dd;
}
.page2>h1{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 50px;
}
.page2 >h4 {
    margin-top: 20px;
    font-weight: 500;
    color: #646464;
    font-size: 20px;
}

#page3 {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
}
#page3>h1{
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 76px;
    margin: 90px 0 0 160px;
    text-align: left;
}
#center-page3{
    display: flex;
    border-radius: 12px;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%,-50%);
   height: 70%;
    width: 80%;
    background-color: #F6F3EF;
}
#left-page3{
    /* height: 100%; */
    width: 50%;
}
#left-page3>svg{
   scale: 0.7;
}
#right-page3{
    display: flex;
    align-items: start;
    gap: 30px;
    justify-content: center;
    flex-direction: column;
    /* height: 100%; */
    width: 50%;
    padding-left: 60px;
}
#right-page3>h1{
    font-weight: 600;
}
#right-page3>h4{
    font-weight: 500;
    width: 70%;
    color: #96969685;
}
#right-page3>button{
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
}

.page4{
    position: relative;
    height: 100vh;
    width: 100vw;
}
.center-page4{
    display: flex;
    justify-content: center;
    border-radius: 12px;
    height: 75%;
    width: 80%;
    background-color: #2f2f2f;
    position: absolute;
    top: 5%;
    left: 10%;
    overflow: hidden;
}
.left-page4{
    position: relative;
    top: 10%;
    /* height: 100%; */
    width: 50%;
}
.left-page4 .elem-page4{
    position: relative;
    left: 4%;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 15px 10px 15px 20px;
    border-radius: 10px;
    margin: 10px 0 10px 20px;
}
.elem-page4>img{
    width: 12%;
    margin-right: 20px;
}
.elem-page4>p{
   font-size: 14px;
   font-weight: 100;
}
.right-page4{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    /* height: 100%; */
    width: 50%;
    color: #ffff;
}
.right-page4 h1{
    font-weight: 400;
    font-size: 50px;
}
.right-page4 p{
    margin-top: 10px;
    width: 70%;
    font-size: 16px;
}
.page5{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f6f3ef;
    /* cursor: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1581299/profile/profile-80.jpg), auto; */
    cursor: none ;
}
.swiper {
    position: absolute;
    top: 10%;
    width: 100%;
    height:100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    width: 23% !important;
    height : 75% !important;
    border-radius: 12px;
    overflow: hidden;
  }
  .profile-intro{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .profile-intro>img{
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    width: 75px;
    height: 85px;
  }
  .profile-text{
    width: 60%;
    text-align: left;
    padding: 10px 0 0 30px;
  }
  .profile-text>h1{
    font-size: 24px;
  }
  .profile-text>h4{
    font-weight: 100;
    color: #121718;
    margin-top: 10px;
    font-size: 12px;
    text-transform: capitalize;
  }
  .reviews{
    margin: 40px 0 0 15px;
    text-align: left;
    padding: 10px 20px;
    width: 95%;
  }
  .reviews>p{
    font-family: inter;
    font-size: 16px;
    color: #121718;
  }

.cursor {
    width: 70px;
    height: 70px;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transform: translate(-50%,-50%);
}
.cursor p{
    font-size: small;
    font-family: inter;
   color: #fff;
}


@keyframes cursorAnim {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.9);
    }
}

@keyframes cursorAnim2 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.4);
    }
}

@keyframes cursorAnim3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* .expand {
    animation: cursorAnim3 .5s forwards;
    border: 1px solid rgb(255, 255, 255);
    
} */

.page6{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f6f3ef;
    display: flex;
    flex-direction: column;
justify-content: center;
align-items: center;
}
.brands{
   margin-top: 40px;
   display: flex;
   justify-content: space-between;
   align-items: start;
   flex: auto;
}
.page6 .center-page-6 img{
   width: 90px;
   aspect-ratio: 3/2;
   object-fit: contain;
  margin-left: 40px;
   
}
@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translatex(-100%); }
  }
.page6 h1{
    font-size: 45px;
    font-weight: 100;
    font-family: inter;
}
.page6 .bottom-page6 {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 5%;
}
.bottom-page6 .box{
    width: 300px;
    height: 250px;
    display: flex;
    border-radius: 12px;
    background-color: #ffff;
    justify-content: space-around;
    flex-direction: column;
    align-items:flex-start;
    border-right: 1px solid #f3f0ed ;
    margin: 0 10px;
    padding : 40px;
}
.bottom-page6 .box:nth-last-child(1){
    border-right: none;
}
.bottom-page6 .box img{
    height: 50px;
    
}
.bottom-page6 .box h1{
   font-size: 28px;
   font-weight: 500;
}
.bottom-page6 .box p{
   font-size: 14px;
   color: #2f2f2f;
   opacity: 0.6;
}
.footer{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #2f2f2f;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 20px 80px;
    
}
.top-footer{
    margin: 20px 0;
}
.top-footer h1{
    text-align: left;
    font-family: inter;
    width: 60%;
    font-weight: 100;
    font-size: 65px;
    color: #fff;
    margin: 0 0 30px 0 ;
}
.top-footer a{
    padding: 15px 30px;
    background-color: #ffcd6d;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    font-size: 12px;
   margin-bottom: 20px;
}
.hr{
    margin: 50px 0;
}
.bottom-footer{
    display: flex;
    justify-content: space-between;
}
.list-link{
    display: flex;
    margin-right: 50px;
}
.link-column{
    display: flex;
    flex-direction: column;
    color: #fff;
    margin: 0 30px 0 30px;
}
.link-column h4{
    margin-bottom: 20px;
    font-weight: 100;
}
.link-column a{
    font-weight: 100;
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}
.bottom-footer .logo{
    width: 80px;
    margin-left: 5px;
}
.social-icons{
    display: flex;
    align-items: center;
   
}
.bg-icons{
    margin: 20px 0 0 5px ;
    border-radius: 50px;
    padding: 10px;
    background-color: #444444;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.bg-icons img{
    width: 20px;
}

@media (max-width:600px) {
    .page>h1{
        font-size: 60px;
        top: 4%;
        width: 100%;
        
    }
    
    .page>h4 {
        width: 80%;
        font-size: 20px;
        font-weight: 100;
        top:8%;
        left: 50%;
    }
    .page1>h1{
        font-size: 60px;
        width: 100%;
    }
    
    .page1>h4{
        top: 60%;
        width: 80%;
    }
    #page3>h1{
        font-size: 50px;
        margin: 40px 30px;
    }
    #center-page3{
        display: flex;
      flex-direction: column;
      top: 60%;
      height: 80%;
    width: 88%;
    }
    #right-page3{
        width: 100%;
        padding-left: 30px;
  
    }
    #left-page3{
        width: 100%;
     
    }
    #right-page3>h4{
        width: 80%;
        color: rgb(74, 74, 74);
    }
    .center-page4{
        flex-direction: column;
        top: 40%;
        transform: translate(-50%,-50%);
        width: 88%;
        left: 50%;
        border-radius: 10px;
    }
    .left-page4{
        width:100%;
        top: 0%;
    }
    .left-page4 .elem-page4{
        /* position: relative; */
        width: 80%;
        display: flex;
        background-color: #fff;
        padding: 4px 10px 5px 10px;
        border-radius: 10px;
    }
    .elem-page4>img{
        width: 20%;
        margin-right: 20px;
    }
    .elem-page4>p{
        font-size: 12px;
     }
     .right-page4{
        width: 100%;
        margin-top: 5px;
        margin-left: 30px;
     }
     .right-page4 h1{
        font-weight: 500;
        font-size: 40px;
    }
    .right-page4 p{
        margin-top: 10px;
        width: 70%;
        font-size: 16px;
        color: #dcdcdc;
    }
    .swiper-slide {
        font-size: 16px;
        background: #fff;
        width: 70% !important;
        height : 60% !important;
      }
      .brands{
        width: 80%;
        animation: scrolling 10s linear infinite ;
      }
      .page6 .center-page-6 img{
        width: 60px;
        aspect-ratio: 3/2;
        object-fit: contain;
       margin-left: 40px;
        
     }
     .page6 .bottom-page6 {
        width: 70%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 12px;
    }
     .page6 .bottom-page6 .box{
        padding : 20px;
        margin: 5px;
    }
    .bottom-page6 .box img{
        height: 30px;
        
    }

    .footer{
        padding: 20px 20px 20px 40px;
        
    }
    .top-footer h1{
        font-size: 45px;
    }
    .bottom-footer{
        display: flex;
        flex-direction: column;
    }
    .link-column{
        flex-direction: column;
    }
    .list-link{
        margin-top: 10px;
        flex-direction: column;
    }
}