/* footer */

     
        /* Custom Styles */
        .footer-bg {
            background-color: rgba(19, 106, 48, 1); /* Bootstrap success */
          position: relative;
          overflow: hidden;
          color: white;
        }
    
        .footer-pattern {
          /* background-image: url('Images/hemp-pattern.png'); */
          background-repeat: repeat;
          opacity: 0.05;
          position: absolute;
          inset: 0;
          z-index: 0;
        }
    
        .footer-content {
          position: relative;
          z-index: 1;
        }
    
        .footer-title {
          border-bottom: 4px solid rgba(255, 255, 255, 0.25);
          padding-bottom: 0.5rem;
          margin-bottom: 1rem;
        }
    
        .footer-link {
          display: flex;
          align-items: center;
          margin-bottom: 0.5rem;
          color: white;
          text-decoration: none;
          transition: all 0.3s ease;
        }
    
        .footer-link i {
          margin-right: 0.5rem;
          color: white;
        }
    
        .footer-link:hover {
          color: black;
          transform: translateX(2px);
        }
    
        .social-btn {
          width: 30px;
          height: 30px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          border: 1px solid #fff;
          color: #fff;
          transition: all 0.3s ease;
        
        }
        .social-btn:hover {
          background-color: white;
          color: #198754;
        }
    
        /* for subscribe button in newsletter  */
      
    .input-group {
      display: flex;
      align-items: center;
    }
    
    .input {
      min-height: 50px;
      max-width: 150px;
      padding: 0 1rem;
      color: #fff;
      font-size: 15px;
      border: 2px solid #B3D8A8;
      border-radius: 6px 0 0 6px;
      background-color: transparent;
    }
    
    .button--submit {
      min-height: 50px;
      padding: .5em 1em;
      border: none;
      border-radius: 0 6px 6px 0;
      background-color: #B3D8A8;
      color: black;
      font-size: 15px;
      cursor: pointer;
      transition: background-color .3s ease-in-out;
    }
    
    .button--submit:hover {
      background-color: #198754;
      color: white;
    }
    
    .input:focus, .input:focus-visible {
      border-color: #198754;
     color: white;
      outline: none;
    }
    
     
        