<!DOCTYPE html>
<html lang="en"><head><link rel="shortcut icon" type="image/png" href="https://storage.mlcdn.com/account_image/405965/inika new logo 052217Qsgis7.png">





    <meta name="robots" content="index, follow">


<meta property="og:type" content="website">
<meta property="og:url" content="https://www.inika.org">


<meta name="twitter:card" content="summary_large_image">


    <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<meta name="description" content="Transforming waste into resources for the circular economy">
<meta name="keywords" content="social enterprise, circular economy, citizen action, climate action, waste recovery, recycling, composting, food2soil, soil2staples">













    
    

<link rel="stylesheet" href="https://assets.mlcdn.com/ml/bootstrap/css/bootstrap-4.6.2.min.css">


<script src="https://assets.mlcdn.com/ml/jquery/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://assets.mlcdn.com/ml/bootstrap/js/bootstrap-4.6.2.min.js"></script>

<script src="https://kit.fontawesome.com/0f54bd8811.js"></script>

<title>Inika Home</title>

  <link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css">
  



<style type="text/css">@import url("https://assets.mlcdn.com/fonts.css?version=1748352");</style>


<script src="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.11.0/baguetteBox.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.11.0/baguetteBox.min.css">

<script>
  (function($) {
    window.addEventListener('DOMContentLoaded', function() {
        $('.ml-gallery').length && baguetteBox && baguetteBox.run('.ml-gallery');
    })
  })(jQuery);
</script>

<script src="https://assets.mlcdn.com/ml/moment/moment.min.js"></script>
<script src="https://assets.mlcdn.com/ml/moment-timezone/moment-timezone-with-data.min.js"></script>

<script>
  var previousTimeZone = [];
  var updatingTimer = false;

	function timers(newDate) {
    updatingTimer = true;

		setTimeout(function(){
			$('.countdown').each(function() {
        var id = $(this).attr('id');
        var selected_zone = $(this).attr('data-zone');
        var zone = $(this).attr('data-' + selected_zone);

        if (typeof previousTimeZone[id] === 'undefined') {
          previousTimeZone[id] = zone;
        }

        // init countdown timer || || endTime changed || zone changed
        if(!$(this).data('countdown-bound') || newDate || previousTimeZone[id] !== zone) {
          previousTimeZone[id] = zone;
          $(this).data('countdown-bound', true);

          var endTime = newDate || $(this).attr('data-date');
          var endTimeUTC = getUTC(endTime, zone);

          initializeClock(id, endTimeUTC);
        }

			});
      updatingTimer = false;
		});
	}

	function getUTC(endTime, zone){
	  var moment = window.moment;
    try {
      moment = window.top && window.top.moment;
    } catch (err) { }
    var format = 'YYYY-MM-DD HH:mm:ss';
    if (moment.tz && zone) {
      var date = moment.tz(endTime, zone);
      date = date.tz ? date.tz("UTC") : date;
    } else {
      var date = moment(endTime, format);
      date = (zone && date.tz) ? date.tz(zone) : date;
    }
    return date.format(format);
  }

	$(document).ready(function () {
		timers();

        const observer = new MutationObserver((mutations) => {
            mutations.forEach((mutation) => {
                if (!updatingTimer && mutation.type === 'childList') {
                    timers();
                }
            });
        });

        observer.observe(document.body, {
            childList: true, // Monitor additions/removals of child elements
            subtree: true,   // Include all descendants of the body
        });
	});

	function getTimeRemaining(endtime) {
        endtime = endtime.replace(' ', 'T') + 'Z';
        var currentTime = new Date();
        var currentUTC = Date.parse(currentTime.toUTCString());
        if (!endtime || Number.isNaN(Date.parse(endtime))) {
            endtime = currentUTC;
        }
        var t = Date.parse(endtime) - currentUTC;
		var seconds = Math.floor((t / 1000) % 60);
		var minutes = Math.floor((t / 1000 / 60) % 60);
		var hours = Math.floor((t / (1000 * 60 * 60)) % 24);
		var days = Math.floor(t / (1000 * 60 * 60 * 24));
		return {
			'total': t,
			'days': days,
			'hours': hours,
			'minutes': minutes,
			'seconds': seconds
		};
	}

	function initializeClock (id, endtime) {
		var clock = document.getElementById(id);
		var daysSpan = clock.querySelector('.days');
		var hoursSpan = clock.querySelector('.hours');
		var minutesSpan = clock.querySelector('.minutes');
		var secondsSpan = clock.querySelector('.seconds');

		function updateClock() {
			var t = getTimeRemaining(endtime);

			daysSpan.innerHTML = t.days;
			hoursSpan.innerHTML = ('0' + t.hours).slice(-2);
			minutesSpan.innerHTML = ('0' + t.minutes).slice(-2);
			secondsSpan.innerHTML = ('0' + t.seconds).slice(-2);

			if (t.total <= 0) {
				daysSpan.innerHTML = '00';
				hoursSpan.innerHTML = '00';
				minutesSpan.innerHTML = '00';
				secondsSpan.innerHTML = '00';
			}
		}

		updateClock();

		if (window['timerinterval' + id]) {
			clearInterval(window['timerinterval' + id]);
		}

		window['timerinterval' + id] = setInterval(updateClock, 1000);
	}
