<!DOCTYPE html>
<html lang="en"><head><title>The Daily Geezer</title>


    <link rel="shortcut icon" type="image/png" href="https://assets.mailerlite.com/images/favicon-32x32.png">





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


<meta property="og:type" content="website">
<meta property="og:url" content="https://dailygeezer.subscribepage.io">


<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">
















    
    

<link rel="stylesheet" href="https://assets.mlcdn.com/ml/bootstrap/css/bootstrap-4.3.1.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.3.1.min.js"></script>

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



  <link rel="stylesheet" href="#">
  



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


<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();

        $('body').on('DOMNodeInserted',function(e) {
            if (! updatingTimer) {
              timers();
            }
        });
	});

	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>

<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>



<style type="text/css">
        .ml-notification {
            text-align: center;
            margin-bottom: 0;
            border-radius: 0;
            background-color: #F8F9FD;
            border-bottom: 1px solid #E5E7EB;
            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 #E5E7EB;
        }
        .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: 'Inter', sans-serif;
            color: #333333;
            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: #2B3AD3;
            text-decoration: none;
        }

        /* Button */
        .ml-notification .button-block {
            padding: 2px 0;
        }
        .ml-notification .button-block .btn-one {
            width: auto;
            display: inline-block;
            font-family:'Inter', sans-serif;
            background-color:#2B3AD3;
            font-size:16px;
            border-top:1px solid #2B3AD3;
            border-bottom:1px solid #2B3AD3;
            border-left:1px solid #2B3AD3;
            border-right:1px solid #2B3AD3;
            color:#ffffff;
            border-radius:6px;
            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:#1DAB65;
            border-top:1px solid #1635b9;
            border-bottom:1px solid #1635b9;
            border-left:1px solid #1635b9;
            border-right:1px solid #1635b9;
            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:'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: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 #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;
        }
    </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: #000;
        height: 30px;
        left: 50%;
        padding: 8px;
        position: absolute;
        transform: translateY(-1000%);
        transition: transform 0.3s;
        color: #fff;
        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;
      }

    </style><style>

      /*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: 125px;
      }

      @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;
        }

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

      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 .btn-block {
        width: auto;
        display: inline-block;
        font-family:'Inter', sans-serif;
        background-color:#2B3AD3;
        font-size:14px;
        border-top:1px solid #2B3AD3;
        border-bottom:1px solid #2B3AD3;
        border-left:1px solid #2B3AD3;
        border-right:1px solid #2B3AD3;
        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:#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;
      }
    </style><style type="text/css">

  .container-fluid.ml-lp-5 {

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

  }

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

  .container-fluid.ml-lp-10 {

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

  }

</style><style type="text/css">
  .ml-lp-10 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-10 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-10 h3 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:20px;
    letter-spacing: 0px;
    line-height: 125%!important;
  }
  .ml-lp-10 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-10 blockquote:before,
  .ml-lp-10 blockquote:after {
    content: '\201C';
    font-family: 'Inter', sans-serif;
    color: #333333;
  }
  .ml-lp-10 blockquote:after {
    content: '\201D';
  }
  .ml-lp-10 p,
  .ml-lp-10 ul,
  .ml-lp-10 ol {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%!important;
  }
  .ml-lp-10 p:last-child,
  .ml-lp-10 ul:last-child,
  .ml-lp-10 ol:last-child {
    margin-bottom: 0;
  }
  .ml-lp-10 p a,
  .ml-lp-10 ul a,
  .ml-lp-10 ol a {
    font-family: 'Inter', sans-serif;
    color: #333333;
    text-decoration: none;
  }

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

  .container-fluid.ml-lp-7 {

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

  }

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

  .container-fluid.ml-lp-17 {

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

  }

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

  .ml-lp-17 .card,
  .ml-lp-17 .card.card-17 {

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

  }

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

    padding: 1.75rem;

  }

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

    padding: 3rem;

  }

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

    padding: 0.75rem 1.75rem 1.75rem 1.75rem;

  }

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

    padding: 1rem 3rem 3rem 3rem;

  }

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

    padding: 1.75rem 1.75rem 0 1.75rem;

  }

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

    padding: 3rem 3rem 0 3rem;

  }


</style><style type="text/css">
  .ml-lp-17 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-17 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-17 h3 {
    font-family: 'Inter', sans-serif;
    color:#000000;
    font-size:20px;
    letter-spacing: 0px;
    line-height: 125%!important;
  }
  .ml-lp-17 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-17 blockquote:before,
  .ml-lp-17 blockquote:after {
    content: '\201C';
    font-family: 'Inter', sans-serif;
    color: #333333;
  }
  .ml-lp-17 blockquote:after {
    content: '\201D';
  }
  .ml-lp-17 p,
  .ml-lp-17 ul,
  .ml-lp-17 ol {
    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 150%!important;
  }
  .ml-lp-17 p:last-child,
  .ml-lp-17 ul:last-child,
  .ml-lp-17 ol:last-child {
    margin-bottom: 0;
  }
  .ml-lp-17 p a,
  .ml-lp-17 ul a,
  .ml-lp-17 ol a {
    font-family: 'Inter', sans-serif;
    color: #333333;
    text-decoration: none;
  }

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

    footer {

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

    }

    .ml-lp-22 .row {
                          -webkit-transition : all 0.3s ease-out;
                          transition : all 0.3s ease-out;
                        }
    .ml-lp-22 .logo-footer img {

    height: 15px;

    }

    .ml-lp-22 .footer-description p {

    font-family: 'Inter', sans-serif;
    color: #333333;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 15px 0;

    }
    .ml-lp-22 .footer-description p:last-child {

                          margin-bottom: 0;

                        }

    .ml-lp-22 .footer-description p a {

    font-family: 'Inter', sans-serif;
    color: #2B3AD3;
    text-decoration: none;

    }

    .ml-lp-22 .social-icons {
                          margin: 0;
                          padding: 0;
                        }
    .ml-lp-22 .social-icons li {
                          list-style: none;
                          display: inline-block;
                          margin-right: 10px;
                        }
    .ml-lp-22 .social-icons li:last-child {
                          margin-right: 0;
                        }
    @media (max-width: 768px) {
      .ml-lp-22 .social-icons li img {
    max-width:24px!important;
    width:100%!important;
    }
    }
  </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;


                        }

  /* Input */

  .form-group .form-control {
    background-color: #ffffff;
    font-family: 'Inter', 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 */

  /* Mobile padding */

  @media (max-width: 480px) {

    .row-form .container {
      padding: 0px!important;
    }
    .container .large-gutters,
    .container .large-gutters .row {
      margin-left: -15px!important;
      margin-right: -15px!important;
    }

    .container .large-gutters .col,
    .container .large-gutters [class*="col-"] {
      padding-left: 15px!important;
      padding-right: 15px!important;
    }

    .card-body {
      padding: 1rem!important;
    }

  }

</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', 368429);
    ml('initializePage', '82835557680416483');
    ml('enablePopups', '')
</script>


</head>
<body>






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

    
  
  <!-- Design -->
  

  

  

  

  

  

  

  

  

    

    
      
      
      

      
      
      
      
      
    

    
      
      
      
      
      
      
    


    
      
      
      
      
      
      
      
    

    
      
      
      
      
      
      
      
    

    
      
      
      
      
      
      
    

    
      
      
      
      
    

    
      
      
    

    

      
        
        
        
        
        
        
        
        
        
        
      

      
        
        
        
        
      
    

    
      
        
        
        
        
        
        
        
        
        
      
      
        
        
        
        
      
    

    
      
      
      
      
      
      
      
    

    
      
      
      
      
    

    
      
      
      
      
    

    
      
      
      
      
    

    
      
      
      
    

    
      
      
      
      
      
      
      
      
    

    
      
      
      
      
    

  






  <!-- 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 -->
  

  




<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');
  });
