@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --brown:#b76109;
  --black:#111;
  --white:#fff;
  --light-color:#666;
  --light-bg:#eee;
  --blue:#0094f1;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:.1rem solid rgba(0,0,0,.3);
 
  
}

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
body{
    //background: url(../images/body.jpg) no-repeat;
    background-size: cover;
    background-position: center;
   
}



section {
  padding: 5rem 5%;
}
.data {

  margin-top:50px;

  

  padding:4rem;

  font-size:1.4rem;

  min-height:62vh;

  

}



.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  line-height: inherit;
  padding-left: 1rem;
  /* border-left: 1rem solid var(--brown); */
}
.heading-2 {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 4rem;
  text-transform: capitalize;
  color: #334;
  line-height: 1.6;
  padding: 0 4rem;

}

.heading-2 span {
  color: #e39f5a;
}

.btn-1 {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: #b76109;
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.btn-1:hover {
  background: var(--black);
  color: var(--white);
  text-decoration: none;

}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 1.5rem 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 3000;
  background: var(--white);
}

.header .logo {
  width: 450px;
  
}
.header .logo img{
  width: 100%;
}

.header .logo span {
  color: var(--brown);
}

.header .main-navbar a {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
}

.header .main-navbar a:hover {
  color: var(--blue);
}

.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: .3rem;
}

.header .icons div:hover {
  background: var(--black);
  color: var(--white);
}

.header #menu-btn {
  display: none;
  font-size: 2rem;
}

.header .search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-animation: fadeIn .2s linear;
          animation: fadeIn .2s linear;
}

.header .search-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}

.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}

.header .search-form label:hover {
  color: var(--brown);
}

.header .login-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  -webkit-animation: fadeIn .2s linear;
          animation: fadeIn .2s linear;
  display: none;
}

.header .login-form.active {
  display: block;
}

.header .login-form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.header .login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: .7rem 0;
}

.header .login-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.header .login-form .flex label {
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}

.header .login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}

.header .login-form .flex a:hover {
  color: var(--brown);
  text-decoration: underline;
}

.header .login-form .btn {
  width: 100%;
}

.header .login-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 1.5rem;
}

.header .login-form p a {
  color: var(--brown);
}

.header .login-form p a:hover {
  text-decoration: underline;
}



.home {
  padding: 0;

}

.home .slide {
  min-height: 50rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background: -webkit-gradient(linear, left top, right top, from(var(--white)), to(transparent));
  background: linear-gradient(90deg, var(--white), transparent); */
}

.home .slide .content {
  width: 50rem;
  position: relative;
}

.home .slide .content h3 {
  font-size: 4rem;
  color: var(--white);
  text-transform: capitalize;
  text-transform: uppercase;
}

.home .slide .content p {
    font-size: 1.6rem;
    color: #dbd8d8;
  line-height: 2;
  padding: 1rem 0;
}

.home .swiper-button-next,
.home .swiper-button-prev {

  bottom: 0;
  /* left: 0;
  right: 0; */
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);

}


.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--brown);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}

.home .swiper-button-prev {
  right: 7rem;
}
.about{
  #background: url(../images/about-bg.jpg) no-repeat;
  #background-position: center;
  #background-size: cover;
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}

.about .row .image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .image img {
  width: 100%;
}

.about .row .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}
.about .row .content span{
    color:var(--brown);
    font-size: 2.2rem;
}

.about .row .content h3 {
  font-size: 2.2rem;
  color: var(--black);
  line-height: 1.6;
  text-transform: capitalize;
}
.about .row .content h3 span{
  color:var(--brown);
  font-size: inherit;

}

.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.about .box-container {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}

.about .box-container .box h3 {
  font-size: 2.2rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
}

.services {
   

}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(40rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 1rem;
}

.services .box-container .box {
  text-align: center;
  padding: 1rem;
  /* background: var(--white); */
  /* -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow); */
  /* border: var(--border); */
}
.services .box-container .box .box-top{
    display:flex;
    
}