</script>



  <style type="text/css">
      .ml-notification {
        text-align: center;
        margin-bottom: 0;
        border-radius: 0;
      background-color: #eeeeee;
      border-top: 1px solid #cccccc;
      padding-top: 8px;
      padding-bottom: 8px;
      z-index: 1000;
      }
      .ml-notification.box {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: auto;
        flex-direction: column;
        display: flex;
        max-width: 340px;
        border-radius: 4px;
      border: 1px solid #cccccc;
      }
      .ml-notification.box.right {
        right: 20px;
        left: auto;
      }
            @media only screen and (max-width: 480px) {
        .ml-notification.box {
          bottom: 0;
          left: 0;
          right: 0;
          max-width: 100%;
          border-radius: 0!important;
        }
      }
      .ml-notification.bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top:auto;
        z-index: 1;
      }
      
      /* Text and link */
      .ml-notification .text-block {
        padding: 6px 0;
      }
      .ml-notification .text-block p {
      font-family: 'Raleway', sans-serif;
      color: #000000;
      font-size: 14px;
      line-height: 21px;
      margin-bottom: 10px;
      }
      .ml-notification .text-block p:last-child {
        margin-bottom: 0;
      }
      .ml-notification .text-block p a {
      color: #000000;
      text-decoration: underline;
      }

      /* Button */
      .ml-notification .button-block {
        padding: 2px 0;
      }
      .ml-notification .button-block .btn-one {
        width: auto;
        display: inline-block;
      font-family:'Raleway', sans-serif;
      background-color:#000000;
      font-size:16px;
      border-top:1px solid #000000;
      border-bottom:1px solid #000000;
      border-left:1px solid #000000;
      border-right:1px solid #000000;
      color:#ffffff;
      border-radius:3px;
      padding:5px 15px!important;
      font-weight: normal; font-style: normal; text-decoration: none;
      }
      .ml-notification .button-block .btn-one:hover, .ml-notification .button-block .btn-one:focus, .ml-notification .button-block .btn-one:active, .ml-notification .button-block .btn-one:active:hover {
      background-color:#171616;
      border-top:1px solid #171616;
      border-bottom:1px solid #171616;
      border-left:1px solid #171616;
      border-right:1px solid #171616;
      color:#ffffff;
      font-weight: normal; font-style: normal; text-decoration: none;
      }

      /* Button 2 */

      .ml-notification .button-block .btn-two {
        width: auto;
        display: inline-block;
      font-family:'Raleway', sans-serif;
      background-color:transparent;
      font-size:16px;
      border-top:1px solid #ffffff;
      border-bottom:1px solid #ffffff;
      border-left:1px solid #ffffff;
      border-right:1px solid #ffffff;
      color:#ffffff;
      border-radius:3px;
      padding:5px 15px!important;
      font-weight: normal; font-style: normal; text-decoration: none;
      }
      .ml-notification .button-block .btn-two:hover, .ml-notification .button-block .btn-two:focus, .ml-notification .button-block .btn-two:active, .ml-notification .button-block .btn-two:active:hover {
      background-color:#eaeced;
      border-top:1px solid #ffffff;
      border-bottom:1px solid #ffffff;
      border-left:1px solid #ffffff;
      border-right:1px solid #ffffff;
      color:#000000;
      font-weight: normal; font-style: normal; text-decoration: none;
      }
    </style><style>
      /* BS fix for too big height */
      .flex-column .col-1, .flex-column .col-2, .flex-column .col-3, .flex-column .col-4, .flex-column .col-5, .flex-column .col-6, .flex-column .col-7, .flex-column .col-8, .flex-column .col-9, .flex-column .col-10, .flex-column .col-11, .flex-column .col-12  {
        flex-basis: auto;
      }
    </style><style>

      .skip-link {
        background: #007bff;
        height: 30px;
        left: 50%;
        padding: 8px;
        position: absolute;
        transform: translateY(-1000%);
        transition: transform 0.3s;
        color: #ffffff;
        text-decoration: none;
      }

      .skip-link:focus {
        transform: translateY(-50%);
      }

      .navbar-toggler {
        color: rgba(0, 0, 0, 0) !important;
        border-color: rgba(0, 0, 0, 0) !important;
      }

      .navbar-toggler-icon {
        background-image: none !important;
      }

      .navbar-toggler-icon {
        background-image: none;
      border-bottom: 1px solid #000000;
      height: 17px;
      position: relative;
      transition: all 300ms linear;
      width: 24px;
      }

      .navbar-toggler-icon:after,
      .navbar-toggler-icon:before {
      background-color: #000000;
      content: '';
      height: 1px;
      left: 0;
      position: absolute;
      top: 0;
      transition: all 300ms linear;
      width: 24px;
      z-index: 2;
      }

      .navbar-toggler-icon:after {
        top: 8px;
      }

      .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
        transform: rotate(45deg);
      }

      .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
        transform: translateY(8px) rotate(-45deg);
      }

      .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        border-color: transparent;
      }

      a.mobile-search {
        font-size: 18px;
        color: #000000;
        margin-top: 4px;
      }

    </style><style>

      button:focus {
        outline: none;
      }

      /*header.active {*/
      /*  background: transparent;*/
      /*}*/
      header {
      padding-top: 12px;
      padding-bottom: 12px;
      background-color: #ffffff;
      border-bottom: 1px solid  #E5E7EB;
      -webkit-transition : all 0.3s ease-out;
      transition : all 0.3s ease-out;
      box-shadow: none;
      position: relative;
      z-index: 1;
      }

      header .navbar {
        padding: 0;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
      }

      header .navbar .navbar-brand img {
      height: 70px;
      }

      @media (min-width: 768px) {

        header .navbar-nav .nav-item {
          padding-left: 20px;
          padding-right:  20px;
        }

        header .navbar-nav .nav-item:first-child {
          padding-left: 0;
        }

        header .navbar-nav .nav-item:last-child {
          padding-right: 0;
        }

      }

      header .navbar .nav-item a.dropdown-toggle {
          white-space: normal;
      }

      header .navbar .nav-item a.dropdown-toggle:after {
        border: solid #000000!important;
        border-width: 0 2px 2px 0!important;
        vertical-align: 0.2em;
        padding: 2px!important;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        margin-left: 10px;
        transition: transform 0.3s;
        color: #000000!important;
      }

      header .navbar .nav-item a.dropdown-toggle:hover:after {
        vertical-align: 0.15em;
        transform: rotate(-135deg)!important;
        -webkit-transform: rotate(-135deg)!important;
        border-color: #09c269!important;
      }

      header .navbar .nav-item .dropdown-menu {
        border: 1px solid rgba(241, 241, 241, 0.5);
        border: 1px solid #00000030!important;
        margin-top: 0px;
        margin-right: -3px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        min-width: 200px;
        background: #ffffff;
        right: 20px; left: inherit;
      }

      header .navbar .nav-item:last-child .dropdown-menu {
        right: 0px!important;
      }

      header .navbar .nav-item .dropdown-menu a {
        border-bottom: none!important;
        padding: .5rem 1.5rem;
        font-size: 13px!important;
      }

      header .navbar .nav-item .dropdown-menu a:hover {
        border-bottom: none;
        color: #09c269!important;
        background: #09c26930!important;
      }

      header .navbar .nav-item a {

      font-family: 'Inter', sans-serif;
      color: #000000!important;
      font-size: 14px!important;
      -webkit-transition : all 0.3s ease-out;
      transition : all 0.3s ease-out;
      border-bottom: 2px solid rgba(225,225,225,0);
      font-weight: normal; font-style: normal; text-decoration: none;

      }

      header .navbar .nav-item a:hover {

      color: #09c269!important;
      -webkit-transition : all 0.3s ease-out;
      transition : all 0.3s ease-out;
      border-bottom: 2px solid #09c269;

      }

      header .navbar .nav-item a.active-page{
        font-weight: bold !important;
      }

      header .navbar .btn-block {
        width: auto;
        display: inline-block;
      font-family:'Inter', sans-serif;
      background-color:#9B7D0D;
      font-size:14px;
      border-top:1px solid #09c269;
      border-bottom:1px solid #09c269;
      border-left:1px solid #09c269;
      border-right:1px solid #09c269;
      color:#ffffff;
      border-radius:6px;
      padding:12px 40px!important;
      font-weight: normal; font-style: normal; text-decoration: none;
      }

      header .navbar .btn-block:hover,
      header .navbar .btn-block:focus,
      header .navbar .btn-block:active,
      header .navbar .btn-block:active:hover {
      background-color:#ffffff;
      border-top:1px solid #b3995d;
      border-bottom:1px solid #b3995d;
      border-left:1px solid #b3995d;
      border-right:1px solid #b3995d;
      color:#b3995d;
      font-weight: normal; font-style: normal; text-decoration: none;
      }

      @media (max-width: 767px) {


        body header {
          width: 100%;
          min-height: 1%;
          z-index: 20;
        }

        body header {
          width: 100%;
          min-height: 100%!important;
          height: 100%;
          max-height: 100vh;
          overflow-y: scroll;
          background: #ffffff;
        }

        .navbar-light .navbar-nav .nav-link {
          text-align: left;
          border-bottom: none!important;
          width:100%;
        }

        header .navbar .nav-item .dropdown-menu {
          border: none!important;
          margin-left: 0px!important;
          box-shadow: none!important;
          min-width: 100%!important;
          background: none!important;
          display: block!important;
          padding: 0;
        }

        header .navbar .nav-item a.dropdown-toggle:hover:after {
          transform: rotate(45deg)!important;
          vertical-align: 0.2em!important;
        }

        header .navbar .nav-item .dropdown-menu a {
          color: #000000!important;
        }

        header .navbar .nav-item .dropdown-menu a:hover {
          background: none!important;
        }

      }

      @media (max-width: 768px) {
        body header {
          max-height: 100vh;
          overflow-y: scroll;
          scrollbar-width: none;
          -ms-overflow-style: none;
        }
        body header::-webkit-scrollbar {
          width: 0;
          background: transparent;

        }
      }
    </style><style type="text/css">
                        .image-block-9 img {
                          max-width: 100%;
                        }
                      </style><style type="text/css">

  .container-fluid.ml-lp-8 {

    padding-bottom: 30px;
    padding-top: 140px;
    background-color: #ffffff;

  }

</style><style type="text/css">

        .image-block-8 img {

        max-width: 100%;

        }

      </style><style type="text/css">
  .ml-lp-8 h1 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:52px;
    letter-spacing: 0px;
    line-height: auto%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-8 h2 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:38px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-8 h3 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:20px;
    letter-spacing: 0px;
    line-height: 125%!important;
  }
  .ml-lp-8 blockquote {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 18px;
    margin: 0 0 15px 0;
    padding-left: 1em;
    border-left: 0.2em solid #333333;
  }
  .ml-lp-8 blockquote:before,
  .ml-lp-8 blockquote:after {
    content: '\201C';
    font-family: 'Inter', sans-serif;
    color: #333333;
  }
  .ml-lp-8 blockquote:after {
    content: '\201D';
  }
  .ml-lp-8 p,
  .ml-lp-8 ul,
  .ml-lp-8 ol {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 18px;
    margin: 0 0 15px 0;
    line-height: 150%!important;
  }
  .ml-lp-8 p:last-child,
  .ml-lp-8 ul:last-child,
  .ml-lp-8 ol:last-child {
    margin-bottom: 0;
  }
  .ml-lp-8 p a,
  .ml-lp-8 ul a,
  .ml-lp-8 ol a {
    font-family: 'Inter', sans-serif;
    color: #09c269;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .ml-lp-8 p,
    .ml-lp-8 ul,
    .ml-lp-8 ol {
      font-size: 18px!important;
    }
    .ml-lp-8 h1 {
      font-size: 28px!important;
    }
    .ml-lp-8 h2 {
      font-size: 24px!important;
    }
    .ml-lp-8 h3 {
      font-size: 20px!important;
    }
  }
