	<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
	<script>
		jQuery(document).ready(function() {
          
          var domainName = window.location.hostname;
		  //console.log(domainName);
		  var prodenv = domainName.includes('e.s');
		  //console.log(prodenv);
		  if (prodenv) {
		    // Production site
            var env = 'Live';
		  }
          else {
            var env = 'Test';
          }
          var ptitle = document.title;
          
          window.dataLayer = window.dataLayer || [];

			jQuery('.slds-input').change(function(event) {
				if (parseInt(jQuery(this).val()) < 10) {
					jQuery(this).parent().parent().find(".slds-form-element__help").html("กรุณาบริจาคขั้นต่ำ 10 บาทเพื่อเป็นค่าดำเนินการค่ะ");
					jQuery(this).val(10);
					jQuery("#amountvalue").val(10);
				} else if (parseInt(jQuery(this).val()) > 10) {
					jQuery(this).parent().parent().find(".slds-form-element__help").html("");
					jQuery("#amountvalue").val(0);
				} else if (jQuery(this).val() == "") {
					jQuery(this).parent().parent().find(".slds-form-element__help").html("โปรดระบุจำนวนเงินด้วยค่ะ");
					jQuery("#amountvalue").val(0);
				}

			});

			jQuery('#form-field-creditcard').change(function(event) {
				jQuery('#2c2pcard').val(jQuery('#form-field-creditcard').val());
			});

			jQuery('#submitform_btn').click(function(event) {
				var exit = false;
				var errorMessage = "โปรดแก้ไขข้อมูลดังนี้ให้ถูกต้อง/Please correct your info below...\n";
				// check if not valid expiry date then alert and mark as exit
				if (isValidExpiryDate(jQuery("#form-field-expirydate").val()) || jQuery('.payment-details--frequency').attr('name') == "One-off") {
					//
					jQuery("#form-field-expirydate").removeAttr("style");
				} else {
					errorMessage += "วันหมดอายุ/Expiry date: " + blankValue(jQuery("#form-field-expirydate").val(), "<ว่างเปล่า/Blank>") + "\n";
					jQuery("#form-field-expirydate").attr("style", "border-color:red");
					exit = true;
				}
				// check if not valid email address then alert and mark as exit
				if (isEmail(jQuery("#form-field-email").val())) {
					jQuery("#form-field-email").removeAttr("style");
					/*alert("Your email is/อีเมลของคุณคือ " + jQuery("#form-field-email").val() + 
					"\nIf the email above is incorrect but there will be a successful donation, \nplease don't hesitate to contact our donor service team" +
					"\nหากอีเมลข้างบนนี้ไม่ถูกต้อง แต่ท่านได้บริจาคสำเร็จแล้ว กรุณาติดต่อฝ่ายบริการผู้บริจาค\nทั้งนี้ เพื่อเป็นประโยชน์กับตัวท่านเอง ขอบคุณค่ะ/ครับ"); */
				} else {
					errorMessage += "อีเมล/Email: " + blankValue(jQuery("#form-field-email").val(), "<ว่างเปล่า/Blank>") + "\n";
					jQuery("#form-field-email").attr("style", "border-color:red");
					exit = true;
				}
				// check if not valid name on card then alert and mark as exit
				if (isEnglish(jQuery("#form-field-nameoncard").val()) || jQuery('.payment-details--frequency').attr('name') == "One-off") {
					// alert("ชื่อบนบัตรของคุณคือ " + jQuery("#form-field-nameoncard").val());
					jQuery("#form-field-nameoncard").removeAttr("style");
				} else {
					errorMessage += "ชื่อบนบัตร/Name on card: " + blankValue(jQuery("#form-field-nameoncard").val(), "<ว่างเปล่า/Blank>") + "\n";
					jQuery("#form-field-nameoncard").attr("style", "border-color:red");
					exit = true;
				}

				if (exit == true) {
					// exit with error message
					errorMessage += "...แล้วค่อยกดบริจาคใหม่/and re-submit";
					alert(errorMessage);
				} else {
					event.preventDefault();
					jQuery("#form-payment").hide();
					jQuery('html, body').animate({
						scrollTop: jQuery("#submitform_btn").offset().top
					}, 600);
					//console.log("processing");
                  
                    var typedon = jQuery("#typedon").val();
			        if (typedon == "oneoff") {
			          jQuery('.payment-details--frequency').html("One-off");
                      jQuery('#paym').val('qr promptpay');
                      jQuery('#payp').val('KBANK');
                      var donation_type = 'Single';
                      var donation_frequency = 'One-time';
			        }
                    else {
			          // monthly - recurring
			          jQuery('.payment-details--frequency').html(typedon.charAt(0).toUpperCase() + typedon.slice(1));
                      jQuery('#paym').val('card');
                      jQuery('#payp').val('2c2p');
                      var donation_type = 'Recurring';
                      var donation_frequency = jQuery('.payment-details--frequency').text();
		            }
                    //console.log(donation_frequency);
            
                     var emailValue = jQuery('#form-field-email').val();
                
                     getEncryptedEmail(emailValue).then(function(hashedEmail) {
                       window.dataLayer.push({
                         'event': 'donation_form_step_completed',
                         'donation_value': Number(jQuery('#amountvalue').val()),
                         'donation_currency': jQuery('#payc').val(),
                         'donation_type': donation_type,
                         'donation_frequency': donation_frequency,
                         'donation_payment_method': jQuery('#paym').val().toUpperCase() + ' payment via ' + jQuery('#payp').val(),
                         'gp_user_id': hashedEmail,
                         'step': 'Personal & Payment info'
                       });
                  
                       //console.log("Hashed email pushed:", hashedEmail);
                     });

					jQuery(".form-container--loader").removeClass("is-hidden");

					jQuery.ajax({
						url: 'https://give.seasia.greenpeace.org/thailand/wp-content/plugins/elementor-donateform/widgets/donatef.php',
						data: {
							form: jQuery("#submitform").serialize()
						},
						type: 'POST',
						dataType: 'json',
						success: function(data) {
							//alert(data.etat);
							jQuery(".form-container--loader").addClass("is-hidden");
							jQuery("#form-payment").show();
							if (data.etat == 1) {
								jQuery(".form-confirmation-success").removeClass('is-hidden');
								jQuery(".form-container--original").addClass('is-hidden');
								jQuery("#form-payment").addClass('is-hidden');
								//jQuery("#msgresult").html('Payment successful');
                                // Donation Completed
                                dataLayer.push({
                                  'event': 'donation_completed',
                                  'donation_value': Number(jQuery('#amountvalue').val()),
                                  'donation_currency': jQuery('#payc').val(),
                                  'donation_type': donation_type,
                                  'donation_frequency': donation_frequency,
                                  'donation_payment_method': jQuery('#paym').val().toUpperCase() + ' payment via ' + jQuery('#payp').val(),
                                  'gp_user_id': data.email,
                                  'transaction_id': data.id
                                });
								// Ecommerce data layer
								// window.dataLayer = window.dataLayer || []
								dataLayer.push({
									'event': 'purchase',
									'ecommerce': {
										'currency': jQuery('#payc').val(),
										'value': jQuery('#amountvalue').val(),
										'transaction_id': data.id,
										'items': [{
											'item_id': '01u90000006egbFAAQ',
											'item_name': 'Donation in ' + jQuery('#payc').val(),
											'item_brand': 'Greenpeace',
											'item_category': jQuery('.payment-details--frequency').attr('name'),
											'item_category2': jQuery('#paym').val().toUpperCase() + ' payment via ' + jQuery('#payp').val(),
											'item_category3': data.msg,
											'item_category4': $(location).attr('pathname'),
											'price': jQuery('#amountvalue').val(),
											'quantity': 1
										}]
									}
								});
							} else if (data.etat == 9) {
								jQuery("#form-payment").addClass('is-hidden');
								jQuery(".qr__donate").removeClass("is-hidden");
							} else {
								jQuery(".form-confirmation-failure").removeClass('is-hidden');
								jQuery(".form-container--original").addClass('is-hidden');
								jQuery("#form-payment").addClass('is-hidden');
								jQuery("#msgfailure").html(data.msg);
							}
						}
					});
				}

			});

			var getCardTokenCallback = {
				onSuccess: function(response) {
					// Success to get card token_id, implement as you wish here
					console.log('Success to get card token_id, response:', response);
					var token_id = response.token_id;
					jQuery("#token_id").val(token_id);

				}
			}

			jQuery('#form-field-creditcard').change(function() {
				jQuery("#maskedCardInfo").val((jQuery("#form-field-creditcard").val()).replaceAll(/\s/g, ''));
			});

			jQuery('#form-field-expirydate').change(function() {
				str = (jQuery('#form-field-expirydate').val()).split('/');
				jQuery("#expMonthCardInfo").val(str[0]);
				if (str[1].length == 2) {
					str[1] = "20" + str[1];
				}
				jQuery("#expYearCardInfo").val(str[1]);
			});

			jQuery('.tab-menu_oneoff').click(function() {
				//jQuery('#typedon').val('oneoff');
				jQuery('.form-oneoff').removeClass('is-hidden');
				jQuery('.form-container--original').addClass('is-hidden');
				jQuery('.one-off-form').addClass('is-hidden');
			});

			jQuery('.is-monthly').click(function() {
              if(jQuery('#typedon').val() !== 'monthly') {
				jQuery('#typedon').val('monthly');
				jQuery('.form-oneoff').addClass('is-hidden');
				jQuery('.form-container--original').removeClass('is-hidden');
				jQuery('.payment-details--frequency').attr('name', 'Monthly');
				jQuery('.payment-details--frequency').html('เดือนละครั้ง');
                window.dataLayer.push({
                  'event': 'donation_frequency_switched',
                  'switched_to': 'Monthly',
                  'donation_name': env + ': ' + ptitle,
                  'donation_type': 'Recurring',
                  'donation_platform': 'Pimclick'
                });
              }
			});

			jQuery('.is-oneoff').click(function() {
              if(jQuery('#typedon').val() == 'monthly') {
				jQuery('#typedon').val('oneoff');
				jQuery('.form-oneoff').addClass('is-hidden');
				jQuery('.one-off-form').removeClass('is-hidden');
				jQuery('.payment-details--frequency').attr('name', 'One-off');
				jQuery('.payment-details--frequency').html('ครั้งเดียว');
				jQuery('.tab-menu_oneoff').children().addClass('selected');
				jQuery('.tab-menu_monthly').children().removeClass('selected');
				jQuery(".payment-details--amount").text(jQuery("#defaultamountoneoff").val());
				jQuery("#amountvalue").val(jQuery("#defaultamountoneoff").val());
                window.dataLayer.push({
                  'event': 'donation_frequency_switched',
                  'switched_to': 'One-time',
                  'donation_name': env + ': ' + ptitle,
                  'donation_type': 'Single',
                  'donation_platform': 'Pimclick'
                });
              }
			});

			jQuery('a.form__amount-button').click(function() {
				jQuery('a.form__amount-button').removeClass('selected');
				jQuery(this).addClass('selected');
				jQuery('.other-amount-input').addClass('is-hidden');
				jQuery('.form__amount-other-button').removeClass('is-hidden');
				jQuery("#amountvalue").val(jQuery(this).attr('name'));
				jQuery(".payment-details--amount").html(jQuery(this).attr('name'));
				jQuery(".slds-form-element__help").html("โปรดระบุจำนวนเงินด้วยค่ะ");
			});

			jQuery('.form__amount-other-button').click(function() {
				jQuery(this).addClass('is-hidden');
				jQuery('.other-amount-input').removeClass('is-hidden');
				jQuery('.form__amount-button').removeClass('selected');
			});

			jQuery(".other-amnt").change(function() {
				//console.log(jQuery(this).val());
				jQuery("#amountvalue").val(jQuery(this).val());
				jQuery(".payment-details--amount").html(jQuery(this).val());
			});

			jQuery('.tab-menu_monthly').click(function() {
              if(jQuery('#typedon').val() !== 'monthly') {
                jQuery('#typedon').val('monthly');
                jQuery('.form-oneoff').addClass('is-hidden');
				jQuery('.form-container--original').removeClass('is-hidden');
				jQuery('.one-off-form').addClass('is-hidden');
				jQuery('.payment-details--frequency').attr('name', 'Monthly');
				jQuery('.payment-details--frequency').html('เดือนละครั้ง');
				jQuery('.tab-menu_oneoff').children().removeClass('selected');
				jQuery('.tab-menu_monthly').children().addClass('selected');
				jQuery(".payment-details--amount").text(jQuery("#defaultamountmonthly").val());
				jQuery("#amountvalue").val(jQuery("#defaultamountmonthly").val());
                window.dataLayer.push({
                  	'event': 'donation_frequency_switched',
                  	'switched_to': 'Monthly',
                  	'donation_name': env + ': ' + ptitle,
                  	'donation_type': 'Recurring',
                  	'donation_platform': 'Pimclick'
                });
              }
			});

			jQuery('.form__donate-btn').click(function() {
				jQuery('.form-oneoff').addClass('is-hidden');
				jQuery('.form-container--original').addClass('is-hidden');
				jQuery('.one-off-form').addClass('is-hidden');
				jQuery('#form-payment').removeClass('is-hidden');
				if (jQuery('#chk_monthly').prop('checked') == false || jQuery('.payment-details--frequency').attr('name') == 'Monthly') {
					jQuery('#submitform_btn').text("ยืนยันการบริจาคเดือนละครั้ง " + jQuery(".payment-details--amount").text() + " บาท");
					// show payment details
					jQuery('.elementor-field-group-creditcard').removeClass('is-hidden');
					jQuery('.elementor-field-group-nameoncard').removeClass('is-hidden');
					jQuery('.elementor-field-group-expirydate').removeClass('is-hidden');
					jQuery('.elementor-field-group-cvv').removeClass('is-hidden');
				} else {
					jQuery('#submitform_btn').text("ยืนยันการบริจาคครั้งเดียว " + jQuery(".payment-details--amount").text() + " บาท");
					jQuery('#qr-amount').text(jQuery(".payment-details--amount").text() + " บาท/baht");
					// hide payment details
					jQuery('.elementor-field-group-creditcard').addClass('is-hidden');
					jQuery('.elementor-field-group-nameoncard').addClass('is-hidden');
					jQuery('.elementor-field-group-expirydate').addClass('is-hidden');
					jQuery('.elementor-field-group-cvv').addClass('is-hidden');
				}
			});

			jQuery('.payment-details').click(function() {
				jQuery('.form-oneoff').addClass('is-hidden');
				jQuery('.form-container--original').removeClass('is-hidden');
				jQuery('.form-payment').addClass('is-hidden');
			});

            jQuery('#next_btn1, #next_btn2').click(function() {
                window.dataLayer.push({
                  'event': 'donation_form_step_completed',
                  'donation_step': 'Donation amount & frequency'
                });
            });
          
			jQuery('.previous').click(function() {
				jQuery('.form-oneoff').addClass('is-hidden');
				jQuery('.form-container--original').removeClass('is-hidden');
				jQuery('.form-payment').addClass('is-hidden');
				jQuery('.form__amount-other-button').focus();
				jQuery('html, body').animate({
					scrollTop: jQuery("#submitform_btn").offset().top
				}, 600);
			});

			jQuery('#form-field-expirydate').bind('keyup', 'keydown', function(event) {
				var inputLength = event.target.value.length;
				if (event.keyCode != 8) {
					if (inputLength === 2) {
						var thisVal = event.target.value;
						thisVal += '/';
						jQuery(event.target).val(thisVal);
					}
				}
			});

			jQuery('#chk_monthly').click(function() {
				if (jQuery(this).prop('checked') == false) {
					jQuery('#typedon').val('monthly');
					jQuery("#freqo").css('color', 'gray');
					jQuery("#freqm").css('color', 'black');
					jQuery("#freqm").css('font-weight', 'bolder');
					jQuery("#freqo").css('font-weight', '');
					jQuery('.payment-details--frequency').attr('name', 'Monthly');
					jQuery('.payment-details--frequency').text('เดือนละครั้ง');
					jQuery('#submitform_btn').text("ยืนยันการบริจาคเดือนละครั้ง " + jQuery(".payment-details--amount").text() + " บาท");
				} else {
					jQuery('#typedon').val('oneoff');
					jQuery("#freqm").css('color', 'gray');
					jQuery("#freqo").css('color', 'black');
					jQuery("#freqo").css('font-weight', 'bolder');
					jQuery("#freqm").css('font-weight', '');
					jQuery('.payment-details--frequency').attr('name', 'One-off');
					jQuery('.payment-details--frequency').text('ครั้งเดียว');
					jQuery('#submitform_btn').text("ยืนยันการบริจาคครั้งเดียว " + jQuery(".payment-details--amount").text() + " บาท");
					jQuery('#qr-amount').text(jQuery(".payment-details--amount").text() + " บาท/baht");
				}
			});

			// Wrap first and last name in 1 row
			jQuery('.elementor-field-group-lastname').unwrap();
			jQuery('.elementor-field-group-firstname').unwrap();
			jQuery('.elementor-field-group-firstname, .elementor-field-group-lastname').wrapAll("<div class='row'></div>");

			// Add more attributes for mobile number if phone country code = undefined
			if (jQuery('#form-field-phonecountrycode').val() == '66') {
				jQuery('#form-field-mobile').attr("onkeypress", 'if( !isNumber(event) ) return false; var date = this.value; lnt=date.length;' +
					'for(i=date.length; i<12;i++){ if (i==3 || i==7){ date=date+" ";} else date=date+"_";} this.value=date;' +
					'if(lnt==3 || lnt==7) this.selectionStart=lnt+1; else this.selectionStart=lnt;');
				jQuery('#form-field-mobile').attr("placeholder", "0__ ___ ____ (Mobile Number only)");
				jQuery('#form-field-mobile').attr("maxlength", "12");
			}

			// Wrap phone country code and mobile in 1 row
			jQuery('.elementor-field-group-mobile').unwrap();
			jQuery('.elementor-field-group-phonecountrycode').unwrap();
			jQuery('.elementor-field-group-phonecountrycode, .elementor-field-group-mobile').wrapAll("<div class='row'></div>");

			// Add more attrivutes and svg icons for card number
			jQuery('#form-field-creditcard').attr("onkeypress", 'if( !isNumber(event) ) return false; var date = this.value; lnt=date.length;' +
				'for(i=date.length; i<19;i++) { if (i==4 || i==9 || i==14) { date=date+" ";} else date=date+"_";} this.value=date;' +
				'if(lnt==4 || lnt==9 || lnt==14) this.selectionStart=lnt+1; else this.selectionStart=lnt;');
			jQuery('#form-field-creditcard').attr("placeholder", "____ ____ ____ ____ (Card Number)");
			jQuery('#form-field-creditcard').attr("maxlength", "19");
			jQuery('#form-field-creditcard').labels().append('<img src="../../thailand/wp-content/plugins/elementor-donateform/assets/logo_visa.svg" style="margin:5px">' +
				'<img src="../../thailand/wp-content/plugins/elementor-donateform/assets/logo_mc.svg" style="margin:5px">' +
				'<img src="../../thailand/wp-content/plugins/elementor-donateform/assets/logo_jcb.svg" style="margin:5px; width: 24px;height: 16px;">' +
				'<img src="../../thailand/wp-content/plugins/elementor-donateform/assets/logo_cup.svg" style="margin:5px; width: 24px;height: 16px;">');

			// Add more attributes for card expiry date and cvv
			jQuery('#form-field-expirydate').attr("maxlength", "7");
			jQuery('#form-field-cvv').attr("maxlength", "4");

			// Wrap card expiry date and cvv in 1 row
			jQuery('.elementor-field-group-cvv').unwrap();
			jQuery('.elementor-field-group-expirydate').unwrap();
			jQuery('.elementor-field-group-expirydate, .elementor-field-group-cvv').wrapAll("<div class='row'></div>");

			jQuery('#form-field-phonecountrycode').change(function() {
				if (jQuery('#form-field-phonecountrycode').val() != '66') {
					//console.log(jQuery('#form-field-phonecountrycode').val());
					jQuery('#form-field-mobile').removeAttr("onkeypress");
					jQuery('#form-field-mobile').attr("placeholder", "Mobile Number only");
					jQuery('#form-field-mobile').val('');
				} else {
					//console.log(jQuery('#form-field-phonecountrycode').val());
					jQuery('#form-field-mobile').attr("onkeypress", 'if( !isNumber(event) ) return false; var date = this.value; lnt=date.length;' +
						'for(i=date.length; i<12;i++){ if (i==3 || i==7){ date=date+" ";} else date=date+"_";} this.value=date;' +
						'if(lnt==3 || lnt==7) this.selectionStart=lnt+1; else this.selectionStart=lnt;');
					jQuery('#form-field-mobile').attr("placeholder", "0__ ___ ____ (Mobile Number only)");
					jQuery('#form-field-mobile').val('');
				}
			});
		});

		function blankValue(text, replace) {
			if (text == "" || text == null) {
				return replace;
			}
			return text;
		}

		function isValidExpiryDate(text) {
			var regex1 = /^(0[1-9]|1[0-2])\/?20([0-9]{2})$/;
			var regex2 = /^(0[1-9]|1[0-2])\/?([0-9]{2})$/;
			if (regex1.test(text) || regex2.test(text)) {
				const d = new Date();
				thisYear = d.getFullYear();
				thisYear1st2d = thisYear.toString().slice(0, 2);
				thisYear2nd2d = thisYear.toString().slice(-2);
				inputYear = text.split("/")[1];
				if (inputYear.length == 2 && thisYear2nd2d < 80) {
					inputYear = thisYear1st2d + inputYear;
				}
				if (inputYear.length == 2 && this2dYear >= 80) {
					thisCentury = ++thisYear1st2d;
					inputYear = thisCentury + inputYear;
				}
				thisMonth = 1 + d.getMonth();
				inputMonth = text.split("/")[0];
				if ((inputYear - thisYear >= 1 && inputYear - thisYear <= 20) || (inputYear - thisYear == 0 && inputMonth - thisMonth >= 0 && inputMonth >= 1 && inputMonth <= 12)) {
					return true;
				}
				return false;
			} else {
				return false;
			}
		}

		function isEnglish(text) {
			var regex = /^[a-zA-Z$@$!%*?&#^-_. +]+$/;
			return regex.test(text);
		}

		function isEmail(email) {
			var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
			return regex.test(email);
		}

		function isNumber(evt) {
			evt = (evt) ? evt : window.event;
			var charCode = (evt.which) ? evt.which : evt.keyCode;
			if (charCode > 31 && (charCode < 48 || charCode > 57)) {
				return false;
			}
			return true;
		}
      
        async function getEncryptedEmail(email) {
    	  if (!email) return null;
    
    	  // Clean the email: trim whitespace and lowercase
    	  const cleanEmail = email.trim().toLowerCase();
    	  const encoder = new TextEncoder();
    	  const data = encoder.encode(cleanEmail);
    
    	  // Generate SHA-256 hash
    	  const hashBuffer = await crypto.subtle.digest('SHA-256', data);
    
    	  // Convert buffer to Base64
    	  const hashArray = Array.from(new Uint8Array(hashBuffer));
    	  const base64String = btoa(String.fromCharCode.apply(null, hashArray));
    
    	  // Remove slashes to match your original logic
    	  return base64String.replace(/\//g, '');
        }
	</script>

	<style>
		@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

		.message {
			font-family: 'Roboto', sans-serif;
			text-align: center;
			margin: auto;
		}

		.message img {
			width: 150px;
			margin-bottom: 20px;
		}

		.message p {
			margin-bottom: 31px;
			font-weight: 600;
		}

		.message .btn {
			background: #21c544;
			color: #fff;
			padding: 14px 30px;
			border-radius: 20px;
			font-size: 13px;
		}

		.message .btn img {
			width: 25px;
			margin-bottom: inherit;
			margin-right: 10px;
			;
		}
	</style>
	<style>
		.switch {
			position: relative;
			display: inline-block;
			width: 60px;
			height: 34px;
		}

		/* Hide default HTML checkbox */
		.switch input {
			opacity: 0;
			width: 0;
			height: 0;
		}

		/* The slider */
		.slider {
			position: absolute;
			cursor: pointer;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background-color: #ccc;
			-webkit-transition: .4s;
			transition: .4s;
		}

		.slider:before {
			position: absolute;
			content: "";
			height: 26px;
			width: 26px;
			left: 4px;
			bottom: 4px;
			background-color: white;
			-webkit-transition: .4s;
			transition: .4s;
		}

		input:checked+.slider {
			background-color: #2196F3;
		}

		input:focus+.slider {
			box-shadow: 0 0 1px #2196F3;
		}

		input:checked+.slider:before {
			-webkit-transform: translateX(26px);
			-ms-transform: translateX(26px);
			transform: translateX(26px);
		}

		/* Rounded sliders */
		.slider.round {
			border-radius: 34px;
		}

		.slider.round:before {
			border-radius: 50%;
		}

		.slider {
			background-color: #457c0e;

		}

		.switch {
			position: relative;
			display: inline-block;
			width: 50px;
			height: 19px;
		}

		.slider:before {
			height: 13px;
			width: 16px;
			bottom: 3px;
		}

		input:checked+.slider {
			background-color: #457c0e;
		}

		.payment-details--frequency {
			font-size: 13px;
		}

		.loader {
			margin-left: 200px;
			margin-top: 80px;
			border: 16px solid #f3f3f3;
			/* Light grey */
			border-top: 16px solid #3498db;
			/* Blue */
			border-radius: 50%;
			width: 120px;
			height: 120px;
			animation: spin 2s linear infinite;
		}

		@keyframes spin {
			0% {
				transform: rotate(0deg);
			}

			100% {
				transform: rotate(360deg);
			}
		}

		.select li {
			display: none;
			cursor: pointer;
			padding: 5px 10px;
			border-top: 1px solid black;
			min-width: 150px;
		}

		.select li:first-child {
			display: block;
			border-top: 0px;
		}

		.select {
			border: 1px solid black;
			display: inline-block;
			padding: 0;
			border-radius: 4px;
			position: relative;
		}

		.select li:hover {
			background-color: #ddd;
		}

		.select li:first-child:hover {
			background-color: transparent;
		}

		.select.open li {
			display: block;
		}

		.select span:before {
			position: absolute;
			top: 5px;
			right: 15px;
			content: "\2193";
		}

		.select.open span:before {
			content: "\2191";
		}

		.payment-infos {
			padding: 4px 8px;
			background-color: var(--thematic-color);
			color: #fff;
			border-radius: var(--radius);
			display: flex;
			align-items: center;
		}

		. {
			background-color: #9f9a96 !important;
		}

		/*input#form-field-mobile {
			padding-left: 44px;
		}*/

		span.prefx {
			position: absolute;
			color: #666;
			width: 30px;
			height: 30px;
			bottom: 0;
			left: 11px;

		}
	</style>
{"id":1184,"date":"2025-03-24T14:58:55","date_gmt":"2025-03-24T07:58:55","guid":{"rendered":"https:\/\/give.seasia.greenpeace.org\/thailand\/?page_id=1184"},"modified":"2025-05-23T10:08:59","modified_gmt":"2025-05-23T03:08:59","slug":"anti-slapp","status":"publish","type":"page","link":"https:\/\/give.seasia.greenpeace.org\/thailand\/anti-slapp\/","title":{"rendered":"WeWillNotBeSilenced"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1184\" class=\"elementor elementor-1184\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-7c0cce2 lp-menu elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle\" data-id=\"7c0cce2\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_on&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_effects_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-383f6d4 logo-wrap\" data-id=\"383f6d4\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-22cf036a elementor-widget elementor-widget-theme-site-logo elementor-widget-image\" data-id=\"22cf036a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"theme-site-logo.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/www.greenpeace.org\/thailand\/\">\n\t\t\t<img decoding=\"async\" width=\"190\" height=\"30\" src=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/uploads\/2022\/10\/logo-GP-2019-green-small.png\" class=\"attachment-full size-full wp-image-930\" alt=\"\" style=\"width:100%;height:15.79%;max-width:190px\" \/>\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-66 elementor-top-column elementor-element elementor-element-1ab12f18 menu-wrap\" data-id=\"1ab12f18\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-203ce2d4 elementor-nav-menu__align-end elementor-hidden-tablet elementor-hidden-mobile elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu\" data-id=\"203ce2d4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\\&quot;\\&quot; aria-hidden=\\&quot;true\\&quot;&gt;&lt;\\\/i&gt;&quot;,&quot;library&quot;:&quot;&quot;},&quot;layout&quot;:&quot;horizontal&quot;,&quot;toggle&quot;:&quot;burger&quot;}\" data-widget_type=\"nav-menu.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t<nav aria-label=\"Menu\" class=\"elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-none\">\n\t\t\t\t<ul id=\"menu-1-203ce2d4\" class=\"elementor-nav-menu\"><li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-79\"><a href=\"https:\/\/www.greenpeace.org\/thailand\/about\/\" class=\"elementor-item\">\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-80\"><a href=\"https:\/\/www.greenpeace.org\/thailand\/explore\/\" class=\"elementor-item\">\u0e07\u0e32\u0e19\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-677\"><a href=\"https:\/\/www.greenpeace.org\/thailand\/explore\/greenpeace\/join-us\/\" class=\"elementor-item\">\u0e23\u0e48\u0e27\u0e21\u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-678\"><a href=\"https:\/\/www.greenpeace.org\/thailand\/act\/donate\/\" class=\"elementor-item\">\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-679\"><a href=\"https:\/\/www.greenpeace.org\/thailand\/stories-and-updates\/\" class=\"elementor-item\">\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-81\"><a href=\"#\" class=\"elementor-item elementor-item-anchor\">\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04<\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\t\t\t<div class=\"elementor-menu-toggle\" role=\"button\" tabindex=\"0\" aria-label=\"Menu Toggle\" aria-expanded=\"false\">\n\t\t\t<i aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--open eicon-menu-bar\"><\/i><i aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--close eicon-close\"><\/i>\t\t<\/div>\n\t\t\t\t\t<nav class=\"elementor-nav-menu--dropdown elementor-nav-menu__container\" aria-hidden=\"true\">\n\t\t\t\t<ul id=\"menu-2-203ce2d4\" class=\"elementor-nav-menu\"><li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-79\"><a href=\"https:\/\/www.greenpeace.org\/thailand\/about\/\" class=\"elementor-item\" tabindex=\"-1\">\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-80\"><a href=\"https:\/\/www.greenpeace.org\/thailand\/explore\/\" class=\"elementor-item\" tabindex=\"-1\">\u0e07\u0e32\u0e19\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-677\"><a href=\"https:\/\/www.greenpeace.org\/thailand\/explore\/greenpeace\/join-us\/\" class=\"elementor-item\" tabindex=\"-1\">\u0e23\u0e48\u0e27\u0e21\u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-678\"><a href=\"https:\/\/www.greenpeace.org\/thailand\/act\/donate\/\" class=\"elementor-item\" tabindex=\"-1\">\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-679\"><a href=\"https:\/\/www.greenpeace.org\/thailand\/stories-and-updates\/\" class=\"elementor-item\" tabindex=\"-1\">\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23<\/a><\/li>\n<li class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-81\"><a href=\"#\" class=\"elementor-item elementor-item-anchor\" tabindex=\"-1\">\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04<\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6dc867d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"6dc867d\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7595411\" data-id=\"7595411\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a36c663 elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-text-editor\" data-id=\"a36c663\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>\u00a0<\/p><p>\u00a0<\/p><p>\u00a0<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4d90e92 elementor-widget elementor-widget-gallery\" data-id=\"4d90e92\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;columns&quot;:1,&quot;aspect_ratio&quot;:&quot;1:1&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns_tablet&quot;:2,&quot;columns_mobile&quot;:1,&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]}}\" data-widget_type=\"gallery.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-gallery__container\">\n\t\t\t\t\t\t\t<div class=\"e-gallery-item elementor-gallery-item\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/uploads\/2025\/03\/TH-antislapp5.jpg\" data-width=\"1920\" data-height=\"1280\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-082b446\" data-id=\"082b446\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-cb89516 elementor-widget elementor-widget-heading\" data-id=\"cb89516\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07 \u0e40\u0e2a\u0e23\u0e35\u0e20\u0e32\u0e1e\u0e43\u0e19\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e04\u0e27\u0e32\u0e21\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19\u0e41\u0e25\u0e30\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e43\u0e19\u0e01\u0e32\u0e23\u0e0a\u0e38\u0e21\u0e19\u0e38\u0e21\u0e1b\u0e23\u0e30\u0e17\u0e49\u0e27\u0e07 \u201c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u201d<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1809dc1 elementor-widget elementor-widget-heading\" data-id=\"1809dc1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\"><span id=\"docs-internal-guid-560f771f-7fff-0cbd-4fb4-d6a41613313f\"><span style=\"font-size: 13pt;font-family: Kanit, sans-serif;background-color: transparent;vertical-align: baseline\">\u0e19\u0e35\u0e48\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e41\u0e04\u0e48\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49\u0e02\u0e2d\u0e07\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b \u0e41\u0e15\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49\u0e02\u0e2d\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e23\u0e32\u0e17\u0e38\u0e01\u0e04\u0e19<\/span><\/span><\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f4b4f9a elementor-button-align-stretch elementor-widget elementor-widget-donateform\" data-id=\"f4b4f9a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;button_width&quot;:&quot;100&quot;}\" data-widget_type=\"donateform.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" id=\"submitform\" name=\"New Form\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"1184\" \/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"f4b4f9a\" \/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"WeWillNotBeSilenced\" \/>\n\t\t\t<input type=\"hidden\" name=\"payment_processor\" id=\"payp\" value=\"2c2p\" \/>\n\t\t\t<input type=\"hidden\" name=\"payment_method\" id=\"paym\" value=\"card\" \/>\n\t\t\t<input type=\"hidden\" name=\"payment_currency\" id=\"payc\" value=\"THB\" \/>\n\t\t\t<input type=\"hidden\" name=\"form_fields[uri]\" id=\"uri\" value=\"\/thailand\/anti-slapp\/\" \/>\n\t\t\t<input type=\"hidden\" name=\"form_fields[state]\" value=\"ok\">\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"queried_id\" value=\"1184\" \/>\n\t\t\t\n\t\t\t<div class=\"cDonate\">\n\t\t\t\t<div class=\"form-wrapper\">\n\t\t\t\t\t<!--render facet: 38:96;a-->\n\t\t\t\t\t<div class=\"main__form-wrapper hide-monthly-ask\">\n\t\t\t\t\t\t<!--<div class=\"form__title title_step-1\">\n\t\t\t\t\t\t\t\t<h1 class=\"form__headline mt-0 has-text-weight-bold\">\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07<nobr>\u0e2a\u0e34\u0e48\u0e07\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21<\/nobr>\u0e01\u0e31\u0e1a<nobr>\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b<\/nobr>\u0e44\u0e14\u0e49\u0e41\u0e25\u0e49\u0e27\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49<\/h1>\n\t\t\t\t\t\t\t\t<p class=\"form__leading mb-0\">\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b\u0e16\u0e39\u0e01\u0e02\u0e31\u0e1a\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e42\u0e14\u0e22\u0e04\u0e19\u0e40\u0e0a\u0e48\u0e19\u0e04\u0e38\u0e13 \u0e40\u0e07\u0e34\u0e19\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e40\u0e23\u0e32\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33\u0e07\u0e32\u0e19\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07\u0e41\u0e25\u0e30\u0e22\u0e38\u0e15\u0e34\u0e21\u0e25\u0e1e\u0e34\u0e29\u0e17\u0e32\u0e07\u0e2a\u0e34\u0e48\u0e07\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e15\u0e48\u0e2d\u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07<\/p>\n\t\t\t\t\t\t\t<\/div>-->\n\t\t\t\t\t\t<div class=\"mt-4 form-container form-oneoff is-hidden\">\n\t\t\t\t\t\t\t<div class=\"form__contents\">\n\t\t\t\t\t\t\t\t<div class=\"form__reminder\">\n\t\t\t\t\t\t\t\t\t<figure class=\"mt-4 mb-5 image is-64x64\" style=\"margin-left: auto; margin-right: auto;\">\n\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" alt=\"Monthly\" src=\"https:\/\/www.greenpeace.org\/static\/planet4-hongkong-stateless\/2021\/07\/62cbaa4a-gpheart.png\">\n\t\t\t\t\t\t\t\t\t<\/figure>\n\t\t\t\t\t\t\t\t\t<h3 class=\"mb-5 has-text-weight-bold\">\u0e40\u0e07\u0e34\u0e19\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e25\u0e30\u0e04\u0e23\u0e31\u0e49\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e23\u0e32\u0e44\u0e14\u0e49<\/h3>\n\t\t\t\t\t\t\t\t\t<p class=\"mb-5\">\u0e14\u0e49\u0e27\u0e22\u0e01\u0e32\u0e23\u0e23\u0e48\u0e27\u0e21\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e40\u0e07\u0e34\u0e19\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49 \u0e04\u0e38\u0e13\u0e08\u0e30\u0e01\u0e25\u0e32\u0e22\u0e40\u0e1b\u0e47\u0e19\u0e1e\u0e25\u0e31\u0e07\u0e1c\u0e25\u0e31\u0e01\u0e14\u0e31\u0e19\u0e23\u0e48\u0e27\u0e21\u0e01\u0e31\u0e19\u0e01\u0e31\u0e1a<nobr>\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b<\/nobr> \u0e43\u0e19\u0e01\u0e32\u0e23\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07\u0e2a\u0e34\u0e48\u0e07\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21\u0e41\u0e25\u0e30\u0e19\u0e33\u0e44\u0e1b\u0e2a\u0e39\u0e48\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e21\u0e25\u0e1e\u0e34\u0e29\u0e17\u0e35\u0e48\u0e22\u0e31\u0e48\u0e07\u0e22\u0e37\u0e19<\/p>\n\t\t\t\t\t\t\t\t\t<div class=\"columns mb-5\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"column\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"button is-monthly is-fullwidth\" name=\"Monthly\">\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e25\u0e30\u0e04\u0e23\u0e31\u0e49\u0e07<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"column\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"button is-oneoff is-fullwidth\" name=\"One-Off\">\u0e04\u0e23\u0e31\u0e49\u0e07\u0e40\u0e14\u0e35\u0e22\u0e27<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"\">\n\t\t\t\t\t\t\t<div class=\"form-container form-confirmation-success is-hidden\">\n\t\t\t\t\t\t\t\t<div class=\"message\">\n\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/plugins\/elementor-donateform\/widgets\/check-button.png\">\n\t\t\t\t\t\t\t\t\t<h1>\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e21\u0e1a\u0e39\u0e23\u0e13\u0e4c<\/h1>\n\t\t\t\t\t\t\t\t\t<p>\u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e23\u0e48\u0e27\u0e21\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04<\/p>\n\t\t\t\t\t\t\t\t\t<a class=\"btn\"><img decoding=\"async\" src=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/plugins\/elementor-donateform\/widgets\/arrow.png\">\u0e42\u0e1b\u0e23\u0e14\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e44\u0e14\u0e49\u0e17\u0e35\u0e48\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13<\/a>\n\t\t\t\t\t\t\t\t\t<p style=\"margin-top: 10px;\">\u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e1e\u0e1a\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32 \u0e01\u0e23\u0e38\u0e13\u0e32\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e42\u0e1f\u0e25\u0e40\u0e14\u0e2d\u0e23\u0e4c\u0e02\u0e22\u0e30\u0e2b\u0e23\u0e37\u0e2d\u0e2a\u0e41\u0e1b\u0e21 \u0e41\u0e25\u0e30\u0e22\u0e49\u0e32\u0e22\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e19\u0e31\u0e49\u0e19\u0e2d\u0e2d\u0e01\u0e21\u0e32<br>\n\t\t\t\t\t\t\t\t\t\t\u0e2b\u0e23\u0e37\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1d\u0e48\u0e32\u0e22\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e1c\u0e39\u0e49\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e44\u0e14\u0e49\u0e17\u0e35\u0e48 \u0e2d\u0e35\u0e40\u0e21\u0e25: supporterservices.th@greenpeace.org<\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-container form-confirmation-failure is-hidden\">\n\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/plugins\/elementor-donateform\/assets\/failed.png\" \/>\n\t\t\t\t\t\t\t\t<p id=\"msgfailure\"><\/p>\n\t\t\t\t\t\t\t\t<p><a href=\"\/thailand\/anti-slapp\/\" style=\"margin-top: 20px; color: #000; font-weight: 600; display: block;\">\u0e25\u0e2d\u0e07\u0e43\u0e2b\u0e21\u0e48\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07<\/a><\/p>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-container form-container--loader is-hidden\">\n\t\t\t\t\t\t\t\t<div class=\"loader\"><\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-container one-off-form is-hidden\">\n\t\t\t\t\t\t\t\t<div class=\"form__handle form__menu\">\n\t\t\t\t\t\t\t\t\t<ul class=\"tab-menu \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"tab-menu-option tab-menu_monthly\"><a class=\"form__full selected\" name=\"Monthly\" href=\"javascript:void(0);\">\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e25\u0e30\u0e04\u0e23\u0e31\u0e49\u0e07<\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t<li class=\"tab-menu-option tab-menu_oneoff\"><a class=\"form__full \" name=\"One-Off\" href=\"javascript:void(0);\">\u0e04\u0e23\u0e31\u0e49\u0e07\u0e14\u0e35\u0e22\u0e27<\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"form__contents\">\n\t\t\t\t\t\t\t\t\t<div class=\"form__amounts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"is-clickable form__amount-button \" name=\"100\" data-index=\"0\" style=\"width:100%\">\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"currency\">\u0e3f<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"amount\">100<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"unit\"><\/span><\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"is-clickable form__amount-button selected\" name=\"500\" data-index=\"0\" style=\"width:100%\">\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"currency\">\u0e3f<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"amount\">500<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"unit\"><\/span><\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"is-clickable form__amount-button \" name=\"1000\" data-index=\"0\" style=\"width:100%\">\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"currency\">\u0e3f<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"amount\">1000<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"unit\"><\/span><\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"is-clickable form__amount-button form__amount-other-button\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"amount\">\u0e23\u0e30\u0e1a\u0e38\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<div class=\"is-clickable other-amount-input is-hidden\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"currency\">\u0e3f<\/span>\n\n\t\t\t\t\t\t\t\t\t\t\t<lightning-input class=\"other-amount slds-form-element slds-has-error\" lightning-input_input-host=\"\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<div lightning-input_input=\"\" class=\"slds-form-element__control slds-grow\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input lightning-input_input=\"\" type=\"text\" aria-invalid=\"true\" max=\"999999999\" min=\"50\" inputmode=\"decimal\" step=\"1\" placeholder=\"other amount\" class=\"other-amnt slds-input\" aria-describedby=\"help-message-33\">\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div lightning-input_input=\"\" id=\"help-message-33\" data-help-message=\"\" role=\"alert\" class=\"slds-form-element__help\">\u0e42\u0e1b\u0e23\u0e14\u0e23\u0e30\u0e1a\u0e38\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e14\u0e49\u0e27\u0e22\u0e04\u0e48\u0e30<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/lightning-input>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t\t\t\t\t<div class=\"form-dollar-handle\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"my-4 has-text-left amount-text amount-text_monthly\">\n\t\t\t\t\t\t\t\t\t\t<div>\u0e14\u0e49\u0e27\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e15\u0e48\u0e2d\u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 <nobr>\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b<\/nobr>\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33\u0e07\u0e32\u0e19\u0e28\u0e36\u0e01\u0e29\u0e32\u0e27\u0e34\u0e08\u0e31\u0e22 \u0e08\u0e31\u0e14\u0e17\u0e33\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e41\u0e25\u0e30\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c \u0e41\u0e25\u0e30\u0e1c\u0e25\u0e31\u0e01\u0e14\u0e31\u0e19\u0e43\u0e19\u0e40\u0e0a\u0e34\u0e07\u0e19\u0e42\u0e22\u0e1a\u0e32\u0e22 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e01\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e01\u0e34\u0e14\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e43\u0e19\u0e17\u0e32\u0e07\u0e17\u0e35\u0e48\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19\u0e15\u0e48\u0e2d\u0e2a\u0e20\u0e32\u0e1e\u0e20\u0e39\u0e21\u0e34\u0e2d\u0e32\u0e01\u0e32\u0e28 \u0e1b\u0e48\u0e32\u0e44\u0e21\u0e49 \u0e21\u0e2b\u0e32\u0e2a\u0e21\u0e38\u0e17\u0e23 \u0e41\u0e2b\u0e25\u0e48\u0e07\u0e19\u0e49\u0e33\u0e41\u0e25\u0e30\u0e2d\u0e32\u0e2b\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e23\u0e32<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t\t\t<p class=\"is-hidden dollar-handle-dynamic my-2 has-text-left amount-text\">Expose the dirty reality of illegal fishing by deploying our ships to investigate the world's most vulnerable oceans.<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"form__donate\"><button id=\"next_btn1\" class=\"form__donate-btn\" type=\"button\">\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e44\u0e1b<\/button><\/div>\n\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t<table>\n\t\t\t\t\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t\t\t\t\t<td style=\"width:50%;\"><img decoding=\"async\" src=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/plugins\/elementor-donateform\/assets\/logo-oneoff250x80.png\" alt=\"QR payment via KBANK\" border=\"0\" \/><\/td>\n\t\t\t\t\t\t\t\t\t\t\t\t<td style=\"width:50%;\" class=\"secure-reminder\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/plugins\/elementor-donateform\/assets\/padlock.png\" alt=\"padlock\" border=\"0\" style=\"width:15px;margin-bottom:5px;\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e2d\u0e19\u0e44\u0e25\u0e19\u0e4c \u0e1c\u0e48\u0e32\u0e19\u0e41\u0e2d\u0e1b\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e0a\u0e31\u0e19\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e2b\u0e23\u0e37\u0e2d\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23 \u0e44\u0e21\u0e48\u0e21\u0e35\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21\n\t\t\t\t\t\t\t\t\t\t\t\t<\/td>\n\t\t\t\t\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t\t\t\t\t<\/table>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"form-container form-container--original \">\n\t\t\t\t\t\t\t\t<div class=\"form__handle form__menu\">\n\t\t\t\t\t\t\t\t\t<ul class=\"tab-menu \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li class=\"tab-menu-option tab-menu_monthly\"><a class=\"form__full selected\" name=\"Monthly\" href=\"javascript:void(0);\">\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e25\u0e30\u0e04\u0e23\u0e31\u0e49\u0e07<\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t<li class=\"tab-menu-option tab-menu_oneoff\"><a class=\"form__full \" name=\"One-Off\" href=\"javascript:void(0);\">\u0e04\u0e23\u0e31\u0e49\u0e07\u0e40\u0e14\u0e35\u0e22\u0e27<\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"form__contents\">\n\t\t\t\t\t\t\t\t\t<div class=\"form__amounts\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"is-clickable form__amount-button  \" name=\"100\" data-index=\"0\" style=\"width:100%\">\n\t\t\t\t\t\t\t\t\t\t\t <!-- <span class=\"currency\">3 \u0e1a\u0e32\u0e17\/\u0e27\u0e31\u0e19 (<\/span> -->\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"amount\">100<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"unit\">\u0e1a\u0e32\u0e17\/\u0e40\u0e14\u0e37\u0e2d\u0e19<\/span><\/a>\n <\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"is-clickable form__amount-button selected \" name=\"500\" data-index=\"0\" style=\"width:100%\">\n\t\t\t\t\t\t\t\t\t\t\t <!-- <span class=\"currency\">17 \u0e1a\u0e32\u0e17\/\u0e27\u0e31\u0e19 (<\/span> -->\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"amount\">500<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"unit\">\u0e1a\u0e32\u0e17\/\u0e40\u0e14\u0e37\u0e2d\u0e19<\/span><\/a>\n <\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"is-clickable form__amount-button  \" name=\"1000\" data-index=\"0\" style=\"width:100%\">\n\t\t\t\t\t\t\t\t\t\t\t <!-- <span class=\"currency\">33 \u0e1a\u0e32\u0e17\/\u0e27\u0e31\u0e19 (<\/span> -->\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"amount\">1000<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"unit\">\u0e1a\u0e32\u0e17\/\u0e40\u0e14\u0e37\u0e2d\u0e19<\/span><\/a>\n <\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <span class=\"is-clickable form__amount-button form__amount-other-button\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"amount\">\u0e23\u0e30\u0e1a\u0e38\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<div class=\"is-clickable other-amount-input is-hidden\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"currency\">\u0e3f<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<lightning-input class=\"other-amount slds-form-element slds-has-error\" lightning-input_input-host=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div lightning-input_input=\"\" class=\"slds-form-element__control slds-grow\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input lightning-input_input=\"\" type=\"text\" aria-invalid=\"true\" max=\"999999999\" min=\"50\" inputmode=\"decimal\" step=\"1\" placeholder=\"other amount\" class=\"other-amnt slds-input\" aria-describedby=\"help-message-33\">\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div lightning-input_input=\"\" id=\"help-message-33\" data-help-message=\"\" role=\"alert\" class=\"slds-form-element__help\">\u0e42\u0e1b\u0e23\u0e14\u0e23\u0e30\u0e1a\u0e38\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e14\u0e49\u0e27\u0e22\u0e04\u0e48\u0e30<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/lightning-input>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t\t\t\t\t<div class=\"form-dollar-handle\">\n\t\t\t\t\t\t\t\t\t\t<p class=\"my-4 has-text-left amount-text amount-text_monthly\">\n\t\t\t\t\t\t\t\t\t\t<div style=\"font-size: smaller;\">\u0e14\u0e49\u0e27\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e15\u0e48\u0e2d\u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 <nobr>\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b<\/nobr>\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33\u0e07\u0e32\u0e19\u0e28\u0e36\u0e01\u0e29\u0e32\u0e27\u0e34\u0e08\u0e31\u0e22 \u0e08\u0e31\u0e14\u0e17\u0e33\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e41\u0e25\u0e30\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c \u0e41\u0e25\u0e30\u0e1c\u0e25\u0e31\u0e01\u0e14\u0e31\u0e19\u0e43\u0e19\u0e40\u0e0a\u0e34\u0e07\u0e19\u0e42\u0e22\u0e1a\u0e32\u0e22 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e01\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e01\u0e34\u0e14\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e43\u0e19\u0e17\u0e32\u0e07\u0e17\u0e35\u0e48\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19\u0e15\u0e48\u0e2d\u0e2a\u0e20\u0e32\u0e1e\u0e20\u0e39\u0e21\u0e34\u0e2d\u0e32\u0e01\u0e32\u0e28 \u0e1b\u0e48\u0e32\u0e44\u0e21\u0e49 \u0e21\u0e2b\u0e32\u0e2a\u0e21\u0e38\u0e17\u0e23 \u0e41\u0e2b\u0e25\u0e48\u0e07\u0e19\u0e49\u0e33\u0e41\u0e25\u0e30\u0e2d\u0e32\u0e2b\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e23\u0e32<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t\t\t<p class=\"is-hidden dollar-handle-dynamic my-2 has-text-left amount-text\">Expose the dirty reality of illegal fishing by deploying our ships to investigate the world's most vulnerable oceans.<\/p>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<div class=\"form__donate\"><button id=\"next_btn2\" class=\"form__donate-btn\" type=\"button\">\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e44\u0e1b<\/button><\/div>\n\t\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t\t<table>\n\t\t\t\t\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t\t\t\t\t<td style=\"width:50%;\"><img decoding=\"async\" src=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/plugins\/elementor-donateform\/assets\/logo-2c2p250x80.png\" alt=\"CARD payment via 2c2p\" border=\"0\" \/><\/td>\n\t\t\t\t\t\t\t\t\t\t\t\t<td style=\"width:50%;\" class=\"secure-reminder\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/plugins\/elementor-donateform\/assets\/padlock.png\" alt=\"padlock\" border=\"0\" style=\"width:15px;margin-bottom:5px;\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22 \u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1a\u0e31\u0e15\u0e23\u0e2d\u0e31\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e27\u0e32\u0e21\u0e25\u0e31\u0e1a\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e08\u0e30\u0e16\u0e39\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e44\u0e27\u0e49\u0e01\u0e31\u0e1a 2c2p \u0e41\u0e25\u0e30\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07\u0e15\u0e32\u0e21\u0e19\u0e42\u0e22\u0e1a\u0e32\u0e22\u0e23\u0e31\u0e01\u0e29\u0e32\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27\n\t\t\t\t\t\t\t\t\t\t\t\t<\/td>\n\t\t\t\t\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t\t\t\t\t<\/table>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div id=\"form-payment\" class=\"form-container form-payment is-hidden\">\n\t\t\t\t\t\t\t\t\t<div class=\"form__contents\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"form__details\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"form__details--donation\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"is-hidden subtext\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0e42\u0e1b\u0e23\u0e14\u0e01\u0e23\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"amount-row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"subtext is-flex is-align-items-center\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p class=\"m-0\">\u0e42\u0e1b\u0e23\u0e14\u0e01\u0e23\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"payment-infos is-clickable\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"payment-details--frequency\" name=\"Monthly\">\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e25\u0e30\u0e04\u0e23\u0e31\u0e49\u0e07<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"payment-details--separator\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"payment-details--currency\">\u0e3f<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"payment-details--amount\">500<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"form__details-personal\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-firstname elementor-col-40 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-firstname\" class=\"elementor-field-label\">\u0e0a\u0e37\u0e48\u0e2d<\/label><input size=\"1\" type=\"text\" name=\"form_fields[firstname]\" id=\"form-field-firstname\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"First Name\" required=\"required\">\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-lastname elementor-col-60\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-lastname\" class=\"elementor-field-label\">\u0e0a\u0e37\u0e48\u0e2d\u0e2a\u0e01\u0e38\u0e25<\/label><input size=\"1\" type=\"text\" name=\"form_fields[lastname]\" id=\"form-field-lastname\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Last Name\">\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-email\" class=\"elementor-field-label\">\u0e2d\u0e35\u0e40\u0e21\u0e25<\/label><input size=\"1\" type=\"email\" name=\"form_fields[email]\" id=\"form-field-email\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Email\">\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-select elementor-field-group elementor-column elementor-field-group-phonecountrycode elementor-col-33\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-phonecountrycode\" class=\"elementor-field-label\">\u0e23\u0e2b\u0e31\u0e2a\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28<\/label>\t\t<div class=\"elementor-field elementor-select-wrapper remove-before \">\n\t\t\t<div class=\"select-caret-down-wrapper\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"eicon-caret-down\"><\/i>\t\t\t<\/div>\n\t\t\t<select name=\"form_fields[phonecountrycode]\" id=\"form-field-phonecountrycode\" class=\"elementor-field-textual elementor-size-sm\">\n\t\t\t\t\t\t\t\t\t<option value=\"376\">AD (+376)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"971\">AE (+971)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"93\">AF (+93)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-268\">AG (+1-268)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-264\">AI (+1-264)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"355\">AL (+355)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"374\">AM (+374)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"244\">AO (+244)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"672\">AQ (+672)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"54\">AR (+54)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-684\">AS (+1-684)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"43\">AT (+43)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"61\">AU (+61)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"297\">AW (+297)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"358\">AX (+358)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"994\">AZ (+994)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"387\">BA (+387)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-246\">BB (+1-246)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"880\">BD (+880)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"32\">BE (+32)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"226\">BF (+226)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"359\">BG (+359)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"973\">BH (+973)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"257\">BI (+257)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"229\">BJ (+229)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"590\">BL (+590)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-441\">BM (+1-441)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"673\">BN (+673)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"591\">BO (+591)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"599\">BQ (+599)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"55\">BR (+55)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-242\">BS (+1-242)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"975\">BT (+975)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"47\">BV (+47)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"267\">BW (+267)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"375\">BY (+375)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"501\">BZ (+501)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1\">CA (+1)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"61\">CC (+61)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"243\">CD (+243)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"236\">CF (+236)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"242\">CG (+242)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"41\">CH (+41)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"225\">CI (+225)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"682\">CK (+682)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"56\">CL (+56)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"237\">CM (+237)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"86\">CN (+86)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"57\">CO (+57)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"506\">CR (+506)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"53\">CU (+53)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"238\">CV (+238)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"599\">CW (+599)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"61\">CX (+61)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"357\">CY (+357)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"420\">CZ (+420)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"49\">DE (+49)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"253\">DJ (+253)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"45\">DK (+45)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-767\">DM (+1-767)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-809,1-829,1-849\">DO (+1-809,+1-829,+1-849)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"213\">DZ (+213)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"593\">EC (+593)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"372\">EE (+372)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"20\">EG (+20)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"212\">EH (+212)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"291\">ER (+291)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"34\">ES (+34)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"251\">ET (+251)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"358\">FI (+358)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"679\">FJ (+679)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"500\">FK (+500)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"691\">FM (+691)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"298\">FO (+298)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"33\">FR (+33)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"241\">GA (+241)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"44\">GB (+44)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-473\">GD (+1-473)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"995\">GE (+995)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"594\">GF (+594)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"44\">GG (+44)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"233\">GH (+233)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"350\">GI (+350)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"299\">GL (+299)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"220\">GM (+220)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"224\">GN (+224)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"590\">GP (+590)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"240\">GQ (+240)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"30\">GR (+30)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"500\">GS (+500)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"502\">GT (+502)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-671\">GU (+1-671)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"245\">GW (+245)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"592\">GY (+592)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"852\">HK (+852)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"672\">HM (+672)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"504\">HN (+504)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"385\">HR (+385)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"509\">HT (+509)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"36\">HU (+36)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"62\">ID (+62)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"353\">IE (+353)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"972\">IL (+972)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"44\">IM (+44)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"91\">IN (+91)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"246\">IO (+246)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"964\">IQ (+964)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"98\">IR (+98)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"354\">IS (+354)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"39\">IT (+39)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"44\">JE (+44)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-876\">JM (+1-876)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"962\">JO (+962)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"81\">JP (+81)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"254\">KE (+254)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"996\">KG (+996)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"855\">KH (+855)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"686\">KI (+686)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"269\">KM (+269)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-869\">KN (+1-869)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"850\">KP (+850)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"82\">KR (+82)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"965\">KW (+965)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-345\">KY (+1-345)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"7\">KZ (+7)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"856\">LA (+856)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"961\">LB (+961)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-758\">LC (+1-758)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"423\">LI (+423)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"94\">LK (+94)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"231\">LR (+231)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"266\">LS (+266)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"370\">LT (+370)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"352\">LU (+352)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"371\">LV (+371)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"218\">LY (+218)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"212\">MA (+212)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"377\">MC (+377)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"373\">MD (+373)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"382\">ME (+382)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"590\">MF (+590)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"261\">MG (+261)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"692\">MH (+692)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"389\">MK (+389)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"223\">ML (+223)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"95\">MM (+95)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"976\">MN (+976)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"853\">MO (+853)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-670\">MP (+1-670)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"596\">MQ (+596)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"222\">MR (+222)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-664\">MS (+1-664)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"356\">MT (+356)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"230\">MU (+230)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"960\">MV (+960)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"265\">MW (+265)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"52\">MX (+52)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"60\">MY (+60)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"258\">MZ (+258)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"264\">NA (+264)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"687\">NC (+687)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"227\">NE (+227)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"672\">NF (+672)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"234\">NG (+234)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"505\">NI (+505)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"31\">NL (+31)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"47\">NO (+47)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"977\">NP (+977)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"674\">NR (+674)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"683\">NU (+683)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"64\">NZ (+64)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"968\">OM (+968)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"507\">PA (+507)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"51\">PE (+51)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"689\">PF (+689)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"675\">PG (+675)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"63\">PH (+63)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"92\">PK (+92)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"48\">PL (+48)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"508\">PM (+508)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"870\">PN (+870)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1\">PR (+1)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"970\">PS (+970)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"351\">PT (+351)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"680\">PW (+680)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"595\">PY (+595)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"974\">QA (+974)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"262\">RE (+262)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"40\">RO (+40)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"381\">RS (+381)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"7\">RU (+7)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"250\">RW (+250)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"966\">SA (+966)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"677\">SB (+677)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"248\">SC (+248)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"249\">SD (+249)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"46\">SE (+46)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"65\">SG (+65)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"290\">SH (+290)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"386\">SI (+386)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"47\">SJ (+47)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"421\">SK (+421)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"232\">SL (+232)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"378\">SM (+378)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"221\">SN (+221)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"252\">SO (+252)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"597\">SR (+597)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"211\">SS (+211)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"239\">ST (+239)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"503\">SV (+503)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-721\">SX (+1-721)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"963\">SY (+963)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"268\">SZ (+268)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-649\">TC (+1-649)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"235\">TD (+235)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"262\">TF (+262)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"228\">TG (+228)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"66\" selected=\"selected\">TH (+66)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"992\">TJ (+992)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"690\">TK (+690)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"670\">TL (+670)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"993\">TM (+993)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"216\">TN (+216)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"676\">TO (+676)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"90\">TR (+90)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-868\">TT (+1-868)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"688\">TV (+688)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"886\">TW (+886)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"255\">TZ (+255)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"380\">UA (+380)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"256\">UG (+256)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1\">US (+1)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"598\">UY (+598)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"998\">UZ (+998)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"39-06\">VA (+39-06)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-784\">VC (+1-784)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"58\">VE (+58)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-284\">VG (+1-284)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"1-340\">VI (+1-340)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"84\">VN (+84)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"678\">VU (+678)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"681\">WF (+681)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"685\">WS (+685)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"967\">YE (+967)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"262\">YT (+262)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"27\">ZA (+27)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"260\">ZM (+260)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"263\">ZW (+263)<\/option>\n\t\t\t\t\t\t\t<\/select>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-mobile elementor-col-66\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-mobile\" class=\"elementor-field-label\">\u0e40\u0e25\u0e02\u0e2b\u0e21\u0e32\u0e22\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e17\u0e35\u0e48<\/label><input size=\"1\" type=\"text\" name=\"form_fields[mobile]\" id=\"form-field-mobile\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"0__ ___ ____ (Mobile Number)\">\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-select elementor-field-group elementor-column elementor-field-group-country elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-country\" class=\"elementor-field-label\">\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e02\u0e15\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07\u0e1e\u0e34\u0e40\u0e28\u0e29\u0e17\u0e35\u0e48\u0e1e\u0e33\u0e19\u0e31\u0e01\u0e2d\u0e32\u0e28\u0e31\u0e22<\/label>\t\t<div class=\"elementor-field elementor-select-wrapper remove-before \">\n\t\t\t<div class=\"select-caret-down-wrapper\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"eicon-caret-down\"><\/i>\t\t\t<\/div>\n\t\t\t<select name=\"form_fields[country]\" id=\"form-field-country\" class=\"elementor-field-textual elementor-size-sm\" required=\"required\">\n\t\t\t\t\t\t\t\t\t<option value=\"AF\">Afghanistan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AX\">\u00c5land Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AL\">Albania<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"DZ\">Algeria<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AS\">American Samoa<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AD\">Andorra<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AO\">Angola<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AI\">Anguilla<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AQ\">Antarctica<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AG\">Antigua and Barbuda<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AR\">Argentina<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AM\">Armenia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AW\">Aruba<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AU\">Australia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AT\">Austria<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AZ\">Azerbaijan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BS\">Bahamas<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BH\">Bahrain<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BD\">Bangladesh<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BB\">Barbados<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BY\">Belarus<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BE\">Belgium<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BZ\">Belize<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BJ\">Benin<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BM\">Bermuda<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BT\">Bhutan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BO\">Bolivia (Plurinational State of)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BQ\">Bonaire, Sint Eustatius and Saba<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BA\">Bosnia and Herzegovina<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BW\">Botswana<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BV\">Bouvet Island<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BR\">Brazil<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"IO\">British Indian Ocean Territory<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"VG\">British Virgin Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BN\">Brunei Darussalam<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BG\">Bulgaria<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BF\">Burkina Faso<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BI\">Burundi<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CV\">Cabo Verde<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KH\">Cambodia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CM\">Cameroon<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CA\">Canada<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KY\">Cayman Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CF\">Central African Republic<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TD\">Chad<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CL\">Chile<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"HK\">China, Hong Kong Special Administrative Region<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MO\">China, Macao Special Administrative Region<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CN\">China<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CX\">Christmas Island<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CC\">Cocos (Keeling) Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CO\">Colombia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KM\">Comoros<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CG\">Congo<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CK\">Cook Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CR\">Costa Rica<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CI\">C\u00f4te d&#039;Ivoire<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"HR\">Croatia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CU\">Cuba<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CW\">Cura\u00e7ao<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CY\">Cyprus<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CZ\">Czechia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KP\">Democratic People&#039;s Republic of Korea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CD\">Democratic Republic of the Congo<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"DK\">Denmark<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"DJ\">Djibouti<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"DM\">Dominica<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"DO\">Dominican Republic<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"EC\">Ecuador<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"EG\">Egypt<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SV\">El Salvador<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GQ\">Equatorial Guinea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"ER\">Eritrea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"EE\">Estonia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SZ\">Eswatini<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"ET\">Ethiopia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"FK\">Falkland Islands (Malvinas)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"FO\">Faroe Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"FJ\">Fiji<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"FI\">Finland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"FR\">France<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GF\">French Guiana<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PF\">French Polynesia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TF\">French Southern Territories<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GA\">Gabon<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GM\">Gambia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GE\">Georgia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"DE\">Germany<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GH\">Ghana<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GI\">Gibraltar<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GR\">Greece<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GL\">Greenland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GD\">Grenada<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GP\">Guadeloupe<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GU\">Guam<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GT\">Guatemala<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GG\">Guernsey<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GW\">Guinea-Bissau<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GN\">Guinea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GY\">Guyana<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"HT\">Haiti<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"HM\">Heard Island and McDonald Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"VA\">Holy See<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"HN\">Honduras<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"HU\">Hungary<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"IS\">Iceland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"IN\">India<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"ID\">Indonesia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"IR\">Iran (Islamic Republic of)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"IQ\">Iraq<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"IE\">Ireland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"IM\">Isle of Man<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"IL\">Israel<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"IT\">Italy<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"JM\">Jamaica<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"JP\">Japan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"JE\">Jersey<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"JO\">Jordan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KZ\">Kazakhstan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KE\">Kenya<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KI\">Kiribati<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KW\">Kuwait<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KG\">Kyrgyzstan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LA\">Lao People&#039;s Democratic Republic<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LV\">Latvia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LB\">Lebanon<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LS\">Lesotho<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LR\">Liberia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LY\">Libya<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LI\">Liechtenstein<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LT\">Lithuania<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LU\">Luxembourg<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MG\">Madagascar<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MW\">Malawi<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MY\">Malaysia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MV\">Maldives<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"ML\">Mali<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MT\">Malta<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MH\">Marshall Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MQ\">Martinique<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MR\">Mauritania<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MU\">Mauritius<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"YT\">Mayotte<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MX\">Mexico<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"FM\">Micronesia (Federated States of)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MC\">Monaco<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MN\">Mongolia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"ME\">Montenegro<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MS\">Montserrat<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MA\">Morocco<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MZ\">Mozambique<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MM\">Myanmar<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NA\">Namibia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NR\">Nauru<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NP\">Nepal<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NL\">Netherlands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NC\">New Caledonia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NZ\">New Zealand<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NI\">Nicaragua<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NE\">Niger<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NG\">Nigeria<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NU\">Niue<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NF\">Norfolk Island<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MP\">Northern Mariana Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"NO\">Norway<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"OM\">Oman<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PK\">Pakistan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PW\">Palau<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PA\">Panama<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PG\">Papua New Guinea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PY\">Paraguay<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PE\">Peru<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PH\">Philippines<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PN\">Pitcairn<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PL\">Poland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PT\">Portugal<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PR\">Puerto Rico<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"QA\">Qatar<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KR\">Republic of Korea<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MD\">Republic of Moldova<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"RE\">R\u00e9union<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"RO\">Romania<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"RU\">Russian Federation<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"RW\">Rwanda<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"BL\">Saint Barth\u00e9lemy<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SH\">Saint Helena<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"KN\">Saint Kitts and Nevis<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LC\">Saint Lucia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MF\">Saint Martin (French Part)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PM\">Saint Pierre and Miquelon<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"VC\">Saint Vincent and the Grenadines<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"WS\">Samoa<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SM\">San Marino<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"ST\">Sao Tome and Principe<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SP\">Sark<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SA\">Saudi Arabia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SN\">Senegal<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"RS\">Serbia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SC\">Seychelles<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SL\">Sierra Leone<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SG\">Singapore<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SX\">Sint Maarten (Dutch part)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SK\">Slovakia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SI\">Slovenia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SB\">Solomon Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SO\">Somalia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"ZA\">South Africa<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GS\">South Georgia and the South Sandwich Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SS\">South Sudan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"ES\">Spain<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"LK\">Sri Lanka<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"PS\">State of Palestine<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SD\">Sudan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SR\">Suriname<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SJ\">Svalbard and Jan Mayen Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SE\">Sweden<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"CH\">Switzerland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"SY\">Syrian Arab Republic<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TW\">Taiwan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TJ\">Tajikistan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TH\" selected=\"selected\">Thailand (\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"MK\">The former Yugoslav Republic of Macedonia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TL\">Timor-Leste<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TG\">Togo<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TK\">Tokelau<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TO\">Tonga<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TT\">Trinidad and Tobago<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TN\">Tunisia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TR\">Turkey<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TM\">Turkmenistan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TC\">Turks and Caicos Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TV\">Tuvalu<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"UG\">Uganda<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"UA\">Ukraine<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"AE\">United Arab Emirates<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"GB\">United Kingdom of Great Britain and Northern Ireland<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"TZ\">United Republic of Tanzania<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"UM\">United States Minor Outlying Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"US\">United States of America<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"VI\">United States Virgin Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"UY\">Uruguay<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"UZ\">Uzbekistan<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"VU\">Vanuatu<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"VE\">Venezuela (Bolivarian Republic of)<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"VN\">Viet Nam<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"WF\">Wallis and Futuna Islands<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"EH\">Western Sahara<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"YE\">Yemen<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"ZM\">Zambia<\/option>\n\t\t\t\t\t\t\t\t\t<option value=\"ZW\">Zimbabwe<\/option>\n\t\t\t\t\t\t\t<\/select>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-creditcard elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-creditcard\" class=\"elementor-field-label\">\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e1a\u0e31\u0e15\u0e23<\/label><input size=\"1\" type=\"text\" name=\"form_fields[creditcard]\" id=\"form-field-creditcard\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"____ ____ ____ ____\">\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-nameoncard elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-nameoncard\" class=\"elementor-field-label\">\u0e0a\u0e37\u0e48\u0e2d\u0e1a\u0e19\u0e1a\u0e31\u0e15\u0e23 (\u0e20\u0e32\u0e29\u0e32\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19)<\/label><input size=\"1\" type=\"text\" name=\"form_fields[nameoncard]\" id=\"form-field-nameoncard\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Name On Card\">\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-expirydate elementor-col-50\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-expirydate\" class=\"elementor-field-label\">\u0e27\u0e31\u0e19\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38\u0e1a\u0e31\u0e15\u0e23<\/label><input size=\"1\" type=\"text\" name=\"form_fields[expirydate]\" id=\"form-field-expirydate\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"MM\/YYYY (Expiry Date)\">\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-cvv elementor-col-50\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-cvv\" class=\"elementor-field-label\">\u0e23\u0e2b\u0e31\u0e2a\u0e2b\u0e25\u0e31\u0e07\u0e1a\u0e31\u0e15\u0e23<\/label><input size=\"1\" type=\"text\" name=\"form_fields[cvv]\" id=\"form-field-cvv\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"CVV\/CVC\">\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"form__details-consent my-5\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"row consent inputcheck\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"col is-flex\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<lightning-input class=\"checkbox-input slds-form-element\" lightning-input_input-host=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span lightning-input_input=\"\" data-aria=\"\" class=\"slds-assistive-text\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div lightning-input_input=\"\" class=\"slds-form-element__control slds-grow\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span lightning-input_input=\"\" class=\"slds-checkbox\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input lightning-input_input=\"\" type=\"checkbox\" id=\"checkbox-30\" value=\"\" checked=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<label lightning-input_input=\"\" for=\"checkbox-30\" class=\"slds-checkbox__label\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span lightning-input_input=\"\" class=\"slds-checkbox_faux\"><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span lightning-input_input=\"\" class=\"slds-form-element__label slds-assistive-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0e04\u0e38\u0e13\u0e22\u0e34\u0e19\u0e22\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e23\u0e31\u0e1a\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e07\u0e32\u0e19\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e40\u0e0a\u0e34\u0e0d\u0e0a\u0e27\u0e19\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e15\u0e48\u0e32\u0e07\u0e46 \u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e2a\u0e21\u0e48\u0e33\u0e40\u0e2a\u0e21\u0e2d \u0e23\u0e27\u0e21\u0e16\u0e36\u0e07\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e2d\u0e32\u0e2a\u0e32\u0e2a\u0e21\u0e31\u0e04\u0e23 \u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e23\u0e31\u0e1a\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04 \u0e40\u0e23\u0e32\u0e08\u0e30\u0e40\u0e01\u0e47\u0e1a\u0e23\u0e27\u0e1a\u0e23\u0e27\u0e21 \u0e43\u0e0a\u0e49\u0e41\u0e25\u0e30\u0e40\u0e1b\u0e34\u0e14\u0e40\u0e1c\u0e22 \u0e23\u0e27\u0e21\u0e16\u0e36\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27\u0e43\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e2a\u0e48\u0e27\u0e19\u0e1a\u0e38\u0e04\u0e04\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 \u0e0b\u0e36\u0e48\u0e07\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e28\u0e36\u0e01\u0e29\u0e32\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22\u0e02\u0e2d\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e41\u0e25\u0e30\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e40\u0e23\u0e32\u0e43\u0e0a\u0e49\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e44\u0e14\u0e49\u0e08\u0e32\u0e01\u0e19\u0e42\u0e22\u0e1a\u0e32\u0e22\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e2a\u0e48\u0e27\u0e19\u0e1a\u0e38\u0e04\u0e04\u0e25\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32<a href=\"https:\/\/www.greenpeace.org\/thailand\/privacy-and-cookies\/\" target=\"_blank\">\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48<\/a> \u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25 \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e01\u0e14\u0e1b\u0e38\u0e48\u0e21\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e23\u0e31\u0e1a\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38\u0e44\u0e27\u0e49\u0e43\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07\u0e2b\u0e32\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e40\u0e2a\u0e21\u0e2d<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/lightning-input>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"is-size-7 checkbox-label\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>\u0e04\u0e38\u0e13\u0e22\u0e34\u0e19\u0e22\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e23\u0e31\u0e1a\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e07\u0e32\u0e19\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e40\u0e0a\u0e34\u0e0d\u0e0a\u0e27\u0e19\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e15\u0e48\u0e32\u0e07\u0e46 \u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e2a\u0e21\u0e48\u0e33\u0e40\u0e2a\u0e21\u0e2d \u0e23\u0e27\u0e21\u0e16\u0e36\u0e07\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e2d\u0e32\u0e2a\u0e32\u0e2a\u0e21\u0e31\u0e04\u0e23 \u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e23\u0e31\u0e1a\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04 \u0e40\u0e23\u0e32\u0e08\u0e30\u0e40\u0e01\u0e47\u0e1a\u0e23\u0e27\u0e1a\u0e23\u0e27\u0e21 \u0e43\u0e0a\u0e49\u0e41\u0e25\u0e30\u0e40\u0e1b\u0e34\u0e14\u0e40\u0e1c\u0e22 \u0e23\u0e27\u0e21\u0e16\u0e36\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27\u0e43\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e2a\u0e48\u0e27\u0e19\u0e1a\u0e38\u0e04\u0e04\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 \u0e0b\u0e36\u0e48\u0e07\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e28\u0e36\u0e01\u0e29\u0e32\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22\u0e02\u0e2d\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e41\u0e25\u0e30\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e40\u0e23\u0e32\u0e43\u0e0a\u0e49\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e44\u0e14\u0e49\u0e08\u0e32\u0e01\u0e19\u0e42\u0e22\u0e1a\u0e32\u0e22\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e2a\u0e48\u0e27\u0e19\u0e1a\u0e38\u0e04\u0e04\u0e25\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32<a href=\"https:\/\/www.greenpeace.org\/thailand\/privacy-and-cookies\/\" target=\"_blank\">\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48<\/a> \u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25 \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e01\u0e14\u0e1b\u0e38\u0e48\u0e21\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e23\u0e31\u0e1a\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38\u0e44\u0e27\u0e49\u0e43\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07\u0e2b\u0e32\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e40\u0e2a\u0e21\u0e2d<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"form__donate\"><button id=\"submitform_btn\" class=\"form__donate-btn\" type=\"button\">\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e44\u0e1b<\/button>\n\t\t\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"amountvalue\" id=\"amountvalue\" value=\"500\">\n\t\t\t\t\t\t\t\t\t\t\t<input type=\"hidden\" id=\"defaultamountmonthly\" value=\"500\">\n\t\t\t\t\t\t\t\t\t\t\t<input type=\"hidden\" id=\"defaultamountoneoff\" value=\"500\">\n\t\t\t\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"typedon\" id=\"typedon\" value=\"monthly\">\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"amount-row\">\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"previous my-2 is-inline-flex is-align-items-center\" style=\"width:35%\">\n\t\t\t\t\t\t\t\t\t\t\t\t<lightning-icon class=\"mr-2 slds-icon-utility-chevronleft slds-icon_container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<lightning-primitive-icon>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<svg focusable=\"false\" data-key=\"chevronleft\" aria-hidden=\"true\" viewBox=\"0 0 52 52\" class=\"slds-icon slds-icon-text-default slds-icon_x-small\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<g>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<path d=\"M34.2 47.7L13.4 27.2c-.6-.6-.6-1.6 0-2.2L34.2 4.5c.6-.6 1.6-.6 2.2 0l2.2 2.2c.6.6.6 1.6 0 2.2L22.1 25c-.6.6-.6 1.6 0 2.2l16.3 16.1c.6.6.6 1.6 0 2.2l-2.2 2.2c-.5.5-1.4.5-2 0z\"><\/path>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/g>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/lightning-primitive-icon>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/lightning-icon>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"is-clickable is-underlined is-size-6 has-text-grey\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<nobr>\u0e40\u0e23\u0e34\u0e48\u0e21\u0e43\u0e2b\u0e21\u0e48<\/nobr>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"is-clickable\" style=\"padding-top:5px\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"qr__donate is-hidden\" style=\"text-align: center; width: 100%;\">\n\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/plugins\/elementor-donateform\/assets\/qr-donate-thailand.png\"><br>\n\t\t\t\t\t\t\t\t\t<span id=\"qr-amount\" style=\"font-size: x-large;\">100 \u0e1a\u0e32\u0e17<\/span><br>\n\t\t\t\t\t\t\t\t\t<span style=\"font-size: small;\">\u0e2b\u0e32\u0e01\u0e17\u0e48\u0e32\u0e19\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e41\u0e25\u0e49\u0e27 \u0e01\u0e23\u0e38\u0e13\u0e32\u0e2a\u0e48\u0e07\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e21\u0e32\u0e17\u0e35\u0e48\n\t\t\t\t\t\t\t\t\t\tsupporterservices.th@greenpeace.org \u0e2b\u0e23\u0e37\u0e2d\u0e17\u0e32\u0e07 <a href=\"https:\/\/lin.ee\/2SJqVYt\" target=\"_blank\">Greenpeace Thailand LINE OFFICIAL<\/a>\n\t\t\t\t\t\t\t\t\t\t\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e02\u0e2d\u0e07\u0e17\u0e48\u0e32\u0e19\u0e41\u0e25\u0e30\u0e25\u0e07\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b<\/span>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-3505a1e elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default\" data-id=\"3505a1e\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-acc2b3\" data-id=\"acc2b3\" data-element_type=\"column\" data-e-type=\"column\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f3cd4fe elementor-hidden-mobile elementor-hidden-tablet elementor-widget elementor-widget-image\" data-id=\"f3cd4fe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"750\" height=\"1061\" src=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/uploads\/2023\/04\/Untitled-design-1-768x1086.png\" class=\"attachment-medium_large size-medium_large wp-image-464\" alt=\"\" srcset=\"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/uploads\/2023\/04\/Untitled-design-1-768x1086.png 768w, https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/uploads\/2023\/04\/Untitled-design-1-212x300.png 212w, https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/uploads\/2023\/04\/Untitled-design-1-724x1024.png 724w, https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/uploads\/2023\/04\/Untitled-design-1-1086x1536.png 1086w, https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/uploads\/2023\/04\/Untitled-design-1-1448x2048.png 1448w, https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/uploads\/2023\/04\/Untitled-design-1-1568x2218.png 1568w, https:\/\/give.seasia.greenpeace.org\/thailand\/wp-content\/uploads\/2023\/04\/Untitled-design-1.png 1587w\" sizes=\"(max-width: 750px) 100vw, 750px\" style=\"width:100%;height:141.46%;max-width:1587px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-4300654\" data-id=\"4300654\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-7964b61 elementor-widget elementor-widget-heading\" data-id=\"7964b61\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07\u0e2a\u0e34\u0e48\u0e07\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21\u0e01\u0e31\u0e1a<span class=\"nobr\">\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b<\/span>!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7f8fb0e9 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"7f8fb0e9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>\u0e14\u0e49\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e02\u0e2d\u0e07\u0e17\u0e38\u0e01\u0e04\u0e19 \u0e40\u0e23\u0e32\u0e08\u0e30\u0e40\u0e1b\u0e34\u0e14\u0e40\u0e1c\u0e22\u0e01\u0e32\u0e23\u0e25\u0e30\u0e40\u0e21\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2a\u0e34\u0e48\u0e07\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21\u0e14\u0e49\u0e27\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1c\u0e0a\u0e34\u0e0d\u0e2b\u0e19\u0e49\u0e32\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e2a\u0e31\u0e19\u0e15\u0e34\u0e27\u0e34\u0e18\u0e35 \u0e41\u0e25\u0e30\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e27\u0e32\u0e21\u0e15\u0e23\u0e30\u0e2b\u0e19\u0e31\u0e01\u0e16\u0e36\u0e07\u0e04\u0e27\u0e32\u0e21\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e43\u0e19\u0e01\u0e32\u0e23\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07\u0e17\u0e30\u0e40\u0e25 \u0e21\u0e2b\u0e32\u0e2a\u0e21\u0e38\u0e17\u0e23 \u0e1b\u0e48\u0e32\u0e44\u0e21\u0e49 \u0e19\u0e49\u0e33\u0e41\u0e25\u0e30\u0e2a\u0e20\u0e32\u0e1e\u0e20\u0e39\u0e21\u0e34\u0e2d\u0e32\u0e01\u0e32\u0e28\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32 \u0e0b\u0e36\u0e48\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e30\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e40\u0e01\u0e37\u0e49\u0e2d\u0e01\u0e39\u0e25\u0e2a\u0e21\u0e14\u0e38\u0e25\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e21\u0e35\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e17\u0e35\u0e48\u0e14\u0e35\u0e1a\u0e19\u0e42\u0e25\u0e01\u0e43\u0e1a\u0e19\u0e35\u0e49\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32<br \/>\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e07\u0e04\u0e4c\u0e01\u0e23\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c\u0e2d\u0e34\u0e2a\u0e23\u0e30\u0e14\u0e49\u0e32\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e23\u0e31\u0e1a\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e08\u0e32\u0e01\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17\u0e40\u0e2d\u0e01\u0e0a\u0e19\u0e2b\u0e23\u0e37\u0e2d\u0e20\u0e32\u0e04\u0e23\u0e31\u0e10\u0e1a\u0e32\u0e25 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e23\u0e32\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e23\u0e31\u0e01\u0e29\u0e32\u0e40\u0e2a\u0e35\u0e22\u0e07\u0e17\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e34\u0e2a\u0e23\u0e30\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e40\u0e23\u0e32\u0e08\u0e36\u0e07\u0e1e\u0e36\u0e48\u0e07\u0e1e\u0e32\u0e1c\u0e39\u0e49\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e23\u0e32\u0e22\u0e1a\u0e38\u0e04\u0e04\u0e25\u0e40\u0e0a\u0e48\u0e19\u0e04\u0e38\u0e13\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19<br \/>\u0e19\u0e31\u0e48\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e17\u0e35\u0e48\u0e40\u0e07\u0e34\u0e19\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e02\u0e2d\u0e07\u0e17\u0e48\u0e32\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e2a\u0e33\u0e04\u0e31\u0e0d<br \/>\u0e02\u0e2d\u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e17\u0e48\u0e32\u0e19\u0e17\u0e35\u0e48\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19 \u0e17\u0e38\u0e01\u0e46 \u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e22\u0e34\u0e48\u0e07\u0e15\u0e48\u0e2d\u0e01\u0e32\u0e23\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c\u0e14\u0e49\u0e32\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e17\u0e35\u0e48\u0e21\u0e35\u0e04\u0e48\u0e32\u0e08\u0e32\u0e01\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e1b\u0e23\u0e30\u0e42\u0e22\u0e0a\u0e19\u0e4c\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e01\u0e31\u0e1a\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32 \u0e41\u0e15\u0e48\u0e22\u0e31\u0e07\u0e23\u0e27\u0e21\u0e44\u0e1b\u0e16\u0e36\u0e07\u0e17\u0e49\u0e2d\u0e07\u0e17\u0e30\u0e40\u0e25\u0e41\u0e25\u0e30\u0e21\u0e2b\u0e32\u0e2a\u0e21\u0e38\u0e17\u0e23 \u0e2b\u0e32\u0e01\u0e1b\u0e23\u0e32\u0e28\u0e08\u0e32\u0e01\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e08\u0e32\u0e01\u0e04\u0e38\u0e13\u0e40\u0e23\u0e32\u0e04\u0e07\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49\u0e01\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e40\u0e14\u0e47\u0e19\u0e17\u0e32\u0e07\u0e2a\u0e34\u0e48\u0e07\u0e41\u0e27\u0e14\u0e25\u0e49\u0e2d\u0e21\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07\u0e1c\u0e25\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e15\u0e48\u0e2d\u0e17\u0e38\u0e01\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e1a\u0e19\u0e42\u0e25\u0e01\u0e43\u0e1a\u0e19\u0e35\u0e49 \u0e40\u0e0a\u0e48\u0e19 \u0e2a\u0e20\u0e32\u0e1e\u0e20\u0e39\u0e21\u0e34\u0e2d\u0e32\u0e01\u0e32\u0e28 \u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e21\u0e25\u0e20\u0e32\u0e27\u0e30 \u0e01\u0e32\u0e23\u0e15\u0e31\u0e14\u0e44\u0e21\u0e49\u0e17\u0e33\u0e25\u0e32\u0e22\u0e1b\u0e48\u0e32 \u0e23\u0e27\u0e21\u0e44\u0e1b\u0e16\u0e36\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e21\u0e07\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e40\u0e01\u0e29\u0e15\u0e23\u0e41\u0e1a\u0e1a\u0e22\u0e31\u0e48\u0e07\u0e22\u0e37\u0e19 \u0e40\u0e1b\u0e47\u0e19\u0e15\u0e49\u0e19 \u0e17\u0e31\u0e49\u0e07\u0e19\u0e35\u0e49\u0e20\u0e32\u0e23\u0e01\u0e34\u0e08\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e17\u0e38\u0e19\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e08\u0e32\u0e01\u0e01\u0e25\u0e38\u0e48\u0e21\u0e04\u0e19\u0e0b\u0e36\u0e48\u0e07\u0e15\u0e23\u0e30\u0e2b\u0e19\u0e31\u0e01\u0e14\u0e35\u0e27\u0e48\u0e32 \u0e04\u0e19\u0e04\u0e19\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e01\u0e47\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e25\u0e07\u0e21\u0e37\u0e2d\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e44\u0e14\u0e49<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2ab72dce elementor-widget elementor-widget-text-editor\" data-id=\"2ab72dce\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-703994a elementor-widget elementor-widget-text-editor\" data-id=\"703994a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38: \u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e43\u0e2b\u0e49\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e44\u0e1b\u0e25\u0e14\u0e2b\u0e22\u0e48\u0e2d\u0e19\u0e20\u0e32\u0e29\u0e35\u0e44\u0e14\u0e49 \u0e42\u0e14\u0e22\u0e40\u0e23\u0e32\u0e08\u0e30\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e23\u0e31\u0e1a\u0e23\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e40\u0e07\u0e34\u0e19\u0e15\u0e32\u0e21\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e44\u0e14\u0e49\u0e43\u0e19\u0e41\u0e15\u0e48\u0e25\u0e30\u0e1b\u0e35\u0e41\u0e25\u0e30\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e43\u0e2b\u0e49\u0e20\u0e32\u0e22\u0e43\u0e19\u0e44\u0e15\u0e23\u0e21\u0e32\u0e2a\u0e41\u0e23\u0e01\u0e02\u0e2d\u0e07\u0e1b\u0e35\u0e16\u0e31\u0e14\u0e44\u0e1b\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-fe8a756 elementor-section-full_width elementor-section-content-middle elementor-section-height-default elementor-section-height-default\" data-id=\"fe8a756\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t\t<div class=\"elementor-background-overlay\"><\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6ffe01b\" data-id=\"6ffe01b\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4d32242 elementor-widget elementor-widget-heading\" data-id=\"4d32242\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e2b\u0e32\u0e23\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e43\u0e19<span class=\"nobr\">\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b<\/span>\u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e15\u0e30\u0e27\u0e31\u0e19\u0e2d\u0e2d\u0e01\u0e40\u0e09\u0e35\u0e22\u0e07\u0e43\u0e15\u0e49<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-70a49bcc elementor-widget elementor-widget-text-editor\" data-id=\"70a49bcc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\u0e43\u0e19\u0e40\u0e2d\u0e40\u0e0a\u0e35\u0e22\u0e15\u0e30\u0e27\u0e31\u0e19\u0e2d\u0e2d\u0e01\u0e40\u0e09\u0e35\u0e22\u0e07\u0e43\u0e15\u0e49 \u0e40\u0e23\u0e32\u0e21\u0e35\u0e08\u0e33\u0e19\u0e27\u0e19\u0e1c\u0e39\u0e49\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19 58,665 \u0e04\u0e19\u0e08\u0e32\u0e01\u0e1c\u0e39\u0e49\u0e04\u0e19\u0e2b\u0e25\u0e32\u0e01\u0e2b\u0e25\u0e32\u0e22\u0e17\u0e35\u0e48\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19 \u0e14\u0e49\u0e27\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1a\u0e23\u0e34\u0e08\u0e32\u0e04\u0e17\u0e38\u0e01\u0e17\u0e48\u0e32\u0e19 <nobr>\u0e01\u0e23\u0e35\u0e19\u0e1e\u0e35\u0e0b<\/nobr>\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33\u0e07\u0e32\u0e19\u0e28\u0e36\u0e01\u0e29\u0e32\u0e27\u0e34\u0e08\u0e31\u0e22 \u0e08\u0e31\u0e14\u0e17\u0e33\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e41\u0e25\u0e30\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c \u0e41\u0e25\u0e30\u0e1c\u0e25\u0e31\u0e01\u0e14\u0e31\u0e19\u0e43\u0e19\u0e40\u0e0a\u0e34\u0e07\u0e19\u0e42\u0e22\u0e1a\u0e32\u0e22\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e01\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e01\u0e34\u0e14\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e43\u0e19\u0e17\u0e32\u0e07\u0e17\u0e35\u0e48\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19\u0e15\u0e48\u0e2d\u0e2a\u0e20\u0e32\u0e1e\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-8569b29 elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"8569b29\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-1595f52\" data-id=\"1595f52\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-47d1140 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"47d1140\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon elementor-animation-grow\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"far fa-meh\"><\/i>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\t\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e3f0111 elementor-widget elementor-widget-counter\" data-id=\"e3f0111\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">\u0e1e\u0e25\u0e32\u0e2a\u0e15\u0e34\u0e01<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"41\" data-from-value=\"1\" data-delimiter=\",\">1<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">%<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-94fac0c\" data-id=\"94fac0c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-4839783 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"4839783\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon elementor-animation-grow\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-tired\"><\/i>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\t\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-27c662a elementor-widget elementor-widget-counter\" data-id=\"27c662a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">\u0e17\u0e30\u0e40\u0e25\u0e41\u0e25\u0e30\u0e21\u0e2b\u0e32\u0e2a\u0e21\u0e38\u0e17\u0e23<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"17\" data-from-value=\"1\" data-delimiter=\",\">1<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">%<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-97dadc4\" data-id=\"97dadc4\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-e8084c8 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"e8084c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon elementor-animation-grow\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-grin-squint\"><\/i>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\t\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dae5a2d elementor-widget elementor-widget-counter\" data-id=\"dae5a2d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">\u0e2a\u0e20\u0e32\u0e1e\u0e20\u0e39\u0e21\u0e34\u0e2d\u0e32\u0e01\u0e32\u0e28<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"18.5\" data-from-value=\"1\" data-delimiter=\",\">1<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">%<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-09e1c28\" data-id=\"09e1c28\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c1e9117 elementor-view-default elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\" data-id=\"c1e9117\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\t\t\t<div class=\"elementor-icon-box-icon\">\n\t\t\t\t<span  class=\"elementor-icon elementor-animation-grow\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"fas fa-grin-squint\"><\/i>\t\t\t\t<\/span>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<h4 class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\t\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/h4>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c6b8582 elementor-widget elementor-widget-counter\" data-id=\"c6b8582\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">\u0e23\u0e30\u0e1a\u0e1a\u0e2d\u0e32\u0e2b\u0e32\u0e23\u0e41\u0e25\u0e30\u0e2d\u0e37\u0e48\u0e19\u0e46<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"2000\" data-to-value=\"23.5\" data-from-value=\"1\" data-delimiter=\",\">1<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">%<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-6ecd48f elementor-section-full_width elementor-section-height-default elementor-section-height-default\" data-id=\"6ecd48f\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-no\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a72cd0e\" data-id=\"a72cd0e\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b5f3078 elementor-widget elementor-widget-html\" data-id=\"b5f3078\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"country-selector\" class=\"footer-country-selector\">\n<div class=\"container\">\n<div class=\"country-selector-toggle-container\">\n<button class=\"country-selector-toggle country-control-toggle\" data-bs-toggle=\"open\" data-bs-target=\"#country-selector\" aria-expanded=\"true\" aria-label=\"Toggle worldwide site selection menu\" data-ga-category=\"Menu Navigation\" data-ga-action=\"Close Country Selector\" data-ga-label=\"Homepage\"><span class=\"visually-hidden\">Selected:<\/span>Greenpeace Thailand<span class=\"visually-hidden\">Change Country<\/span><\/button>\n<\/div>\n<\/div>\n<div class=\"countries-list\">\n<div class=\"container\">\n<button class=\"country-selector-toggle country-control-close\" data-bs-toggle=\"open\" data-bs-target=\"#country-selector\" aria-expanded=\"false\" aria-label=\"Close country selector\">\n<\/button>\n<ul class=\"countries\" aria-label=\"Worldwide site list\">\n<li class=\"international\"><a href=\"https:\/\/www.greenpeace.org\/international\/\">Greenpeace International<\/a><\/li>\n<li class=\"country-group\">\n<span class=\"initial\">A<\/span>\n<ul aria-label=\"Sites starting with the letter .A.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/africa\/en\/\" hreflang=\"en-ZA\" data-ga-category=\"Country Selector\" data-ga-action=\"Africa | English\" data-ga-label=\"n\/a\">Africa<\/a>\n<ul class=\"lang-list\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/africa\/en\/\" hreflang=\"en-ZA\" data-ga-category=\"Country Selector\" data-ga-action=\"Africa | English\" data-ga-label=\"n\/a\">English<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/africa\/fr\/\" hreflang=\"fr-ZA\" data-ga-category=\"Country Selector\" data-ga-action=\"Africa | Fran\u00e7ais\" data-ga-label=\"n\/a\">Fran\u00e7ais<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/aotearoa\/\" hreflang=\"en-NZ\" data-ga-category=\"Country Selector\" data-ga-action=\"Aotearoa | English\" data-ga-label=\"n\/a\">Aotearoa<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/argentina\/\" hreflang=\"es-AR\" data-ga-category=\"Country Selector\" data-ga-action=\"Argentina | Espa\u00f1ol\" data-ga-label=\"n\/a\">Argentina<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/australia\" hreflang=\"en-AU\" data-ga-category=\"Country Selector\" data-ga-action=\"Australia | English\" data-ga-label=\"n\/a\">Australia<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.at\/\" hreflang=\"de-AT\" data-ga-category=\"Country Selector\" data-ga-action=\"Austria | Deutsch\" data-ga-label=\"n\/a\">Austria<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">B<\/span>\n<ul aria-label=\"Sites starting with the letter .B.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/belgium\/fr\/\" hreflang=\"fr-BE\" data-ga-category=\"Country Selector\" data-ga-action=\"Belgium | Fran\u00e7ais\" data-ga-label=\"n\/a\">Belgium<\/a>\n<ul class=\"lang-list\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/belgium\/fr\/\" hreflang=\"fr-BE\" data-ga-category=\"Country Selector\" data-ga-action=\"Belgium | Fran\u00e7ais\" data-ga-label=\"n\/a\">Fran\u00e7ais<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/belgium\/nl\/\" hreflang=\"nl-BE\" data-ga-category=\"Country Selector\" data-ga-action=\"Belgium | Nederlands\" data-ga-label=\"n\/a\">Nederlands<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/brasil\/\" hreflang=\"pt-BR\" data-ga-category=\"Country Selector\" data-ga-action=\"Brazil | Portugu\u00eas\" data-ga-label=\"n\/a\">Brazil<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/bulgaria\/\" hreflang=\"bg-BG\" data-ga-category=\"Country Selector\" data-ga-action=\"Bulgaria | \u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438\" data-ga-label=\"n\/a\">Bulgaria<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">C<\/span>\n<ul aria-label=\"Sites starting with the letter .C.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/canada\/en\/\" hreflang=\"en-CA\" data-ga-category=\"Country Selector\" data-ga-action=\"Canada | English\" data-ga-label=\"n\/a\">Canada<\/a>\n<ul class=\"lang-list\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/canada\/en\/\" hreflang=\"en-CA\" data-ga-category=\"Country Selector\" data-ga-action=\"Canada | English\" data-ga-label=\"n\/a\">English<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/canada\/fr\/\" hreflang=\"fr-CA\" data-ga-category=\"Country Selector\" data-ga-action=\"Canada | Fran\u00e7ais\" data-ga-label=\"n\/a\">Fran\u00e7ais<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/chile\/\" hreflang=\"es-CL\" data-ga-category=\"Country Selector\" data-ga-action=\"Chile | Espa\u00f1ol\" data-ga-label=\"n\/a\">Chile<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/colombia\/\" hreflang=\"es-CO\" data-ga-category=\"Country Selector\" data-ga-action=\"Colombia | Espa\u00f1ol\" data-ga-label=\"n\/a\">Colombia<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/croatia\" hreflang=\"hr-HR\" data-ga-category=\"Country Selector\" data-ga-action=\"Croatia | Hrvatski\" data-ga-label=\"n\/a\">Croatia<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/czech\/\" hreflang=\"cs-CZ\" data-ga-category=\"Country Selector\" data-ga-action=\"Czech Republic | \u010cesky\" data-ga-label=\"n\/a\">Czech Republic<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">D<\/span>\n<ul aria-label=\"Sites starting with the letter .D.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/denmark\/\" hreflang=\"da-DK\" data-ga-category=\"Country Selector\" data-ga-action=\"Denmark | Dansk\" data-ga-label=\"n\/a\">Denmark<\/a>\n<\/li>\n <\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">E<\/span>\n<ul aria-label=\"Sites starting with the letter .E.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org.cn\/\" hreflang=\"zh-CN\" data-ga-category=\"Country Selector\" data-ga-action=\"East Asia | \u4e2d\u6587\u7b80\u4f53\" data-ga-label=\"n\/a\">East Asia<\/a>\n<ul class=\"lang-list\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org.cn\/\" hreflang=\"zh-CN\" data-ga-category=\"Country Selector\" data-ga-action=\"East Asia | \u4e2d\u6587\u7b80\u4f53\" data-ga-label=\"n\/a\">\u4e2d\u6587\u7b80\u4f53<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/hongkong\/\" hreflang=\"zh-HK\" data-ga-category=\"Country Selector\" data-ga-action=\"East Asia | \u7e41\u9ad4\" data-ga-label=\"n\/a\">\u7e41\u9ad4<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/taiwan\/\" hreflang=\"zh-TW\" data-ga-category=\"Country Selector\" data-ga-action=\"East Asia | \u6b63\u9ad4\" data-ga-label=\"n\/a\">\u6b63\u9ad4<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/korea\/\" hreflang=\"ko-KR\" data-ga-category=\"Country Selector\" data-ga-action=\"East Asia | \ud55c\uad6d\uc5b4\" data-ga-label=\"n\/a\">\ud55c\uad6d\uc5b4<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/eastasia\/\" hreflang=\"en-CN\" data-ga-category=\"Country Selector\" data-ga-action=\"East Asia | English\" data-ga-label=\"n\/a\">English<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/eu-unit\" hreflang=\"en-EU\" data-ga-category=\"Country Selector\" data-ga-action=\"European Union | English\" data-ga-label=\"n\/a\">European Union<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">F<\/span>\n<ul aria-label=\"Sites starting with the letter .F.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/finland\" hreflang=\"fi-FI\" data-ga-category=\"Country Selector\" data-ga-action=\"Finland | Suomi\" data-ga-label=\"n\/a\">Finland<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/france\" hreflang=\"fr-FR\" data-ga-category=\"Country Selector\" data-ga-action=\"France | Fran\u00e7ais\" data-ga-label=\"n\/a\">France<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">G<\/span>\n<ul aria-label=\"Sites starting with the letter .G.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.de\" hreflang=\"de-DE\" data-ga-category=\"Country Selector\" data-ga-action=\"Germany | Deutsch\" data-ga-label=\"n\/a\">Germany<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/greece\/\" hreflang=\"el-GR\" data-ga-category=\"Country Selector\" data-ga-action=\"Greece | \u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac\" data-ga-label=\"n\/a\">Greece<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">H<\/span>\n<ul aria-label=\"Sites starting with the letter .H.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/hungary\/\" hreflang=\"hu-HU\" data-ga-category=\"Country Selector\" data-ga-action=\"Hungary | Magyar\" data-ga-label=\"n\/a\">Hungary<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">I<\/span>\n<ul aria-label=\"Sites starting with the letter .I.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/india\/en\/\" hreflang=\"en-IN\" data-ga-category=\"Country Selector\" data-ga-action=\"India | English\" data-ga-label=\"n\/a\">India<\/a>\n <ul class=\"lang-list\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/india\/en\/\" hreflang=\"en-IN\" data-ga-category=\"Country Selector\" data-ga-action=\"India | English\" data-ga-label=\"n\/a\">English<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/india\/hi\/\" hreflang=\"hi-IN\" data-ga-category=\"Country Selector\" data-ga-action=\"India | Hindi\" data-ga-label=\"n\/a\">Hindi<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/indonesia\/\" hreflang=\"id-ID\" data-ga-category=\"Country Selector\" data-ga-action=\"Indonesia | Indonesian\" data-ga-label=\"n\/a\">Indonesia<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/israel\/\" hreflang=\"he-IL\" data-ga-category=\"Country Selector\" data-ga-action=\"Israel | \u05e2\u05d1\u05e8\u05d9\u05ea\" data-ga-label=\"n\/a\">Israel<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/italy\/\" hreflang=\"it-IT\" data-ga-category=\"Country Selector\" data-ga-action=\"Italy | Italiano\" data-ga-label=\"n\/a\">Italy<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">J<\/span>\n<ul aria-label=\"Sites starting with the letter .J.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/japan\/\" hreflang=\"ja-JP\" data-ga-category=\"Country Selector\" data-ga-action=\"Japan | \u65e5\u672c\u8a9e\" data-ga-label=\"n\/a\">Japan<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">L<\/span>\n<ul aria-label=\"Sites starting with the letter .L.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/luxembourg\/de\/\" hreflang=\"de-LU\" data-ga-category=\"Country Selector\" data-ga-action=\"Luxembourg | Deutsch\" data-ga-label=\"n\/a\">Luxembourg<\/a>\n<ul class=\"lang-list\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/luxembourg\/de\/\" hreflang=\"de-LU\" data-ga-category=\"Country Selector\" data-ga-action=\"Luxembourg | Deutsch\" data-ga-label=\"n\/a\">Deutsch<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/luxembourg\/fr\/\" hreflang=\"fr-LU\" data-ga-category=\"Country Selector\" data-ga-action=\"Luxembourg | Fran\u00e7ais\" data-ga-label=\"n\/a\">Fran\u00e7ais<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">M<\/span>\n<ul aria-label=\"Sites starting with the letter .M.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/malaysia\/\" hreflang=\"ms-MY\" data-ga-category=\"Country Selector\" data-ga-action=\"Malaysia | English\" data-ga-label=\"n\/a\">Malaysia<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/mexico\/\" hreflang=\"es-MX\" data-ga-category=\"Country Selector\" data-ga-action=\"Mexico | Espa\u00f1ol\" data-ga-label=\"n\/a\">Mexico<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/mena\/ar\/\" hreflang=\"ar-DZ\" data-ga-category=\"Country Selector\" data-ga-action=\"Middle East and North Africa | \u0627\u0644\u0639\u0631\u0628\u064a\u0629\" data-ga-label=\"n\/a\">Middle East and North Africa<\/a>\n<ul class=\"lang-list\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/mena\/ar\/\" hreflang=\"ar-DZ\" data-ga-category=\"Country Selector\" data-ga-action=\"Middle East and North Africa | \u0627\u0644\u0639\u0631\u0628\u064a\u0629\" data-ga-label=\"n\/a\">\u0627\u0644\u0639\u0631\u0628\u064a\u0629<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/mena\/en\/\" hreflang=\"en-DZ\" data-ga-category=\"Country Selector\" data-ga-action=\"Middle East and North Africa | English\" data-ga-label=\"n\/a\">English<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/mena\/fr\/\" hreflang=\"fr-DZ\" data-ga-category=\"Country Selector\" data-ga-action=\"Middle East and North Africa | Fran\u00e7ais\" data-ga-label=\"n\/a\">Fran\u00e7ais<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">N<\/span>\n<ul aria-label=\"Sites starting with the letter .N.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/nl\" hreflang=\"nl-NL\" data-ga-category=\"Country Selector\" data-ga-action=\"Netherlands | Nederlands\" data-ga-label=\"n\/a\">Netherlands<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/norway\/\" hreflang=\"nb-NO\" data-ga-category=\"Country Selector\" data-ga-action=\"Norway | Norsk\" data-ga-label=\"n\/a\">Norway<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">P<\/span>\n<ul aria-label=\"Sites starting with the letter .P.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/peru\/\" hreflang=\"es-PE\" data-ga-category=\"Country Selector\" data-ga-action=\"Peru | Espa\u00f1ol\" data-ga-label=\"n\/a\">Peru<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/philippines\/\" hreflang=\"en-PH\" data-ga-category=\"Country Selector\" data-ga-action=\"Philippines | English\" data-ga-label=\"n\/a\">Philippines<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.pl\" hreflang=\"pl-PL\" data-ga-category=\"Country Selector\" data-ga-action=\"Poland | Polska\" data-ga-label=\"n\/a\">Poland<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">R<\/span>\n<ul aria-label=\"Sites starting with the letter .R.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/romania\/\" hreflang=\"ro-RO\" data-ga-category=\"Country Selector\" data-ga-action=\"Romania | Rom\u00e2n\u0103\" data-ga-label=\"n\/a\">Romania<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.ru\" hreflang=\"ru-RU\" data-ga-category=\"Country Selector\" data-ga-action=\"Russia | \u0420\u0443\u0441\u0441\u043a\u0438\u0439\" data-ga-label=\"n\/a\">Russia<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">S<\/span>\n<ul aria-label=\"Sites starting with the letter .S.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/slovakia\/\" hreflang=\"sk-SK\" data-ga-category=\"Country Selector\" data-ga-action=\"Slovakia | Slovensko\" data-ga-label=\"n\/a\">Slovakia<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/slovenia\/\" hreflang=\"sl-SI\" data-ga-category=\"Country Selector\" data-ga-action=\"Slovenia | Slovenjia\" data-ga-label=\"n\/a\">Slovenia<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/southeastasia\/\" hreflang=\"en-BN\" data-ga-category=\"Country Selector\" data-ga-action=\"Southeast Asia | English\" data-ga-label=\"n\/a\">Southeast Asia<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/es.greenpeace.org\/es\/\" hreflang=\"es-ES\" data-ga-category=\"Country Selector\" data-ga-action=\"Spain | Espa\u00f1ol\" data-ga-label=\"n\/a\">Spain<\/a>\n<ul class=\"lang-list\" role=\"list\">\n<li>\n<a href=\"https:\/\/es.greenpeace.org\/es\/\" hreflang=\"es-ES\" data-ga-category=\"Country Selector\" data-ga-action=\"Spain | Espa\u00f1ol\" data-ga-label=\"n\/a\">Espa\u00f1ol<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/es.greenpeace.org\/ca\/\" hreflang=\"ca-ES\" data-ga-category=\"Country Selector\" data-ga-action=\"Spain | Catal\u00e0\" data-ga-label=\"n\/a\">Catal\u00e0<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/es.greenpeace.org\/eu\/\" hreflang=\"eu-ES\" data-ga-category=\"Country Selector\" data-ga-action=\"Spain | Euskara\" data-ga-label=\"n\/a\">Euskara<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/es.greenpeace.org\/gl\/\" hreflang=\"gl-ES\" data-ga-category=\"Country Selector\" data-ga-action=\"Spain | Galego\" data-ga-label=\"n\/a\">Galego<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/sweden\/\" hreflang=\"sv-SE\" data-ga-category=\"Country Selector\" data-ga-action=\"Sweden | Svenska\" data-ga-label=\"n\/a\">Sweden<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.ch\/\" hreflang=\"de-CH\" data-ga-category=\"Country Selector\" data-ga-action=\"Switzerland | Deutsch\" data-ga-label=\"n\/a\">Switzerland<\/a>\n<ul class=\"lang-list\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.ch\/\" hreflang=\"de-CH\" data-ga-category=\"Country Selector\" data-ga-action=\"Switzerland | Deutsch\" data-ga-label=\"n\/a\">Deutsch<\/a>\n<span aria-hidden=\"true\"> \u2022 <\/span>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.ch\/fr\/\" hreflang=\"fr-CH\" data-ga-category=\"Country Selector\" data-ga-action=\"Switzerland | Fran\u00e7ais\" data-ga-label=\"n\/a\">Fran\u00e7ais<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">T<\/span>\n<ul aria-label=\"Sites starting with the letter .T.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/thailand\/\" hreflang=\"th-TH\" data-ga-category=\"Country Selector\" data-ga-action=\"Thailand | \u0e44\u0e17\u0e22\" data-ga-label=\"n\/a\">Thailand<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/turkey\/\" hreflang=\"tr-TR\" data-ga-category=\"Country Selector\" data-ga-action=\"Turkey | T\u00fcrk\u00e7e\" data-ga-label=\"n\/a\">Turkey<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"country-group\">\n<span class=\"initial\">U<\/span>\n<ul aria-label=\"Sites starting with the letter .U.\" role=\"list\">\n<li>\n<a href=\"https:\/\/www.greenpeace.org.uk\" hreflang=\"en-GB\" data-ga-category=\"Country Selector\" data-ga-action=\"UK | English\" data-ga-label=\"n\/a\">UK<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/www.greenpeace.org\/usa\/\" hreflang=\"en-US\" data-ga-category=\"Country Selector\" data-ga-action=\"USA | English\" data-ga-label=\"n\/a\">USA<\/a>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>\u00a0 \u00a0 \u00a0 \u0e23\u0e48\u0e27\u0e21\u0e1b\u0e01\u0e1b\u0e49\u0e2d\u0e07 \u0e40\u0e2a\u0e23\u0e35\u0e20\u0e32\u0e1e\u0e43\u0e19\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e04\u0e27\u0e32\u0e21\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19\u0e41\u0e25\u0e30\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e43\u0e19\u0e01&hellip; <a class=\"more-link\" href=\"https:\/\/give.seasia.greenpeace.org\/thailand\/anti-slapp\/\">Continue reading <span class=\"screen-reader-text\">WeWillNotBeSilenced<\/span><\/a><\/p>\n","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-1184","page","type-page","status-publish","hentry","entry"],"_links":{"self":[{"href":"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-json\/wp\/v2\/pages\/1184","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-json\/wp\/v2\/comments?post=1184"}],"version-history":[{"count":78,"href":"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-json\/wp\/v2\/pages\/1184\/revisions"}],"predecessor-version":[{"id":1331,"href":"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-json\/wp\/v2\/pages\/1184\/revisions\/1331"}],"wp:attachment":[{"href":"https:\/\/give.seasia.greenpeace.org\/thailand\/wp-json\/wp\/v2\/media?parent=1184"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}