.services .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}


.services .box-container .box .content{
    text-align: left;
    padding-left: 2.5rem;
}

.services .box-container .box h3 {
  font-size: 2.4rem;
  color: var(--black);
  text-transform: capitalize;
 padding-bottom: 1rem;
  margin: 0;
}

.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}
.fa-brands{
	font-size: 4.5rem;
	color: var(--brown);
}

.services .box-container .box .fa-solid {
  font-size: 4.5rem;
    /* background: #9f0303;
    width: 8rem;
    height: 8rem;
    line-height: 8rem; */
    color: var(--brown);
    /* border-radius: 50%; */
}



.review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  min-height: 70vh;
}

.review .information {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 35rem;
          flex: 1 1 35rem;
}

.review .information span {
  font-size: 2rem;
  color: var(--brown);
  text-transform: capitalize;
}

.review .information h3 {
  font-size: 3rem;
  color: var(--black);
  padding-top: 1rem;
}

.review .information p {
  font-size: 1.5rem;
  line-height: 2;
  color: #666;
  padding: 1rem 0;
}

.review .review-slider {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60rem;
          flex: 1 1 60rem;

}

.review .review-slider .slide {

     box-shadow: 0 10px 10px rgb(0 0 0 / 20%);
     border: 1px solid rgba(0,0,0,0.2);
  padding: 2rem 3rem;
  background: #fff;
 
}

.review .review-slider .slide p {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--light-black);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review .review-slider .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5rem;
}

.review .review-slider .slide .user img {
  height: 5rem;
  width: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
}

.review .review-slider .slide .user h3 {
  font-size: 2rem;
  color: var(--brown);
}

.review .review-slider .slide .user span {
  color: #999;
  font-size: 1.5rem;
}

.review .review-slider .slide .user i {
  font-size: 5rem;
  margin-left: auto;
  margin-right: 2rem;
  color: #70c6e2;
}


