/*-------------------------------------------------------
    color, font and variables setup
    ----------------------------------------------------*/

:root {
    --font-base: "poppins", sans-serif;
    --c-primary: rgb(245,78,45);
    --c-secondry: rgb(232,232,232);
    --c-font: rgb(2,2,2);
    --c-light:rgb(255,255,255);
}

*{
    box-sizing: border-box !important;
}

body{
    font-family:var(--font-base) !important;
    line-height: 1.6 !important;
    background-color: var(--c-secondry) !important;
    display: grid;
}

.h1 .h2 .h3 .h4 .h5 .h6{
    font-weight: 600 !important;
}

p{
    font-size: 16px;
    color: var(--c-font);
}

a{
    text-decoration: none !important;
    color: var(--c-font) !important;
}

a:hover{
    color: var(--c-primary) !important;
}

.section-padding{
    padding-top: 120px;
    padding-bottom: 120px;
}

img{
    max-width: 100%;
    height: auto;
}


@media(max-width:990px){
    p {
        
        font-size: 16px !important;
    }
}

h2{
  font-weight: 600 !important;
  font-family: Comic Sans MS !important;
}

/*-------------------------------------------------------
    button css setup
    ----------------------------------------------------*/
.btn{
    border-radius: 6px;
    border: 1px solid;
    color: var(--c-light) !important;
    width: 80px !important;
    font-size: 12px !important;
}

.btn-primary{
    background-color: var(--c-primary) !important;
    border-color: var(--c-primary) !important;
}

.btn-primary:hover{
    color: var(--c-secondry) !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-primary);
    color: var(--c-light);
    border-radius: 4px;
    font-weight: bold;
}

.btn1:hover{
    background: var(--c-light);
    border: 1px solid;
    color: var(--c-dark);
}


/*-----buy page btn-------*/

.btn2{
    border: none;
    outline: none;
    height: 50px;
    width: 100px;
    background-color: var(--c-primary);
    color: var(--c-light) !important;
    border-radius: 4px;
}

.btn2:hover{
    color: var(--c-secondry) !important;
}

/*-----nav bar btn-------*/

.btn3{
    border: none;
    outline: none;
    height: 40px;
    width: 80px;
    background-color: var(--c-primary);
    color: var(--c-light) !important;
    border-radius: 4px;
    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-primary);
    color: var(--c-light) !important;
    border-radius: 4px;
    font-weight: 600;
}

.btn4:hover{
    color: var(--c-secondry) !important;
}

.btn5 {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    margin-bottom:12px;
  }
  
  .btn5:hover {
    background-color: var(--c-primary);
    box-shadow: 0px 15px 20px #FFB26B;
    color: #fff;
    transform: translateY(-7px);
  }
  
  .btn5:active {
    transform: translateY(-1px);
  }

  .btn6{
    color: #090909;
    padding: 0.7em 1.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: var(--c-primary);
    border: 1px solid #e8e8e8;
    transition: all .3s;
    box-shadow: 6px 6px 12px #c5c5c5,
                -6px -6px 12px #ffffff;
  }

  btn6:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5,
                inset -4px -4px 12px #ffffff;
   }

   .btn7 {
    width: 200px !important;
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
  }
  
  .btn7:hover {
    background-color: var(--c-primary);
    box-shadow: 0px 15px 20px #FFB26B;
    color: #fff;
    transform: translateY(-7px);
  }
  
  .btn7:active {
    transform: translateY(-1px);
  }
   @media(max-width:990px){
    .btn6{
        font-size: 12px !important;
    }

    .btndiv{
      display: flex;
      justify-content: center !important;
    }

    
}

