@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');


*{
    
    margin: 0; padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    /*border: none;*/
    list-style: none; 
    /* transition: all .2s linear; */
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    color:#363636;
}

:root{

    /*Global Colors*/
    --dark-black:#000000;
    --black:#363636;
    --purple:#9048DC;
    --text-blue:#343084;
    --white: #FFFFFF;

    /*Global Colors Ends*/
    
}

h1,h2,h3,h4,h5,p{
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
}

*::selection{
    background: var(--purple);
    color: white;
}

html{
    font-size: 62.5%;
    scroll-padding-top:5.5rem;
    scroll-behavior: smooth;
}



html::-webkit-scrollbar{
    width: 1.3rem;

}

html::-webkit-scrollbar-track{
    background: transparent;
}


html::-webkit-scrollbar-thumb{
    background: lightgrey;

}


body{
  background: url(../images/site-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.container{
  max-width: 1175px !important;
  /* overflow: hidden; */
  padding:0 2rem;
}


/* Floating Manu Starts Here */
.floating-menu-wrapper{

}

.floating-menu-wrapper .container{
  position: relative;
}

.floating-menu {
    width: 7.2rem;
    height: 7.2rem;
    border-radius: 50%;
    background: var(--purple);
    position: absolute;
    top: 2.65rem;
    right: 2rem;
    display: flex;
    align-items: baseline;
    z-index: 10;

    user-select: none;
  }

  .floating-menu::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 11;
    cursor: pointer;
  }

  .floating-menu.active::before{
    content: '';
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -1;
    cursor: pointer;
    top: 0;
    left: 0;
  }

  .floating-menu.active .plus-icon {
    transform: rotate(-45deg);
  }
  .floating-menu.active .floating-nav li:nth-child(1) {
    transform: translatex(-80px);
  }
  .floating-menu.active .floating-nav li:nth-child(2) {
    transform: translatex(-120px);
  }
  .floating-menu.active .floating-nav li:nth-child(3) {
    transform: translatex(-160px);
  }
  .floating-menu.active .floating-nav li:nth-child(4) {
    transform: translatex(-202px);
  }
  .floating-menu.active .floating-nav li:nth-child(5) {
    transform: translatex(-234px);
  }
  .floating-menu.active .floating-nav li:nth-child(6) {
    transform: translatex(-263px);
  }
  .floating-menu .plus-icon {
    transform: rotate(0);
  }
  .floating-menu > .plus-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7.2rem;
    height: 7.2rem;
    font-size: 24px;
    line-height: 1;
    color: #FFFFFF;
    background: var(--purple);
    border-radius: 50%;
    transform: rotate(0);
    transition: all 0.5s ease;
    pointer-events: none;
    position: absolute;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .floating-menu > .floating-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  .floating-menu > .floating-nav li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    transition: all 0.5s ease;
  }
  .floating-menu > .floating-nav li span {
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
  }

  .floating-menu > .floating-nav .dashed-line{
    transform: rotate(90deg);
  }

  .typed-cursor {
    color: var(--purple);
  }
  
  /* Tooltip text */
  .custom-tooltip .tooltiptext {
    visibility: hidden;
    width: fit-content;
    white-space: nowrap;
    background-color: #555;
    color: #fff;
    padding: 1rem;
    border-radius: 6px;
    height: 40px;
    
    display: flex;
    align-items: center;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 0%;
    bottom: 100%;
    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  /* Tooltip arrow */
  .custom-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 46%;
    /* margin-left: -5px; */
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
    transform: rotate(0deg);
   
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .custom-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    max-width: 230px;
  }


  /* FOMO Tool Tip */

  .hero-section .content .left-side .tooltipi {
    cursor: pointer;
    /* font-weight: 600; */
    /* color: var(--text-blue);  */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.7rem;
    color: #363636;

    display: inline-block;
    position: relative;
    text-decoration: underline;
  }

  .hero-section .content .left-side .tooltipi .tipBox{
    position: absolute;
    bottom: 100%;
    max-width: 34rem;
    width: max-content;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #ffffff;
    border-radius: 1.6rem;
    padding: 3rem 2rem;

    transform-origin: bottom left;
    transform: scale(0);


    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.7rem;
    color: var(--dark-black);

    box-shadow: 0 25px 40px -20px var(--text-blue);
          
  }

  .hero-section .content .left-side .tooltipi .tipBox span{
    display: block;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    color: var(--text-blue);
  }

  

  .hero-section .content .left-side .tooltipi .tipBox img{
    height: 11.2rem;
    width: 15.9rem;
    margin: 0 auto;
  
  }

  .hero-section .content .left-side .tooltipi .tipBox button{
    width: 15rem;
    height: 4.2rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.8rem;
    border: none;
    background: #9048DC;
    border-radius: 10px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: var(--white);
  }

  .hero-section .content .left-side .tooltipi:hover .tipBox{
    transform: scale(1);
  }

  
  

  /* Fomo Tool Tip Ends */


  /* Header Nav Section Css Starts Here */
  .nav-header{
    padding-top: 1.6rem;
    padding-bottom: 3rem;
  }

  .nav-header .content{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .nav-header .content .logo img{
    max-height: 3.5rem;
  }

  .nav-header .content  .header-buttons{
    max-width: 28.2rem;
    width: 100%;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-top: 1rem;
    padding-bottom: 1.2rem;
    background: linear-gradient(264.33deg, #F1DFFF 7.26%, #FFFFFF 98.54%);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 1.2rem 1.2rem 0.8rem 0.8rem;
  }


  .nav-header .content  .header-buttons .comming-soon{
      display: block;
      height: 4.6rem;
      width: 100%;
      border-radius: 1rem;

      background: var(--purple);

      font-family: 'Poppins';
      font-style: normal;
      font-weight: 600;
      font-size: 1.7rem;
      line-height: 2rem;
      text-transform: uppercase;
      color: #FFFFFF;

      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.8rem;
      padding: 0.6rem;
      white-space: nowrap;


  }

  .nav-header .content  .header-buttons .comming-soon img{
    height: 100%;
    object-fit: contain;
  }


  .nav-header .content  .header-buttons .group-btns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;

    margin-top: 1rem;
  }

  .nav-header .content  .header-buttons .group-btns .app-g-store{
    display: inline-block;
    height: 4rem;
    width:100%;
    border-radius: 0.7rem;

    background: #0C0D10;
    mix-blend-mode: normal;
    border: 1px solid #A6A6A6;

    display: flex;
    align-items: center;
    gap: 0.67rem;

    padding: 0.8rem 0.5rem;

  }

  .nav-header .content  .header-buttons .group-btns .app-g-store .text h2{
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.2rem;
    color: #FFFFFF;
  }

  .nav-header .content  .header-buttons .group-btns .app-g-store .text h1{
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: #FFFFFF;
  }

  /* Header Nav Section Css Ends Here */



/* Hero Section Starts Here */
.hero-section .content{
  display: grid;
  /* grid-template-columns: minmax(0, 631px) 517px; */
  grid-template-columns: minmax(0, 631px) 412px;
  justify-content: space-between;
  column-gap: 5rem;
  row-gap: 30px;
  min-height: auto;
}

.hero-section .content .left-side h1{
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 3rem;
  line-height: 4.5rem;
  letter-spacing: 0.02em;
  
  color: var(--text-blue);
  margin-bottom: 1.4rem;
  width: 116%;

  min-height: 14rem;


  transform: translateY(-3rem);
}

.hero-section .content .left-side h1 .Italicise{
  font-style: italic;
  color: var(--text-blue);
}

.hero-section .content .left-side h1 .gradient,
.hero-section .content .left-side h1 .selected{
  font-weight: 600;
  color: #ffffff;
  background: var(--purple);
  padding: 0 3px;

  border-radius: 5px;
}


.hero-section .content .left-side p{
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: #363636;
}

.hero-section .content .left-side p .selected{
  color: #ffffff;
  background: var(--purple);
  padding:0 2px;
  font-weight: 600;
  border-radius: 5px;
}

.hero-section .content .left-side p .bold{
  font-weight: 600;
  /* text-decoration: underline; */
  text-underline-offset: 3px;
}

.hero-section .content .left-side p .italic{
  font-style: italic;
}

.mt-40{
  margin-top: 4rem;
}
.mt-10{
  margin-top: 1rem;
}

.hero-section .content .right-side{
  position: relative;
}

.hero-section .content .right-side .image{
  max-height: 26rem;
}


.hero-section .content .right-side .image img{
  height: 100%;
  width: 100%;
  object-fit: contain;
} 

.hero-section .content .right-side .swiper-slide{
  display: flex;
  justify-content: center;
}

/* .hero-section .content .swiper-pagination-wrapper{
  display: flex;
  justify-content: flex-end;
  margin-right: 35.5%;
} */

.hero-section .content .swiper-pagination-wrapper .swiper-pagination{
  position: unset;
  /* display: inline-block;
  width: fit-content; */
  margin-top: 2rem;
}

.hero-section .content .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet{
  height: 0.56rem;
  width: 2.8rem;
  border-radius: 1px;

}

.hero-section .content .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background: var(--purple);
}