.about-2 {
    background: #F2F2F2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8rem;
    /* min-height: 100vh; */
    /* background: url(../images/about-2-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover; */
    
   
  }
  
  
  
  
  
  .about-2 .image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 45rem;
            flex: 1 1 45rem;
    position: relative;
  }
  
  
  
  .about-2 .image img {
    width: 100%;
    padding: 2rem;
    border-radius: 2rem;
  }
  
  .about-2 .content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50rem;
            flex: 1 1 50rem;
  }
  
  
  .about-2 .content .title {
    font-size: 4rem;
    color: #20288f;
    margin-top: .5rem;
   
  }
  
  .about-2 .content p {
    font-size: 1.5rem;
    color: #555;
    padding: 1rem 0;
   
    line-height: 2;
  }
  /* .about-2 .content .box-container .box .border {
    margin: 2rem 0;
      border-left: 3px solid #654ff9;
      margin-left: 3rem;
  } */
  
  .about-2 .content .box-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .about-2 .content .box-container .box {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40rem;
            flex: 1 1 40rem;
            border-bottom: 1px solid rgba(0,0,0,0.2);
            margin-bottom: 1rem;
            padding: .5rem;
        
  }
  .about-2 .content .box-container .box i{
    background: linear-gradient(45deg, rgb(213 145 75), rgb(183 97 9));
    /* box-shadow: rgb(149 120 48) 0px 3px 6px; */
    border-radius: 50%;
    color: rgb(255, 255, 255);
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    font-size: 2rem;
    text-align: center;
    margin-right: 2rem;
  }
  .about-2 .content .box-container .box .top-box{
    display: flex;
  align-items: center;
    
    
  }
  
  
  .about-2 .content .box-container .box h3 {
    font-size: 2rem;
    color: #333;
    margin:0;
    /* background: linear-gradient(45deg, #ff93c0, #f7637a); */
  
  }
  
  .about-2 .content .box-container .box p {
    text-align: left;
    margin:0;
    padding: .5rem;;
  }
  .team p{
    font-size: 1.5rem;
    color: #555;
    padding: 1rem 0;
    line-height: 2;
  }

  .team{
    background: #F7F7F7;
  }
  
  .team .box-container {
   
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  
  .team .box-container .box {
    /* overflow: hidden; */
    text-align: center;
  }
  
  .team .box-container .box:hover .content {
    margin-bottom: 0;
  }
  
  .team .box-container .box img {
    height: 200px;
    border-radius: 50%;
    width: 200px;
  }
  
  .team .box-container .box .content {
    padding: 2rem;
   
  }
  
  .team .box-container .box .content h3 {
    font-size: 2rem;
    text-transform: capitalize;
    color: #334;
  }
  
  .team .box-container .box .content p {
    font-size: 1.4rem;
    line-height: 2;
    color: #777;
    padding: .5rem 0;
  }
  
  .team .box-container .box .content .share {
    margin-top: 1.5rem;
  }
  
  .team .box-container .box .content .share a {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 1.7rem;
    margin: 0 .3rem;
    background: #334;
    color: #fff;
  }
  
  .team .box-container .box .content .share a:hover {
    background: #2597f4;
  }
  
  
  
  

.main-footer {
  background: #111;
  z-index: 3000;
  position: relative;
}

.main-footer .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.main-footer .box-container .box h3 {
  font-size: 2.2rem;
  text-transform: capitalize;
  color: #fff;
  padding: 1rem 0;
}

.main-footer .box-container .box .link {
  display: block;
  padding: .5rem 0;
  font-size: 1.5rem;
  line-height: 2;
  color: #ababab;
  text-align:left;
  text-transform: capitalize;
}

.main-footer .box-container .box .link i {
  padding-right: .5rem;
  color: var(--brown);
}

.main-footer .box-container .box .link:hover {
  color: var(--brown);
}

.main-footer .box-container .box .link:hover i {
  padding-right: 2rem;
}

.main-footer .box-container .box p {
  padding: .5rem 0;
  font-size: 1.5rem;
  line-height: 2;
  color: #777;
}
.main-footer .box-container .box a {
  /* padding: .5rem 0;
  font-size: 1.5rem;
  line-height: 2; */
  color: #ababab;
}


.main-footer .box-container .box p span {
  color: var(--brown);
}



.main-footer .box-container .box .share {
  margin-top: 2rem;
}

.main-footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.7rem;
  background: var(--brown);
  color: #fff;
  border-radius: 50%;
  margin-right: 0.3rem;
  text-align: center;
}

.main-footer .box-container .box .share a:hover {
  background: var(--brown);
}

.main-footer .credit {
  font-size: 2rem;
  text-transform: capitalize;
  color: rgb(149 149 149);
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 0.2rem solid rgb(46 45 45);
  text-align: center;

}

.main-footer .credit span {
  color: var(--brown)
}
 /* signup page */

 .signup-wrapper{

  padding: 4rem; 

  /* height: 100%; */

  display: flex;

  justify-content: center;

  align-items: center;



 }

 .signup-form{

      margin-top:60px;

  position: relative;

  width: 100%;

  max-width: 600px;

  padding: 60px 40px 40px;

  background: #fff;

  border:2px solid var(--brown);

  border-radius: 10px;

  color: #fff;

  box-shadow: 0 15px 25px rgba(0,0,0,0.5);

 }



.signup-form h2 {

  text-align: center;

  letter-spacing: 4px;

  margin-bottom: 2rem;

  font-size: 2.4rem;

  color: var(--brown);

}

.signup-form .input-group {

  position: relative;

  width:100%;

}

.signup-form .input-group input,textarea,select {

  width: 100%;

  padding: 10px 0;

  font-size: 1.4rem;

  color:#333;

  letter-spacing: 1px;

  margin-bottom: 30px;

  border: none;

  border-bottom: 1px solid rgba(0,0,0,0.2);

  outline: none;

  background-color: transparent;

  resize: none;

}

.signup-form .input-group label{

    color: #444;

    font-size: 1.4rem;

}

