/*-------------------------------------------------------
    color, font and variables setup
    ----------------------------------------------------*/

:root {
    --c-primary: rgb(186,255,57);
    --c-secondary: rgb(164,249,47);
    --c-dark: rgb(6,7,2);
    --c-light:rgb(255,255,255);
}

*{
    box-sizing: border-box !important;
}

body{
    font-family: 'Inter', sans-serif !important;
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--c-light) !important;
    display: grid;
}


a{
    text-decoration: none !important;
    color: var(--c-light) !important;
}

a:hover{
    color: var(--c-light) !important;
}

.section-padding{
    padding-top: 120px;
    padding-bottom: 120px;
}

img{
    max-width: 100% !important;
    height: auto !important;
}

p{
    color: var(--c-dark)!important;
    text-align: justify;
    /* font-color:var(--c-dark)!important; */
}

@media(max-width:990px){
    .p {
        color: var(--c-dark)!important;
    }
}


h1{
    font-weight: 900 !important;
    font-size: 2.75rem;
}

h3{
    font-weight: 900 !important;
    font-size: 2.75rem;
}

h2{
    font-family: 'Montserrat' !important;
    font-weight: 600 !important;
}

.dropdown-item:hover{
    color: var(--c-dark) !important;
}

.normal-link{
    color: blue !important;
    text-decoration: underline !important;
}

.normal-link:hover{
    color: blue !important;
    text-decoration: underline !important;
}

li{
    text-align: justify !important;
}




/*-------------------------------------------------------
    button css setup
    ----------------------------------------------------*/
.btn{
    border: 1px solid;
    color: var(--c-light) !important;
    width: 80px !important;
    font-size: 12px !important;
}



.btn-primary{
    background-color: var(--c-dark) !important;
    border-color: var(--c-dark) !important;
}

.btn-primary:hover{
    color: var(--c-light) !important;
}

.btn-sm {
    height: 35px !important;
    text-align: center !important;
  }

@media(max-width:990px){
    .btn-sm{
        margin-right: 18px !important;
    }
}




/*-----login page btn-------*/

.btn1{
    border: none;
    outline: none;
    height: 50px;
    width: 100%;
    background-color: var(--c-dark);
    color: var(--c-dark);
    font-weight: bold;
}

.btn1:hover{
    background: var(--c-secondry);
    border: 1px solid;
    color: var(--c-dark);
}


/*-----buy page btn-------*/

.btn2{
    border: none;
    outline: none;
    height: 50px;
    width: 100px;
    background-color: var(--c-dark);
    color: var(--c-dark) !important;
}

.btn2:hover{
    color: var(--c-secondry) !important;
}

/*-----nav bar btn-------*/

.btn3{
    border: none;
    outline: none;
    height: 40px;
    width: 80px;
    background-color: var(--c-dark);
    color: var(--c-dark) !important;
    font-weight: 600;
}

.btn3:hover{
    color: var(--c-secondry) !important;
}

/*-----cooming soon page btn-------*/

.btn4{
    border: none;
    outline: none;
    height: 40px;
    width: 140px;
    background-color: var(--c-dark);
    color: var(--c-light) !important;
    font-weight: 600;
}

.btn4:hover{
    color: var(--c-secondry) !important;
}

.btn5 {
    width: 9em !important;
    height: 3em;
    font-size: 15px;
    font-family: inherit;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 6px 6px 12px #c5c5c5,
                -6px -6px 12px #ffffff;
   }
   
   .btn5::before {
    content: '';
    width: 0;
    height: 3em;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #0fd850 0%, #f9f047 100%);
    transition: .5s ease;
    display: block;
    z-index: -1;
   }
   
   .btn5:hover::before {
    width: 9em;
   }


   .button {
    height: 50px;
    width: 200px;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    border: 2px solid #252525;
    overflow: hidden;
    border-radius: 30px;
    color: #333;
    transition: all 0.5s ease-in-out;
  }
  
  .btn-txt {
    z-index: 1;
    font-weight: 800;
    letter-spacing: 4px;
    color: black;
  }

  .btn-txt:hover{
    color:white
  }
  
  .type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #333;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
  }
  
  .button:hover {
    color: #fff !important;
    border: none;
  }
  
  .type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
  }

/*-------------------------------------------------------
    navbar css setup
    ----------------------------------------------------*/