</script>


  <div class="row-form">
    <main id="main"></main>

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

    

      

  
  
  

  
  

  

  

  
    
    
    
    
    
    
  

  
    
    
  












      

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

        <div class="col col-md-9 col-lg-7 text-center">
          <img src="https://storage.mlcdn.com/account_image/368429/6wCaiX9bbbc2B3XYSf1yvRCn13PPX0e5866bxywL.jpg" border="0" alt="" class="img-fluid d-inline" width="635" style="display: block;">

        </div>
      </div>

    

  </div>
</div>




  
    <div class="container-fluid ml-lp-7">
    <div class="container with-large-gutters">

        

            

  
  
  

  
  

  

  
    
    
    
    
    
    
  
  
    
    
  









            
                
            

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

                <div class="col justify-content-center
                            col-sm-12">
                    <div class="row sections-repeaters align-items-center">
                        <div class="col-12 col-md-6">
                            
    <div class="container-fluid ml-lp-10 " data-aos="">
  <div class="container with-large-gutters">

    

      

  
  
  

  
  

  

  

  
    
    
    
    
    
    
  

  
    
    
  












      
  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
  
  
    
    
  






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

          
            
            
            

            <p>What are you doing next week?</p>
<p>Discover a long, long list of celebrations, scientific seminars, sporting events, ethnic festivals, tech innovations, dances, concerts, shows and much, much more happening here and delivered to you when you subscribe to the Daily Geezer.</p>
<p>Be reminded how lucky you are to live in such a spectacular community with constant, fresh possibilities for maximizing your life.</p>

