/* .img01{
    width: 144px;
    height: 144px;
    } */
    /* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }
    
    * {
        margin: 0;
        padding: 0;
    }
    body{
        margin: 0;
        padding: 0;
        font-family: "Ubuntu", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 12px;
       
    }


     /* nav area start */
     .navlink-clr .nav-item{
      font-size: .9rem;
  }
  .navlink-clr .nav-item .nav-link:hover {
      font-weight: 700;
  }
 .navlink-clr .nav-item:nth-child(1) .nav-link:hover {
    color: #FF0000;
  }
.navlink-clr  .nav-item:nth-child(2) .nav-link:hover {
    color: rgb(0, 225, 255);
  }
 .navlink-clr .nav-item:nth-child(3) .nav-link:hover {
    color: #FF00B3;
  }
  .navlink-clr .nav-item:nth-child(4) .nav-link:hover {
    color: yellow;
  }
  .navlink-clr .nav-item:nth-child(5) .nav-link:hover {
    color: rgba(58, 178, 180, 1);
  }
  .navlink-clr .nav-item:nth-child(6) .nav-link:hover {
    color: #00FF00;
  }
  @media (max-width: 991.98px) {
    /* For small screens, set offcanvas height to auto */
    .offcanvas {
      height: fit-content !important;
    }
  }
   /* nav area end */
   /* para-end */

   /* form start */
   @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(115deg, #56d8e4 10%, #9f01ea 90%);
} */
.global-heading{
  font-weight: 600 ;
}

.form-box{
   display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(115deg, #9f01ea 1%, #5fdbe6 99%);
}
.container-main{
  max-width: 700px;
  background: #fff;
  width: 700px;
  padding: 20px 30px 10px 30px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.container-main .text{
  text-align: center;
  font-size: 41px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: -webkit-linear-gradient(right, #56d8e4, #92bae8, #56d8e4, #d1a6e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container-main form{
  padding: 30px 0 0 0;
}
.container-main form .form-row{
  display: flex;
  margin: 32px 0;
}
form .form-row .input-data{
  width: 100%;
  height: 40px;
  margin: 0 20px;
  position: relative;
}
form .form-row .textarea{
  height: 70px;
}
.input-data input,
.textarea textarea{
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 17px;
  border-bottom: 2px solid rgba(0,0,0, 0.12);
}
.input-data input:focus ~ label, .textarea textarea:focus ~ label,
.input-data input:valid ~ label, .textarea textarea:valid ~ label{
  transform: translateY(-20px);
  font-size: 14px;
  color: #3498db;
}
.textarea textarea{
  resize: none;
  padding-top: 10px;
}
.input-data label{
  position: absolute;
  pointer-events: none;
  bottom: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.textarea label{
  width: 100%;
  bottom: 40px;
  background: #fff;
}
.input-data .underline{
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}
.input-data .underline:before{
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: #3498db;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.input-data input:focus ~ .underline:before,
.input-data input:valid ~ .underline:before,
.textarea textarea:focus ~ .underline:before,
.textarea textarea:valid ~ .underline:before{
  transform: scale(1);
}
.submit-btn .input-data{
  overflow: hidden;
  height: 45px!important;
  width: 25%!important;
}
.submit-btn .input-data .inner{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(right, #9f01ea, #56d8e4, #b88ccc, #56d8e4);
  transition: all 0.4s;
}
.submit-btn .input-data:hover .inner{
  left: 0;
}
.submit-btn .input-data input{
  background: none;
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .container-main .text{
    font-size: 30px;
  }
  .container-main form{
    padding: 10px 0 0 0;
  }
  .container-main form .form-row{
    display: block;
  }
  form .form-row .input-data{
    margin: 35px 0!important;
  }
  .submit-btn .input-data{
    width: 40%!important;
  }
}
   /* form end */


  
  /* footer
    */
    .footer {
      background-color: #151515;
      padding: 80px 0;
    }
    .container-footer {
        max-width: 1170px;
        margin: auto;
    }
    .footer-col-ul {
        list-style: none;
        padding: 0;
    }
    .footer-col {
        width: 25%;
        padding: 0 15px;
    }
    
    .footer-col h4 {
        font-size: 18px;
        color: #FFF;
        text-transform: capitalize;
        margin-bottom: 35px;
        font-weight: 500;
        position: relative;
    }
    
    .footer-col h4::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        background-color: #E91E63;
        width: 90px;
        height: 2px;
    }
    
    .footer-col ul li:not(:last-child) {
        margin-bottom: 10px;
    }
    
    .footer-col ul li a {
        color: #DDD;
        display: block;
        font-size: 1rem;
        font-weight: 300;
        text-transform: capitalize;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .footer-col ul li a:hover {
        color: #FFF;
        padding-left: 7px;
    }
    
    .footer-col .social-links a {
        color: #FFF;
        background-color: rgba(255, 255, 255, 0.2);
        display: inline-block;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        text-align: center;
        margin: 0 10px 10px 0;
        line-height: 40px;
        transition: all 0.5s ease;
    }
    
    .footer-col .social-links a:hover {
        color: #151515;
        background-color: #FFF;
    }
    
    @media(max-width: 767px) {
        .footer-col {
            width: 50%;
            margin-bottom: 30px;
        }
    }
    
    @media(max-width: 574px) {
        .footer-col {
            width: 100%;
        }
    }
  

    
      

    
       .card-footer{
        background: none;
         border-top: none;
          .media{
           img{
             border:solid 3px rgba(255,255,255,0.3);
           }
         }
       }
        .card-title{font-weight:800}
       .card-meta{color:rgba(0,0,0,0.3);
        text-transform:uppercase;
         font-weight:500;
         letter-spacing:2px;}
       .card-body{ 
         transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
       
      
        }
       &:hover {
         .card-body{
           margin-top:30px;
           transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
         }
       cursor: pointer;
       transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
      }
       .card-img-overlay {
        transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
       background: rgb(255,186,33);
      background: linear-gradient(0deg, rgba(255,186,33,0.3785889355742297) 0%, rgba(255,186,33,1) 100%);
      }
      
      @media (max-width: 767px){
        
      }

      