</style><style type="text/css">
  .ml-lp-8 .button-block .btn-block {
    width: auto;
    display: inline-block;
    font-family:'Inter', sans-serif;
    background-color:#9B7D0D;
    font-size:16px;
    border-top:1px solid #09c269;
    border-bottom:1px solid #09c269;
    border-left:1px solid #09c269;
    border-right:1px solid #09c269;
    color:#ffffff;
    border-radius:6px;
    padding:12px 40px!important;
  font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-8 .button-block .btn-block:hover,
  .ml-lp-8 .button-block .btn-block:focus,
  .ml-lp-8 .button-block .btn-block:active,
  .ml-lp-8 .button-block .btn-block:active:hover {
    background-color:#1DAB65;
    border-top:1px solid #1DAB65;
    border-bottom:1px solid #1DAB65;
    border-left:1px solid #1DAB65;
    border-right:1px solid #1DAB65;
    color:#ffffff;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-8 .button2-block .btn-block {
    width: auto;
    display: inline-block;
    font-family:'Inter', sans-serif;
    background-color:transparent;
    font-size:16px;
    border-top:1px solid #333333;
    border-bottom:1px solid #333333;
    border-left:1px solid #333333;
    border-right:1px solid #333333;
    color:#333333;
    border-radius:6px;
    padding:12px 40px!important;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-8 .button2-block .btn-block:hover,
  .ml-lp-8 .button2-block .btn-block:focus,
  .ml-lp-8 .button2-block .btn-block:active,
  .ml-lp-8 .button2-block .btn-block:active:hover {
    background-color:#eaeced;
    border-top:1px solid #000000;
    border-bottom:1px solid #000000;
    border-left:1px solid #000000;
    border-right:1px solid #000000;
    color:#000000;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  @media (max-width: 768px) {
    .ml-lp-8 .button-block .btn-block {
      width: 100%!important;
    }
  .ml-lp-8 .button2-block .btn-block {
      width: 100%!important;
    }
  }
</style><style type="text/css">

  .container-fluid.ml-lp-14 {

    padding-bottom: 0px;
    padding-top: 0px;
    background-color: #ffffff;

  }

</style><style type="text/css">
  .ml-lp-14 h1 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:52px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-14 h2 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:38px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-14 h3 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:20px;
    letter-spacing: 0px;
    line-height: 125%!important;
  }
  .ml-lp-14 blockquote {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    padding-left: 1em;
    border-left: 0.2em solid #333333;
  }
  .ml-lp-14 blockquote:before,
  .ml-lp-14 blockquote:after {
    content: '\201C';
    font-family: 'Inter', sans-serif;
    color: #333333;
  }
  .ml-lp-14 blockquote:after {
    content: '\201D';
  }
  .ml-lp-14 p,
  .ml-lp-14 ul,
  .ml-lp-14 ol {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%!important;
  }
  .ml-lp-14 p:last-child,
  .ml-lp-14 ul:last-child,
  .ml-lp-14 ol:last-child {
    margin-bottom: 0;
  }
  .ml-lp-14 p a,
  .ml-lp-14 ul a,
  .ml-lp-14 ol a {
    font-family: 'Inter', sans-serif;
    color: #333333;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .ml-lp-14 p,
    .ml-lp-14 ul,
    .ml-lp-14 ol {
      font-size: 16px!important;
    }
    .ml-lp-14 h1 {
      font-size: 28px!important;
    }
    .ml-lp-14 h2 {
      font-size: 24px!important;
    }
    .ml-lp-14 h3 {
      font-size: 20px!important;
    }
  }
</style><style type="text/css">

  .ml-lp-17 {

    background-color: #ffffff;

  }

  .ml-lp-17 hr {

    margin-bottom: 30px;
    margin-top: 30px;
    border-top: 1px solid #E5E7EB;
    width: 100%;

  }

</style><style type="text/css">

  .container-fluid.ml-lp-19 {

    padding-bottom: 10px;
    padding-top: 100px;
    background-color: #ffffff;

  }

</style><style type="text/css">
  .ml-lp-19 h1 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:52px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-19 h2 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:38px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-19 h3 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:20px;
    letter-spacing: 0px;
    line-height: 125%!important;
  }
  .ml-lp-19 blockquote {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    padding-left: 1em;
    border-left: 0.2em solid #333333;
  }
  .ml-lp-19 blockquote:before,
  .ml-lp-19 blockquote:after {
    content: '\201C';
    font-family: 'Inter', sans-serif;
    color: #333333;
  }
  .ml-lp-19 blockquote:after {
    content: '\201D';
  }
  .ml-lp-19 p,
  .ml-lp-19 ul,
  .ml-lp-19 ol {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%!important;
  }
  .ml-lp-19 p:last-child,
  .ml-lp-19 ul:last-child,
  .ml-lp-19 ol:last-child {
    margin-bottom: 0;
  }
  .ml-lp-19 p a,
  .ml-lp-19 ul a,
  .ml-lp-19 ol a {
    font-family: 'Inter', sans-serif;
    color: #09c269;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .ml-lp-19 p,
    .ml-lp-19 ul,
    .ml-lp-19 ol {
      font-size: 16px!important;
    }
    .ml-lp-19 h1 {
      font-size: 28px!important;
    }
    .ml-lp-19 h2 {
      font-size: 24px!important;
    }
    .ml-lp-19 h3 {
      font-size: 20px!important;
    }
  }
</style><style type="text/css">
          .image-block-24 img {
                                      max-width: 100%;
                                    }
        </style><style type="text/css">

  .ml-lp-23 .card,
  .ml-lp-23 .card.card-23 {

    background-color: #ffffff;
    background-image: none;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #dddddd;
    border-radius: 4px;

  }

  .ml-lp-23 .card .card-body,
  .ml-lp-23 .card.card-23 .card-body {

    padding: 1.75rem;

  }

  .ml-lp-23 .card.card-large .card-body,
  .ml-lp-23 .card.card-23.card-large .card-body {

    padding: 3rem;

  }

  .ml-lp-23 .card .card-body.with-image,
  .ml-lp-23 .card.card-23 .card-body.with-image {

    padding: 0.75rem 1.75rem 1.75rem 1.75rem;

  }

  .ml-lp-23 .card.card-large .card-body.with-image,
  .ml-lp-23 .card.card-23.card-large .card-body.with-image {

    padding: 1rem 3rem 3rem 3rem;

  }

  .ml-lp-23 .card .card-image-spacing {

    padding: 1.75rem 1.75rem 0 1.75rem;

  }

  .ml-lp-23 .card.card-large .card-image-spacing {

    padding: 3rem 3rem 0 3rem;

  }


</style><style type="text/css">
  .ml-lp-23 h1 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:52px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-23 h2 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:38px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-23 h3 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:20px;
    letter-spacing: 0px;
    line-height: 125%!important;
  }
  .ml-lp-23 blockquote {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    padding-left: 1em;
    border-left: 0.2em solid #333333;
  }
  .ml-lp-23 blockquote:before,
  .ml-lp-23 blockquote:after {
    content: '\201C';
    font-family: 'Inter', sans-serif;
    color: #333333;
  }
  .ml-lp-23 blockquote:after {
    content: '\201D';
  }
  .ml-lp-23 p,
  .ml-lp-23 ul,
  .ml-lp-23 ol {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%!important;
  }
  .ml-lp-23 p:last-child,
  .ml-lp-23 ul:last-child,
  .ml-lp-23 ol:last-child {
    margin-bottom: 0;
  }
  .ml-lp-23 p a,
  .ml-lp-23 ul a,
  .ml-lp-23 ol a {
    font-family: 'Inter', sans-serif;
    color: #333333;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .ml-lp-23 p,
    .ml-lp-23 ul,
    .ml-lp-23 ol {
      font-size: 16px!important;
    }
    .ml-lp-23 h1 {
      font-size: 28px!important;
    }
    .ml-lp-23 h2 {
      font-size: 24px!important;
    }
    .ml-lp-23 h3 {
      font-size: 20px!important;
    }
  }