.submit-btn {

   display: block;

   margin-left: auto;

   border: none;

   outline: none;

   background: var(--brown);

   font-size: 1.4rem;

   text-transform: uppercase;

   letter-spacing: 1px;

   padding: 10px 20px;

   border-radius: 5px;

   color: #fff;

   cursor: pointer;

   margin-bottom: 1.2rem;

 }

  /* login-form */

.login-wrapper {

    padding:7rem ;

 

   display: flex;

   justify-content: center;

   align-items: center;

 }

 .form {
  background:#fff;

     margin-top:40px;

   position: relative;

   width: 100%;

   max-width: 380px;

   padding: 80px 40px 40px;

   /* background: rgba(0,0,0,0.7); */

   border:2px solid var(--brown);

   border-radius: 10px;

   color: #fff;

   box-shadow: 0 15px 25px rgba(0,0,0,0.5);

 }

 

 .form img {

   position: absolute;

   top: -50px;

   left: calc(50% - 50px);

   width: 100px;

   background: rgba(255,255,255, 0.8);

   border-radius: 50%;

 }

 .form h2 {

   text-align: center;

   letter-spacing: 4px;

   margin-bottom: 2rem;

   font-size: 2.4rem;

   color: var(--brown);

 }

 .form .input-group {

   position: relative;

 }

 .form .input-group input {

   width: 100%;

   padding: 10px 0;

   font-size: 1.4rem;

   color:#111;

   letter-spacing: 1px;

   margin-bottom: 30px;

   border: none;

   border-bottom: 1px solid #777;

   outline: none;

   background-color: transparent;

 }

 .form .input-group label{

     color: #333;

     font-size: 1.4rem;

 }

  /* advertise page */

.content-top{

 margin-top:80px;



  text-align: center;

  list-style-type: none;

 

}

.content-top h2{

  color: #272F38;

  padding: 1rem;

  

  font-size: 2.1rem;

}

.content-top li{

  padding:.5rem;

  color: #384350;

  font-size: 1.4rem;

}

.content-top ul{

  list-style-type: none;

}
/*dashboard*/
.dash-container{
  position: relative;
  width:  100%;
  display:flex;
  margin: 0rem auto;
 min-height: 100vh;

  
  
}
.dash{
    padding:1rem;
}
.dash-nav{
  position: absolute;
  top: 0;
  width :250px;
  height: 100%;
  background:#b76109;
  transition: 0.5s;
  /*overflow: hidden;*/
}
.dash-nav.active{
  width: 10px;

}
.dash-nav ul{
  position: absolute;
  top:0;
  left:0;
  width:100%
}
.dash-nav ul li{
  position: relative;
  width:100%;
  list-style: none;
}
.dash-nav ul li:hover{
  background:#323131;
  cursor:pointer;

}
/*.dash-nav ul li:nth-child(1){*/
/*  margin-bottom:20px ;*/
/*}*/

.dash-nav ul li:nth-child(1):hover{
  background: transparent;
}
.dash-nav ul li a h2{
  font-size: 15px;
  
 
}
.dash-nav .link .dash-title h2{
    margin-top:0px;
    margin-bottom:10px;
}



.dash-nav ul li .link{
   
   padding:.5rem;
  position: relative;
  display: block;
  width: 100%;
  /*display: flex;*/
  text-decoration: none;
  color:#fff;
  font-size: 12px;
  border-bottom:1px solid rgba(0,0,0,0.2);
  

}
.dash-nav ul li a{
    color:#fff;
    text-decoration:none;
    text-align:left;
    font-size:1.6rem;
}
/*.dash-nav ul li a .icon{*/
/*  position: relative;*/
/*  display: block;*/
/*  min-width: 60px;*/
/*  height: 60px;*/
/*  line-height: 60px;*/
/*  text-align: center;*/