<p>Keep up with all the events, locations, dates, prices and surprises for free.</p>
<p>Use the form to subscribe to the Daily Geezer newsletter.</p>
          

        </div>
      </div>

      


    

  </div>
</div>


  
                        </div>
                        <div class="col-12 col-md-6">
                            
    
<!-- {literal} -->
<div class="editor-html-code" data-aos="">
  <style type="text/css">@import url("https://assets.mlcdn.com/fonts.css?version=1678780");</style>
    <style type="text/css">
    /* LOADER */
    .ml-form-embedSubmitLoad {
      display: inline-block;
      width: 20px;
      height: 20px;
    }

    .g-recaptcha {
    transform: scale(1);
    -webkit-transform: scale(1);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    height: ;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      border: 0;
    }

    .ml-form-embedSubmitLoad:after {
      content: " ";
      display: block;
      width: 11px;
      height: 11px;
      margin: 1px;
      border-radius: 50%;
      border: 4px solid #fff;
    border-color: #ffffff #ffffff #ffffff transparent;
    animation: ml-form-embedSubmitLoad 1.2s linear infinite;
    }
    @keyframes ml-form-embedSubmitLoad {
      0% {
      transform: rotate(0deg);
      }
      100% {
      transform: rotate(360deg);
      }
    }
      #mlb2-4070985.ml-form-embedContainer {
        box-sizing: border-box;
        display: table;
        margin: 0 auto;
        position: static;
        width: 100% !important;
      }
      #mlb2-4070985.ml-form-embedContainer h4,
      #mlb2-4070985.ml-form-embedContainer p,
      #mlb2-4070985.ml-form-embedContainer span,
      #mlb2-4070985.ml-form-embedContainer button {
        text-transform: none !important;
        letter-spacing: normal !important;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper {
        background-color: #f6f6f6;
        
        border-width: 0px;
        border-color: transparent;
        border-radius: 4px;
        border-style: solid;
        box-sizing: border-box;
        display: inline-block !important;
        margin: 0;
        padding: 0;
        position: relative;
              }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper.embedForm { max-width: 400px; width: 100%; }
      #mlb2-4070985.ml-form-embedContainer .ml-form-align-left { text-align: left; }
      #mlb2-4070985.ml-form-embedContainer .ml-form-align-center { text-align: center; }
      #mlb2-4070985.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }
      #mlb2-4070985.ml-form-embedContainer .ml-form-align-right { text-align: right; }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        height: auto;
        margin: 0 auto !important;
        max-width: 100%;
        width: undefinedpx;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
        padding: 20px 20px 0 20px;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
        padding-bottom: 0;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
        text-align: left;
        margin: 0 0 20px 0;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
        color: #000000;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 30px;
        font-weight: 400;
        margin: 0 0 10px 0;
        text-align: left;
        word-break: break-word;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
        color: #000000;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin: 0 0 10px 0;
        text-align: left;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
        color: #000000;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {
        list-style-type: lower-alpha;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {
        list-style-type: lower-roman;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
        color: #000000;
        text-decoration: underline;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {
        text-align: left!important;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {
        margin-bottom: 5px;
        color: #333333;
        font-size: 14px;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-weight: bold; font-style: normal; text-decoration: none;;
        display: inline-block;
        line-height: 20px;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
        margin: 0;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
        margin: 0;
        width: 100%;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
        margin: 0 0 20px 0;
        width: 100%;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
        float: left;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
        margin: 0;
        padding: 0 0 20px 0;
        width: 100%;
        height: auto;
        float: left;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
        margin: 0 0 10px 0;
        width: 100%;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
        margin: 0;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
        margin: 0;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #cccccc;
        border-radius: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        height: auto;
        line-height: 21px !important;
        margin-bottom: 0;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 10px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #333333; }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #333333; }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #333333; }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #333333; }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #cccccc;
        border-radius: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        height: auto;
        line-height: 21px !important;
        margin-bottom: 0;
        margin-top: 0;
        padding: 10px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
          border-color: #cccccc!important;
          background-color: #ffffff!important;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type="checkbox"]{
        box-sizing: border-box;
        padding: 0;
        position: absolute;
        z-index: -1;
        opacity: 0;
        margin-top: 5px;
        margin-left: -1.5rem;
        overflow: visible;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
        border-radius: 4px!important;
      }


      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before  {
          border-color: #000000!important;
          background-color: #000000!important;
          color: #ffffff!important;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {
           top: 2px;
           box-sizing: border-box;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
           top: 0px!important;
           box-sizing: border-box!important;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
        top: 0px!important;
           box-sizing: border-box!important;
      }

       #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {
            top: 0px!important;
            box-sizing: border-box!important;
            position: absolute;
            left: -1.5rem;
            display: block;
            width: 1rem;
            height: 1rem;
            content: "";
       }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
        top: 0px!important;
        box-sizing: border-box!important;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {
          position: absolute;
          top: 4px;
          left: -1.5rem;
          display: block;
          width: 16px;
          height: 16px;
          pointer-events: none;
          content: "";
          background-color: #ffffff;
          border: #adb5bd solid 1px;
          border-radius: 50%;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {
          position: absolute;
          top: 2px!important;
          left: -1.5rem;
          display: block;
          width: 1rem;
          height: 1rem;
          content: "";
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
          position: absolute;
          top: 4px;
          left: -1.5rem;
          display: block;
          width: 16px;
          height: 16px;
          pointer-events: none;
          content: "";
          background-color: #ffffff;
          border: #adb5bd solid 1px;
          border-radius: 50%;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {
          position: absolute;
          top: 0px!important;
          left: -1.5rem;
          display: block;
          width: 1rem;
          height: 1rem;
          content: "";
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
          position: absolute;
          top: 0px!important;
          left: -1.5rem;
          display: block;
          width: 1rem;
          height: 1rem;
          content: "";
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {
          background: no-repeat 50%/50% 50%;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
          background: no-repeat 50%/50% 50%;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {
        position: relative;
        display: block;
        min-height: 1.5rem;
        padding-left: 1.5rem;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {
          position: absolute;
          z-index: -1;
          opacity: 0;
          box-sizing: border-box;
          padding: 0;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {
          color: #000000;
          font-size: 12px!important;
          font-family: 'Open Sans', Arial, Helvetica, sans-serif;
          line-height: 22px;
          margin-bottom: 0;
          position: relative;
          vertical-align: top;
          font-style: normal;
          font-weight: 700;
      }

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #cccccc;
        border-radius: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 0;
        margin-top: 0;
        padding: 10px 28px 10px 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        height: auto;
        display: inline-block;
        vertical-align: middle;
        background: url('https://assets.mlcdn.com/ml/images/default/dropdown.svg') no-repeat right .75rem center/8px 10px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
      }


      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
        height: auto;
        width: 100%;
        float: left;
      }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 70%; float: left; }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: 30%; float: left; }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn { padding-top: 25px;  }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; padding-right: 10px;  }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
        background-color: #ffffff;
        color: #333333;
        border-color: #cccccc;
        border-radius: 4px;
        border-style: solid;
        border-width: 1px;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0;
        margin-top: 0;
        padding: 10px 10px;
        width: 100%;
        box-sizing: border-box;
        overflow-y: initial;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
        background-color: #000000 !important;
        border-color: #000000;
        border-style: solid;
        border-width: 1px;
        border-radius: 4px;
        box-shadow: none;
        color: #ffffff !important;
        cursor: pointer;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        font-weight: 700;
        line-height: 20px;
        margin: 0 !important;
        padding: 10px !important;
        width: 100%;
        height: auto;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
        background-color: #333333 !important;
        border-color: #333333 !important;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] {
        box-sizing: border-box;
        padding: 0;
        position: absolute;
        z-index: -1;
        opacity: 0;
        margin-top: 5px;
        margin-left: -1.5rem;
        overflow: visible;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
        color: #000000;
        display: block;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 12px;
        text-align: left;
        margin-bottom: 0;
        position: relative;
        vertical-align: top;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
        font-weight: normal;
        margin: 0;
        padding: 0;
        position: relative;
        display: block;
        min-height: 24px;
        padding-left: 24px;

      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
        color: #000000;
        text-decoration: underline;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
        color: #000000 !important;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
        font-size: 12px !important;
        font-weight: normal !important;
        line-height: 18px !important;
        padding: 0 !important;
        margin: 0 5px 0 0 !important;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
        margin: 0;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
        margin: 0 0 20px 0;
        float: left;
        width: 100%;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
        background-color: #000000 !important;
        border: none !important;
        border-radius: 4px !important;
        box-shadow: none !important;
        color: #ffffff !important;
        cursor: pointer;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 21px !important;
        height: auto;
        padding: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
        display: none;
      }
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
        background-color: #333333 !important;
      }
      .ml-subscribe-close {
        width: 30px;
        height: 30px;
        background: url('https://assets.mlcdn.com/ml/images/default/modal_close.png') no-repeat;
        background-size: 30px;
        cursor: pointer;
        margin-top: -10px;
        margin-right: -10px;
        position: absolute;
        top: 0;
        right: 0;
      }
      .ml-error input, .ml-error textarea, .ml-error select {
        border-color: red!important;
      }

      .ml-error .custom-checkbox-radio-list {
        border: 1px solid red !important;
        border-radius: 4px;
        padding: 10px;
      }

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

      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
      #mlb2-4070985.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
        color: #ff0000 !important;
      }
            @media only screen and (max-width: 400px){

        .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }
        .ml-form-formContent.horozintalForm { float: left!important; }
        .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }
        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }
        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }
        .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }
        .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; }

      }
    </style>

    
  
    
    

    
    

    
    

    

      
        
        
      

      
        
        
      

      

            
            
            
            
            
            
      

      

      
        
        
         
        
        
      

        
        
        
        
        
        
      

       

        
        
        
        
        
        
        
       


      
        
        
        
        
  



  
        
        
        
      


      
    
    
    
    
    
  

  
        
        
        
        
        
      

      
        
        
        
        
        
      

      
        
        
        
        
        
      

       

        
        
        
        
       

       
        
        
        
        
      

      
        
        
        
        
        
        
        
       

    

    


      


      

      
      

      

      





    

      
    <div id="mlb2-4070985" class="ml-form-embedContainer ml-subscribe-form ml-subscribe-form-4070985">
      <div class="ml-form-align-center ">
        <div class="ml-form-embedWrapper embedForm">

          
          

          <div class="ml-form-embedBody ml-form-embedBodyDefault row-form">

            <div class="ml-form-embedContent" style=" ">
              
                <h4>Newsletter</h4>
                <p><br></p>
              
            </div>

            <form class="ml-block-form" action="https://assets.mailerlite.com/jsonp/368429/forms/82836138205643776/subscribe" data-code="" method="post" target="_blank">
              <div class="ml-form-formContent">
                

                  
                  <div class="ml-form-fieldRow ">
                    <div class="ml-field-group ml-field-name ml-validate-required">

                      


                      <!-- input -->
                      <input aria-label="name" aria-required="true" type="text" class="form-control" data-inputmask="" name="fields[name]" placeholder="Name" autocomplete="name">
                      <!-- /input -->

                      <!-- textarea -->
                      
                      <!-- /textarea -->

                      <!-- select -->
                      
                      <!-- /select -->

                      <!-- checkboxes -->
            
            <!-- /checkboxes -->

                      <!-- radio -->
                      
                      <!-- /radio -->

                      <!-- countries -->
                      
                      <!-- /countries -->





                    </div>
                  </div><div class="ml-form-fieldRow ">
                    <div class="ml-field-group ml-field-last_name ml-validate-required">

                      


                      <!-- input -->
                      <input aria-label="last_name" aria-required="true" type="text" class="form-control" data-inputmask="" name="fields[last_name]" placeholder="Last name" autocomplete="">
                      <!-- /input -->

                      <!-- textarea -->
                      
                      <!-- /textarea -->

                      <!-- select -->
                      
                      <!-- /select -->

                      <!-- checkboxes -->
            
            <!-- /checkboxes -->

                      <!-- radio -->
                      
                      <!-- /radio -->

                      <!-- countries -->
                      
                      <!-- /countries -->





                    </div>
                  </div><div class="ml-form-fieldRow ml-last-item">
                    <div class="ml-field-group ml-field-email ml-validate-email ml-validate-required">

                      


                      <!-- input -->
                      <input aria-label="email" aria-required="true" type="email" class="form-control" data-inputmask="" name="fields[email]" placeholder="Email" autocomplete="email">
                      <!-- /input -->

                      <!-- textarea -->
                      
                      <!-- /textarea -->

                      <!-- select -->
                      
                      <!-- /select -->

                      <!-- checkboxes -->
            
            <!-- /checkboxes -->

                      <!-- radio -->
                      
                      <!-- /radio -->

                      <!-- countries -->
                      
                      <!-- /countries -->





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

              

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

              

              

              






              
              <input type="hidden" name="ml-submit" value="1">

              <div class="ml-form-embedSubmit">
                
                  <button type="submit" class="primary">Subscribe</button>
                
                <button disabled style="display: none;" type="button" class="loading">
                  <div class="ml-form-embedSubmitLoad"></div>
                  <span class="sr-only">Loading...</span>
                </button>
              </div>

              
              <input type="hidden" name="anticsrf" value="true">
            </form>
          </div>

          <div class="ml-form-successBody row-success" style="display: none">

            <div class="ml-form-successContent">
              
                <h4>Thank you!</h4>
                
                  <p>You have successfully joined our subscriber list.</p>
                
              
            </div>

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

  

  
  
  <script>
    function ml_webform_success_4070985() {
      var $ = ml_jQuery || jQuery;
      $('.ml-subscribe-form-4070985 .row-success').show();
      $('.ml-subscribe-form-4070985 .row-form').hide();
    }
      </script>
  
  
      <script src="https://groot.mailerlite.com/js/w/webforms.min.js?v300817f630ad0e957914d0b28a2b6d78" type="text/javascript"></script>