</style><style type="text/css">
  .ml-lp-23 .button-block .btn-block {
    width: auto;
    display: inline-block;
    font-family:'Inter', sans-serif;
    background-color:#9B7D0D;
    font-size:16px;
    border-top:1px solid #09c269;
    border-bottom:1px solid #09c269;
    border-left:1px solid #09c269;
    border-right:1px solid #09c269;
    color:#ffffff;
    border-radius:6px;
    padding:12px 40px!important;
  font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-23 .button-block .btn-block:hover,
  .ml-lp-23 .button-block .btn-block:focus,
  .ml-lp-23 .button-block .btn-block:active,
  .ml-lp-23 .button-block .btn-block:active:hover {
    background-color:#1DAB65;
    border-top:1px solid #1DAB65;
    border-bottom:1px solid #1DAB65;
    border-left:1px solid #1DAB65;
    border-right:1px solid #1DAB65;
    color:#ffffff;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-23 .button2-block .btn-block {
    width: auto;
    display: inline-block;
    font-family:'Inter', sans-serif;
    background-color:transparent;
    font-size:16px;
    border-top:1px solid #333333;
    border-bottom:1px solid #333333;
    border-left:1px solid #333333;
    border-right:1px solid #333333;
    color:#333333;
    border-radius:6px;
    padding:12px 40px!important;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-23 .button2-block .btn-block:hover,
  .ml-lp-23 .button2-block .btn-block:focus,
  .ml-lp-23 .button2-block .btn-block:active,
  .ml-lp-23 .button2-block .btn-block:active:hover {
    background-color:#eaeced;
    border-top:1px solid #000000;
    border-bottom:1px solid #000000;
    border-left:1px solid #000000;
    border-right:1px solid #000000;
    color:#000000;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  @media (max-width: 768px) {
    .ml-lp-23 .button-block .btn-block {
      width: 100%!important;
    }
  .ml-lp-23 .button2-block .btn-block {
      width: 100%!important;
    }
  }
</style><style type="text/css">
          .image-block-29 img {
                                      max-width: 100%;
                                    }
        </style><style type="text/css">

  .ml-lp-28 .card,
  .ml-lp-28 .card.card-28 {

    background-color: #ffffff;
    background-image: none;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #dddddd;
    border-radius: 4px;

  }

  .ml-lp-28 .card .card-body,
  .ml-lp-28 .card.card-28 .card-body {

    padding: 1.75rem;

  }

  .ml-lp-28 .card.card-large .card-body,
  .ml-lp-28 .card.card-28.card-large .card-body {

    padding: 3rem;

  }

  .ml-lp-28 .card .card-body.with-image,
  .ml-lp-28 .card.card-28 .card-body.with-image {

    padding: 0.75rem 1.75rem 1.75rem 1.75rem;

  }

  .ml-lp-28 .card.card-large .card-body.with-image,
  .ml-lp-28 .card.card-28.card-large .card-body.with-image {

    padding: 1rem 3rem 3rem 3rem;

  }

  .ml-lp-28 .card .card-image-spacing {

    padding: 1.75rem 1.75rem 0 1.75rem;

  }

  .ml-lp-28 .card.card-large .card-image-spacing {

    padding: 3rem 3rem 0 3rem;

  }


</style><style type="text/css">
  .ml-lp-28 h1 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:52px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-28 h2 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:38px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-28 h3 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:20px;
    letter-spacing: 0px;
    line-height: 125%!important;
  }
  .ml-lp-28 blockquote {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    padding-left: 1em;
    border-left: 0.2em solid #333333;
  }
  .ml-lp-28 blockquote:before,
  .ml-lp-28 blockquote:after {
    content: '\201C';
    font-family: 'Inter', sans-serif;
    color: #333333;
  }
  .ml-lp-28 blockquote:after {
    content: '\201D';
  }
  .ml-lp-28 p,
  .ml-lp-28 ul,
  .ml-lp-28 ol {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%!important;
  }
  .ml-lp-28 p:last-child,
  .ml-lp-28 ul:last-child,
  .ml-lp-28 ol:last-child {
    margin-bottom: 0;
  }
  .ml-lp-28 p a,
  .ml-lp-28 ul a,
  .ml-lp-28 ol a {
    font-family: 'Inter', sans-serif;
    color: #333333;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .ml-lp-28 p,
    .ml-lp-28 ul,
    .ml-lp-28 ol {
      font-size: 16px!important;
    }
    .ml-lp-28 h1 {
      font-size: 28px!important;
    }
    .ml-lp-28 h2 {
      font-size: 24px!important;
    }
    .ml-lp-28 h3 {
      font-size: 20px!important;
    }
  }
</style><style type="text/css">
  .ml-lp-28 .button-block .btn-block {
    width: auto;
    display: inline-block;
    font-family:'Inter', sans-serif;
    background-color:#9B7D0D;
    font-size:16px;
    border-top:1px solid #09c269;
    border-bottom:1px solid #09c269;
    border-left:1px solid #09c269;
    border-right:1px solid #09c269;
    color:#ffffff;
    border-radius:6px;
    padding:12px 40px!important;
  font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-28 .button-block .btn-block:hover,
  .ml-lp-28 .button-block .btn-block:focus,
  .ml-lp-28 .button-block .btn-block:active,
  .ml-lp-28 .button-block .btn-block:active:hover {
    background-color:#1DAB65;
    border-top:1px solid #1DAB65;
    border-bottom:1px solid #1DAB65;
    border-left:1px solid #1DAB65;
    border-right:1px solid #1DAB65;
    color:#ffffff;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-28 .button2-block .btn-block {
    width: auto;
    display: inline-block;
    font-family:'Inter', sans-serif;
    background-color:transparent;
    font-size:16px;
    border-top:1px solid #333333;
    border-bottom:1px solid #333333;
    border-left:1px solid #333333;
    border-right:1px solid #333333;
    color:#333333;
    border-radius:6px;
    padding:12px 40px!important;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-28 .button2-block .btn-block:hover,
  .ml-lp-28 .button2-block .btn-block:focus,
  .ml-lp-28 .button2-block .btn-block:active,
  .ml-lp-28 .button2-block .btn-block:active:hover {
    background-color:#eaeced;
    border-top:1px solid #000000;
    border-bottom:1px solid #000000;
    border-left:1px solid #000000;
    border-right:1px solid #000000;
    color:#000000;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  @media (max-width: 768px) {
    .ml-lp-28 .button-block .btn-block {
      width: 100%!important;
    }
  .ml-lp-28 .button2-block .btn-block {
      width: 100%!important;
    }
  }
</style><style type="text/css">

  .container-fluid.ml-lp-22 {

    padding-bottom: 30px;
    padding-top: 30px;
    background-color: #ffffff;

  }

</style><style type="text/css">

  .ml-lp-22 .card,
  .ml-lp-22 .card.card-22 {

    background-color: #ffffff;
    background-image: none;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #dddddd;
    border-radius: 4px;

  }

  .ml-lp-22 .card .card-body,
  .ml-lp-22 .card.card-22 .card-body {

    padding: 1.75rem;

  }

  .ml-lp-22 .card.card-large .card-body,
  .ml-lp-22 .card.card-22.card-large .card-body {

    padding: 3rem;

  }

  .ml-lp-22 .card .card-body.with-image,
  .ml-lp-22 .card.card-22 .card-body.with-image {

    padding: 0.75rem 1.75rem 1.75rem 1.75rem;

  }

  .ml-lp-22 .card.card-large .card-body.with-image,
  .ml-lp-22 .card.card-22.card-large .card-body.with-image {

    padding: 1rem 3rem 3rem 3rem;

  }

  .ml-lp-22 .card .card-image-spacing {

    padding: 1.75rem 1.75rem 0 1.75rem;

  }

  .ml-lp-22 .card.card-large .card-image-spacing {

    padding: 3rem 3rem 0 3rem;

  }


</style><style type="text/css">
  .ml-lp-22 h1 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:52px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-22 h2 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:38px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-22 h3 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:20px;
    letter-spacing: 0px;
    line-height: 125%!important;
  }
  .ml-lp-22 blockquote {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    padding-left: 1em;
    border-left: 0.2em solid #333333;
  }
  .ml-lp-22 blockquote:before,
  .ml-lp-22 blockquote:after {
    content: '\201C';
    font-family: 'Inter', sans-serif;
    color: #333333;
  }
  .ml-lp-22 blockquote:after {
    content: '\201D';
  }
  .ml-lp-22 p,
  .ml-lp-22 ul,
  .ml-lp-22 ol {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%!important;
  }
  .ml-lp-22 p:last-child,
  .ml-lp-22 ul:last-child,
  .ml-lp-22 ol:last-child {
    margin-bottom: 0;
  }
  .ml-lp-22 p a,
  .ml-lp-22 ul a,
  .ml-lp-22 ol a {
    font-family: 'Inter', sans-serif;
    color: #333333;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .ml-lp-22 p,
    .ml-lp-22 ul,
    .ml-lp-22 ol {
      font-size: 16px!important;
    }
    .ml-lp-22 h1 {
      font-size: 28px!important;
    }
    .ml-lp-22 h2 {
      font-size: 24px!important;
    }
    .ml-lp-22 h3 {
      font-size: 20px!important;
    }
  }
</style><style type="text/css">
  .ml-lp-22 .button-block .btn-block {
    width: auto;
    display: inline-block;
    font-family:'Inter', sans-serif;
    background-color:#9B7D0D;
    font-size:16px;
    border-top:1px solid #09c269;
    border-bottom:1px solid #09c269;
    border-left:1px solid #09c269;
    border-right:1px solid #09c269;
    color:#ffffff;
    border-radius:6px;
    padding:12px 40px!important;
  font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-22 .button-block .btn-block:hover,
  .ml-lp-22 .button-block .btn-block:focus,
  .ml-lp-22 .button-block .btn-block:active,
  .ml-lp-22 .button-block .btn-block:active:hover {
    background-color:#1DAB65;
    border-top:1px solid #1DAB65;
    border-bottom:1px solid #1DAB65;
    border-left:1px solid #1DAB65;
    border-right:1px solid #1DAB65;
    color:#ffffff;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-22 .button2-block .btn-block {
    width: auto;
    display: inline-block;
    font-family:'Inter', sans-serif;
    background-color:transparent;
    font-size:16px;
    border-top:1px solid #333333;
    border-bottom:1px solid #333333;
    border-left:1px solid #333333;
    border-right:1px solid #333333;
    color:#333333;
    border-radius:6px;
    padding:12px 40px!important;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-22 .button2-block .btn-block:hover,
  .ml-lp-22 .button2-block .btn-block:focus,
  .ml-lp-22 .button2-block .btn-block:active,
  .ml-lp-22 .button2-block .btn-block:active:hover {
    background-color:#eaeced;
    border-top:1px solid #000000;
    border-bottom:1px solid #000000;
    border-left:1px solid #000000;
    border-right:1px solid #000000;
    color:#000000;
    font-weight: normal; font-style: normal; text-decoration: none;
  }
  @media (max-width: 768px) {
    .ml-lp-22 .button-block .btn-block {
      width: 100%!important;
    }
  .ml-lp-22 .button2-block .btn-block {
      width: 100%!important;
    }
  }
</style><style type="text/css">

  .ml-lp-39 {

    background-color: #ffffff;

  }

  .ml-lp-39 hr {

    margin-bottom: 30px;
    margin-top: 30px;
    border-top: 1px solid #E5E7EB;
    width: 100%;

  }

</style><style type="text/css">
                        .image-block-42 img {
                          max-width: 100%;
                        }
                      </style><style type="text/css">

  .container-fluid.ml-lp-41 {

    padding-bottom: 120px;
    padding-top: 120px;
    background-color: #9b7d0d;

  }

</style><style type="text/css">
  /* Button */
  .ml-lp-41 .button-block {
  text-align: center;
  }
  .ml-lp-41 .btn-block+.btn-block {
                        margin-top: 0;
                      }
  .ml-lp-41 .button-block .btn-block {
  width: auto;
  display: inline-block;
  font-family:'Inter', sans-serif;
  background-color:#000000;
  font-size:16px;
  line-height:24px;
  border-top:1px solid #ffffff;
  border-bottom:1px solid #ffffff;
  border-left:1px solid #ffffff;
  border-right:1px solid #ffffff;
  color:#ffffff;
  border-radius:6px!important;
  padding:12px 40px!important;
  font-weight: normal; font-style: normal; text-decoration: none;
  }
  .ml-lp-41 .button-block .btn-block:hover, .ml-lp-41 .button-block .btn-block:focus, .ml-lp-41 .button-block .btn-block:active, .ml-lp-41 .button-block .btn-block:active:hover {
  background-color:#1DAB65;
  border-top:1px solid #1DAB65;
  border-bottom:1px solid #1DAB65;
  border-left:1px solid #1DAB65;
  border-right:1px solid #1DAB65;
  color:#ffffff;
  font-weight: normal; font-style: normal; text-decoration: none;
  }
  @media (max-width: 768px) {
    .ml-lp-41 .button-block .btn-block {
                          width: 100%!important;
                        }
  }

  /* Input */
  .ml-lp-41 .form-group .form-control,
                      .ml-lp-41 .form-group .custom-select {
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  border-radius: 6px!important;
  font-size: 14px;
  line-height:24px;
  color: #333333;
  border: 1px solid #e5e7eb;
  padding-top:12px!important;
  padding-bottom:12px!important;
  height: auto;
  }

  .ml-lp-41 .form-group.ml-error .form-control,
  .ml-lp-41 .input-group.ml-error .form-control,
  .ml-lp-41 .form-group.ml-error .custom-select {
    border-color: red!important;
  }

  .ml-lp-41 .form-group.ml-error .custom-checkbox-radio-list {
    border-radius: 6px!important;
    border: 1px solid #e5e7eb;
    padding: 10px;
    border-color: red!important;
  }

  .ml-lp-41 .form-group .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666666;
  opacity: 1; /* Firefox */
  }
  .ml-lp-41 .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #666666;
  }
  .ml-lp-41 .form-group .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #666666;
  }

  @media (max-width: 768px) {
    .ml-lp-41 .input-group .input-group-append {
                          float: left !important;
                          margin-top: 15px !important;
                          width: 100%!important;
                          margin-left: 0 !important;
                        }
  }


  /* Checkbox */
  .ml-lp-41 .form-group .custom-control-label,
                      .ml-lp-41 .form-group .custom-control-label p,
                                          .ml-lp-41 .form-group .custom-control-privacy-policy p {
  color: #000000;
  font-size: 12px!important;
  font-family: 'Inter', sans-serif;
  line-height: 22px;
  font-weight: normal; font-style: normal; text-decoration: none;
  margin-bottom: 0
  }
  .ml-lp-41 .form-group.ml-error .custom-control-label p {
                        color: red;
                      }

  .ml-lp-41 .form-group.ml-error .field-title {
                        color: red;
                      }

  .ml-error .label-description,
  .ml-error .label-description p,
  .ml-error .label-description p a,
  .ml-error label:first-child {
    color: #ff0000 !important;
  }

  .ml-lp-41 .form-group .custom-control-label a,
                      .ml-lp-41 .form-group .custom-control-privacy-policy a {
  color:#000000;
  text-decoration: underline;
  }

  .ml-lp-41 .custom-checkbox .custom-control-label::before,
                      .ml-lp-41 .custom-radio .custom-control-label::before {
  border-color: #e5e7eb;
  background-color: #ffffff;
  }
  .ml-lp-41 .custom-checkbox .custom-control-input:checked~.custom-control-label::before,
                      .ml-lp-41 .custom-radio .custom-control-input:checked~.custom-control-label::before {
  border-color: #000000;
  background-color: #000000;
  color: #ffffff;
  }
  /* Checkbox position fix */
  .ml-lp-41 .custom-checkbox .custom-control-label::before, .ml-lp-41 .custom-checkbox .custom-control-label::after,
                                                                                          .ml-lp-41 .custom-radio .custom-control-label::before, .ml-lp-41 .custom-radio .custom-control-label::after {
  top: 4px;
  }

  /* Label */
  .ml-lp-41 .form-group label {
                        margin-bottom: 3px;
  color: #000000;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: bold; font-style: normal; text-decoration: none;
  }

  /* Label Desciption */
  .ml-lp-41 .form-group .custom-control-label .description {
                        margin-top: 5px;
  color: #111111;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: normal; font-style: normal; text-decoration: none;
  }

  /* GDPR Title */
  .ml-lp-41 .form-group-gdpr h4 {
  color: #111111;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: bold; font-style: normal; text-decoration: none;
  }

  /* GDPR Text */
  .ml-lp-41 .form-group-gdpr p {
  color: #111111;
  font-size: 12px!important;
  font-family: 'Inter', sans-serif;
  line-height:  22px;
  font-weight: normal; font-style: normal; text-decoration: none;
  }

  /* GDPR Text Link */
  .ml-lp-41 .form-group-gdpr p a {
  color: #111111;
  }

  .ml-form-recaptcha {
    float: left;
  }
  .ml-form-recaptcha.ml-error iframe {
    border: solid 1px #ff0000;
  }
  @media screen and (max-width: 768px) {
    .ml-form-recaptcha {
      transform: scale(0.77);
      -webkit-transform: scale(0.77);
      transform-origin: 0 0;
      -webkit-transform-origin: 0 0;
    }
  }
</style><style type="text/css">
        .form-hidden {
          display: none;
        }

        .image-block-41 img {
          max-width: 100%;
        }
      </style><style type="text/css">
  .ml-lp-41 h1 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:52px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-41 h2 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:38px;
    letter-spacing: 0px;
    line-height: 125%!important;
    font-weight: bold; font-style: normal; text-decoration: none;;
  }
  .ml-lp-41 h3 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:20px;
    letter-spacing: 0px;
    line-height: 125%!important;
  }
  .ml-lp-41 blockquote {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    padding-left: 1em;
    border-left: 0.2em solid #333333;
  }
  .ml-lp-41 blockquote:before,
  .ml-lp-41 blockquote:after {
    content: '\201C';
    font-family: 'Inter', sans-serif;
    color: #333333;
  }
  .ml-lp-41 blockquote:after {
    content: '\201D';
  }
  .ml-lp-41 p,
  .ml-lp-41 ul,
  .ml-lp-41 ol {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%!important;
  }
  .ml-lp-41 p:last-child,
  .ml-lp-41 ul:last-child,
  .ml-lp-41 ol:last-child {
    margin-bottom: 0;
  }
  .ml-lp-41 p a,
  .ml-lp-41 ul a,
  .ml-lp-41 ol a {
    font-family: 'Inter', sans-serif;
    color: #09c269;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .ml-lp-41 p,
    .ml-lp-41 ul,
    .ml-lp-41 ol {
      font-size: 16px!important;
    }
    .ml-lp-41 h1 {
      font-size: 28px!important;
    }
    .ml-lp-41 h2 {
      font-size: 24px!important;
    }
    .ml-lp-41 h3 {
      font-size: 20px!important;
    }
  }
