/* fonts */
/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@700&family=Lobster&family=Merriweather:ital,wght@1,700&family=Montserrat:wght@700&family=Unica+One&display=swap");

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background-color: #555;
}

:root {
  --sj-white: #fff;
  --sj-light: #f8fafc;

  --sj-mid-white: #fafcfc;
  --sj-light-gray: #f4f5f6;
  --sj-mid-light: #d9d9d9;
  --sj-mild-light: #f7f8f9;

  --sj-black: #000;
  --sj-dark: #1a1d21;
  --sj-teal: #159383;
  --sj-success: #1db469;
  --sj-teal-dark: #065a50;
  --sj-neutral-gray: #88908f;
  --sj-orange: #fc8e28;
  --sj-btn-padding: 18px 50px;
  --sj-btn-padding-sm: 9px 25px;
  --sj-btn-border-radius: 30px;
  --sj-f-8: 8px;
  --sj-f-10: 10px;
  --sj-f-12: 12px;
  --sj-f-14: 14px;
  --sj-f-16: 16px;
  --sj-f-18: 18px;
  --sj-f-20: 20px;
  --sj-f-24: 24px;
}

p,
div,
button,
a,
input {
  /* font-family: inter, Arial, Helvetica, sans-serif; */
  font-family: Montserrat, "Arial Narrow Bold", Haettenschweiler,
    "Arial Narrow Bold", sans-serif !important;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family:inter, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
  font-family: Montserrat, "Arial Narrow Bold", sans-serif, Impact,
    Haettenschweiler;
}

.orange-btn {
  background: var(--sj-orange, #fc8415);
}

/* .form-control:focus {
  box-shadow: 0px 0px 8px #fff !important;
  border: none;
}
.form-select:active {
  border: none;
  box-shadow: 0px 0px 8px #fff !important;
}

.form-select:focus-visible {
  box-shadow: 0px 0px 8px #fff !important;
  border: none !important;
  outline: none !important;
} */

body {
  position: relative;
  overflow-x: hidden;
}
.animate__animated.animate__bounceInLeft {
  --animate-duration: 1s;
}
.animate__animated.animate__bounceInRight {
  --animate-duration: 2s;
}

.rotating {
 
  animation: rotateAnimation 2s linear infinite;
}
.ls-ctn{
  position: relative;
  width: max-content;
}
.star{
  color: var(--sj-orange) ;
  position: absolute;
  
}
.star-1{
  font-size: 12px;
  right: 0;
  top: -9px;
}
.star-2{
  font-size: 8px;
  right:6px;
  top: -12px;
}
.star-3{
  font-size: 8px;
  font-size: 8px;
  right: -4px;
  top: -12px;
}
.star-1 {
  animation: pulse 2.15s infinite ease-in-out;
}

.star-2 {
  animation: pulse 2s infinite ease-in-out;
}

.star-3 {
  animation: pulse 2.5s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.15);
      opacity: 0.5;
  }
}

@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



.left-ctn {
  background-color: var(--sj-light);
  padding: 0 2em;
  border-radius: 30px;
}

.right-ctn {
  background: linear-gradient(to left, #062f39, #5b874b);
  position: relative;
}

.waitlist-nav-logo {
  max-width: 80px;
  margin: 1rem;
  margin-left: 0;
}

.launching-soon {
  color: #020617;
  font-size: 12px;
  background-color: #e2e8f0;
  padding: 0.5em 0.75em;
  border-radius: 8px;
  font-weight: 600;
}
.left-main-content {
  margin-top: 2em;
}

.waitlist-header {
  font-size: 44px;
  font-weight: 600;
}
.waitlist-header span {
  color: var(--sj-orange);
}
.waitlist-subheader {
  color: var(--sj-neutral-gray);
  font-size: 20px;
  padding-right: 10em;
  font-weight: 500;
}
.join-waitlist-form .form-label {
  color: #020617;
  font-weight: 600;
}

.radio-group {
  position: relative;
}

.custom-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-radio + label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  line-height: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.custom-radio + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--sj-teal);
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
}