.hero-section .content .right-side .slider-cards .swiper-slide{
  width: 100% !important;
  height: unset;
}

.hero-section .content .right-side .slider-cards .swiper-slide .card-wrapper{
  height: 100%;
  align-items: center;
}

/* Hero Section Ends Here */


/* Text Animation Content */
/* .text-wrapper{
    width: 20rem;
    height: 4.8rem;
    display: inline-block;
    overflow: hidden;
} */


/* Text Animation Content Ends */


/* Signup Section Starts Here */
.signup-section{
  padding-bottom: 3rem;
  overflow: hidden;
}

.signup-section .label{
  margin-bottom: 1rem;
}

.signup-section .label,
.signup-section #country-name{
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: var(--text-blue);
}


.signup-section .fields{
  display: grid;
  grid-template-columns: minmax(0, 504px) 160px;
  gap: 1rem;
}

.signup-section .fields .email-field{
  position: relative;
}

.signup-section .fields .email-field .feedback{
  position: absolute;
  top: 112%;

  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.4rem;

}

.signup-section .fields input{
  height: 5.2rem;
  width: 100%;
  border-radius: 7px;

  background: #FFFFFF;
  border: 1px solid #CAC9C9;
  padding: 1.4rem 1.6rem;

  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #363636;
}

.signup-section .fields input::placeholder{
  color: #B6B6B6;
}

