/***************************top header1********************************/
.header{
    background-color: #fff;
    
}
.header .topbar{
    background-color: #136c2a;
    padding: 12px 0;
   
}
.header .content{
    float: left;
    
}
.header .content li{
    display: inline-block;
    color: #fff;
    margin-right: 10px;
    font-weight: 500;
    
}
.header .content li:last-child{
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}
.header .content li i{
    margin-right: 5px;
    color: #fff;
}
.header .content li a{
    color: #fff;
}
.header .social{
    margin-right: 30px;
}
.header .topbar-right{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.header .social li{
    display: inline-block;
    margin: 0;
    margin-right: 15px;
}
.header .social li:last-child{
    margin-right: 0;

}
.header .social li a{
    color: #fffdfd;
}
.header .social li a:hover{
    color: #ff4a04;
}
/***************************End top header1********************************/
/******************************top header2*********************************/
.header .logo{
    float: left;
    margin-top: 26px;
}
.header .header-inner3 .logo{
    margin-top: 5px;
}
.header .logo img{
    width: 457px;
}
.header .header-widget{
    float: right;
    padding: 30px 0;
}
.header .single-widget{
    position: relative;
    display: inline-block;
    padding-left: 42px;
    margin-right: 1px;
}
.header .single-widget:last-child{
    margin-right: 0;
    border-right: 0;
    padding-right: 0;
}
.header .single-widget i{
    position: absolute;
    text-align: center;
    font-size: 16px;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    line-height: 27px;
    color: #ff4a04;
    border-radius: 100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    border: 2px solid #ff4a04;
}
.header .single-widget:hover i{
    border-color: transparent;
}
.header .single-widget h4{
    font-weight: 500;
    font-size: 16px;
}
.header .single-widget h4 span{
    color: #666;
    font-weight: 400;
    display: block;
    margin-top: 5px;
    font-size: 14px;
}
.header .single-widget h4 a{
    color: #000;
}
/****************************** End top header2*********************************/
/**************************************headrs*************************/
/***************header-menu*****************************/
  .navbar{
    height: 70px;
    width: 100%;
    padding: 19px 30px;
    background-color: #04770ee7;;
    position: relative;
  }
  .navbar .nav-header{
    display: inline;
  }
  .navbar .nav-header .nav-logo{
    display: inline-block;
    margin-top: -7px;
  }
  .navbar .nav-links{
    display: inline;
    float: right;
    font-size: 18px;
  }
  /********* 
  .navbar .nav-links .loginBtn{
    display: inline-block;
    padding: 5px 15px;
    margin-left: 20px;
    font-size: 17px;
    color: rgb(9, 14, 90);
  }
  ***********************/
  .navbar .nav-links a {
    padding: 10px 12px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
    color: white;
    border-radius: 10px;
    font-size: 14px;
    position: relative;
  }
  /* Hover effects */
  .navbar .nav-links a:hover{
    background-color: rgba(0, 0, 0, 0.3);
  }
   
  /* responsive navbar toggle button */
  .navbar #nav-check, .navbar .nav-btn{
    display: none;
  }
   
  @media (max-width:700px) {
    .navbar .nav-btn{
      display: inline-block;
      position: absolute;
      top: 0px;
      right: 0px;
    }
    .navbar .nav-btn label {
      display: inline-block;
      width: 80px;
      height: 70px;
      padding: 25px;
    }
    .navbar .nav-btn label span {
      display: block;
      height: 10px;
      width: 25px;
      border-top: 3px solid #eee;
    }
    .navbar .nav-btn label:hover, .navbar #nav-check:checked ~ .nav-btn label {
      background-color: #136c2a;
      transition: all 0.5s ease;
    }
    .navbar .nav-links{
      position: absolute;
      display: block;
      text-align: center;
      width: 80%;
      background-color:rgba(29, 83, 47,0.8);
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 70px;
      right: 5px;
      z-index: 2;
    }
    .navbar .nav-links a {
      display: block;
    }
   
    /* when nav toggle button not checked */
    .navbar #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
   
    /* when nav toggle button is checked */
    .navbar #nav-check:checked ~ .nav-links {
      height: calc(100vh - 70px);
      overflow-y: auto;
    }
    .navbar .nav-links .loginBtn {
      padding: 10px 40px ;
      margin: 20px;
      font-size:  18px;
      font-weight: bold;
      color:solid rgb(32, 131, 76);
    }
    /* Responsive dropdown code */
    .navbar .nav-links .dropdown, .navbar .nav-links .dropdown2 {
      float: none;
      width: 100%;
    }
    .navbar .nav-links .drop-content, .navbar .nav-links .drop-content2 {
      position: relative;
      background-color: rgb(29, 83, 47);
      top: 0px;
      left: 0px;
    }
    /* Text color */
    .navbar .nav-links .drop-content a {
      color: #fff;
    }  
   
  }
   
  /* Dropdown menu CSS code */
  .dropdown{
    position: relative;
    display: inline-block;
  }
  .drop-content {
    display: none;
    position: absolute;
    background-color: #136c2a;
    width: 220px;
    border-radius: 10px;
    left: 0;
    font-size:0px;
    top: 32px;
    z-index: 90;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition:  all .3s ease;
  }
  /* on hover show dropdown */
  .dropdown:hover .drop-content {
    display: block;
  }
  /* drondown links */
  .drop-content a {
    padding: 12px 10px;
    border-bottom: 1px solid rgb(45, 121, 83);
    display: block;
    transition: all 0.5s ease !important;
    
  }
  .dropBtn .drop-content a:hover {
    background-color: rgb(11, 121, 102);
  }
  .dropdown:hover .dropBtn, .dropdown2:hover .dropBtn2 {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .dropdown2 .drop-content2 {
    position: absolute;
    left: 120px;
    top: 126px;
  }
  .dropBtn2 i {
    margin-left: 15px;
  }
/***************End header-menu*****************************/
/****************************flex-box*********************************/

    /************************feature****************************/
    
        /********************footer*****************************/
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        .container{
            max-width: 1170px;
            margin:auto;
        
        }
        .row{
            display: flex;
            flex-wrap: wrap;
        }
        ul{
            list-style: none;
        }
        .footer{
            background-color: rgba(11, 133, 21, 0.877);
            padding: 40px 0;
        }
        .footer-col{
           width: 25%;
           padding: 0 15px;
        }
        .footer-col h4{
            font-size: 18px;
            color: #ffffff;
            text-transform: capitalize;
            margin-bottom: 35px;
            font-weight: 500;
            position: relative;
        }
        .footer-col h4::before{
            content: '';
            position: absolute;
            left:0;
            bottom: -10px;
            
            height: 2px;
            box-sizing: border-box;
            width: 50px;
        }
        .footer-col ul li:not(:last-child){
            margin-bottom: 10px;
        }
        .footer-col ul li a{
            font-size: 16px;
            text-transform: capitalize;
            color: #000000;
            text-decoration: none;
            font-weight: 600;
            color: #000000;
            display: block;
            transition: all 0.3s ease;
        }
        .footer-col ul li a:hover{
            color: #ffffff;
            padding-left: 8px;
        }
        
        /*responsive*/
        @media(max-width: 880px){
          .footer-col{
            width: 50%;
            margin-bottom: 30px;
            text-align: center;
            margin-left: 0;
        }
        }
        @media(max-width: 574px){
          .footer-col{
            width: 100%;
            margin-left: 0;
        }
        }
        /********************staff-css****************************************/
        .wrapper{
          background-color:#1b1b1b;
          color: white;
        }
        .team-header{
          text-align:center;
          margin:auto;
          max-width:50vh;
          padding-block:48px;
          margin-bottom:48px;
          border-bottom:2px dashed yellow;
          color:yellow;
          font-size:32px;
          letter-spacing:4px;
        }
        section{
          display:flex;
          flex-wrap:wrap;
          justify-content:center;
          align-content:center;
          
        }
        .team{
          width:320px;
          height:480px;
          overflow:hidden;
          margin:15px;
          border:2px solid var(--primary);
          border-radius:16px;
          position:relative;
          background-color:#ffffff34;
        }
        .team::before{
          content:'';
          background-image: yellow;
          background-size:cover;
          background-position:center;
          position:absolut;
          top:0;
          left:0;
          bottom:0;
          right:0;
          z-index: index 1;
          filter:blur(4px) grayscale(100%);
        }
        .team img{
          position:absolute;
          top:0;
          left:0;
          width:320px;
          height:480px;
          border-radius:16px;
          object-fit:cover;
          border:none;
        }
        .team:hover img{
          width:160px;
          height:240px;
          border:2px solid yellow;
          left:80px;
          top:60px;
        }
        .team .info{
          background-color:white;
          position:absolute;
          bottom:0;
          left:0;
          right:0;
          z-index:1;
          color:#363636;
          padding:16px;
          border-top:16px solid yellow;
          border-radius:50% 50% 0px 0px;
          padding-top:30px;
          text-align:center;
          transform:scale(1);  /***********************kuch changes************** dont need**/
        }
        .team .name{
          font-size:24px;
          padding:16px;
          text-transform:capitalize;
        }
        .team .title{
          color:gray;
          text-transform:capitalize;
        }
        .team:hover .info{
          transform:scale(1);
        }
        /***********************************
        .team .social{
          padding-block:16px;
          font-size:24px;
        }
        .team .social i{
          display:inline-block;
          width:48px;
          padding:12px;
          background-color:#ededed;
          border-radius:16px;
          margin:4px;
          cursor:pointer;
        }
        .team .social i:hover{
          color:var(--primary);
          background-color:#363664;
        }
        *******************************************/