.btn8 {
  display: flex;
  justify-content: center;
  padding: 1.3em 3em;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: var(--c-secondry);
  border: none;
  border-radius: 45px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.btn8:hover {
  background-color: var(--c-primary);
  box-shadow: 0px 15px 20px #FFB26B;
  color: #000 !important;
  transform: translateY(-1px);
}

.btn8:active {
  transform: translateY(-1px);
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
 }
 
 button.learn-more {
  width: 16rem;
  height: auto;
 }
 
 button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: var(--c-primary);
  border-radius: 1.625rem;
 }
 
 button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
 }
 
 button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
 }
 
 button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
 }
 
 button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
 }
 
 button:hover .circle {
  width: 100%;
 }
 
 button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
 }
 
 button:hover .button-text {
  color: #fff;
 }

/*-------------------------------------------------------
    navbar css setup
    ----------------------------------------------------*/
.navbar{
    font-family:var(--font-base);
    font-size: 20px;
    font-weight: 600;
    background-color: var(--c-light) !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
    height: 89px;

}

@media(max-width:990px){
  .navbar-nav{
      background-color: var(--c-light);
      display: flow-root !important;
  }

  .navbar{
    height: 80px;
  }
    
  .nav-link{
    font-size: 16px !important;
  }
}



/*-------------------------------------------------------
    searchbar css setup
    ----------------------------------------------------*/

.card {
    width: 100% !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px !important;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
}

@media(max-width:990px){
    .card{
        width:90% !important;
    }
}

.form-control{
	border-radius: 7px !important;
    margin-right: 10px !important;
}

input.form-control:focus{
	box-shadow: none !important;
	letter-spacing: 1px !important;
}

.table{
    width:80% !important;
    background-color: var(--c-light);
    border-radius: 10px;

}

@media(max-width:990px){
    .table{
        width:80% !important;
    }
}

/*-------------------------------------------------------
    search result table css setup
    ----------------------------------------------------*/


.box1{
    width:60% !important;
}

@media only screen and (max-width: 990px) {
    .box1 {
      width: auto !important;
    }
  }

.ta:hover{
    background-color: #f6fff8;
}

@media(max-width:990px){
    .ta{
        font-size: 15px;
    }
}

.result{
    margin-left: 10px;
    margin-top:4px;
    font-weight:bold;
    color:var(--c-primary) !important;
}

/*-------------------------------------------------------
    loggin page css setup
    ----------------------------------------------------*/
.log{
    color: blue !important;

}

/*-------------------------------------------------------
    dashboard css setup
    ----------------------------------------------------*/

  
  .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 {
    background-color: transparent;
    color: var(--main-text-color);
    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;
      }
  }

/*-------------------------------------------------------
    homepage css setup
    ----------------------------------------------------*/

h1{
    font-weight: 1000 !important;
    font-size: 50px !important;
}

@media(max-width:990px){
    h1{
        text-align: center;
        font-weight: 800 !important;
        font-size: 30px !important;
    }

    .blogp{
      margin-top: 5px !important;
    }
}

.headert{
  text-align: justify !important;
}



.cont {
    width: 330px !important;
    height: 350px !important;
    background: white;
    border-radius: 10px;
    transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
   }

   .cont:hover {
    border: 1px solid black;
    transform: scale(1.05);
  }
  
  .cont:active {
    transform: scale(0.95) rotateZ(1.7deg);
  }

  .cont1 {
    width: 980px !important;
    height: 600px !important;
    background: white;
    border-radius: 10px;
    transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
   }

   .cont1:hover {
    border: 1px solid black;
    transform: scale(1.05);
  }
  
  .cont1:active {
    transform: scale(0.95) rotateZ(1.7deg);
  }

  .cont2 {
    width: 280px !important;
    height: 600px !important;
    background: white;
    border-radius: 10px;
    transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
   }

   .cont2:hover {
    border: 1px solid black;
    transform: scale(1.05);
  }
  
  .cont2:active {
    transform: scale(0.95) rotateZ(1.7deg);
  }
   
.shadow {
    box-shadow: inset 0 -3em 3em rgba(0,0,0,0.1),
                0 0  0 2px rgb(190, 190, 190),
                0.3em 0.3em 1em rgba(0,0,0,0.3);
    }

.tableex{
  max-width: 700px !important;
  max-height: 500px !important;
}