</style><style type="text/css">
    footer {
      background-color: #9b7d0d;
      padding-top: 40px;
      padding-bottom: 0px;
    }

    /* Footer logo */

    .ml-lp-58 .logo-footer img {
      height: 30px;
    }

    /* Footer disclaimer */

    .ml-lp-58 .footer-description p,
    .ml-lp-58 .footer-description ul,
    .ml-lp-58 .footer-description ol {
      font-family: 'Inter', sans-serif;
      color: #333333;
      font-size: 14px;
      margin: 0 0 15px 0;
    }
    .ml-lp-58 .footer-description p:last-child,
    .ml-lp-58 .footer-description ul:last-child,
    .ml-lp-58 .footer-description ol:last-child {
      margin-bottom: 0;
    }
    .ml-lp-58 .footer-description p a,
    .ml-lp-58 .footer-description ul a,
    .ml-lp-58 .footer-description ol a {
      font-family: 'Inter', sans-serif;
      color: #09c269;
      text-decoration: none;
    }

    /* Footer navigation */

    .footer-navigation h4 {
      color: #000000;
      font-family: 'Raleway', sans-serif;
      font-size: 15px;
      font-weight: bold; font-style: normal; text-decoration: none;
    }
    .footer-navigation .nav-footer-item {
      padding-bottom: .75rem;
    }
    .footer-navigation .nav-footer-item:last-child {
      padding-bottom: 0;
    }
    .footer-navigation .nav-footer-link {
      color: #000000;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      padding-bottom: .25rem;
      -webkit-transition : all 0.3s ease-out;
      transition : all 0.3s ease-out;
      border-bottom: 5px solid rgba(225,225,225,0);
      font-weight: bold; font-style: normal; text-decoration: none;
    }
    .footer-navigation .nav-footer-link:hover {
      color: #000000;
      -webkit-transition : all 0.3s ease-out;
      transition : all 0.3s ease-out;
      border-bottom: 5px solid #000000;
    }
  </style><style>

  body {

  background-color: #ffffff;
  background-image: none;
  background-size:  none;
  background-position: center none;
  background-repeat: none;

  }

  body ol ol {
    list-style-type: lower-alpha;
  }

  body ol ol ol {
    list-style-type: lower-roman;
  }

  .container.with-border {

  border-left: 0px solid #cccccc;
  border-right: 0px solid #cccccc;

  }

  /* Default */

  .default-heading-1 {
  font-family: 'Inter', sans-serif;
  color:#000000;
  font-size:52px;
  font-weight: bold; font-style: normal; text-decoration: none;
  letter-spacing: 0px;
  }

  /* Input */

  .form-group .form-control {
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 6px;
  font-size: 16px;
  color: #333333;
  border: px solid #e5e7eb;
  padding-top:px!important;
  padding-bottom:px!important;
  height: auto;
  }

  .form-group .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #666666;
  opacity: 1; /* Firefox */
  }
  .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #666666;
  }
  .form-group .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #666666;
  }

  /* Large gutters */

  .container.with-large-gutters,
  .container-fluid.with-large-gutters {

    padding-left: 60px;
    padding-right: 60px;

  }

  @media (max-width: 991.98px) {

    .container.with-large-gutters,
    .container-fluid.with-large-gutters {

      padding-left: 30px;
      padding-right: 30px;

    }

  }

  @media (max-width: 575.98px) {

    .container.with-large-gutters,
    .container-fluid.with-large-gutters {

      padding-left: 15px;
      padding-right: 15px;

    }

  }

  .container.container-large-gutter {

    padding-right: 15px;
    padding-left: 15px;

  }

  .container.with-large-gutters .card-body {

    padding: 2.25rem;

  }

  .container.container-large-gutter .container {
    padding-right: 30px;
    padding-left: 30px;

  }

  .container .large-gutters {
    margin-right: -30px;
    margin-left: -30px;

  }
  .container .large-gutters .col,
  .container .large-gutters [class*="col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .container .large-gutters .row {
    margin-right: -30px;
    margin-left: -30px;

  }

  .sections-repeaters .container {
      padding: 0;
  }

  .sections-repeaters .container-fluid {
      padding-left: 0;
      padding-right: 0;
  }

  /* End of Large gutters */