.custom-radio:checked + label:before {
  border-color: var(--sj-teal);
  background: var(--sj-teal);
}

.custom-radio:checked + label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

/* .custom-radio:focus + label:before {
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.3);
} */
.join-email-input {

  width: 275px;
}
.join-email-input,
.join-email-input:active,
.join-email-input:focus-visible,
.join-email-input:focus {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--sj-black);
  padding: 0.5em 2.5em 1em 1em;
  outline: none;
  box-shadow: none;
 
}
.join-email-input:active,.join-email-input:focus-visible{
  
}

.wait-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border-radius: 30px;
  height: 50px;
  padding-left: 1em;
  padding-right: 3px;
  padding-top: 1em;
  padding-bottom: 1em;
  color: #fff;
  border: none;
  background-color: var(--sj-teal);
  cursor: pointer;
}
.wait-btn:disabled {
  cursor: not-allowed;
  
}

/* .wait-btn:hover{
  background-color: var(--sj-neutral-gray);
  transition: 0.25s ease-in-out;
} */
.wait-btn:focus{
 border: none;
 box-shadow: none;
 outline: none;
}
.arrow-right {
  color: #fafcfc;
  font-size: 44px;
  margin-top:2px;
  margin-left: 4px;
}

.waitlist-footer {
 
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #334155;
  width: 90%;
  margin-top: 0.75em;
}

 .socials h6 {
  color: #334155;
}
.socials a {
  color: #065A50;

}
.socials a i{
  color: #065A50;

}


.socials i {
  
  margin-right: 14px;
  font-size: 24px;
}
.socials i:hover {
  box-shadow: 0 2px 0 0 #000;
 transition: 0.25s ease-in-out ;

}
.woman-img {
  position: absolute;
  bottom: 0;
  left: 15%;

  height: 60%;
  max-width: 100%;
}
.student-img {
  position: absolute;
  top: 0;
  right: 5%;
z-index: 9999999;
  height: 20%;
  max-width: 100%;
}

/* .woman-img {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 70%;
  max-width: 100%;
  object-fit: contain;
} */

.floating-box-3 .float-left {
  position: relative;
}
.online-ellipse{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  border-radius: 50px;
  border: 2px solid #fff;
}


.floating-box-1,
.floating-box-2,
.floating-box-3,
.floating-box-4 {
  background-color: rgba(256, 256, 256, 0.8);
  margin: 1em;
  display: flex;
  flex-direction: column;
  width: fit-content;
  border-radius: 12px;
  padding: 1em ;
  z-index: 999 !important;
  

}

.floating-box-1{
  position: absolute;
  top: 15%;
  right: 13%;

 
}
.floating-box-2{
  position: absolute;
  top: 37%;
  left: 10%;

 
}
.floating-box-3{
  position: absolute;
  bottom: 17%;
  left: 3%;

 
}
.floating-box-4{
  position: absolute;
  bottom: 17%;
  right: 3%;

 
}


.float-flext img, .float-left i {
  font-size: 20px;
  height: 24px; 
  width:24px;
  color: #fff;
}

.floating-box-1 .float-left img{
  width: 70%; 
  margin-right: 0 !important;
  
}
.float-left{
  margin-right: 15px;
}
.floating-box-1 .float-left {
  
  margin-right: 0 !important;
  
}
.floating-box-1 {
  color: var(--sj-teal);
}
.floating-box-1 span{
  color: var(--sj-orange);
}
.floating-box-3 .join-now-btn{
  background: linear-gradient(to left,#FFC796,#FF6B95) ;
  padding: 0.5em;
  margin-top: 0.25em;
  font-size: 10px;
  color: #fff;
  border-radius: 30px;
}
.floating-box-2 .float-left, .floating-box-4 .float-left{
  background-color: var(--sj-orange);
  padding:0.125em 0.5em;
  margin-right: 15px;
  border-radius: 8px;

}

.waitlist-ctn .header{
  font-weight: 600;
  
}
.waitlist-ctn .text{
  font-weight: 400;
  font-size: 12px;

}

.circle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Adjust spacing between circles */
}