.signup-section .fields .sign-up-btn{
  height: 5.2rem;
  width: 100%;
  border-radius: 1rem;
  background: var(--purple);

  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8rem;
  letter-spacing: 0.3px;
  color: #FFFFFF;
  border: none;
}

.signup-section .valid-feedback,
.signup-section .invalid-feedback{
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2.1rem;
}

/* Signup Section Ends Here */



/* Footer Section Starts Here */
.footer-section{
  background: linear-gradient(90deg, rgba(144, 72, 220, 0.4) -1.15%, rgba(144, 72, 220, 0.2) 100%);
}

.footer-section .content{
  min-height: 4.7rem;

  display: grid;
  grid-template-columns: 102px minmax(0, 272px) 256px;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

.footer-section .content .links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.9rem;
}

.footer-section .content .links a{
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #363636;
}


.footer-section .content .copywrite{
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #363636;
}


.was-validated .form-control:invalid{
  border: 1px solid #CAC9C9;
  background: #ffffff;
}


/* Success Model Starts Here */

#successModel .modal-content{
  /* background-image: url(../images/icons/model-bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat; */

  background: #ffffff;
  min-height: 370px;
  border-radius: 2rem;
  overflow: hidden;
  border: none;
}


#successModel .modal-content .btn-close {
  background-image: url(../images/icons/cross-icon.svg);
  height: 24px;
  width: 24px;
  background-size: 24px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 1.4rem;
  background-color: #fff;
  opacity: 0.6;
}

