@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Tiro+Devanagari+Marathi:ital@0;1&display=swap'); 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}


html, body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

#main {
    position: relative;
    z-index: 10;

}

#page1 {
    min-height: 100vh;
    position: relative;
    width: 100%;
    padding: 0 2vw;
    background-color: #ffffff;
    margin-bottom: -1px;
}


#center {
    height: 67vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #1d1d1d5f;
    padding-bottom: 2.5vw;
}

#left h3 {
    width: 25vw;

    font-size: 1.8vw;
    line-height: 2vw;
}

#center h1 {
    font-size: 8vw;
    line-height: 9vw;
    text-align: right;

}


#page1 video {
    width: 100%;
    border-radius: 30px;
    margin-top: 4vw;
    position: relative;

}

#hero-shape {
    position: absolute;
    width: 46vw;
    height: 36vw;
    right: 0;
    top: 75vh;
}

#hero-1 {
    height: 100%;
    width: 100%;
    background-color: #C9FD0E;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(20px);
    position: absolute;
}

#hero-2 {
    height: 30vw;
    width: 30vw;
    background-color: #C9FD0E;
    border-radius: 50%;
    filter: blur(20px);
    position: absolute;
    animation: anime2 5s linear infinite alternate;

}

#hero-3 {
    height: 20vw;
    width: 30vw;
    background-color: #C9FD0E;
    border-radius: 50%;
    filter: blur(50px);
    position: absolute;
    animation: anime1 5s linear infinite 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%);

    }

}


#page2 {
    min-height: 100vh;
    width: 100%;
    padding: 0;
    background-color: #ffffff;
    margin-bottom: 0px;
    border-bottom: solid 1px #1d1d1d5f;
}

.container {
  display: flex;
  align-items: center;
  height: 20vh;
  overflow: hidden;
}

.scroll {
  white-space: nowrap;
  margin: 0 2vw;
}

.scroll div {
  display: flex;
  gap: 3vw;
}

.scroll h1 {
  font-size: 5vw;
  color: rgb(0, 0, 0);
  font-weight: bold;
  margin-bottom: 0;
  line-height: 10px;
}
.scroll h1::before {
    content: '';
    width: 2vw;
    height: 2vw;
    background-color: #C9FD0E;
    border-radius: 50%;
    display: inline-block; /* or block, depending on your layout needs */
}

.RightToLeft {
  animation: RightToLeft 20s infinite linear;
}

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

.LeftToRight {
  animation: LeftToRight 10s infinite linear;
}

@keyframes  LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}


#page2-bottom {

    min-height: 80vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 4.5vw;
    justify-content: space-between;
}

#page2-bottom h1 {
    font-size: 1.8vw;
    width: 70%;
    line-height: 2.2vw;
    font-weight: 300;
    text-align: justify;
}

#bottom-part2 {
    width: 20%;
    /* background-color: #79fd0e; */
    padding: 10px;
}

#bottom-part2 img {
    width: 100%;
    border-radius: 15px;
}

#bottom-part2 p {
    font-weight: 400;
    margin-top: 2vw;
    font-size: 1vw;
    line-height: 1.2vw;
}

.domains-headings{
    font-size: 10vw;
    padding-left: 2vw;
}


#page3 {
    min-height: 100vh;
    width: 100%;
    background-color: #ffffff;
    padding: 0vw 0 2vw 0;
    margin-bottom: -1px;
}

.elem {
    display: flex;
    align-items: center;
    height: 8vw;
    width: 100%;
    position: relative;
    padding: 0 2vw;
    /* border-top: 1px solid black; */
    border-bottom: 1px solid rgba(0, 0, 0, 0.621);
    cursor: pointer;
    overflow: hidden;
}

.elem h2 {
    font-size: 2.5vw;
    position: relative;
    z-index: 9;
}

.elem .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fdaa58;
    left: 0;
    top: -100%;
    transition: all ease 0.3s;
}

.elem:hover .overlay {
    top: 0;
}

#fixed-image {
    height: 35vw;
    width: 25vw;
    background: #ffffff;
    border-radius: 10px;
    position: fixed;
    z-index: 99;
    left: 60%;
    top: 20%;
    display: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


#page4 {
    min-height: 85vh;
    width: 100%;
    background-color: #fff;

    margin-bottom: -1px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}
