@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");

:root{
   --peru:#ffca03;
   --black:#222;
   --white:#fff;
   --light-black:#666;
   --light-white:#ccc;
   --light-bg:#f5f5f5;
   --dark-bg:rgba(0,0,0,.7);
   --border:.1rem solid #aaa;
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
    font-family: 'Poppins', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   /* transition: all 0.4s cubic-bezier(.43,1.1,.62,1.08); */
   font-size:15px;
}

* > img{
   user-select: none;
   pointer-events: none;
}

html{
   font-size: 62.5%;
   overflow-x: hidden;
   scroll-behavior: smooth;
   scroll-padding-top: 6rem;
}
.data {

   margin-top:50px;
 
   
 
   padding:4rem;
 
   font-size:1.4rem;
 
   min-height:62vh;
 
   
 
 }



section{
   padding:5rem 10%;
}

.heading{
   text-align: center;
   margin-bottom: 3rem;
}

.heading span{
   font-size: 2.5rem;
   color:var(--peru);
}

.heading h3{
   font-size: 4.5rem;
   color:var(--black);
}

.btn{
   margin-top: 1rem;
   display: inline-block;
   background: var(--peru);
   color:var(--white);
   font-size: 2rem;
   cursor: pointer;
   padding:1rem 3rem;
}

.btn:hover{
   letter-spacing: .2rem;
}

.features {

       /* background: #F5F5F5; */

       padding: 5rem 10%;

       /* margin-top: -10rem; */

       z-index: 2;

       position: relative;

   



}



.features .box-container {

  display: -ms-grid;

  display: grid;

  -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];

      grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));

  gap: 3rem;

}



.features .box-container .box {

  text-align: center;

  padding: 2rem;

  background: #fff;
  border:1px solid #9999;

  border-radius: 1rem;

  box-shadow: 8px 8px 30px 0 rgba(42,67,113,.15);;

 

  /* border-right: 1px solid rgba(0,0,0,0.2); */

  /* background: #fff; */

  /* -webkit-box-shadow: var(--box-shadow);

          box-shadow: var(--box-shadow); */

  /* border: var(--border); */

}

.features .box-container .box.blue{

background: url(../images/card-blue.jpg)no-repeat;

background-size: cover;

background-position: top;

}

.features .box-container .box.dark{

  background: url(../images/card-dark.jpg)no-repeat;

  background-size: cover;

  background-position: bottom;

  }

  .features .box-container .box.org{

    background: url(../images/card-org.jpg)no-repeat;

    background-size: cover;

    background-position: top;

    }

.features .box-container .box .box-top{

    display:flex;

    align-items: flex-start;

    

}

/* .features .box-container .box:last-child{

    border:none;



} */



.features .box-container .box:hover img {

  -webkit-transform: translateY(-1rem);

          transform: translateY(-1rem);

}





.features .box-container .box .content{

    text-align: left;

    padding-left: 2.5rem;

}



.features .box-container .box h3 {

  font-size: 2rem;

  color: #444;

  text-transform: capitalize;

 /* padding-bottom: 1rem; */

  margin-bottom: 1rem;

}



.features .box-container .box p {

  font-size: 1.4rem;

  color: #777;

  /* line-height: 2; */

}

.features .box-container .box.dark .icon h2{

background: #ebf3ff;

    color: #296dff;}

    .features .box-container .box.org .icon h2{

    background: #feebe5;

    color: #f17d44;

}

.features .box-container .box .icon h2{

  font-size: 2.2rem;

  color: #00C3FF;

  font-weight: 700;

  background: #D9F6FF;

  border-radius: 50%;

  /* box-shadow: 0 1px 10px rgb(211 215 217); */

  /* border-radius: 0 29px 1px; */

  width: 6rem;

  line-height: 6rem;

  height: 6rem;



}

.features .box-container .box .icon img{

  width:100%;



}





  

  






.header{
   padding-top: 2rem;
   padding-bottom: 2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   box-shadow: var(--box-shadow);
   position: sticky;
   top:0; left:0; right: 0;
   background: var(--white);
   z-index: 1000;
}

.header .logo{
   font-size: 2.5rem;
   font-weight: bolder;
   color:var(--black);
}

.header .logo i{
   color:var(--peru);
   padding-right: .5rem;
}

.header .main-navbar a{
   font-size: 2rem;
   margin-left: 2rem;
   color:var(--light-black);
}

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

#menu-btn{
   font-size: 2.5rem;
   cursor: pointer;
   color:var(--black);
   display: none;
}

