.pic {
    text-align: left;
    color: #fff;
    font-family: cursive;
    display: grid;
    align-content: center;
    background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.658), #09250a), url("pexels-photo-7164575.jpeg");
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    background-position: center ;
    padding-top: 50px;
  }
  body{
    background-color: #b0d1a646;
    background-image: url(bgn-industries.png);
    
    background-repeat: no-repeat;
    background-size: cover;
    
  }
  .txtt{
    display: flex;
    
    align-content: center;
    margin-left: 40px;
    font-size: 30px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  .log{
    padding-bottom: 6px;
    color: #333;
    font-size: 24px;
    font-family: monospace;
  }
  .ref{
    
    text-decoration: none;
    color: rgb(20, 204, 20);
  }
  .ref:hover{
    color: #088026;
  }
 
  .container{
    font-family: fantasy;
    display: flex;
    gap: 90px;
    padding-bottom: 80px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .text{
    padding-top: 30px;
  }
  .grey{
    color: #ccc;
  }
  
  .contact-form {
    margin-top: -50px;
    border-radius: 5px;
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 90%);
    background-color: #9e9e9e;
    padding: 40px;
    width: 33%;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  
  .contact-form h2 {
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact-form .input-box {
    position: relative;
    width: 100%;
    margin-top: 10px;
  }
  
  .contact-form .input-box input,
  .contact-form .input-box textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    background-color: #9e9e9e;
    outline: none;
    resize: none;
  }
  
  .contact-form .input-box span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
  }
  
  .contact-form .input-box input:focus ~ span,
  .contact-form .input-box textarea:focus ~ span{
    color: #4de91e;
    font-size: 12px;
    transform: translateY(-20px);
  }
  
  .contact-form .input-box input[type="submit"]
  {
    width: 100%;
    background: #19d400;
    color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #31d400;
    transition: 0.5s;
  }
  
  .contact-form .input-box input[type="submit"]:hover
  {
    background: #FFF;
    color: #00d458;
  }
  
  @media (max-width: 991px) {
    section {
      padding-top: 50px;
      padding-bottom: 50px;
    }
    
    .row {
      flex-direction: column;
    }
    
    .contact-info {
      margin-bottom: 40px;
      width: 100%;
    }
    
    .contact-form {
      width: 100%;
    }
  }
  @media (max-width: 991px) {
    .container{
      display: block;
    }
    .contact-form{
      margin-top: 50px;
    }
    .pic{
      padding-top: 50px;
    }
  }