.brand-heading{
    align-self: center;
    font-size: 6vw;
    margin-bottom: 2vw;
}

.brands-section{
    width: 100%;
    background-color: #f3f8f900;
    height: 25vh;
    overflow: hidden;
    /* border: solid thin;
    border-left: none;
    border-right: none; */
    mask-image: linear-gradient(
        to right,
        transparent,
        rgb(144, 144, 144) 20%,
        rgb(144, 144, 144) 80%,
        transparent
    );
}
.brands-logo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8vw;
    align-items: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    animation: brand-scroll 12s infinite linear;
    /* overflow: hidden; */
}
.brand-images{
    width: 17vw;
}


#page6{
    min-height: 50vh;
    position: relative;
    width: 100%;
    padding: 3vw 0vw 0vw 0vw;
    background-color: #2E4C47;
    margin-bottom: -1px;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    color: #fff;
}

#page6 > #footer-top{
    /* background-color: #C9FD0E; */
    width:100%;
    min-height: 40vh;
    display: flex;
    flex-direction: column  ;
    justify-content: center;
    /* flex-direction: row; */
    align-items: center;
    gap: 3vw;
    padding: 1vw 5vw;
    
}



#footer-socials{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: solid thin #b9b9b952;
    /* background-color: #C9FD0E; */
    padding: 2.5vw 0vw;
}
#footer-copyrights{
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer-copyrights h4{
    font-size: 1.3vw;
    font-weight: 300;
}
#footer-links{
    color: black;
    display: flex;
    gap: 2vw;
}
#footer-links > a{
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5vw;
}
#footer-media{
    display: flex;
    flex-direction: row;
    gap: 1.5vw;
}
#footer-media::before{

    content: "Follow us";
    font-size: 2vw;
    font-weight: 400;

}
#footer-media i {   
     font-size: 2.4vw;
     cursor: pointer;
}

#footer-description{
    display: flex;
    justify-content: flex-start   ;
    align-items: start;
    padding: 2vw 0vw;

}
#footer-description p{
    font-size: 2.7vw;
    text-align: center;
    font-variant: small-caps;
    width: 95%;
    font-weight: 200;
}

#footer-down {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    padding: 2vw;
    background-color: #CBEDE0;
    position: relative;
}
 .footer-down-image {
    width: 10vw;

}


.group1,.group2{
    display: flex;
    justify-content: space-between;
    gap: 2vw;
}
.group1>h6{
    font-size: 1.5vw;
    font-weight: 500;
    position:absolute;
    top: 10%;
    margin-right: 2.5vw;
    color: #000000cd;
}
.group2>h6{
    font-size: 1.5vw;
    font-weight: 500;
    position:absolute;
    top: 10%;
    margin-left: 2.5vw;
    color: #000000cd;
}

.group2{
    border-left: solid thin #000000cd;
}


@media (max-width: 700px) {
    #footer-top{
        min-width: 0;
    }
      }


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

.swiper {
    width: 100%;
    height: 80vh;
    background: #000;
  }

  .swiper-slide {
    font-size: 18px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 60px;
    cursor: grab;
  }

  .parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 130%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
  }

  .swiper-slide .title {
    font-size: 3vw;
    font-weight: 600;
    margin-top: 2vw;
  }

  .swiper-slide .subtitle {
    font-size: 2vw;
    text-decoration: underline;
    margin-bottom: 3vw;
    font-weight: 500;
  }

  .swiper-slide .text {
    font-size: 1.1vw;
    max-width: 35vw;
    text-align: justify;
    line-height: 1.5vw;

  }
  .swiper-button-next,.swiper-button-prev {
    transform: scale(0.6); /* Optional */
    cursor: pointer;
}

.domain-redirect{
    text-decoration: none;
    color: black;
}