#successModel .modal-content .btn-close:hover {
  opacity: 1;
}

#successModel .modal-content .modal-header{
  border: none;
  position: relative;
  min-height: 16rem;
  align-items: baseline;
  background-image: url(../images/icons/success.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#successModel .modal-content .modal-header img{
  max-height: 3.5rem;
}

#successModel .modal-content .modal-body{
  padding: 2rem 4rem 3rem 4rem;
  text-align: center;
}

#successModel .modal-content .modal-body h1,
#successModel .modal-content .modal-body p{
  font-family: 'Poppins';
  font-style: normal;
  
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #323232;
}

#successModel .modal-content .modal-body h1{
  font-weight: 700;
}

#successModel .modal-content .modal-body p{
  font-weight: 400;
}

#successModel .modal-content .modal-body .btn{
  margin-top: 5.4rem;

  height: 5.2rem;
  width: 16rem;
  border-radius: 1rem;
  background: #9048DC;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8rem;
  letter-spacing: 0.3px;
  color: #FFFFFF;
}

#successModel .modal-content .modal-body .done-btn{
  height: 4.2rem;
  width: 12rem;
  border-radius: 1rem;
  background: #9048DC;

  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8rem;
  letter-spacing: 0.3px;
  color: #FFFFFF;
  border: none;
}

/* Success Model Starts Here */

@media (min-width: 576px){
  .modal-dialog {
      max-width: 361px;
      margin: 1.75rem auto;
  }
}



  @media (min-width: 1860px){
    .hero-section .content .left-side h1{
      font-size: 3.2rem;
      line-height: 3.8rem;
    }
  }
  


/*Media Queries*/

@media(max-width: 1250px){
  .floating-menu {
    left: 92% !important;
    right: unset;
  }
}

@media(max-width: 1080px){
  .hero-section .content {
    grid-template-columns: 100%;
    margin-bottom: 3rem;
  }

  .hero-section .content .right-side .slider-cards .card-wrapper {
    justify-content: center;
  }
 
  .hero-section .content .right-side{
    max-width: 632px;
    margin: auto;
  }

  .signup-section {
      padding-bottom: 5rem;
  }

  

  

  .hero-section .content .left-side h1 {
    width: 100%;
    max-width: 710px;
    transform: translate(0);
  }

  .hero-section .content .left-side p {
    max-width: 521px;
  }

  .hero-section .content .right-side .image {
    max-height: 330px;
  }

  .floating-menu-wrapper {
    height: 7.5rem;
    /* overflow: hidden; */
  }


  .floating-menu {
    bottom: 0;
    position: sticky;
    top: 0;
    right: 0;
  }
}

@media(max-width: 991px){
    html{
    font-size: 55%;
    }

    

}



@media(max-width: 672px){
  

  .signup-section {
    margin-top: 47px;
  }

  .footer-section .content .logo{
    grid-area: logo;
  }
  .footer-section .content .links{
    grid-area: links;
    justify-content: flex-end;
  }
  .footer-section .content .copywrite{
    grid-area: copywrite;
    text-align: right;
  }

  .footer-section .content {
    display: grid;
    grid-template-columns: 105px 1fr;
    grid-template-areas:"logo links"
                        ". copywrite" ;
    row-gap: 20px;  
    padding: 22px 0;  
  }



}

@media (max-width: 540px){
  .hero-section .content .left-side .tooltipi .tipBox {
    right: 0;
    left: unset;
  }
}