.circle {
  border-radius: 50%;
 
}

.circle-1 {
  width: 52px;
  height: 48px;
  background: linear-gradient(to right, #D4FC79, #96E6A1);
  position: absolute;
  top :30%;
  right: 20%;
}

.circle-2 {
  width: 30px;
  height: 30px;
  background: linear-gradient(to left, #D4FC79, #96E6A1);
  position: absolute;
  top :30%;
  right: 50%;
}

.circle-3 {
  width: 18px;
  height: 18px;
  background: linear-gradient(to left, #FFB199, #FF0844);

  position: absolute;
  top :20%;
  right: 60%;
}

.circle-4 {
  width: 8px;
  height: 8px;
  background: #F3A268;
  position: absolute;
  bottom: 10%;
  left: -10%
}

.circle-5 {
  width: 8px;
  height: 8px;
  background: #F3A268;
  position: absolute;
  top :5%;
  right: 65%;
 
}
.circle-6 {
  width: 8px;
  height: 8px;
  background: #F3A268;
   position: absolute;
  bottom: 28%;
  left: -3%
}
.circle-7 {
  width: 8px;
  height: 8px;
  background: #F3A268;
  position: absolute;
  bottom: 50%;
  left: -13%
}
.circle-8 {
  width: 8px;
  height: 8px;
  background: #F3A268;
  position: absolute;
  bottom: 60%;
  left: -10%
}
.circle-9 {
  width: 8px;
  height: 8px;
  background: #F3A268;
  position: absolute;
  bottom: 80%;
  left: 3%
}
.circle-10 {
  width: 8px;
  height: 8px;
  background: #F3A268;
  position: absolute;
  bottom: 90%;
  left: -10%
}
.circle-11 {

 
  position: absolute;
  bottom: 65%;
  left: 15%
}
.circle-11 img{

 
  width: 60px ;
  height: 60px;
}


.thumb{
  position: absolute;
  bottom: 55%;
  left: -13%;

}
.thumb-1{
  width: 8%;
  border-radius: 100px;
  position: absolute;
  bottom: 90%;
  left: -10%;

}
.thumb-2{
  position: absolute;
  bottom: 10%;
  left: -10%;

}
.thumb-3{
  position: absolute;
  bottom: 27%;
  left: -3%;
  width: 8%;
  border-radius: 100px;

}



/* .button-container {
  position: relative;
  overflow: hidden;
  width: 100%;  /* Adjust as needed} */


  .no-of-sub{
    margin-left: 8px;
    
  }
  .no-of-sub h6{
   font-weight: bold;

  }

  .avatars img{
    
  }
  .avat-2, .avat-3{
    margin-left: -25px;
  }
.wait-btn {
  /* Your existing button styles here */
  position: relative;
}
.wait-btn:active{
  border: none;

}

.roll-in {
  animation: rollIn 1.25s ease-out;
}

@keyframes rollIn {
  0% {
    transform: translateX(-235%) ;
   
  }
  100% {
    transform: translateX(0) ;
    opacity: 1;
  }
}
























/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}

/* Large devices (laptops/desktops, between 992px and 1199px) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.left-main-content {
  margin-top: 0.25em;
}

  .floating-box-4{
    position: absolute;
    bottom: 7%;
    right: 5%;
  
   
  }
  .waitlist-subheader {
   
    padding-right: 3em;
    font-size: 16px;
   
  }
  .woman-img {
    position: absolute;
    bottom: 0;
    left: 0;
  
    height: 40%;
    max-width: 100%;
  }
  .floating-box-3{
    position: absolute;
    bottom: 34%;
    
    right: 3%;
  
   
  }
  .floating-box-2{
    top: 35%;
      left: 45%;
    
     
    }
}

/* Medium devices (landscape tablets, between 768px and 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .floating-box-4{
    position: absolute;
    bottom: 7%;
    right: 5%;
  
   
  }
  .woman-img {
    position: absolute;
    bottom: 0;
    left: 0;
  
    height: 40%;
    max-width: 100%;
  }
  .floating-box-3{
    position: absolute;
    bottom: 34%;
    
    right: 3%;
  
   
  }
  .waitlist-header {
   
   
    font-size: 44px;
   
  }
  .waitlist-subheader {
   
    padding-right: 1.25em;
    font-size: 16px;
   
  }
  .left-ctn {
    padding: 0 1.25em;
  }
  .waitlist-footer{
    margin-top: 10px;
    align-items: center;
  }
}

/* Small devices (portrait tablets and large phones, between 600px and 767px) */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  
  .waitlist-subheader {
   
    padding-right: 1em;
    font-size: 16px;
   
  }
  .left-main-content {
    margin-top: 1.25em;
  }
  .socials i {
    color: #334155;
    margin-right: 18px;
    font-size: 24px;
  }
  .waitlist-footer{
    flex-direction: column;
    align-items:normal;
  }
  .rights{
    font-size: 14px;
    margin: 1em 0;
    color: #334155;
    
  }
  .waitlist-header {
    font-size: 32px;
    font-weight: 600;
  }
  .left-ctn {
    padding: 0 1.25em;
  }
  .email-ctn{
    
    flex-direction: column;
  }
  
  .join-email-input{
  
  width: auto;
}
 .email-ctn button{
    margin-top: 14px;
    width: fit-content;
  }
 

  .woman-img {
    position: absolute;
    bottom: 0;
    left: -0%;
  
    height: 40%;
    max-width: 100%;
  }
  .floating-box-1{
   
    top: 17%;
    right: 5%;
  
   
  }
  .floating-box-2{
  top: 35%;
    left: 5%;
  
   
  }
  .waitlist-footer{
    margin-top: 15px;
   
  }
  
  .floating-box-3{
    position: absolute;
    bottom: 37%;
    
    right: 3%;
  
   
  }
  .floating-box-4{
    position: absolute;
    bottom: 7%;
    right: 5%;
  
   
  }
  
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 575px) {
  .right-ctn{
    display: none;
  }
  .circle{
    display: none;
  }
  .waitlist-subheader {
   
    padding-right: 1.25em;
    font-size: 18px;
   
  }
  .left-main-content {
    margin-top: 0.5em;
  }
  .socials i {
    color: #334155;
    margin-right: 18px;
    font-size: 24px;
  }
  .waitlist-footer{
    flex-direction: column;
    align-items:normal;
  }
  .waitlist-footer{
    margin-top: 15px;
    
  }
  .rights{
    font-size: 14px;
    margin: 1em 0;
  }
  .waitlist-header {
    font-size: 31px;
    font-weight: 600;
  }
  .left-ctn {
    padding: 0 1em;
  }
  .email-ctn{
    
    flex-direction: column;
  }
  
  
  .join-email-input{
  
  width: auto;
}
 .email-ctn button{
    margin-top: 10px;
    margin-bottom: 5px;
    width: fit-content;
  }
 
}

@media only screen and (max-width: 376px) {
  .waitlist-subheader {
   
    padding-right: 0.5em;
    font-size: 18px;
   
  }
  .left-main-content {
    margin-top: 0.5em;
  }
  .socials i {
    color: #334155;
    margin-right: 14px;
    font-size: 20px;
  }
  .waitlist-footer{
    flex-direction: column;
    align-items:normal;
  }
  .waitlist-footer{
    margin-top: 15px;
  
  }
  .rights{
    font-size: 14px;
    margin: 0.25em 0;
  }
  .waitlist-header {
    font-size: 28px;
    font-weight: 600;
  }
  .left-ctn {
    padding: 0  1em;
  }
  .email-ctn{
    
    flex-direction: column;
  }
  
  .join-email-input{
  
  width: auto;
}
 .email-ctn button{
    margin-top: 14px;
    width: fit-content;
  }
 .form-label{
  margin-bottom: 0;
  margin-top: 0.35em;
  font-size: 0.75em;
 }
}