@media (max-width:1400px) {
    #page1{
        min-height: auto;

        /* padding: 1vw 2vw; */
    }
    #page1 > video{
        height: 60vh;
        object-fit: cover;
    }
    #center {
        flex-direction: column;
        justify-content: flex-end;
        height: 85vw;
    }

    #left h3 {
        font-size: 5vw;
        width: 65vw;
        line-height: 5vw;
        font-weight: 400;
    }

    #hero-shape {
        top: 110vw;
    }

    #center h1 {
        font-size: 12vw;
        line-height: 14vw;
    }
    #page2{
        min-height: auto;
    }
    #gola {
        width: 30px;
        height: 30px;
    }
    #page2-bottom{
        flex-direction: column;
        /* justify-content: center; */
        align-items: flex-start;
        min-height: 10vh;
    }
    #page2-bottom h1{
        font-size: 5vw;
        line-height: 5vw;
        width: 75%;
    }
    #bottom-part2 {
        width: 50%;

    }

    #bottom-part2 p{
        font-size: 3vw;
        line-height: 3vw;
    }
    .elem h2{
        font-size: 4.5vw;
    }
    #page3, #page4{
        min-height: auto;
    }
  
    #footer-div h4 {
        font-size: 4.7vw;
        line-height: 4vw;
        
    }
    #footer-bottom h4 {
        font-size: 2.5vw;
        flex: 0 0 45%;
        
    }
    #fixed-image{
        left: 73%;

    }   

    #page6{
        min-height: auto;
    }

    #page6 > #footer-top{
        min-height: 20vh;
    }
    #footer-description p{
        /* padding: 1vw 0vw; */
        font-size: 6vw;
    }
    
#footer-media i {   
    font-size: 6vw;
    cursor: pointer;
}
#footer-media::before{

    content: "Follow us";
    font-size: 4vw;
    font-weight: 400;

}
#footer-socials{
    flex-direction: column;
    align-items: center;
    flex-direction: column;
    gap: 2vw;
}
#footer-copyrights h4{
    font-size: 3vw;
    font-weight: 300;
}
#footer-links{
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}
#footer-links > a{
    text-decoration: none;
    color: #ffffff;
    font-size: 3vw;
}

#footer-down{
    flex-direction: column;
    gap: 2vw;
    padding: 2vw;
}
.footer-down-image {
    width: 15vw;
}

.group1,.group2{
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    position: relative;
    padding-top: 7vw;

}
.group1>h6{
    font-size: 3vw;
    font-weight: 500;
    position:absolute;
    top: 10%;
    margin-left: 30%;
    color: #000000cd;
}
.group2>h6{
    font-size: 3vw;
    font-weight: 500;
    position:absolute;
    top: 10%;
    margin-left: 30%;
    color: #000000cd;
}

.group2{
    border-top: solid thin #000000cd;
    border-left: none;
    padding-top: 7vw;
}
.brand-heading{
    align-self: flex-start;
    font-size: 9.5vw;
    margin-top: 10vw;
    margin-bottom: 8vw;
    margin-left: 5vw;
}

}

@media (max-width:700px){
    #center h1 {
        margin-top: 5vw;
    }
    .scroll h1 {
        font-size: 8vw;
    }
    .brand-images{
        width: 45vw;
    }
    #fixed-image{
        left: 60%;
        top: 50%;
        height:55vw;
        width: 35vw;
    }  
    .elem{
        height: 22vw;
        padding-left: 8vw;
    }
    .elem h2 {
        font-size: 5vw;
        width: 80%;
        line-height: 9vw;
    }
    #page2-bottom>h1{
        font-weight: 500;
        width: 95%;
        text-align: left;
        font-size: 5vw;
        line-height: 3vh;
    }
    #bottom-part2 {
        width: 80%;
        /* background-color: #79fd0e; */
        padding: 10px;
    }
    
    #bottom-part2 img {
        width: 100%;
        border-radius: 15px;
    }
    
    #bottom-part2 p {
        font-weight: 450;
        margin-top: 5vw;
        font-size: 4vw;
        line-height: 5.5vw;
        text-align: justify;
    }
    .brands-section{
        width: 100%;
        background-color: #f3f8f900;
        height: 15vh;
        overflow: hidden;
        /* border: solid thin;
        border-left: none;
        border-right: none; */
        mask-image: linear-gradient(
            to right,
            transparent,
            rgb(144, 144, 144) 20%,
            rgb(144, 144, 144) 80%,
            transparent
        );
    }
    .swiper{
        height: 40vh;
    }
    .swiper-slide .title {
        font-size: 8vw;
        line-height: 9vw;
        text-shadow: #000;
    }
    .swiper-slide .subtitle {
        font-size: 4vw;
    }
    .swiper-slide .text {
        font-size: 3vw;
        max-width: 55vw;
        text-align: justify;
        line-height: 3vw;
    
      }
  
}