</style><style type="text/css">
  #landing-0 {
  padding-left: 0px!important;
  padding-right: 0px !important;
  }
</style><script src="https://assets.mailerlite.com/js/universal.js" type="text/javascript"></script>

<script>
    window.ml = function () {
        (window.ml.q = window.ml.q || []).push(arguments)
    }
    ml('account', 405965);
    ml('initializePage', '90164510716855317');
    ml('enablePopups', '')
</script>


</head>

  <body>
          
    
    

    <div class="container-fluid" id="landing-0">
    <!-- Pages -->
    

  




    <!-- Deisgn -->
    

  

  

  

  

  

    

    
      
      
      

      
      
      
      
      
    

    
      
      
      
      
      
      
    

    
      
      
      
      
      
      
    

    
    
    
    
    
    
    
  

    
      
      
      
      
      
      
    

    
      
      
      
      
    

    
      
      
    

    

      
        
        
        
        
        
        
        
        
        
        
      

      
        
        
        
        
      
    

    
      
        
        
        
        
        
        
        
        
        
      
      
        
        
        
        
      
    

    
      
      
      
      
      
      
      
    

    
      
      
      
      
    

    
      
      
      
      
    

    
      
      
      
      
    

    
      
      
      
    

    
      
      
      
      
      
      
      
      
    

    
      
      
      
      
    

  







      <!-- Notification -->
    

     <script type="text/javascript" move-to-head="">
        function hideParent(parentKey){
            localStorage.setItem(parentKey, 'false');

            checkIfSticky( function(stickyNavbar, stickyNotification) {
              stickyNavbar.style.top = 0;
            })
        }

        $(document).ready(function(){
            var showNotification = localStorage.getItem('showCookieNotificationBar');
            if (showNotification === 'false'){
                $( ".ml-visible-only-once" ).css( "display", "none" );
            }

            checkIfSticky( function(stickyNavbar, stickyNotification) {
              var notificationHeight = stickyNotification.offsetHeight;
              stickyNavbar.style.top = notificationHeight + 'px';
            })
        })

        function checkIfSticky (callback) {
            var stickyNavbar = document.querySelector('header.sticky-top');
            var stickyNotification = document.querySelector('#notification.sticky-top');
            if (stickyNavbar && stickyNotification) {
              callback(stickyNavbar, stickyNotification);
            }
        }
    </script>


    <!-- Header -->
    

  
  <header class=" justify-content-center">

    <!-- Skip to content link-->
    <a class="skip-link" href="#main">Skip to content</a>
    <!-- End of skip to content link-->

    

    

    

    

    

      
      

      

      

      

      

      

      
        
        

        

        
        

        
        
        
      

      
        
      

      
        
        
        
        
        
      

      
        
          
          
          
          
          
          
          
          
          
        
        
          
          
          
          
        
      

      
        

          
          
          
          
          
          
        
        
          
          
          
        
      

      
        
        
        
      

      
            
      

      
                  
                  
              

      
                  
                  
                  
                  
              

      
                    
                    
                    
                

      
                
                
              

    

    <div class="container-fluid  ml-lp-2">
      <div class="row justify-content-center">
        <div class=" col-12">

          <nav class="navbar navbar-light navbar-expand-md mr-auto ml-auto
            pl-lg-3 pr-lg-3
            
            ">

            <a class="navbar-brand mr-5" href="/">
              <img alt="" src="https://storage.mlcdn.com/account_image/405965/e4gPA21PhAcZHQg4GkyIowXT9SECsBBO2kD16CCP.png" style="display: block;" border="0">
            </a>

            

            <div class="d-flex">
                
                <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#pageNavbar" aria-controls="pageNavbar" aria-expanded="false" aria-label="Toggle navigation">
                  <span class="navbar-toggler-icon"></span>
                </button>
            </div>

            <div class="collapse navbar-collapse justify-content-end" id="pageNavbar">

            <ul class="navbar-nav mt-3 mt-md-0 text-center">
                <li class="nav-item ">
                  <a role="button" href="https://www.food2soil.net" class="nav-link px-0 " target="_blank">Food2Soil</a>

                  
                </li><li class="nav-item ">
                  <a role="button" href="https://soil2staples.inika.org" class="nav-link px-0 " target="_blank">Soil2Staples</a>

                  
                </li>
                
            </ul>

             <a role="button" class="btn btn-block nav-button d-block d-md-none mt-3" href="https://dashboard.mailerlite.com/forms/405965/155760205294994738/share" target="_blank">Need a Fiscal Sponsor?
             </a>

           </div>

            <a role="button" class="btn btn-block d-none d-md-block ml-5" href="https://dashboard.mailerlite.com/forms/405965/155760205294994738/share" target="_blank">Need a Fiscal Sponsor?</a>

            
          </nav>
        </div>
      </div>
    </div>

    

    

    

    

    

    

    
  </header>




<script>
      function toggleDropdown (e) {
      var _d = $(e.target).closest('.dropdown-auto'),
        _m = $('.dropdown-menu', _d);
      setTimeout(function () {
        var shouldOpen = e.type !== 'click' && e.type === 'mouseover';
        _m.toggleClass('show', shouldOpen);
        _d.toggleClass('show', shouldOpen);
        $('[data-toggle="dropdown"]', _d).attr('aria-expanded', shouldOpen);
      }, e.type === 'mouseleave' ? 100 : 0);
    }
    $('body')
      .on('mouseenter mouseleave','.dropdown-auto',toggleDropdown)
      .on('click', '.dropdown-auto .dropdown-menu a', toggleDropdown);

    </script>


<script>
  $(window).on("scroll", function () {
    if ($(window).scrollTop() > 100) {
      $("header").addClass("active");
    } else {
      $("header").removeClass("active");
    }
  });

  $('.nav-link, .nav-button').on('click', function () {
    $('.navbar-collapse').collapse('hide');
  });

  window.onload = function () {
    var currentPath = window.location.pathname;
    var navButtons = document.querySelectorAll('.nav-link,.ml-nav-link');

    navButtons.forEach(function (button) {
      var href = button.getAttribute('href');
      if(currentPath === href){
        button.className += ' active-page';
        return;
      }
    })
  }
</script>




    <!-- Items -->
    
