:root {
    --primary: #3CB815;
    --secondary: #F65005;
    --light: #F7F8FC;
    --dark: #000000;
}

*{
    padding:0;
    margin:0;
    box-sizing:border-box;
}
nav{
    display: flex;
    width: 100%;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    padding: 7px 50px 0 100px;
    flex-wrap: wrap;
  }
  nav .logo{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
  }
  nav ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }
  nav ul li{
    margin: 0 5px;
  }
  nav ul li a{
    color: #f2f2f2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  nav ul li a.active,
  nav ul li a:hover{
    color: #111;
    background: #fff;
  }
  nav .menu-btn i{
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
  }
  input[type="checkbox"]{
    display: none;
  }
  @media (max-width: 1000px){
    nav{
      padding: 0 40px 0 50px;
    }
  }
  @media (max-width: 920px) {
    nav .menu-btn i{
      display: block;
    }
    #click:checked ~ .menu-btn i:before{
      content: "\f00d";
    }
    nav ul{
      position: fixed;
      top: 80px;
      left: -100%;
      background-image: url("/img/black.jpg");
      height: 100vh;
      
      width: 51%;
      text-align: center;
      display: block;
      transition: all 0.3s ease;
    }
    #click:checked ~ ul{
      left: 0;
    }
    nav ul li{
      width: 100%;
      margin: 40px 0;
    }
    nav ul li a{
      width: 100%;
      margin-left: -100%;
      display: block;
      font-size: 20px;
      transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    #click:checked ~ ul li a{
      margin-left: 0px;
    }
    nav ul li a.active,
    nav ul li a:hover{
      background: none;
      color: cyan;
    }
  }
  .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: -1;
    width: 100%;
    padding: 0 30px;
    color: #1b1b1b;
  }
  .content div{
    font-size: 40px;
    font-weight: 700;
  }
  .logo{
    position: relative;
    height: 76px;
    align-self: auto;
    margin-left: -2.5vw;
  
  }
  
  .li{
    border-style: solid;
    border-color: white;
  }

.main{
    background : url(https://childrenshealthdefense.org/wp-content/uploads/global-pesticide-poisoning-feature-1536x801.jpg) top no-repeat;
    background-size:cover;
    height:50vh;
    background-position: 50% 50%;
    width:100%;
}

.matter{
    font-size: 30px;
    padding:0;
}

#pes{
    padding-top:100px;
}

#name{
    font-weight: 300;
}
#our{
    border-bottom: 2px solid;
    position:absolute;
    left:750px;
}

.pro-item:hover img {
    transform: scale(1.1);
}
.pro-item img {
    transition: .5s;
}
.pro-item {
    box-shadow:0 0 50px rgba(137, 245, 74, 0.383);
}
 


.product-item small a:hover {
    color: var(--primary) !important;
}

#foot {
    color: #999999;
}

#foot .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

#foot .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

#foot .btn.btn-link:hover {
    color: White;
    letter-spacing: 1px;
    box-shadow: none;
}