</div>

<!-- {/literal} -->

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

            </div>

        

    </div>
</div>

  





  </div>

  <div class="row-success" style="display: none" data-autorefresh="-1">
		<template class="success-template">
    
    <div class="container-fluid ml-lp-17 min-vh-100 d-flex flex-column justify-content-center" data-aos="">
  <div class="container with-large-gutters">

    
      
      

  
  
  

  
  

  

  

  
    
    
    
    
    
    
  

  
    
    
  











      

  

  

  

  
    
    
    
    
    
    
  






      
  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
    
    
  



  
    
    
    
    
  
  
    
    
  





      
  

    
      
      
      
      
      
      
      
      
      
      
    

    
      
      
      
      
    

  
  

    
      
      
      
      
      
      
      
      
      
    

    
      
      
      
      
    

  



      
      

      <div class="row justify-content-center">
        <div class="col col-lg-9">
          <div class="card card-large ">
            <div class="card-body">
              <!-- Media -->

<!-- /Media -->

<!-- Text -->
<div class="row ">
  <div class="col">
    
      
      
      

      <h1 style="text-align: center;"><strong>Thank you!</strong></h1>
<p style="text-align: center;">Click to edit your success page message</p>
    
  </div>
</div>
<!-- /Text -->

<!-- Button -->