/*}*/
.dash-nav ul li a .icon .fab{
  color: #fff;
  font-size: 15px;
}
.dash-nav ul li  .dash-title{
  position: relative;
 
  display: block;
  padding: 0 30px;
  /*height: 60px;*/
  line-height: 25px;
  white-space: nowrap;
}
.dash-nav ul li a .brand{
  text-transform: uppercase;
  font-size: 15px;
}
.main-container{
  position: relative;
  width: calc(100% - 250px);
 
  left:250px;
  /* min-height: 100vh; */
  /*background: #f5f5f5;*/
  transition: 0.5s;
}
.main-container.active{
  width: calc(100% - 10px);
  left:10px;
}


.main-container .topbar{
  width: 100%;
  background: rgb(181 179 179 / 30%);
  height: 60px;
  padding-left: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toggle h4{
  position: absolute;
    top: 13px;
    left: 49px;
}
.toggle{
  position: relative;
  width: 60px;
  height: 60px;
  
  cursor: pointer;
}
.toggle::before{
  content: '\f007';
  font-family: "Font Awesome 5 Free";
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 60px;
  font-size: 24px;
  text-align: center;
  color: #111;
}






@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
  .header #menu-btn {
    display: inline-block;
  }
  .header .main-navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: .2s linear;
    transition: .2s linear;
  }
  .header .main-navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .main-navbar a {
    display: block;
    margin: 2rem;
  }
  .dash-nav{
    left:-300px;
}
.dash-nav.active{
    left:0;
}

.main-container{
    width:100%;
    left:0px;   

}
}

@media (max-width: 768px) {
  .heading-2{
    font-size:2.4rem;
    line-height: 1.7;
  }
  .header .search-form {
    width: 90%;
  }
  .header .login-form {
    width: 90%;
  }
  .home .slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home .slide .content {
    background: #00000085;
    text-align: center;
    padding: 2rem;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
  .signup-wrapper , .login-wrapper{
    padding:3rem 2rem;
}
.about-2 {
    gap: 3rem;
   
  }
  .about-2 .image {
    margin-top: 5rem;
  }
  .about-2 .content .title {
    font-size: 3rem;
  }
  .services  .box-container{
  grid-template-columns:1fr;

}
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .about .row .content h3 {
    font-size: 2.5rem;
  }
}
@media(max-width:480px){
   
  .dash-nav{
      width: 100%;
      left: -100%;
      z-index: 1;
  }
  .dash-nav.active{
      width: 100%;
      left:0;
  }

  .toggle.active{
      /* position: fixed; */
      z-index: 1;
      right: 0;
      left:275px;
     

  }
  .toggle.active::before{
      color:#fff;
  }
  
  .dash-ban{
            left:0;
        }
        .dash-bottom{
            left:0;
            
        }
        .dash-container{
            width:100%;
        }
        
        
            .topbar h4{
                display:block;
            }
            .toggle.active h4{
                display:none;
                
            }
            
            
  
            
}
#body-row {
  margin-left:0;
  margin-right:0;
}
#sidebar-container {
  min-height: 100vh;   
  background-color: #333;
  padding: 0;
}

/* Sidebar sizes when expanded and expanded */
.sidebar-expanded {
  width: 230px;
}
.sidebar-collapsed {
  width: 60px;
}

/* Menu item*/
#sidebar-container .list-group a {
  height: 50px;
  color: white;
}

/* Submenu item*/
#sidebar-container .list-group .sidebar-submenu a {
  height: 45px;
  padding-left: 30px;
}
.sidebar-submenu {
  font-size: 0.9rem;
}

/* Separators */
.sidebar-separator-title {
  background-color: #333;
  height: 35px;
}
.sidebar-separator {
  background-color: #333;
  height: 25px;
}
.logo-separator {
  background-color: #333;    
  height: 60px;
}