@media(max-width: 520px){
  .signup-section .fields {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .fields .email-field .valid-feedback, 
  .signup-section .fields .email-field .invalid-feedback {
    position: unset;
  }
}


@media (max-width: 425px){
  .hero-section .content .left-side .tooltipi .tipBox {
    left: 0;
    right: unset;
  }
  .footer-section .content {
    display: grid;
    grid-template-columns: 105px 1fr;
    grid-template-areas:"logo links"
                        "copywrite copywrite" ;
    row-gap: 20px;
    padding: 22px 0;
  }
  .footer-section .content .copywrite{
    font-size: 12px;
    line-height: 20px;
    text-align: center;
  }
} 



@media(max-width: 420px){
  .nav-header .content .header-buttons {
    max-width: 171px;
    width: 100%;
  }

  .nav-header .content .header-buttons .comming-soon {
    gap: 0.8rem;
  }

  .nav-header .content .header-buttons .comming-soon {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.305087px;
  }

  .nav-header .content .header-buttons .group-btns {
    gap: 8.5px;
  }

  .nav-header .content .header-buttons .group-btns .app-g-store{
    padding: 4px;
    gap: 4px;
    height: 24.22px;
  }
  .nav-header .content .header-buttons .group-btns .app-g-store .text h2 {
    font-weight: 400;
    font-size: 0.6rem;
    line-height: 0.9rem;
    color: #FFFFFF;
    white-space: nowrap;
  }

  .nav-header .content .header-buttons .group-btns .app-g-store .text h1 {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1rem;
    color: #FFFFFF;
    white-space: nowrap;
  }

  .nav-header .content .header-buttons .group-btns .app-g-store img{
    height: 70%;
    width: 70%;
  }



  .hero-section .content .left-side h1 {
    font-weight: 500;
    font-size: 3rem;
    line-height: 3.6rem;
    margin-bottom: 28px;
  }


  .signup-section .label {
    font-size: 16px;
    line-height: 24px;
  }

  .signup-section {
    padding-bottom: 5rem;
  }

  .footer-section .content {
    display: grid;
    grid-template-columns: 105px 1fr;
    grid-template-areas:"logo links"
                        "copywrite copywrite" ;
    row-gap: 20px;  
    padding: 22px 0;  
  }
  
  .footer-section .content .links {
    /* flex-direction: column; */
    /* justify-content: unset; */
    align-items: unset;
    gap: 10px;
  }

  .footer-section .content .logo{
    margin-bottom: 0;
  }

  .footer-section .content .logo img,
  .nav-header .content .logo img{
    height: 42px;
  }

  .footer-section .content .logo img{
    width: 10rem;
  }

  .nav-header .content .logo{
    padding-top: 1rem;
  }

  .footer-section .content .links{
    margin-bottom: 0;
    flex-wrap: wrap;
  }

  .footer-section .content .links a {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
  }

  .footer-section .content .copywrite{
    font-size: 12px;
    line-height: 20px;
  }

  .hero-section .content .left-side .tooltipi .tipBox {
    left: 0;
    right: unset;
  }

  

}

@media (max-width: 393px){
  .hero-section .content .left-side .tooltipi .tipBox {
    left: -250%;
    right: unset;
  }
}




@media (max-width: 375px){
  
  .hero-section .content .left-side .tooltipi .tipBox {
    right: 0;
    left: unset;
  }


  .floating-menu.active .floating-nav li:nth-child(1) {
    transform: translatex(-66px);
  }

  .floating-menu.active .floating-nav li:nth-child(2) {
    transform: translatex(-100px);
  }

  .floating-menu.active .floating-nav li:nth-child(3) {
    transform: translatex(-139px);
  }

  .floating-menu.active .floating-nav li:nth-child(4) {
    transform: translatex(-178px);
  }

  .floating-menu.active .floating-nav li:nth-child(5) {
    transform: translatex(-198px);
  }

  .floating-menu.active .floating-nav li:nth-child(6) {
    transform: translatex(-218px);
  }

}

@media (max-width: 360px){
  .hero-section .content .left-side .tooltipi .tipBox {
    right: 0;
    left: unset;
  }
}



@media (max-width: 333px){
  .hero-section .content .left-side .tooltipi .tipBox {
    left: 0;
    right: unset;
  }
}