<main id="main"></main>

    <div class="container-fluid ml-lp-8 " data-aos="zoom-in">
  <div class="container with-large-gutters">

    
      
      

  
  
  

  
  

  

  

  
    
    
    
    
    
    
  

  
    
    
  











      

  

  

  

  
    
    
    
    
    
    
  






      
  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
  
  
    
    
  





      
  

    
      
      
      
      
      
      
      
      
      
      
    

    
      
      
      
      
    

  
  

    
      
      
      
      
      
      
      
      
      
    

    
      
      
      
      
    

  



      
      
      

      
        
        
      

      <div class="row justify-content-center">
        <div class="col col-sm-12">
          <div class="  ">
            <div class="">
              <div class="row large-gutters align-items-center">

                <!-- Media -->
                <div class="col-12 col-md-7 order-md-last order-first image-block-8 mb-4 mb-md-0">

                  <!-- Image -->
                  <div>
                    
                      <div class="image-block-9 text-right w-100">
                        <img src="https://storage.mlcdn.com/account_image/405965/e4gPA21PhAcZHQg4GkyIowXT9SECsBBO2kD16CCP.png" border="0" alt="" class="img-fluid d-inline" width="635" style="display: block;">
                        
                      </div>
                      
                    
                  </div>
                  <!-- /Image -->
                  <!-- Video -->
                  
                  
                  <!-- Video -->

                </div>
                <!-- /Media -->

                <!-- Content -->
                <div class="col-12 col-md-5">

                  <!-- Text -->
                  <div class="row">
                    <div class="col" aria-label="content" role="contentinfo">

                      
                        
                        
                        

                        <h1><strong>We Are Obsessed With Waste</strong></h1>
<p>We hate waste, so we transform it!</p>
                      

                    </div>
                  </div>

                  <!-- Button -->
                  <div class="row mt-4">
                    <div class="col">
                      
                                                <div class="buttons btn-group d-flex flex-row justify-content-start">

                          <div class="button-block ">
                            
                            <a class="btn btn-block" href="https://www.paypal.com/donate/?hosted_button_id=225RHXWCDH8HY" target="_blank">Donate</a>
                          </div>
                          

                        </div>
                      
                    </div>
                  </div>

                </div>
                <!-- /Content -->

              </div>
            </div>
          </div>
        </div>
      </div>

      

      

      



    

  </div>
</div>

  
    <div class="container-fluid ml-lp-14 " data-aos="zoom-in">
  <div class="container with-large-gutters">

    

      

  
  
  

  
  

  

  

  
    
    
    
    
    
    
  

  
    
    
  












      
  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
  
  
    
    
  






      <div class="row large-gutters justify-content-center">
        <div class="col col-sm-12">

          
            
            
            

            <p>Inika Small Earth, Inc. is a 501c(3) tax exempt corporation. 100% of your donations go towards programs that are laying the foundation for an enterprise based, community centered, circular economy.</p>
          

        </div>
      </div>

      


    

  </div>
</div>

  
    <div class=" ml-lp-17">
  <div class="">

    

      

        
        
        

        
        

        
          
          
          
          
          
          
        

        
          
          
        

        
        
        
        
      

      <div class="d-flex justify-content-center">
        <hr>
      </div>

    

  </div>
</div>









  
    <div class="container-fluid ml-lp-19 " data-aos="zoom-in">
  <div class="container with-large-gutters">

    

      

  
  
  

  
  

  

  

  
    
    
    
    
    
    
  

  
    
    
  












      
  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
  
  
    
    
  






      <div class="row large-gutters justify-content-center">
        <div class="col col-sm-12">

          
            
            
            

            <h2><strong>Past Programs</strong></h2>
          

        </div>
      </div>

      


    

  </div>
</div>

  
    <div class="container-fluid ml-lp-22 " data-aos="zoom-in">
  <div class="container with-large-gutters">

    
      
      
      
      

      

  
  
  

  
  

  

  

  
    
    
    
    
    
    
  

  
    
    
  











      

  

  

  

  
    
    
    
    
    
    
  






      
  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
  
  
    
    
  





      
  

    
      
      
      
      
      
      
      
      
      
      
    

    
      
      
      
      
    

  
  

    
      
      
      
      
      
      
      
      
      
    

    
      
      
      
      
    

  



      
        
      

      <div class="row justify-content-center">
        <div class="col col-sm-12">
          <div class="row large-gutters align-items-start">
            <div class="col-md-4 mb-5 mb-md-0">
              
                

  

  

  

  
    
    
    
    
    
    
  






                
                
                

                <div class="ml-lp-23">
                  <div class="card card-23  ">
                    <div class="card-body">
                      <!-- Media -->
<div class="row mb-4">
  <div class="col">

    <!-- Image -->
    <div>
      
        <div class="image-block-24 text-center w-100">
          <a href="https://food2soil.net" target="_blank">
              <img src="https://storage.mlcdn.com/account_image/405965/UdhZX8U09CeXcPfc76Vb3fOSVwihmi0gbEyTvSSx.png" border="0" alt="" class="img-fluid d-inline" width="1080" style="display: block;">
            </a>
          
        </div>
        
      
    </div>
    <!-- /Image -->

    <!-- Video -->
    
    
    <!-- Video -->

  </div>
</div>
<!-- /Media -->

<!-- Text -->

<!-- /Text -->

<!-- Button -->
<div class="row">
  <div class="col">
    
            <div class="buttons btn-group d-flex flex-row justify-content-center">

        <div class="button-block ">
          
          <a class="btn btn-block" href="https://food2soil.net" target="_blank">Food2Soil</a>
        </div>
        

      </div>
    
  </div>
</div>
<!-- /Button -->






                    </div>
                  </div>
                </div>

              
            </div>
            <div class="col-md-4 mb-5 mb-md-0">
              
                

  

  

  

  
    
    
    
    
    
    
  






                
                
                

                <div class="ml-lp-28">
                  <div class="card card-28  ">
                    <div class="card-body">
                      <!-- Media -->
<div class="row mb-4">
  <div class="col">

    <!-- Image -->
    <div>
      
        <div class="image-block-29 text-center w-100">
          <a href="//soil2staples.inika.org" target="_blank">
              <img src="https://storage.mlcdn.com/account_image/405965/aqRAdE6ivmFUiPpexhQehe5MzUfkf4RNHz84FCoA.png" border="0" alt="" class="img-fluid d-inline" width="961" style="display: block;">
            </a>
          
        </div>
        
      
    </div>
    <!-- /Image -->

    <!-- Video -->
    
    
    <!-- Video -->

  </div>
</div>
<!-- /Media -->

<!-- Text -->

<!-- /Text -->

<!-- Button -->
<div class="row">
  <div class="col">
    
            <div class="buttons btn-group d-flex flex-row justify-content-center">

        <div class="button-block ">
          
          <a class="btn btn-block" href="//soil2staples.inika.org" target="_blank">Soil2Staples</a>
        </div>
        

      </div>
    
  </div>
</div>
<!-- /Button -->






                    </div>
                  </div>
                </div>

              
            </div>
            <div class="col-md-4">
              
            </div>
          </div>
        </div>
      </div>

      

      


    

  </div>
</div>

  
    <div class=" ml-lp-39">
  <div class="">

    

      

        
        
        

        
        

        
          
          
          
          
          
          
        

        
          
          
        

        
        
        
        
      

      <div class="d-flex justify-content-center">
        <hr>
      </div>

    

  </div>
</div>









  
    <div class="container-fluid ml-lp-41 " data-aos="zoom-in">
  <div class="container with-large-gutters">

    

      

        
          
          
          
          
        

        
          
          
          
        

      

      

  
  
  

  
  

  

  

  
    
    
    
    
    
    
  

  
    
    
  











      

  

  

  

  
    
    
    
    
    
    
  






      
  
    
    
    
    
    
    
  


      
  
    
    
    
    
    
    
  


      
  
    
    
    
    
  
  
    
    
  



      


      

      
      

      
        
        
      

      <div class="row justify-content-center">
        <div class="col col-lg-9">
          <div class="  ">
            <div class="">
              <div class="ml-subscribe-form row large-gutters align-items-center" id="mlb2-5555619-41">

                <!-- Media -->
                
                <!-- /Media -->

                <!-- Content -->
                <div class="ml-block-form col-12 col-md-12">

                  <!-- Text -->
                  <div class="row mb-4">

                    <div class="col">

                      
                        
                        
                        
                        <h2><strong>Subscribe To Our Newsletter</strong></h2>
                      

                    </div>
                  </div>
                  <!-- /Text -->

                  <!-- Form -->
                  

  
    
    
    
    

    
    
    
  

  
    
    
    
    
  

  
    
    
    
    
  

  
    
    
    
    
  

  
    
    
    
    
  

  
    
    
    
    
    
  

  
    
      
      
      
      
      
      
      
      
      
      
    
    
      
      
      
      
    
  