@keyframes fadeIn {
   0%{
      transform: translateY(-4rem) scale(0);
      opacity: 0;
   }
}

.home{
   padding:0;
   background: var(--black);
}

.home .slide{
   min-height: 100vh;
   background-size: cover !important;
   background-position: center !important;
   position: relative;
   z-index: 0;
   display: flex;
   align-items: center;
   justify-content: center;
}

.home .slide::before{
   content: '';
   position: absolute;
   top:0; left:0;
   height: 100%;
   width: 100%;
   background: var(--dark-bg);
   z-index: -1;
}

.home .slide .content{
   text-align: center;
   width: 70rem;
   display: none;
}

.home .slide .content span{
   font-size: 3rem;
   display: block;
   padding-bottom: .5rem;
   color:var(--light-white);
   animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .2s backwards;
}

.home .slide .content h3{
   font-size: 6vw;
   text-transform: uppercase;
   color:var(--white);
   text-shadow: 0 .5rem 1rem rgba(0,0,0,.7);
   line-height: 1;
   padding:2rem 0;
   animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .4s backwards;
}

.home .slide .content .btn{
   animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .6s backwards;
}

.home .swiper-slide-active .content{
   display: inline-block;
}

.swiper-button-next,
.swiper-button-prev{
   height: 5rem;
   width: 5rem;
   line-height: 5rem;
   background: var(--white);
   color:var(--black);
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
   background: var(--peru);
   color:var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after{
   font-size: 2rem;
}

.about{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap:2rem;
}

.about .image{
   flex:1 1 41rem;
}

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

.about .content{
   flex:1 1 41rem;
}

.about .content .title{
   font-size: 4rem;
   color:var(--black);
}

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

.about .content .icons-container{
   display: flex;
   flex-wrap: wrap;
   gap:2rem;
   margin-top: 3rem;
}

.about .content .icons-container .icons{
   flex:1 1 16rem;
   text-align: center;
   /* background: var(--light-bg); */
   padding:3rem 2rem;
   border: 1px solid #efdae8;
}
.about .content .icons-container .icons i{
   color: #d73ea5;
   font-size: 4rem;

}



.about .content .icons-container .icons h3{
   padding-top: 2rem;
   font-size: 2rem;
   color:var(--light-black);
   font-weight: normal;
}

.section-3{
   background: beige;
    }
    .section-3 .row{
      display: flex;
      align-items: center;
    }
    
    .section-3 .row .divider{
      padding:0 1rem;
    }
    
    .section-3 .row .box-container .box{
      padding:1rem 0;
    }
    
    .section-3 .row .box-container .box i{
      color:var(--red);
      padding:1rem 0;
      font-size: 4.5rem;
    }
    
    .section-3 .row .box-container .box h3{
     color: #d73ea5;;
      font-size: 2.5rem;
    }
    
    .section-3 .row .box-container .box p{
      color:#666;
      padding:1rem 0;
      font-size: 1.5rem;
    }
    
    .section-3 .row .box-container:first-child{
      text-align: right;
    }
    .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(--peru);
    }
    
    .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;
    }
    
    .review .review-slider .slide p {
      font-size: 1.5rem;
      line-height: 2;
      color: var(--light-black);
    }
    
    .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: #d73ea5;
    }
    
    .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: #d73ea5;
    }
    .newsletter{
    /* background: linear-gradient(#1111111a, #000), url(../images/bg.jpg) no-repeat;
      background-blend-mode: multiply;
      background-size: cover;
      background-position: center;
      background-attachment: fixed; */
      background:#1f3b5b;
      padding:4rem 1rem;
      text-align: center;
      /* min-height: 60vh; */
    }
    
    .newsletter h1{
      color:#fff;
      font-size: 4rem;
    }
    
    .newsletter p{
      color:#fff;
      font-size: 2rem;
      padding:1rem 0;
    }
    
    .newsletter form{
      height:5.5rem;
      max-width: 60rem;
      margin:0 auto;
      padding:0 1rem;
     
      /* display: flex;
      align-items: center;
      justify-content: space-between; */
      border-radius: 5rem;
      
    }
    
    .newsletter form input[type="email"]{
      height: 100%;
      width: 80%;
      padding:0 2rem;
      outline: none;
      border:none;
      /* border-radius: 5rem; */
      font-size: 2rem;
      color:#fff;
      margin-bottom: 1rem;
      background: rgb(4 4 4 / 75%);;
    }
    .newsletter form input[type="text"]{
      background: rgb(4 4 4 / 75%);
      height: 100%;
      width: 80%;
      padding:0 2rem;
      outline: none;
      border:none;
      margin-bottom: 1rem;
      /* border-radius: 5rem; */
      font-size: 2rem;
      color:#fff;
    }
        