<!-- /Button -->






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

    

  </div>
</div>


  




    </template>
  </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-4070819--hide', '*');
 };

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

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

     if (sendSize) {

       var formWidth = $(selector).outerWidth();
       window.parent.postMessage('ml-accounts---webforms-4070819--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);

    function ml_webform_success_4070819 () {
     $('.row-form').hide();
     $('.row-success').show();
     $(window).scrollTop(0);

     
     if ($('.row-success').data('autorefresh')) {
       var autorefresh = Number($('.row-success').data('autorefresh'));
       if (autorefresh && autorefresh > 0) {
         setTimeout(function(){
           window.location.reload();
         }, autorefresh * 1000);
       }
     }

     if ($('.row-success').find('.success-template').length && $('.success-template').html()) {
       $('.row-success').replaceWith($('.success-template').html());
     }
   }
 
    
</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: '4070819',
              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;
              }
            });

            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 class="ml-hide-branding">
  <div class="container py-4">
    <a href="https://www.mailerlite.com" target="_blank" class="d-table mx-auto">
      <img src="https://assets.mlcdn.com/ml/logo/created-with-mailerlite.png" width="100" alt="Created with MailerLite" style="display: block;" border="0">
    </a>
  </div>
</div>


</div>



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

  
  


</body>

</html>