<div xp-if="variable.formPreview.value == 'form'">
  <form class="mb-0" action="https://assets.mailerlite.com/jsonp/405965/pages/90164510716855317/subscribe" data-webform-type="webpage" data-code="" data-redirect="" data-redirect-target="" method="POST">

    <!-- Sign-up Form Inputs -->

    <!-- If one input -->
    <div class="row">
      <div class="col">

        <div class="form-group mb-0">
          
          <div class="input-group ml-field-email ml-validate-required ml-validate-email">
            <input aria-required="true" aria-label="email" type="email" class="form-control" name="fields[email]" placeholder="Email">
            <span class="input-group-append button-block pl-0 pl-md-2">
                <button class="btn btn-block primary" type="submit">Subscribe</button>
                <button style="display: none; border-top-right-radius: 6px; border-bottom-right-radius: 6px;" class="btn btn-block loading" type="button" disabled>
                  <div class="spinner-border" style="width: 1.25rem; height: 1.25rem;" role="status">
                  <span class="sr-only">Loading...</span>
                  </div>
                </button>
              </span>
          </div>
        </div>
      </div>
    </div>

    <!-- If more than one input -->
    
    <!-- /Sign-up Form Inputs -->

    <!-- Privacy policy -->
    
    <!-- /Privacy policy -->

    <!-- GDPR -->
    
    <!-- /GDPR -->

    <!-- Interest Groups -->
    
    <!-- /Interest Groups -->

    <!-- Confirmation -->
    
    <!-- /Confirmation -->

    <!-- reCAPTCHA -->
    
    <!-- /reCAPTCHA -->

    <!-- Submit button -->
    
    <!-- /Submit button -->

    <!-- Hidden segmentation-->
    
    <!-- /Hidden segmentation-->
    <input type="hidden" name="ml-submit" value="1">
  </form>
</div>



                  <!-- /Form -->

                </div>
                <!-- /Content -->

                <div class="ml-block-success col form-hidden" xp-if="variable.formPreview.value == 'success'">
                  <div class="row">
                    <div class="col-sm-12">
                      <p style="text-align: center;"><b>Thank you for subscribing!</b></p><p style="text-align: center;">Have a great day!</p>
                    </div>
                  </div>
                </div>

              </div>
            </div>
          </div>
        </div>
      </div>

      

      


    

  </div>
</div>

  






    <!-- Footer -->
    

  
  

  
  
  

  

    

    
    

    

    
      
      
    

    
      
      
      
    
    
      
      
      
    

    
      
    
    
      
      
      
    

    
      
      
      
      
    
    
      

        
        
        
        
      
      
        
        
        
      
    

  

  

  

      <script>
 

  var $ = window.ml_jQuery || window.jQuery;

 document.onkeydown = function(evt) {
   evt = evt || window.event;
   var isEscape = false;
   if ('key' in evt) {
     isEscape = evt.key == 'Escape';
   } else {
     isEscape = evt.keyCode == 27;
   }

   if (isEscape) {
     close();
   }
 };

 function close() {
        window.parent.postMessage('ml-accounts---webforms-5555619--hide', '*');
 };

 (function ($, window) {
   function sendHeightToParent(selector, sendSize) {
     var formHeight = $(selector).outerHeight();

     window.parent.postMessage('ml-accounts---webforms-5555619--setHeight-' + formHeight + 'px', '*');

     if (sendSize) {

       var formWidth = $(selector).outerWidth();
       window.parent.postMessage('ml-accounts---webforms-5555619--setSize-' + formHeight + 'px' + '-' + formWidth + 'px', '*');
     }
   }

   var resizeTimer;
   var formTypes = [
     '.mailerlite-trigger-sendHeightToParent',

     // old classes that triggers sendHeight too
     '.mailerlite-popup',
     '.mailerlite-slidebox',
     '.mailerlite-form-bar',
     '.mailerlite-fullscreen'
   ];

   function resizeFunction(formType, sendSize) {
     sendHeightToParent(formType, sendSize);
   }

   formTypes.forEach(function (formType) {
     if (window.sendHeightToParentTriggered) {
       return;
     }

     if ($(formType).length) {
       setTimeout(resizeFunction(formType), 200);

       $(window).resize(function() {
         clearTimeout(resizeTimer);
         resizeTimer = setTimeout(resizeFunction(formType, true), 50);
       });

       // if height is already triggered - do not trigger again
       window.sendHeightToParentTriggered = true;
     }
   })
 })($, window);

 
    
</script>

      

    
            <script>
      ml('webpages', '5555619', '', 'visitor', 'track');
    </script>
          
      <script>
        function debounce(func, wait, immediate) {
          var timeout;
          return function () {
            var context = this, args = arguments;
            var later = function () {
              timeout = null;
              if (!immediate) func.apply(context, args);
            };
            var callNow = immediate && !timeout;
            clearTimeout(timeout);
            timeout = setTimeout(later, wait);

            if (callNow) func.apply(context, args);
          };
        }

        var heatmap_submit_url = '';

        // continue only if heatmap_submit_url is valid
        if (/^https?:\/\/.*$/i.test(heatmap_submit_url)) {
          var heatmap_clicks = [];

          var addData = function (targetTagName, targetIndex, x, y) {
            var width = $(window).width();

            var clickObject = {
              targetTagName: targetTagName,
              targetIndex: targetIndex,
              x: x,
              y: y,
              value: 1,
              screenWidth: width,
              webformId: '5555619',
              webformCode: '',
              blog_post_id: '',
              blog_category_id: ''
            };

            heatmap_clicks.push(clickObject);

            window.debounce_function = window.debounce_function || debounce(function () {
              sendHeatmapData();
            }, 3000);

            window.debounce_function();
          };

          var sendHeatmapData = function () {
            var xhr = new XMLHttpRequest();
            xhr.open('POST', heatmap_submit_url, true);
            xhr.send(JSON.stringify(heatmap_clicks));

            heatmap_clicks = [];
          };

          $(document).on("click tap", function (event) {
            var target = event.target;

            // if click is made on carousel, send only clicks from 1st slide
            var clickedInsideCarousel = target.closest(".ml-carousel-item");
            var firstSlide = false;
            if (clickedInsideCarousel) {
              var elementClasses = clickedInsideCarousel.classList;

              for (var i = 0; i < elementClasses.length; i++) {
                if ( elementClasses[i] === 'ml-carousel-item-0') {
                  firstSlide = true;
                  break;
                }
              }
            }
            if (clickedInsideCarousel && !firstSlide) {
              return;
            }

            var targetTagName = target.tagName;
            var targetIndex;
            var elements = document.getElementsByTagName(targetTagName);
            var x, y;

            Array.prototype.forEach.call(elements, function (element, key) {
              if (element === target) {
                targetIndex = key;
              }
            });

            if ((event.offsetX > target.offsetWidth || event.offsetY > target.offsetHeight) && target.offsetParent) {
              // because some tags like <strong>, <span> are picking up offsetX from parent element
              target = target.offsetParent;
            }

            x = event.offsetX / target.offsetWidth * 100;
            y = event.offsetY / target.offsetHeight * 100;

            addData(targetTagName, targetIndex, x, y);
          });

          function getElementDisplayType(element) {
            if (!element) {
              return false;
            }

            var cStyle = element.currentStyle || window.getComputedStyle(element, "");
            return cStyle.display;
          }

          window.onbeforeunload = function () {
            if (heatmap_clicks.length) {
              sendHeatmapData();
            }
          }
        }
      </script>
    
  

  
  <script>
      (function(window) {
  window.addEventListener("message", receiveMessage, false);

  function receiveMessage(event) {
      if (event && event.data && typeof event.data === 'string') {
        var message_parts = event.data.split('-');
        if (message_parts.length > 1) {
            if (message_parts[0] == 'mlWebformSubmitSuccess') {
                var id = message_parts[1];
                var cookieName = 'mailerlite:webform:submited:' + id
                var cookieValue = (new Date()).getTime();
                document.cookie = cookieName + "=" + cookieValue + "; path=/; expires=Fri, 31 Dec 9999 23:59:59 GMT";
            } else if (message_parts[0] == 'mlWebformRedirect') {
                var target = message_parts[message_parts.length - 1];
                var targets = ['_blank', '_self', '_parent', '_top'];
                var redirect = message_parts.slice(1, message_parts.length - 1).join('-');
                if (targets.indexOf(target) < 0) {
                    redirect = message_parts.slice(1).join('-');
                    target = '_blank';
                }

                var redirectUrl = new URL(decodeURIComponent(redirect));
                if (redirectUrl && redirectUrl.protocol != 'javascript:') {

                    window.open(decodeURIComponent(redirect), target);
                }
            }
        }
      }
  }
})(window);
  </script>

  



</div>


    </div>

    

      <script src="https://groot.mailerlite.com/js/w/webforms.min.js?v176e10baa5e7ed80d35ae235be3d5024" type="text/javascript"></script>

    <script src="https://unpkg.com/aos@next/dist/aos.js"></script>
    <script>
      AOS.init();
    </script>

  
      <div id="ml-checkout-modal" class="modal">
        <div class="modal-backdrop" style="opacity: 0.5"></div>
        <div class="modal-dialog modal-lg modal-dialog-centered">
            <div class="modal-content rounded-lg" style="z-index: 1040; width: 768px; max-width: 90vw; height: 840px; max-height: 80vh;">
                <iframe id="ml-checkout-iframe" src="" class="w-100 h-100 border-0 rounded-lg"></iframe>
            </div>
        </div>
    </div>
  
  </body>

</html>