.navbar{
    font-family:var();
    font-size: 20px;
    font-weight: 600;
    background-color: var(--c-dark) !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
    height: 89px;

}

.dropdown-menu{
    background-color: var(--c-dark) !important;
}

.navbar-toggler-icon{
    background-color: var(--c-light) !important;
}

.navbar-nav{
    background-color: var(--c-dark) !important;
}



/*-------------------------------------------------------
    searchbar css setup
    ----------------------------------------------------*/

.card {
    width: 60% !important;
	border: none !important;
	border-radius: 10px !important;
    padding: 10px !important;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    background-color: var(--c-light) !important;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
}

@media(max-width:990px){
    .card{
        width:90% !important;
    }
}

.form-control{
    border: none !important;
    margin-right: 10px !important;
}

input.form-control:focus{
	box-shadow: none !important;
	letter-spacing: 1px !important;
}

.table{
    width:50% !important;
    margin-top: 10px;

}

/*-------------------------------------------------------
    search result table css setup
    ----------------------------------------------------*/


.box1{
    width:60% !important;
}

@media only screen and (max-width: 990px) {
    .box1 {
      width: auto !important;
    }
  }

.ta:hover{
    background-color: rgb(236,236,236);
}

@media(max-width:990px){
    .ta{
        padding-bottom: 30px !important;
        font-size: 16px;
        border: 1px solid var(--c-dark); 
    }

    .badge{
        margin-right: 20px;
    }
}

.result{
    margin-left: 10px;
}

/*-------------------------------------------------------
    loggin page css setup
    ----------------------------------------------------*/
.log{
    color: blue !important;

}

/*-------------------------------------------------------
    dashboard css setup
    ----------------------------------------------------*/
.bg-cl{
    background-color: var(--c-light);
}
  
  .rounded-full {
    border-radius: 100%;
  }
  
  #wrapper {
    overflow-x: hidden;
  }
  
  #sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    -webkit-transition: margin 0.25s ease-out;
    -moz-transition: margin 0.25s ease-out;
    -o-transition: margin 0.25s ease-out;
    transition: margin 0.25s ease-out;
  }
  
  #sidebar-wrapper .sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
  }
  
  #sidebar-wrapper .list-group {
    width: 15rem;
  }
  
  #page-content-wrapper {
    min-width: 100vw;
  }
  
  #wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
  }
  
  #menu-toggle {
    cursor: pointer;
  }
  
  .list-group-item {
    border: none;
    padding: 20px 30px;
  }
  
  .list-group-item.active {
    font-weight: bold;
    border: none;
  }
  
  @media (min-width: 768px) {
    #sidebar-wrapper {
      margin-left: 0;
    }
  
    #page-content-wrapper {
      min-width: 0;
      width: 100%;
    }
  
    #wrapper.toggled #sidebar-wrapper {
      margin-left: -15rem;
    }

  }


  @media (max-width: 768px) {
    .dash-col{
        text-align: right;
        
      }

    .dash-menu{
        width: fit-content;
        margin-left: auto;
        text-align: end;
      }
  }
  
/*-------------------------------------------------------
    footer css setup
    ----------------------------------------------------*/

.list-group-item {
    background-color: var(--c-primary) !important;
  }

/*-------------------------------------------------------
    homepage css setup
    ----------------------------------------------------*/


.card1 {
    border-radius: 10px;
    filter: drop-shadow(0 5px 10px 0 #ffffff);
    width: 400px !important;
    height: 350px;
    background-color: #3B3B3B;
    padding: 20px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: 0.6s ease-in;
    margin-top: 10px !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  }
  
  .card1::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -15px;
    right: -15px;
    background: var(--c-dark);
    height:370px;
    width: 25px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
  }
  
  .card1:hover::before{
      transition-delay:0.2s ;
  
    transform: scale(40);
  }
  
  .card1:hover{
      color: #ffffff;
  
  }

  .card1 h4{
    display: flex;
    justify-content: center;
    color: #ffffff;
  }

  
  .card1 p{
      padding: 20px 20px;
      color: #ffffff !important;
  }

  @media(max-width:490px){
    .card1 {
        width: 80% !important;
        height: 100% !important;
    }
}


.link{
    text-decoration: underline !important;
}
.link:hover{
    color: blue !important;
}

