/* font-family: 'Jost', sans-serif; */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
   font-family: 'Jost', sans-serif; 
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   position: relative;
}
a , a:hover{
    text-decoration: none;
}
ul {
    padding: 0;
}
ul li {
    list-style: none;
}

input, button, textarea, select {
    font: inherit;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.inner {
    max-width: 1080px;
    margin: 0 auto;
    /* border: 2px solid red; */
}

img {
    width: 100%;
}
:root {
    --black: #000000;
    --grey: #514B4B;
    --dark-blue : #010851;
    --white : #FFFFFF;
    --light-blue: #ED8DFD;
}
/* ---------------------------------------------------------------------- */
/* navigation */
nav ul li {
    margin: 10px;
}
.menu ul li a {
    padding: 10px;
    /* border: 2px solid red; */
    border-radius: 10px 5px;
    color:var(--black);
    font-weight: 500;
}
.menu ul li a:hover {
    background: linear-gradient(135deg, #5961F9 0%, #EE9AE5 100%);
    box-shadow: 1px 4px 5px rgba(204, 204, 204, 0.211);
    color: var(--white);
}
.btn {
    width: 120px;
    height: 50px;
    border: 1px solid rgba(1, 8, 81, 0.1);
    border-radius: 10px;
    background-color: var(--white);
    color: var(--dark-blue);
    font-weight: 500;
    /* display: none; */
}
.btn:hover {
    background: linear-gradient(135deg, #5961F9 0%, #EE9AE5 100%);
    color: var(--white);
    box-shadow: 1px 4px 5px rgba(204, 204, 204, 0.211);
    cursor: pointer;
}

.right-menu ul li {
    margin: 0;
    margin-right: 10px;
}
.right-menu ul li  {
    /* display: none; */
}

.toggle {
   width: 50px;
   /* height: 50px; */
   background-color: var(--white);
   border: none;
   color: var(--white);
   font-size: 22px;
   border-radius: 15px;
   justify-content: center;
   align-items: center;
   padding: 10px;
   display: none;
   cursor: pointer;
}
.toggle img {
    width: 90%;
}
/* ---------------------------------------------------- */
.responsive-menu {
    position: absolute;
    background-color: var(--white);
    top: 0;
    left: 0;
    right: 30%;
    height: 100vh;
    display: none;
}
.responsive-menu ul {
  flex-direction: column;
  /* border: 5px solid red; */
  padding: 0;
}
.responsive-menu ul li {
    margin: 20px 0;
}
.responsive-menu ul li a {
    padding: 10px;
    border-radius: 10px 5px;
}
.responsive-menu ul li a:hover {
    background: linear-gradient(135deg, #5961F9 0%, #EE9AE5 100%);
    color: var(--white);
}

.responsive-menu .language {
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.responsive-menu .language img {
    width: 60%;
}
.responsive-menu  .btn {
    margin: 20px 22%;
}

.show {
    display: block;
}

/* ---------------------------------------hero section -------------- */

.hero-section {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #5961F9 0%, #EE9AE5 100%);
    border-radius: 48px 48px 300px 48px;
    padding: 10px;
}

.hero-txt {
width: 60%;
padding-left: 20px;
}
.hero-txt h2 {
font-weight: 700;
font-size: 50px;
line-height: 75px;
color: var(--white);
}
.hero-txt p {
font-weight: 400;
font-size: 18px;
line-height: 140%;
color: rgba(255, 255, 255, 0.8);
width: 93%;
}
.discound-btn{
    width: 165px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    background: transparent;
    color: var(--white);
    margin: 25px auto;

}
.discound-btn:hover {
    background-color: var(--white) !important;
    color:var(--dark-blue) !important;
}
.hero-img {
width: 40%;
}

/* ----------------------------------------- */
/* overview section start here  */
.overview-section {
    margin: 50px  auto;
}
.overview-heading {
    width: 24%; 
}
.overview-heading h2 {
font-weight: 700;
font-size: 48px;
line-height: 120%;
color: var(--dark-blue);
}
.overview-heading p {
font-weight: 400;
font-size: 16px;
line-height: 140%;
margin: 10px 0;
}



.overview-card {
    width: 23%;
    height: 400px;
    /* border: 1px solid blue; */
    background: #FFFFFF;
    box-shadow: 0px 10px 50px rgba(135, 0, 155, 0.08);
    border-radius: 48px;
    flex-direction: column;
    justify-content: center;
    padding: 5px 5px;
}
.card-img {
    width: 100%;
    height: 250px;
    /* border: 2px solid green; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-img img {
    width: 70%;
    /* border: 2px solid red; */
}
.card-info {
    /* border: 2px solid green; */
    width: 100%;
    padding-left: 20px;
}
.card-info  h4 {
    font-size: 24px;
    word-wrap: break-word;
    color: var(--dark-blue);
}
.card-2 {
    margin-top: 200px;
}
.card-2 img {
    width: 100%;
}


/* ------------------feature section start here ---- */
.feature-section {
    width: 100%;
    background: rgba(237, 128, 253, 0.08);
    padding: 50px 0;
}
.feature-inner {
 margin: 25px auto;
}

.feature-img {
    width: 50%;
}
.feature-img img {
    width: 90%;
}
.feature-txt {
    width: 50%;
}
.feature-txt h3 {
    font-weight: 700;
font-size: 48px;
line-height: 120%;
color: var(--dark-blue);
}
.feature-txt h3 span {
    color: rgba(221, 107, 126, 0.945);
}
.feature-txt p {
font-weight: 400;
font-size: 18px;
line-height: 140%;
margin: 15px 0;
color: var(--dark-blue);
}

.btn-purpal {
    width: 190px;
    height: 62px;   
    background: var(--light-blue);
    color: var(--white);
}
/* ----------------plann heading ------------------- */

.plan-heading {
    text-align: center;
    margin: 50px auto;
    width: 60%;
}
.plan-heading h2 {
font-weight: 700;
font-size: 48px;
line-height: 120%;
color: var(--dark-blue);
}
.plan-heading p {
    font-weight: 400;
font-size: 18px;
line-height: 140%;
margin: 15px  0;
}

.plan-time {
    width: 25%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

/* -------------------toggle css------------- */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(237, 141, 253, 0.2);
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 3px;
    bottom: 3px;
    background-color: #ED8DFD;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background: var(--dark-blue)
  }
    
  input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  .plan-time span {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
  }


  /* ----------------------------------- */
  /* pricing section start here ----------------------------- */
  .pricing-section {
      margin: 70px auto;
  }
  .price-card {
      width: 31%;
      text-align: center;
      background: #FFFFFF;
      box-shadow: 0px 10px 50px rgba(135, 0, 155, 0.08);
      border-radius: 48px;
      padding: 50px 25px;
  }
  .price-card h2 {
    font-weight: 700;
    font-size: 32px;
    color: var(--dark-blue);
  }
  .price-card p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    margin: 15px 0;
  }
  .price-card h1 {
    font-weight: 700;
    font-size: 80px;
    line-height: 116px;
    color: var(--light-blue);
    margin: 25px 0 50px 0;
  }
  .price-card h1 span  {
    font-weight: 400;
    font-size: 18px;
    color:var(--dark-blue);
  }
  .list-item {
      /* margin: 5px 0; */
      text-align: left;
      font-size: 18px;
  }
  .list-item p {
      font-size: 18px;
      margin: 8px 0;
  }
  .list-img {
       width: 25px;
       height: 25px;
       background: #39DC98;
      border-radius: 50%;
      justify-content: center;
      align-items: center;
  }
  .red {
     background: #FF0000;
  }
 .list-img img {
     width: 15px;
     height: 15px;
 }
 .list-info {
     width: 88%;
 }

 .join-btn {
    width: 190px;
    height: 62px;
    color: var(--light-blue);
    margin-top:50px;
    border: 1px solid rgba(237, 141, 253, 0.5);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    transition: 0.5s all ease-out;
 }
 .active {
     background: var(--light-blue);
     color: var(--white);
     box-shadow: 5px 20px 10px rgba(204, 204, 204, 0.217);
     transition: 0.5s all ease-out;
 }
 .join-btn:hover ,.active:hover {
     background: var(--dark-blue);
     color: var(--white);
     box-shadow: none;
 }
 /* -------------------------------------------------------- */
 .cta-section {
    background: linear-gradient(135deg, #5961F9 0%, #EE9AE5 100%);
    border-radius: 48px;
    margin: 70px auto;
    padding: 10px 25px;

 }
 .cta-txt {
     width: 55%;
 }
 .cta-txt h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 120%;
    color: var(--white);
 }
 .cta-txt p {
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
 }
 .cta-btn {
    width: 205px;
    height: 62px;
    background: var(--light-blue);
    color: var(--white);
    border-radius: 10px;
    border: none;
    font-size: 18px;
 }
 .cta-img {
     width: 40%;
 }
 /* -------------------------------------------------------------- */
 /* footer  */
 footer {
     background: var(--dark-blue);
     color: var(--white);
     padding: 50px 0;
 }
 .footer-container {
     align-items: flex-start;
 }
 footer img {
     width: 50%;
 }
 footer ul li a {
     color: rgba(255, 255, 255, 0.8);
 }
 footer ul li a:hover {
    color: var(--light-blue);
 }
 footer ul li {
     margin: 25px 0; 
 }

 footer p {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
 }
 .f-about  {
     width: 40%;
     position: relative;
 }
 .f-about p {
    font-weight: 400;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
 }
 .f-about input {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 240px;
    height: 62px;
    padding-left: 10px;
    border-radius: 10px;
    outline: none;
    color: var(--white);
 }
 .subscribe-btn {
    width: 178px;
    height: 62px;
    border-radius: 10px;
    background: var(--light-blue);
    position: absolute;
    left: 200px;
    border: none;
    cursor: pointer;
 }
 .f-platform {
     width: 10%;
     margin-top: 40px
 }
 .f-help{
     width: 20%;
     margin-top: 40px
 }
 .f-contact{
     width: 20%;
     margin-top: 40px
 }

 /* --------------------------- */

 @media (max-width:770px) {


    /* navigation  */
    nav {
        padding: 0px 10px;
    }
    nav ul li {
        margin: 5px;
    }
    .logo {
        width: 20%;
    }
    .menu {
        width: 50%;
    }
    .right-menu {
        width: 30%;
        justify-content: flex-end;
        /* border: 2px solid red; */
    }
    .right-menu ul li {
        margin-right: 5px !important;
    }

    /* ----hero-section -----  */
    .hero-section {
       width: 98%;  
    }
    .hero-txt {
        width: 48%;
        padding-left: 20px;
    }
    .hero-txt h2 {
        font-size: 33px;
        line-height: 50px;
    }
    .hero-txt p {
        font-size: 16px;
    }
    .hero-img {
        width: 45%;
    }
    /* ---------------overview section ----------- */
    .overview-section {
        width: 98%; 
        margin: 70px auto;
    }
    .overview-heading{
        width: 90%;
        text-align: center;
        margin: 10px auto;
        margin-bottom: 0px;     
    }
    .overview-heading h2 {
        font-size: 40px;
    }
    .overview-card  {
        width: 31%;
        margin-top: 0 !important;
    }
    .card-2 {
        margin-top: 200px !important;
    }
    /* ---------feature section ------------ */
    .feature-inner {
        width: 98%;
    }
    .feature-img {
        width: 48%;
    }
    .feature-txt {
        width: 45%;
    }
    .feature-txt h3{
        font-size: 30px;
    }
    /* -----------plan section -------------- */
    .plan-heading {
        text-align: center;
        margin: 50px auto;
        width: 60%;
    }
    .plan-heading h2 {
    font-size: 35px;
    }
    .plan-time {
        width: 40%;
    }

    /* --------pricing section -------------- */
    .pricing-section {
        width: 98%;
    }
    /* price card  */
    .price-card {
        width: 48%;
        margin-bottom: 20px;
    }
    .price-card-3 {
        width: 90%;
        margin: 0 auto;
    }
    /* ----------cta section --------- */
    .cta-section {
        width: 98%;
        padding: 50px 10px;
    }
    .cta-txt {
        width: 55%;
    }
    .cta-txt h2 {
        font-size: 30px;
     }
     .cta-txt p {
        font-size: 16px;
     }
    /* footer  */
    .footer-container {
      width: 95%;
    }
    .f-about {
        width: 48%;
    }
    .f-platform {
        width: 45%;
        text-align: right;
    }
    .f-help{
        width: 45%;
    }
    .f-contact{
        width: 45%;
        text-align: right;
    }


 }


 /* ----------------- for small devices ------------  */
 @media (max-width:430px) {


    /* navigation  */
    nav {
        padding: 0px 10px;
    }
    nav ul li {
        margin: 5px;
    }
    .logo {
        width: 35%;
    }
    .menu {
        display: none;
    }
    .right-menu ul li {
        display: none;
    }
    .right-menu .btn {
        display: none;
    }
    .toggle {
        display: block;
    }
   



    /* ----hero-section -----  */
    .hero-section {
       width: 98%;  
       height: auto;
       border-radius: 48px 48px 200px 48px;
       padding: 10px;
    }
    .hero-txt {
        width: 100%;
        padding-left: 20px;
        margin-top: 15px;
        order: 2;
    }
    .hero-img {
        width: 100%;
        order: 1;
    }
    /* ---------------overview section ----------- */
    .overview-section {
        width: 98%; 
        margin: 70px auto;
    }
    .overview-heading{
        width: 90%;
        text-align: center;
        margin: 10px auto;
        /* border: 2px solid red;   */

    }
    .overview-heading h2 {
        font-size: 35px;
    }
    .overview-card  {
        width: 95%;
        margin: 0 auto;
        height: auto;
        /* border: 2px solid red; */
        margin-top: 20px !important;
        padding: 25px 10px;
    }
    .card-img {
        height: auto;
        width: 80%;
    }
    .card-info {
        width: 100%;
    }    
    /* ---------feature section ------------ */
    .feature-inner {
        width: 95%;
    }
    .feature-img {
        width: 80%;
    }
    .feature-txt {
        width: 100%;
        text-align: right;
    }
    .feature-2 {
        width: 95%;
        margin: 50px auto;
    }
    .feature-2 .feature-txt {
        order: 1;
        text-align: left;
    }
    /* -----------plan section -------------- */
    .plan-heading {
        text-align: center;
        margin: 50px auto;
        width: 90%;
    }
    .plan-time {
        width: 45%;
    }

    /* --------pricing section -------------- */
    .pricing-section {
        width: 95%;
        /* border: 2px solid red; */
    }
    /* price card  */
    .price-card {
        width: 95%;
        margin: 20px auto;
    }
    /* ----------cta section --------- */
    .cta-section {
        width: 95%;
        padding: 50px 10px;
    }
    .cta-txt {
        width: 95%;
        text-align: center;
    }
    .cta-txt h2 {
        font-size: 30px;
     }
     .cta-txt p {
        font-size: 16px;
     }
     .cta-img {
         width: 80%;
         margin: 0 auto;
     }
    /* footer  */
    .footer-container {
      width: 95%;
    }
    .f-about {
        width: 100%;
        margin: 25px auto;
    }
    .f-platform {
        width: 45%;
        text-align: left;
    }
    .f-help{
        width: 45%;
    }
    .f-contact{
        width: 100%;
        text-align: left;
    }

 }


/* --------------for small devices ---------------- */
@media (max-width : 390px){
    nav {
        width: 95%;
        padding: 10px 0;
    }
    .logo {
        width: 35%;
    }
    .menu {
        display: none;
    }
    .toggle {
        width: 40px;
        display: block;
        padding: 10px;
    }

    .plan-time {
        width: 55%;
    }
    .f-about input {
        width: 60%;
     }
     .subscribe-btn {
        width: 40%;
        left: 200px;
     }

}
@media (max-width : 330px){
    .f-about input {
        width: 65%;
     }
     .subscribe-btn {
        width: 35%;
        left: 180px;
     }
}