@media(max-width:990px){

      .tableex{
        width: 250px !important;
      }

      .cont1{
        width: 300px !important;
        height: auto !important;
      }

      .cont2{
        height: 350px !important;
      }
  }
    
h4{
    font-weight: 600 !important;
}

lord-icon{
    margin: auto;
}

.quote{
  text-align: center;
  font-size: 2.3rem;
  margin: auto;
  padding: 15px;
  max-width: 70%;
  position: relative;
}

.quote1{
  text-align: center;
  font-size: 2rem;
  position: relative;
}

.quote2{
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-align: center;
  font-size: 2.2rem;
  margin: auto;
  padding: 15px;
  max-width: 70%;
  position: relative;
}

blockquote{
  color: var(--c-font);
  text-shadow: -1px 1px #555;
  font-style: italic;
  position: relative;
  z-index: 20;
}
.left{
  position: absolute;
  top: -50px;
  left: -20px;
  width: 150px;
  text-align: left;
  z-index: 10;
  font-size: 8rem;
  color: var(--c-primary);
  line-height: 200px;
}
.right{
  position: absolute;
  bottom: -50px;
  right: -20px;
  width: 150px;
  text-align: right;
  z-index: 10;
  font-size: 8rem;
  color: var(--c-primary);
  line-height: 200px;
}

@media(max-width:990px){
    .quote{
        font-size: 1.3rem;
    }

    .right{
        position: absolute;
        bottom: -80px;
    }

    .quote1{
      font-size: 1.3rem;
  }

    .quote2{
      font-size: 1.3rem !important;
    }
}

.faq-content {
    margin: 0 auto;
  }
  
  .faq-question {
    padding: 10px;
    font-size: 16px;
    border-bottom: 1px dotted #ccc;
  }

  .faq-question a{
    text-decoration: underline blue !important;
  }

  .faq-question p{
    color: blue;
  }

  .faq{
    margin: 10px 10px 0 0;
  }
  
  .site{
    margin-top: 20px !important;
  }

  @media(max-width:990px){
    .site{
      padding: 0 20px 0 20px;
    }
}

.link-home{
  color:blue !important;
}

.link-home:hover{
  color: blue !important;
  text-decoration: underline blue !important;
}



  /*-------------------------------------------------------
    footer css setup
    ----------------------------------------------------*/

.footer{
    padding: 70px 0;
}

ul{
    list-style: none;
    padding-left: 0 !important;
}

h5{
    font-weight: 600 !important;
}

.fot{
    position: relative;
    border: none;
    background: none;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.fot:focus,
.fot:hover {
  color: var(--c-primary);
}

.fot:focus:after,
.fot:hover:after {
  width: 100%;
  left: 0%;
}

.fot:after {
  content: "";
  pointer-events: none;
  bottom: -2px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--c-primary);
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

.footer-input{
    width: 50% !important;
}

@media(max-width:990px){
    .footer-input{
        width: fit-content !important;
    }
}

.cog-abuse{
  display: none !important;
}

.cog-branding{
  display: none !important;
}

  /*-------------------------------------------------------
    contactus page css setup
    ----------------------------------------------------*/

.list{
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
}

.form-row p{
  width: 250px;
  margin: 20px 0 0 0;
}

@media(max-width:990px){
  .conli{
    font-size: large !important;
  }
}

  /*-------------------------------------------------------
    tdl page css setup
    ----------------------------------------------------*/
.tdl{
  width: 75% !important;
  height: auto !important;
  margin: auto;
}

@media(max-width:990px){
  .tdl{
    width: 100% !important;
  }
}

  /*-------------------------------------------------------
    blog page css setup
    ----------------------------------------------------*/

    .card1 {
      height: 25rem;
      border: none !important;
      border-radius: 10px !important;
      padding: 10px !important;
  
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 20px;
      background-color: #fff;
      box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  }

  /*-------------------------------------------------------
    free domain page css setup
    ----------------------------------------------------*/
    .image-border {
      border: 1px solid #000;
    }