/* Closed submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="false"] .submenu-icon::after {
content: " \f0d7";
font-family: FontAwesome;
display: inline;
text-align: right;
padding-left: 10px;
}
/* Opened submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="true"] .submenu-icon::after {
content: " \f0da";
font-family: FontAwesome;
display: inline;
text-align: right;
padding-left: 10px;
}
.list-group-item{
background-color:#222020 !important;
  /* border: 1px solid #ddd; */
  display: block;

  /* border:none!important; */
  border-left: 3px solid #2e353d;
  margin-bottom: -1px;
  border-right:none;
  border-bottom: 1px solid #23282e;
  border-top:none;
  /* border-bottom: 1px solid; */
  padding: 10px 20px;
  position: relative;
  font-size:1.2rem;
}
/* congrats and deduct page */
button{
  position: relative;
  padding: 15px 25px;;
  margin-top: 20px;
  font-size: 1.1em;
  cursor: pointer;
}
.thanks-btn {
 padding: 1rem 2rem;
  font-size: 1.6rem;
  background-color: #00c09d;
  border: 1px solid #00ab8c;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(87,71,81,.2);
  cursor: pointer;

}


.popup{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 450px;
  padding:4rem 2rem;
  height: 350px;
  box-shadow: 0 25px 50px rgba(41, 9, 9, 0.1);
  /* transition: opacity 0.2s ease-out; */
  
  
/* visibility: hidden; */
text-align: center;
z-index: 2000;
/* animation: fadeInAnimation ease 3s;
          animation-iteration-count: 1;
          animation-fill-mode: forwards; */

}
/* @keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
} */

/* .popup.active{
  visibility: visible;
} */
.popup .icon i{
  width: 10rem;
  height: 10rem;
  /* margin-top: -5rem; */
  background: #00C09D;
  line-height: 10rem;
  text-align: center;
  border-radius: 50%;
  font-size: 5rem;
  color: #fff;
}
.popup .content {
  width: 100%;
}
.popup .content h2{
font-size: 3rem;
  color: #444;
  margin: 1rem;
  text-transform: capitalize;
}
.popup .content p{
  font-size: 1.4rem;
  color: #666;
}
.close {
  position: absolute;
  top:0;
  right: 0;
  padding:  10px;
  /* background: red; */
  color: #999;
  cursor: pointer;
}
.close  i{
  font-size: 2rem;
}
#my-canvas{
  position: fixed;
  top:0;
  left:0;

  width: 100%;
  height: 100vh;
  z-index: 1000;
  /* visibility: hidden; */
  pointer-events: none;
}
/* #my-canvas.active{
  visibility: visible;
} */

@media (max-width: 768px){
 
  .popup{
      width: 100%;
  }
}
/* amount deduction */
.main-box{
    /* position: relative;
    margin-top: 50px;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 450px;
    padding:4rem 2rem;
   min-height: 300px;
    box-shadow: 0 25px 50px rgba(41, 9, 9, 0.1);
    transition: opacity 0.2s ease-out; */
    height: 100%;
    width: 500px;
    border-radius: 5px;
    border: 1px solid rgb(181 181 181 / 20%);
    margin: auto;
    box-shadow: 0 10px 10px rgb(0 0 0 / 20%);
    padding: 2rem 4rem;
    background: #fff;
    
    

text-align: center;
z-index: 2000;
animation: fadeInAnimation ease 3s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
            /* visibility: hidden; */

}
/* .main-box.active{
    visibility: visible;
} */
.main-box .icon i{
    /* width: 10rem;
    height: 10rem; */
    /* margin-top: -5rem; */
    /* background: #00C09D;
    line-height: 10rem; */
    text-align: center;
    border-radius: 50%;
    font-size: 3rem;
 
    color: #01c09d;
    margin-bottom: 2rem;
}
.main-box .content {
    width: 100%;
}
.main-box .content h2{
font-size: 5rem;
color: #01c09d;
    margin: 1rem;
    padding: 2rem 0;
    text-transform: capitalize;
}
.main-box .content h3{
    color: #666;
    text-transform: capitalize;
    font-size: 1.6rem;
}
.main-box .content p{
    font-size: 1.4rem;
    color: #666;
    text-transform: capitalize;
}
.short-summary{
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
}

@media (max-width: 768px){
    .main-box{
        width: 100%;
    }
   
}