.footer{
   text-align: center;
   background: #f3f3f3;

   /* padding-bottom: 10rem; */
}

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

.footer .icons-container .icons{
   text-align: center;
   padding:3rem 2rem;
}

.footer .icons-container .icons i{
   height: 6rem;
   width: 6rem;
   border-radius: 50%;
   background: #d73ea5;
   color:var(--white);
   margin-bottom: .5rem;
   line-height: 5.8rem;
   font-size: 2rem;
}

.footer .icons-container .icons h3{
   font-size: 2rem;
   color:var(--black);
   padding:1rem 0;
}

.footer .icons-container .icons p{
   line-height: 1.5;
   font-size: 1.7rem;
   color:var(--light-black);
   text-transform: none;
}

.footer .share{
   margin:2rem 0;
}

.footer .share a{
   height: 6rem;
   width: 6rem;
   line-height: 5.8rem;
   color:var(--white);
   background: var(--black);
   margin:0 .3rem;
   font-size: 2.5rem;
}  

.footer .share a:hover{
   background: var(--peru);
}

.footer .credit{
   padding-top: 2.5rem;
   margin-top: 3rem;
   border-top: var(--border);
   font-size: 2rem;
   color:var(--light-black);
}

.footer .credit span{
   color:var(--peru);
}
 /* 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: rgba(0,0,0,0.7); */

   border:2px solid #EFCC1E;

   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: #EFCC1E;

 }

 .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: #EFCC1E;

    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 {

      margin-top:40px;

    position: relative;

    width: 100%;

    max-width: 380px;

    padding: 80px 40px 40px;

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

    border:2px solid #EFCC1E;

    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: #EFCC1E;

  }

  .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:#3c3b3b;
   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 queries  */

@media (max-width:1200px){

   section{
      padding:3rem 5%;
   }

}

@media (max-width:991px){

   section{
      padding:3rem 2rem;
   }

   html{
      font-size: 55%;
   }

   .home .slide .content h3{
      font-size: 15vw;
   }
   .dash-nav{
      left:-300px;
  }
  .dash-nav.active{
      left:0;
  }
 
  .main-container{
      width:100%;
      left:0px;   

  }


}

@media (max-width:768px){

   #menu-btn{
      display: inline-block;
   }

   .fa-times{
      transform: rotate(180deg);
   }

   .header .main-navbar{
      position: absolute;
      top:99%; left:0; right:0;
      background-color: var(--white);
      border-top: var(--border);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   }

   .header .main-navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   }

   .header .main-navbar a{
      display: block;
      margin:2rem;
   }
   .home .slide .content{
      margin-bottom: 19rem
   }

   .section-3 .row{
      flex-flow: column;
    }
  
    .section-3 .row .divider{
      display: none;
    }
  
    .section-3 .row .box-container .box{
      text-align: center;
    }
    .section-2 .row .content{
      padding: 2rem;
    }

   .menu .slide .box-container .box{
      flex-flow: column;
      text-align: center;
   }
   .signup-wrapper , .login-wrapper{
      padding:3rem 2rem;
  }
   .features .box-container {

    display: -ms-grid;

    display: grid;

    -ms-grid-columns: 1fr;

        grid-template-columns: 1fr;

    gap: 3rem;

  }

  
}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

   .home .slide .content h3{
      font-size: 7rem;
   }

}

 
 @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;
                 
             }
             
             
   
 }