.slogan-first{
  border-top: 1px solid blue;
  border-bottom: 1px solid blue;
  padding-top: 20px;
  padding-bottom: 20px;
}

/*-------------------------------------------------------
    contactus page css setup
    ----------------------------------------------------*/

.contactform{
    padding: 10px;
    border: solid 1px black;
}

.form-input{
    border: solid 1px black !important;
}

/*-------------------------------------------------------
    faq section css setup
    ----------------------------------------------------*/


.accordion a {
    /* background-color: #E7E9E8; */
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    color: var(--c-dark) !important;
    font-size: 1.15rem;
    font-weight: 400;
  }
  .accordion a:hover,
  .accordion a:hover::after {
    cursor: pointer;
  }
 
  .accordion a::after {
    font-family: 'Ionicons';
    position: absolute;
    float: right;
    right: 1rem;
    font-size: 1rem;
    color: var(--c-dark) !important;
    padding: 5px;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
  }
  .accordion a.active::after {
    font-family: 'Ionicons';
  }
  .accordion .content {
    opacity: 0;
    padding: 0 1rem;
    max-height: 0;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
    clear: both;
    -webkit-transition: all 0.2s ease 0.15s;
    -o-transition: all 0.2s ease 0.15s;
    transition: all 0.2s ease 0.15s;
  }
  .accordion .content p {
    font-size: 1rem;
    font-weight: 300;
  }
  .accordion .content.active {
    opacity: 1;
    padding: 1rem;
    max-height: 100%;
    -webkit-transition: all 0.35s ease 0.15s;
    -o-transition: all 0.35s ease 0.15s;
    transition: all 0.35s ease 0.15s;
  }

  .accordion-item{
    border: none !important;
  }


  /*-------------------------------------------------------
    metaspace builder page css setup
    ----------------------------------------------------*/

.card2{
    width: 250px !important;
    height: 320px !important;
    background-color: var(--c-light) !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card2 h4{
    font-weight: 700;
}

.con-text{
    color: #498ac7;
    border-top: solid 1px;
    border-bottom: solid 1px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.card3{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    padding: 12px;
    height: 540px;
}

.card3-topic{
    text-align: center;
}

.card3-img img{
    height: 100% !important;
}

.normal-link{
    text-decoration: none !important;
    color: blue !important;
}


  /*-------------------------------------------------------
    blog pages css setup
    ----------------------------------------------------*/

.zoom:hover{
    transform: scale(1.1);
}

.topic-blog{
    font-size: 20px;
}

.key-des{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 10px;
  background: #e8fafc;
}

.slogn{
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    border: 1px solid black;
    padding: 15px;
    border-radius: 15px;
    background: ghostwhite;
    margin-top: 50px;
}


  /*-------------------------------------------------------
    process page css setup
    ----------------------------------------------------*/

.card-process{
    border: 1px solid;
    padding: 12px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

  /*-------------------------------------------------------
    buy page css setup
    ----------------------------------------------------*/
      
      .input {
        min-height: 50px;
        max-width: 250px;
        padding: 0 1rem;
        color: #fff;
        font-size: 15px;
        border: 1px solid #5e4dcd;
        border-radius: 6px 0 0 6px;
        background-color: transparent;
      }
      
      .button--submit {
        min-height: 50px;
        padding: .5em 1em;
        border: none;
        border-radius: 0 6px 6px 0;
        background-color: #5e4dcd;
        color: #fff;
        font-size: 15px;
        cursor: pointer;
        transition: background-color .3s ease-in-out;
      }
      
      .button--submit:hover {
        background-color: #5e5dcd;
      }
      
      .input:focus, .input:focus-visible {
        border-color: #3898EC;
        outline: none;
      }
      

      .lists {
        margin-bottom: 1.5rem;
        flex: 1 1 0%;
        /* color: rgba(156, 163, 175, 1); */
        color: #5a5bc8;
      }
      
      .lists .list {
        margin-bottom: 0.5rem;
        display: flex;
        margin-left: 0.5rem
      }
      
      .lists .list svg {
        height: 1.5rem;
        width: 1.5rem;
        flex-shrink: 0;
        margin-right: 0.5rem;
        color: rgba(167, 139, 250, 1);
      }

      .list{
        justify-content: center;
      }