<!doctype html>
<html lang="th" prefix="og: https://ogp.me/ns#">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="https://gmpg.org/xfn/11">
	    <style></style>
    <script id="wccp_pro_disable_selection">

var image_save_msg = 'You are not allowed to save images!';

var no_menu_msg = 'Context menu disabled!';

var smessage = "Alert: Content selection is disabled!!";


"use strict";
/* This because search property "includes" does not supported by IE*/
if (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
  if (typeof start !== 'number') {
	start = 0;
  }

  if (start + search.length > this.length) {
	return false;
  } else {
	return this.indexOf(search, start) !== -1;
  }
};
}
/*////////////////////////////////////*/
let canCall = true;

function call_disable_copy_WithDelay(e) {
  if (canCall) {
    canCall = false;
    disable_copy(e);
    setTimeout(() => {
      canCall = true;
    }, 1000);
  }
}

function disable_copy(e)
{
	window.wccp_pro_iscontenteditable_flag = false;
	
	wccp_pro_log_to_console_if_allowed("disable_copy");
	
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	if (apply_class_exclusion(e) == "Yes") return true;

	if(wccp_pro_iscontenteditable(e) == true) {return true;}
	
	if(is_content_editable_element(current_clicked_element) == true)
	{
		return true;
	}
	else
	{
		if (smessage !== "" && e.detail == 2)
			show_wccp_pro_message(smessage);
		
		if (isSafari)
		{
			return true;
		}
		else
		{
			//wccp_pro_clear_any_selection();
			
			return false;
		}
	}
	
	/*disable context menu when shift + right click is pressed*/
	var shiftPressed = 0;
	
	var evt = e?e:window.event;
	
	if (parseInt(navigator.appVersion)>3) {
		
		if (document.layers && navigator.appName=="Netscape")
			
			shiftPressed = (e.modifiers-0>3);
			
		else
			
			shiftPressed = e.shiftKey;
			
		if (shiftPressed) {
			
			if (smessage !== "") show_wccp_pro_message(smessage);
			
			var isFirefox = typeof InstallTrigger !== 'undefined';   /* Firefox 1.0+ */
			
			if (isFirefox) {
			evt.cancelBubble = true;
			if (evt.stopPropagation) evt.stopPropagation();
			if (evt.preventDefault()) evt.preventDefault();
			show_wccp_pro_message (smessage);
			wccp_pro_clear_any_selection();
			return false;
			}
			
			wccp_pro_clear_any_selection();
			return false;
		}
	}
	
	if(e.which === 2 ){
	var clickedTag_a = (e==null) ? event.srcElement.tagName : e.target.tagName;
	   show_wccp_pro_message(smessage);
       wccp_pro_clear_any_selection(); return false;
    }
	var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
	var checker_IMG = 'checked';
	if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail == 2) {show_wccp_pro_message(alertMsg_IMG);wccp_pro_clear_any_selection();return false;}

    //elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
	if (is_content_editable_element(elemtype) == false)
	{
		if (smessage !== "" && e.detail == 2)
			show_wccp_pro_message(smessage);
		
		if (isSafari)
		{
			return true;
		}
		else
		{
			wccp_pro_clear_any_selection(); return false;
		}
	}
	else
	{
		return true;
	}
}
////////////////////////////
function disable_copy_ie()
{
	wccp_pro_log_to_console_if_allowed("disable_copy_ie_function_started");
	
	var e = e || window.event;
	/*also there is no e.target property in IE.*/
	/*instead IE uses window.event.srcElement*/
  	var target = e.target || e.srcElement;
	
	var elemtype = window.event.srcElement.nodeName;
	
	elemtype = elemtype.toUpperCase();

	if(wccp_pro_iscontenteditable(e) == true) return true;
	
	if (apply_class_exclusion(e) == "Yes") return true;
	
	if (elemtype == "IMG") {show_wccp_pro_message(alertMsg_IMG);return false;}
	
	//elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
	if (is_content_editable_element(elemtype) == false)
	{
		return false;
	}
}
function disable_drag_text(e)
{
	wccp_pro_log_to_console_if_allowed("disable_drag_text");
	
	/*var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);*/
	/*if (isSafari) {show_wccp_pro_message(alertMsg_IMG);return false;}*/
	
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement*/
  	
	var target = e.target || e.srcElement;
	
	/*For contenteditable tags*/
	
	if (apply_class_exclusion(e) == "Yes") return true;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	var disable_drag_text_drop = 'checked';
	
	if (disable_drag_text_drop != "checked")  return true;
	
	if (window.location.href.indexOf("/user/") > -1) {
      return true; /*To allow users to drag & drop images when editing thier profiles*/
    }
	
	return false;
}

/*/////////////////special for safari Start////////////////*/
var onlongtouch;

var timer;

var touchduration = 1000; /*length of time we want the user to touch before we do something*/

var elemtype = "";

function touchstart(e)
{
	wccp_pro_log_to_console_if_allowed("touchstart");
	
	e = e || window.event;// also there is no e.target property in IE. instead IE uses window.event.srcElement
	
	var target = e.target || e.srcElement;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	//if (elemtype == "A") return;

	if (apply_class_exclusion(elemtype) == 'Yes') return;
	/*also there is no e.target property in IE.*/
	/*instead IE uses window.event.srcElement*/
	
	if(!wccp_pro_is_passive()) e.preventDefault();
	if (!timer) {
		timer = setTimeout(onlongtouch, touchduration);
	}
}

function touchend()
{
	wccp_pro_log_to_console_if_allowed("touchend");
	
    /*stops short touches from firing the event*/
    if (timer) {
        clearTimeout(timer);
        timer = null;
    }
	onlongtouch();
}

onlongtouch = function(e)/*this will clear the current selection if any_not_editable_thing selected*/
{
	wccp_pro_log_to_console_if_allowed("onlongtouch");
	
	if (is_content_editable_element(elemtype) == false)
	{
		if (window.getSelection) {
			if (window.getSelection().empty) { /*Chrome*/
			window.getSelection().empty();
			} else if (window.getSelection().removeAllRanges) {  /*Firefox*/
			window.getSelection().removeAllRanges();
			}
		} else if (document.selection) {  /*IE?*/
			var textRange = document.body.createTextRange();
			textRange.moveToElementText(element);
			textRange.select();

			document.selection.empty();
		}
		return false;
	}
};

document.addEventListener("DOMContentLoaded", function(event)
	{ 
		window.addEventListener("touchstart", touchstart, false);
		window.addEventListener("touchend", touchend, false);
	});


function wccp_pro_is_passive()
{
	wccp_pro_log_to_console_if_allowed("wccp_pro_is_passive");
	
	var cold = false,
	hike = function() {};

	try {
	var aid = Object.defineProperty({}, 'passive', {
	get() {cold = true}
	});
	window.addEventListener('test', hike, aid);
	window.removeEventListener('test', hike, aid);
	} catch (e) {}

	return cold;
}
/*/////////////////////////////////////////////////////////////////*/
function reEnable()
{
	return true;
}

if(navigator.userAgent.indexOf('MSIE')==-1) //If not IE
{
	document.ondragstart = disable_drag_text;
	document.onselectstart = call_disable_copy_WithDelay;
	document.onselectionchange = call_disable_copy_WithDelay;
	//document.onmousedown = disable_copy;
	//document.addEventListener('click', disable_copy, false);
	//document.addEventListener('click', set_current_clicked_element, false);
	document.addEventListener('mousedown', set_current_clicked_element, false);
	//document.onclick = reEnable;
}else
{
	document.onselectstart = disable_copy_ie;
}

var current_clicked_element = "";

var current_clicked_object = null;

function set_current_clicked_element(e)
{
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement;

	var elemtype = e.target.nodeName;
	
	elemtype = elemtype.toUpperCase();
	
	current_clicked_element = elemtype;
	
	wccp_pro_log_to_console_if_allowed("current_clicked_element = " + current_clicked_element, arguments.callee.name);
}
</script>
	<script id="wccp_pro_css_disable_selection">
	function wccp_pro_msieversion() 
		{
			var ua = window.navigator.userAgent;
			var msie = ua.indexOf("MSIE");
			var msie2 = ua.indexOf("Edge");
			var msie3 = ua.indexOf("Trident");

		if (msie > -1 || msie2 > -1 || msie3 > -1) // If Internet Explorer, return version number
		{
			return "IE";
		}
		else  // If another browser, return 0
		{
			return "otherbrowser";
		}
	}
    
	var e = document.getElementsByTagName('H1')[0];
	if(e && wccp_pro_msieversion() == "IE")
	{
		e.setAttribute('unselectable',"on");
	}
	</script>
<script id="wccp_pro_disable_hot_keys">window.addEventListener('DOMContentLoaded', function() {
/*****************For contenteditable tags***************/
var wccp_pro_iscontenteditable_flag = false;

function wccp_pro_iscontenteditable(e)
{
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement;
	
	var iscontenteditable = "false";
		
	if(typeof target.getAttribute!="undefined" )
	{
		iscontenteditable = target.getAttribute("contenteditable"); // Return true or false as string
		
		if(typeof target.hasAttribute!="undefined")
		{
			if(target.hasAttribute("contenteditable"))
				iscontenteditable = true;
		}
	}
	
	wccp_pro_log_to_console_if_allowed("iscontenteditable:" + iscontenteditable);
	
	var iscontenteditable2 = false;
	
	if(typeof target.isContentEditable!="undefined" ) iscontenteditable2 = target.isContentEditable; // Return true or false as boolean

	if(target.parentElement !=null) iscontenteditable2 = target.parentElement.isContentEditable;
	
	if (iscontenteditable == "true" || iscontenteditable == true || iscontenteditable2 == true)
	{
		if(typeof target.style!="undefined" ) target.style.cursor = "text";
		
		wccp_pro_iscontenteditable_flag = true;
		
		wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: true");
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: false");
}
/******************************************************/
function wccp_pro_clear_any_selection()
{
	if(window.wccp_pro_iscontenteditable_flag == true) return;
	
	wccp_pro_log_to_console_if_allowed("wccp_pro_clear_any_selection");
	
	var myName = wccp_pro_clear_any_selection.caller.toString();
	
	myName = myName.substr('function '.length);
	
	myName = myName.substr(0, myName.indexOf('('));

	wccp_pro_log_to_console_if_allowed("called_by: " + myName);
	
	if (window.getSelection)
	{
		if (window.getSelection().empty)
		{  // Chrome
			window.getSelection().empty();
		} else if (window.getSelection().removeAllRanges) 
		{  // Firefox
			window.getSelection().removeAllRanges();
		}
	} else if (document.selection)
	{  // IE?
		document.selection.empty();
	}
	
	//show_wccp_pro_message("You are not allowed to make this operation");
}


/*Is content_editable element*/
function is_content_editable_element(element_name = "")
{
	if (element_name == "TEXT" || element_name == "#TEXT" || element_name == "TEXTAREA" || element_name == "INPUT" || element_name == "PASSWORD" || element_name == "SELECT" || element_name == "OPTION" || element_name == "EMBED" || element_name == "CODE" || element_name == "CODEBLOCK_WCCP")
	{
		wccp_pro_log_to_console_if_allowed("is_content_editable_element: true >>" + element_name);
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("is_content_editable_element: false >>" + element_name);
	
	return false;
}
/*Is selection enabled element*/
/*
function is_selection_enabled_element(element_name = "")
{
	if (is_content_editable_element == true)
	{
		wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: true >>" + element_name);
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: false >>" + element_name);
	
	return false;
}
*/
/*Hot keys function  */
function disable_hot_keys(e)
{
	wccp_pro_log_to_console_if_allowed("disable_hot_keys");
	
	e = e || window.event;
	
	//console.log(e);
	
	if (!e) return;
	
	var key;

		if(window.event)
			  key = window.event.keyCode;     /*IE*/
		else if (e.hasOwnProperty("which")) key = e.which;     /*firefox (97)*/

	wccp_pro_log_to_console_if_allowed("Data:", key);
	
			
		if (key == 123 || (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) )//F12 chrome developer key disable
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			
			return false;
		}
		
	var elemtype = e.target.tagName;
	
	elemtype = elemtype.toUpperCase();
	
	var sel = getSelectionTextAndContainerElement();
	
	if(elemtype == "BODY" && sel.text != "") elemtype = sel.containerElement.tagName; /* no need for it when tag name is BODY, so we get the selected text tag name */

	/*elemtype must be merged by elemtype checker on function disable_copy & disable_copy_ie*/
	if (is_content_editable_element(elemtype) == true)
	{
		elemtype = 'TEXT';
	}
	
	if(wccp_pro_iscontenteditable(e) == true) elemtype = 'TEXT';
	
		if (key == 44)/*For any emement type, text elemtype is not excluded here, (prntscr (44)*/
		{
			copyTextToClipboard("");
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}	
	if (e.ctrlKey || e.metaKey)
	{
		if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43))
		{
			 show_wccp_pro_message('Alert: You are not allowed to copy content or view source');
			 return false;
		}
		if (elemtype!= 'TEXT')
		{
						
			if (key == 65)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 67)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 88)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 86)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}		}
				
		if (key == 85)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
				if (key == 80)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
				if (key == 44)
		{
			copyTextToClipboard("no");
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
		
					if (key == 73)//F12 chrome developer key disable
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}
				
				
		if (key == 83)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}    }
return true;
}


window.addEventListener('load', function (){
	if(window.Zepto || !window.jQuery) jQuery =  $;
	jQuery(document).ready(function() {
	  jQuery(document).bind("keyup keydown", disable_hot_keys);
	});
});

});</script>
	<script id="wccp_pro_disable_Right_Click">window.addEventListener('DOMContentLoaded', function() {

	function wccp_pro_nocontext(e)
	{
		wccp_pro_log_to_console_if_allowed("wccp_pro_nocontext function");
		
		const caller = wccp_pro_nocontext.caller;
		
		if (caller) wccp_pro_log_to_console_if_allowed("Caller function is: " + caller.name);
		
		e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
		
		if (apply_class_exclusion(e) == 'Yes') return true;
		
		var exception_tags = 'NOTAG,';
		
		var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName;
		
		wccp_pro_log_to_console_if_allowed("clickedTag: " + clickedTag);
		
		var target = e.target || e.srcElement;
		
		var parent_tag = ""; var parent_of_parent_tag = "";
		
		if(target.parentElement != null)
		{
			parent_tag = target.parentElement.tagName;
			
			if(target.parentElement.parentElement != null) parent_of_parent_tag = target.parentElement.parentElement.tagName;
		}
		
		var checker = 'checked';
		if ((clickedTag == "IMG" || clickedTag == "FIGURE" || clickedTag == "SVG" || clickedTag == "PROTECTEDIMGDIV") && checker == 'checked') {
			if (alertMsg_IMG != "")show_wccp_pro_message(alertMsg_IMG);
			return false;
		}else {exception_tags = exception_tags + 'IMG,';}
		
		checker = '';
		if ((clickedTag == "VIDEO" || clickedTag == "PROTECTEDWCCPVIDEO" || clickedTag == "EMBED") && checker == 'checked') {
			if (alertMsg_VIDEO != "")show_wccp_pro_message(alertMsg_VIDEO);
			return false;
		}else {exception_tags = exception_tags + 'VIDEO,PROTECTEDWCCPVIDEO,EMBED,';}
		
		checker = 'checked';
		if ((clickedTag == "A" || clickedTag == "TIME" || parent_tag == "A" || parent_of_parent_tag == "A") && checker == 'checked') {
			if (alertMsg_A != "")show_wccp_pro_message(alertMsg_A);
			return false;
		}else {exception_tags = exception_tags + 'A,';if(parent_tag == "A" || parent_of_parent_tag == "A") clickedTag = "A";}

		checker = 'checked';
		if ((clickedTag == "P" || clickedTag == "B" || clickedTag == "FONT" ||  clickedTag == "LI" || clickedTag == "UL" || clickedTag == "STRONG" || clickedTag == "OL" || clickedTag == "BLOCKQUOTE" || clickedTag == "TH" || clickedTag == "TR" || clickedTag == "TD" || clickedTag == "SPAN" || clickedTag == "EM" || clickedTag == "SMALL" || clickedTag == "I" || clickedTag == "BUTTON") && checker == 'checked') {
			if (alertMsg_PB != "")show_wccp_pro_message(alertMsg_PB);
			return false;
		}else {exception_tags = exception_tags + 'P,B,FONT,LI,UL,STRONG,OL,BLOCKQUOTE,TD,SPAN,EM,SMALL,I,BUTTON,';}
		
		checker = 'checked';
		if ((clickedTag == "INPUT" || clickedTag == "PASSWORD") && checker == 'checked') {
			if (alertMsg_INPUT != "")show_wccp_pro_message(alertMsg_INPUT);
			return false;
		}else {exception_tags = exception_tags + 'INPUT,PASSWORD,';}
		
		checker = 'checked';
		if ((clickedTag == "H1" || clickedTag == "H2" || clickedTag == "H3" || clickedTag == "H4" || clickedTag == "H5" || clickedTag == "H6" || clickedTag == "ASIDE" || clickedTag == "NAV") && checker == 'checked') {
			if (alertMsg_H != "")show_wccp_pro_message(alertMsg_H);
			return false;
		}else {exception_tags = exception_tags + 'H1,H2,H3,H4,H5,H6,';}
		
		checker = 'checked';
		if (clickedTag == "TEXTAREA" && checker == 'checked') {
			if (alertMsg_TEXTAREA != "")show_wccp_pro_message(alertMsg_TEXTAREA);
			return false;
		}else {exception_tags = exception_tags + 'TEXTAREA,';}
		
		checker = 'checked';
		if ((clickedTag == "DIV" || clickedTag == "BODY" || clickedTag == "HTML" || clickedTag == "ARTICLE" || clickedTag == "SECTION" || clickedTag == "NAV" || clickedTag == "HEADER" || clickedTag == "FOOTER") && checker == 'checked') {
			if (alertMsg_EmptySpaces != "")show_wccp_pro_message(alertMsg_EmptySpaces);
			return false;
		}
		else
		{
			if (exception_tags.indexOf(clickedTag)!=-1)
			{
				return true;
			}
			else
			return false;
		}
	}
	
	function disable_drag_images(e)
	{return;
		wccp_pro_log_to_console_if_allowed("disable_drag_images");
		
		var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
		
		var target = e.target || e.srcElement;
		
		//For contenteditable tags
		if (apply_class_exclusion(e) == "Yes") return true;

		var elemtype = e.target.nodeName;
		
		if (elemtype != "IMG") {return;}
		
		elemtype = elemtype.toUpperCase();
		
		var disable_drag_drop_images = 'checked';
		
		if (disable_drag_drop_images != "checked")  return true;
		
		if (window.location.href.indexOf("/user/") > -1) {
		  return true; //To allow users to drag & drop images when editing thier profiles
		}
		
		show_wccp_pro_message(alertMsg_IMG);
		
		return false;
	}
	
	var alertMsg_IMG = "Alert: Protected image";
	var alertMsg_A = "Alert: This link is protected";
	var alertMsg_PB = "Alert: Right click on text is disabled";
	var alertMsg_INPUT = "Alert: Right click is disabled";
	var alertMsg_H = "Alert: Right click on headlines is disabled";
	var alertMsg_TEXTAREA = "Alert: Right click is disabled";
	var alertMsg_EmptySpaces = "Alert: Right click on empty spaces is disabled";
	var alertMsg_VIDEO = "Alert: Right click on videos is disabled";
	//document.oncontextmenu=null;
	window.addEventListener('load', function (){
	if(window.Zepto || !window.jQuery) jQuery =  $;
	jQuery(document).ready(function(){
		jQuery(document).on('contextmenu', wccp_pro_nocontext);
	});
	});
	window.addEventListener('load', function (){
	if (typeof jQuery === 'undefined')
	{
		alert("no jquery");
		document.oncontextmenu = wccp_pro_nocontext;
		document.addEventListener("contextmenu",wccp_pro_nocontext);
		window.addEventListener("contextmenu",wccp_pro_nocontext);
	}
	});
});</script>
	
	<script id="wccp_pro_disable_drag_images">window.addEventListener('DOMContentLoaded', function() {
	document.ondragstart = disable_drag_images;
		window.addEventListener('load', function (){
			if(window.Zepto || !window.jQuery) jQuery =  $;
			jQuery(document).ready(function(){
				jQuery('img').each(function() {
					jQuery(this).attr('draggable', false);
				});
			});
		});
	});</script>
	<style id="wccp_pro_style1"></style>
<script id="wccp_pro_class_exclusion">
function copyToClipboard(elem) {
	  // create hidden text element, if it doesn't already exist
    var targetId = "_wccp_pro_hiddenCopyText_";
    {
        // must use a temporary form element for the selection and copy
        target = document.getElementById(targetId);
        if (!target) {
            var target = document.createElement("textarea");
            target.style.position = "absolute";
            target.style.left = "-9999px";
            target.style.top = "0";
            target.id = targetId;
            document.body.appendChild(target);
        }
        target.textContent = elem.textContent;
    }
    // select the content
    var currentFocus = document.activeElement;
    target.focus();
    target.setSelectionRange(0, target.value.length);
    
    // copy the selection
    var succeed;
    try {
    	  succeed = document.execCommand("copy");
    } catch(e) {
        succeed = false;
    }

    // restore original focus
    if (currentFocus && typeof currentFocus.focus === "function") {
        currentFocus.focus();
    }
    
    
	// clear temporary content
	target.textContent = "";
	document.getElementsByTagName('span')[0].innerHTML = " ";
    return succeed;
}
/**************************************************/
function wccp_pro_log_to_console_if_allowed(data = "")
{//return;
	var myName = "";
	
	if(wccp_pro_log_to_console_if_allowed.caller != null) myName = wccp_pro_log_to_console_if_allowed.caller.toString();
	
	myName = myName.substr('function '.length);
	
	myName = myName.substr(0, myName.indexOf('('));
	
	}
/**************************************************/
function fallbackCopyTextToClipboard(text) {
  var textArea = document.createElement("textarea");
  textArea.value = text;
  document.body.appendChild(textArea);
  textArea.focus();
  textArea.select();

  try {
    var successful = document.execCommand("copy");
    var msg = successful ? "successful" : "unsuccessful";
    wccp_pro_log_to_console_if_allowed("Fallback: Copying text command was " + msg);
  } catch (err) {
    console.error("Fallback: Oops, unable to copy", err);
  }

  document.body.removeChild(textArea);
}
/*****************************************/
function copyTextToClipboard(text) {
  if (!navigator.clipboard) {
    fallbackCopyTextToClipboard(text);
    return;
  }
  navigator.clipboard.writeText(text).then(
    function() {
      console.log("Async: Copying to clipboard was successful!");
    },
    function(err) {
      console.error("Async: Could not copy text: ", err);
    }
  );
}
/*****************************************/
/*getSelectionTextAndContainerElement*/
function getSelectionTextAndContainerElement()
{
    var text = "", containerElement = null;
    if (typeof window.getSelection != "undefined") {
        var sel = window.getSelection();
        if (sel.rangeCount) {
            var node = sel.getRangeAt(0).commonAncestorContainer;
            containerElement = node.nodeType == 1 ? node : node.parentNode;
			if (typeof(containerElement.parentElement) != 'undefined') current_clicked_object = containerElement.parentElement;
            text = sel.toString();
        }
    } else if (typeof document.selection != "undefined" && document.selection.type != "Control")
	{
        var textRange = document.selection.createRange();
        containerElement = textRange.parentElement();
        text = textRange.text;
    }
    
	return {
        text: text,
        containerElement: containerElement
    };
}

function getSelectionParentElement() {
    var parentEl = null, sel;
	
    if (window.getSelection) {
        sel = window.getSelection();
        if (sel.rangeCount) {
            parentEl = sel.getRangeAt(0).commonAncestorContainer;
			//sel.getRangeAt(0).startContainer.parentNode;
            if (parentEl.nodeType != 1) {
                parentEl = parentEl.parentNode;
            }
        }
    } else if ( (sel = document.selection) && sel.type != "Control") {
        parentEl = sel.createRange().parentElement();
    }
	
	let arr = new Array();
	
	arr["nodeName"] = "cant_find_parent_element";
	
	if(parentEl != null)
		return parentEl;
	else
		return arr;
}
/*****************************************/
function sleep(ms) {
    return new Promise(resolve => setTimeout(resolve, ms));
}
/*****************************************/
</script>

<script id="apply_class_exclusion">
function apply_class_exclusion(e)
{
	wccp_pro_log_to_console_if_allowed(e);
	
	var my_return = 'No';
	
	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
  	
	var target = e.target || e.srcElement || e || 'nothing';
	
	var excluded_classes = '' + '';
	
	var class_to_exclude = "";
	
	if(target.parentElement != null)
	{
		class_to_exclude = target.className + ' ' + target.parentElement.className || '';
	}else{
		class_to_exclude = target.className;
	}
	
	var class_to_exclude_array = Array();
	
	//console.log(class_to_exclude);
	
	if (typeof(class_to_exclude) != 'undefined') class_to_exclude_array = class_to_exclude.split(" ");
	
	//console.log (class_to_exclude_array);
	
	class_to_exclude_array.forEach(function(item)
	{
		if(item != '' && excluded_classes.indexOf(item)>=0)
		{
			//target.style.cursor = "text";
			
			//console.log ('Yes');
			
			my_return = 'Yes';
		}
	});

	try {
		class_to_exclude = target.parentElement.getAttribute('class') || target.parentElement.className || '';
		}
	catch(err) 
		{
		class_to_exclude = '';
		}
	
	if(class_to_exclude != '' && excluded_classes.indexOf(class_to_exclude)>=0)
	{
		//target.style.cursor = "text";
		my_return = 'Yes';
	}

	return my_return;
}
</script>
<style id="wccp_pro_style2" data-asas-style=""></style><style></style>	<script id="wccp_pro_alert_message">
	window.addEventListener('DOMContentLoaded', function() {}); //This line to stop JS deffer function in wp-rockt pluign
	
	window.addEventListener('load', function (){
		// Create the first div element with the "oncontextmenu" attribute
		const wccp_pro_mask = document.createElement('div');
		wccp_pro_mask.setAttribute('oncontextmenu', 'return false;');
		wccp_pro_mask.setAttribute('id', 'wccp_pro_mask');

		// Create the second div element with the "msgmsg-box-wpcp hideme" classes
		const wpcp_error_message = document.createElement('div');
		wpcp_error_message.setAttribute('id', 'wpcp-error-message');
		wpcp_error_message.setAttribute('class', 'msgmsg-box-wpcp hideme');

		// Add a span element with the "error: " text inside the second div
		const error_span = document.createElement('span');
		error_span.innerText = 'error: ';
		wpcp_error_message.appendChild(error_span);

		// Add the error message text inside the second div
		const error_text = document.createTextNode('Alert: Content selection is disabled!!');
		wpcp_error_message.appendChild(error_text);

		// Add the div elements to the document body
		document.body.appendChild(wccp_pro_mask);
		document.body.appendChild(wpcp_error_message);
	});

	var timeout_result;
	function show_wccp_pro_message(smessage="", style="")
	{
		wccp_pro_log_to_console_if_allowed(smessage);
				
		timeout = 3000;
		
		if(style == "") style = "warning-wpcp";
		
		if (smessage !== "" && timeout!=0)
		{
			var smessage_text = smessage;
			jquery_fadeTo();
			document.getElementById("wpcp-error-message").innerHTML = smessage_text;
			document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style;
			clearTimeout(timeout_result);
			timeout_result = setTimeout(hide_message, timeout);
		}
		else
		{
			clearTimeout(timeout_result);
			timeout_result = setTimeout(hide_message, timeout);
		}
	}
	function hide_message()
	{
		jquery_fadeOut();
		document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme";
	}
	function jquery_fadeTo()
	{
		try {
			jQuery("#wccp_pro_mask").fadeTo("slow", 0.3);
		}
		catch(err) {
			//alert(err.message);
			}
	}
	function jquery_fadeOut()
	{
		try {
			jQuery("#wccp_pro_mask").fadeOut( "slow" );
		}
		catch(err) {}
	}
	</script>
	<style></style>

<!-- Search Engine Optimization by Rank Math - https://rankmath.com/ -->
<title>สล็อต888 สล็อตเว็บตรง ไม่ผ่านเอเย่นต์ เว็บสล็อต มาแรง 2026</title>
<link data-rocket-prefetch href="https://fonts.googleapis.com" rel="dns-prefetch">
<link data-rocket-prefetch href="https://mlohymbk5nwu.i.optimole.com" rel="dns-prefetch">
<link data-rocket-preload as="style" href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto%20Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPrompt%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPlayfair%20Display%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CKarla%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap" rel="preload">
<link href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto%20Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPrompt%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPlayfair%20Display%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CKarla%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap" media="print" onload="this.media=&#039;all&#039;" rel="stylesheet">
<style id="wpr-usedcss">img{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-khtml-user-select:none;user-select:none;-webkit-user-drag:none}[contenteditable=true],[contenteditable=true] *,[contenteditable],[contenteditable] *{cursor:text!important;user-select:text!important;pointer-events:auto!important}a{cursor:pointer;pointer-events:auto!important}TEXT,TEXTAREA,input[type=text]{cursor:text!important;user-select:text!important}#wccp_pro_mask{position:absolute;bottom:0;left:0;position:fixed;right:0;top:0;background-color:#000;pointer-events:none;display:none;z-index:10000;animation:.5s ngdialog-fadein;background:rgba(0,0,0,.4)}#wpcp-error-message{direction:ltr;text-align:center;transition:opacity .9s ease 0s;pointer-events:none;z-index:99999999}.hideme{opacity:0;visibility:hidden}.showme{opacity:1;visibility:visible}.msgmsg-box-wpcp{border-radius:10px;color:#555;font-family:Tahoma;font-size:12px;margin:10px!important;padding:10px 36px!important;position:fixed;width:255px;top:50%;left:50%;margin-top:-10px!important;margin-left:-130px!important}.warning-wpcp{background:var(--wpr-bg-9a8a8afa-8e06-4681-9283-76c839f7143b) 10px 50% no-repeat #ffecec;border:1px solid #f2bfbf;-webkit-box-shadow:0 0 34px 2px #f2bfbf;-moz-box-shadow:0 0 34px 2px #f2bfbf;box-shadow:0 0 34px 2px #f2bfbf}.success-wpcp{background:var(--wpr-bg-48dfe6c2-f959-4060-b5dc-2ebb6a2801ce) 10px 50% no-repeat #fafafa;border:1px solid #00b38f;box-shadow:0 0 34px 2px #adc}img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}img.emoji{display:inline!important;border:none!important;box-shadow:none!important;height:1em!important;width:1em!important;margin:0 .07em!important;vertical-align:-.1em!important;background:0 0!important;padding:0!important}:root{--wp--preset--aspect-ratio--square:1;--wp--preset--aspect-ratio--4-3:4/3;--wp--preset--aspect-ratio--3-4:3/4;--wp--preset--aspect-ratio--3-2:3/2;--wp--preset--aspect-ratio--2-3:2/3;--wp--preset--aspect-ratio--16-9:16/9;--wp--preset--aspect-ratio--9-16:9/16;--wp--preset--color--black:#000000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#ffffff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgb(6, 147, 227) 0%,rgb(155, 81, 224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,rgb(122, 220, 180) 0%,rgb(0, 208, 130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgb(252, 185, 0) 0%,rgb(255, 105, 0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgb(255, 105, 0) 0%,rgb(207, 46, 46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,rgb(238, 238, 238) 0%,rgb(169, 184, 195) 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,rgb(74, 234, 220) 0%,rgb(151, 120, 209) 20%,rgb(207, 42, 186) 40%,rgb(238, 44, 130) 60%,rgb(251, 105, 98) 80%,rgb(254, 248, 76) 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,rgb(255, 206, 236) 0%,rgb(152, 150, 240) 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,rgb(254, 205, 165) 0%,rgb(254, 45, 45) 50%,rgb(107, 0, 62) 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,rgb(255, 203, 112) 0%,rgb(199, 81, 192) 50%,rgb(65, 88, 208) 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,rgb(255, 245, 203) 0%,rgb(182, 227, 212) 50%,rgb(51, 167, 181) 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,rgb(202, 248, 128) 0%,rgb(113, 206, 126) 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,rgb(2, 3, 129) 0%,rgb(40, 116, 252) 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:0.44rem;--wp--preset--spacing--30:0.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0, 0, 0, .2);--wp--preset--shadow--deep:12px 12px 50px rgba(0, 0, 0, .4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0, 0, 0, .2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgb(255, 255, 255),6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp:6px 6px 0px rgb(0, 0, 0)}:root{--wp--style--global--content-size:800px;--wp--style--global--wide-size:1200px}:where(body){margin:0}:where(.wp-site-blocks)>*{margin-block-start:24px;margin-block-end:0}:where(.wp-site-blocks)>:first-child{margin-block-start:0}:where(.wp-site-blocks)>:last-child{margin-block-end:0}:root{--wp--style--block-gap:24px}:root :where(.is-layout-flow)>:first-child{margin-block-start:0}:root :where(.is-layout-flow)>:last-child{margin-block-end:0}:root :where(.is-layout-flow)>*{margin-block-start:24px;margin-block-end:0}:root :where(.is-layout-constrained)>:first-child{margin-block-start:0}:root :where(.is-layout-constrained)>:last-child{margin-block-end:0}:root :where(.is-layout-constrained)>*{margin-block-start:24px;margin-block-end:0}:root :where(.is-layout-flex){gap:24px}:root :where(.is-layout-grid){gap:24px}body{padding-top:0;padding-right:0;padding-bottom:0;padding-left:0}a:where(:not(.wp-element-button)){text-decoration:underline}:root :where(.wp-element-button,.wp-block-button__link){background-color:#32373c;border-width:0;color:#fff;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;padding-top:calc(.667em + 2px);padding-right:calc(1.333em + 2px);padding-bottom:calc(.667em + 2px);padding-left:calc(1.333em + 2px);text-decoration:none;text-transform:inherit}:root :where(.wp-block-pullquote){font-size:1.5em;line-height:1.6}html{line-height:1.15;-webkit-text-size-adjust:100%}*,:after,:before{box-sizing:border-box}body{background-color:#fff;color:#333;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';font-size:1rem;font-weight:400;line-height:1.5;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1,h2,h3,h4{color:inherit;font-family:inherit;font-weight:500;line-height:1.2;margin-block-end:1rem;margin-block-start:.5rem}h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.75rem}h4{font-size:1.5rem}p{margin-block-end:.9rem;margin-block-start:0}a{background-color:transparent;color:#c36;text-decoration:none}a:active,a:hover{color:#336}a:not([href]):not([tabindex]),a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}sub{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}img{border-style:none;height:auto;max-width:100%}[hidden],template{display:none}@media print{*,:after,:before{background:0 0!important;box-shadow:none!important;color:#000!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}a[href^="#"]:after{content:""}img,tr{-moz-column-break-inside:avoid;break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{-moz-column-break-after:avoid;break-after:avoid}body *{display:none!important}body:after{content:"You are not allowed to print this page!"}}label{display:inline-block;line-height:1;vertical-align:middle}button,input,optgroup,select,textarea{font-family:inherit;font-size:1rem;line-height:1.5;margin:0}input[type=email],input[type=number],input[type=search],input[type=text],input[type=url],select,textarea{border:1px solid #666;border-radius:3px;padding:.5rem 1rem;transition:all .3s;width:100%}input[type=email]:focus,input[type=number]:focus,input[type=search]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border-color:#333}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=submit],button{-webkit-appearance:button;width:auto}[type=button],[type=submit],button{background-color:transparent;border:1px solid #c36;border-radius:3px;color:#c36;display:inline-block;font-size:1rem;font-weight:400;padding:.5rem 1rem;text-align:center;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap}[type=button]:focus:not(:focus-visible),[type=submit]:focus:not(:focus-visible),button:focus:not(:focus-visible){outline:0}[type=button]:focus,[type=button]:hover,[type=submit]:focus,[type=submit]:hover,button:focus,button:hover{background-color:#c36;color:#fff;text-decoration:none}[type=button]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto;resize:vertical}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}select{display:block}table{background-color:transparent;border-collapse:collapse;border-spacing:0;font-size:.9em;margin-block-end:15px;width:100%}table th{border:1px solid hsla(0,0%,50%,.502);line-height:1.5;padding:15px;vertical-align:top}table th{font-weight:700}table tbody>tr:nth-child(odd)>th{background-color:hsla(0,0%,50%,.071)}table tbody tr:hover>th{background-color:hsla(0,0%,50%,.102)}table tbody+tbody{border-block-start:2px solid hsla(0,0%,50%,.502)}li,ul{background:0 0;border:0;font-size:100%;margin-block-end:0;margin-block-start:0;outline:0;vertical-align:baseline}.page-content a{text-decoration:underline}.sticky{display:block;position:relative}.hide{display:none!important}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#eee;clip:auto!important;clip-path:none;color:#333;display:block;font-size:1rem;height:auto;left:5px;line-height:normal;padding:12px 24px;text-decoration:none;top:5px;width:auto;z-index:100000}.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{margin-inline-end:auto;margin-inline-start:auto;width:100%}@media(max-width:575px){.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{padding-inline-end:10px;padding-inline-start:10px}}@media(min-width:576px){.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:500px}}@media(min-width:768px){.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:600px}}@media(min-width:992px){.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:800px}}@media(min-width:1200px){.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main{max-width:1140px}}.site-header+.elementor{min-height:calc(100vh - 320px)}.site-header{display:flex;flex-wrap:wrap;justify-content:space-between;padding-block-end:1rem;padding-block-start:1rem;position:relative}.site-navigation-toggle-holder{align-items:center;display:flex;padding:8px 15px}.site-navigation-toggle-holder .site-navigation-toggle{align-items:center;background-color:rgba(0,0,0,.05);border:0 solid;border-radius:3px;color:#494c4f;cursor:pointer;display:flex;justify-content:center;padding:.5rem}.site-navigation-dropdown{bottom:0;left:0;margin-block-start:10px;position:absolute;transform-origin:top;transition:max-height .3s,transform .3s;width:100%;z-index:10000}.site-navigation-toggle-holder:not(.elementor-active)+.site-navigation-dropdown{max-height:0;transform:scaleY(0)}.site-navigation-toggle-holder.elementor-active+.site-navigation-dropdown{max-height:100vh;transform:scaleY(1)}.site-navigation-dropdown ul{padding:0}.site-navigation-dropdown ul.menu{background:#fff;margin:0;padding:0;position:absolute;width:100%}.site-navigation-dropdown ul.menu li{display:block;position:relative;width:100%}.site-navigation-dropdown ul.menu li a{background:#fff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.102);color:#55595c;display:block;padding:20px}.site-navigation-dropdown ul.menu>li li{max-height:0;transform:scaleY(0);transform-origin:top;transition:max-height .3s,transform .3s}.site-navigation-dropdown ul.menu li.elementor-active>ul>li{max-height:100vh;transform:scaleY(1)}:root{--direction-multiplier:1}body.rtl{--direction-multiplier:-1}.elementor-screen-only,.screen-reader-text,.screen-reader-text span{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;top:-10000em;width:1px;clip:rect(0,0,0,0);border:0}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor img{border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%}.elementor iframe,.elementor object,.elementor video{border:none;line-height:1;margin:0;max-width:100%;width:100%}.elementor .elementor-background-overlay{inset:0;position:absolute}.elementor .elementor-background-slideshow__slide__image{background-position:50%;background-size:cover;height:100%;width:100%}.elementor-widget-wrap .elementor-element.elementor-widget__width-initial{max-width:100%}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;align-self:var(--align-self);flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order)}.elementor-element:where(.e-con-full,.elementor-widget){align-content:var(--align-content);align-items:var(--align-items);flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);gap:var(--row-gap) var(--column-gap);justify-content:var(--justify-content)}.elementor-invisible{visibility:hidden}:root{--page-title-display:block}@keyframes eicon-spin{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:2s linear infinite eicon-spin}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-inline:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-widget-wrap{align-content:flex-start;flex-wrap:wrap;position:relative;width:100%}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget-wrap.e-swiper-container{width:calc(100% - (var(--e-column-margin-left,0px) + var(--e-column-margin-right,0px)))}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-block-end:var(--kit-widget-spacing,20px)}.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-block-end:0}.elementor-column{display:flex;min-height:1px;position:relative}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}@media (min-width:768px){.elementor-column.elementor-col-50{width:50%}.elementor-column.elementor-col-100{width:100%}}@media (min-width:1025px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:-1){#elementor-device-mode:after{content:"laptop";content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:767px){.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial{max-width:100%}.elementor-column{width:100%}#elementor-device-mode:after{content:"mobile"}}@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}.e-con{--border-radius:0;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-top:0px;--margin-right:0px;--margin-bottom:0px;--margin-left:0px;--padding-top:var(--container-default-padding-top,10px);--padding-right:var(--container-default-padding-right,10px);--padding-bottom:var(--container-default-padding-bottom,10px);--padding-left:var(--container-default-padding-left,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--row-gap:var(--widgets-spacing-row,20px);--column-gap:var(--widgets-spacing-column,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:0.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);border-radius:var(--border-radius);height:var(--height);min-height:var(--min-height);min-width:0;overflow:var(--overflow);position:var(--position);width:var(--width);z-index:var(--z-index);--flex-wrap-mobile:wrap}.e-con:where(:not(.e-div-block-base)){transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s)}.e-con{--margin-block-start:var(--margin-top);--margin-block-end:var(--margin-bottom);--margin-inline-start:var(--margin-left);--margin-inline-end:var(--margin-right);--padding-inline-start:var(--padding-left);--padding-inline-end:var(--padding-right);--padding-block-start:var(--padding-top);--padding-block-end:var(--padding-bottom);--border-block-start-width:var(--border-top-width);--border-block-end-width:var(--border-bottom-width);--border-inline-start-width:var(--border-left-width);--border-inline-end-width:var(--border-right-width)}body.rtl .e-con{--padding-inline-start:var(--padding-right);--padding-inline-end:var(--padding-left);--margin-inline-start:var(--margin-right);--margin-inline-end:var(--margin-left);--border-inline-start-width:var(--border-right-width);--border-inline-end-width:var(--border-left-width)}.e-con{margin-block-end:var(--margin-block-end);margin-block-start:var(--margin-block-start);margin-inline-end:var(--margin-inline-end);margin-inline-start:var(--margin-inline-start);padding-inline-end:var(--padding-inline-end);padding-inline-start:var(--padding-inline-start)}.e-con>.e-con-inner{padding-block-end:var(--padding-block-end);padding-block-start:var(--padding-block-start);text-align:var(--text-align)}.e-con,.e-con>.e-con-inner{display:var(--display)}.e-con>.e-con-inner{gap:var(--row-gap) var(--column-gap);height:100%;margin:0 auto;max-width:var(--content-width);padding-inline-end:0;padding-inline-start:0;width:100%}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-left:auto;--margin-right:auto;max-width:min(100%,var(--width))}:is([data-widget_type="e-component.default"],[data-widget_type="e-component.default"]>.elementor-section-wrap)>.e-con{--margin-right:0px;--margin-left:0px}.e-con .elementor-widget.elementor-widget{margin-block-end:0}.e-con:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);content:var(--background-overlay);display:block;height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);position:absolute;top:calc(0px - var(--border-top-width));transition:var(--overlay-transition,.3s);width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s)}.e-con .elementor-widget{min-width:0}.e-con .elementor-widget.e-widget-swiper{width:100%}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%}.e-con .elementor-widget:not(:last-child){--kit-widget-spacing:0px}.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container,.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)){transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s)}.elementor-heading-title{line-height:1;margin:0;padding:0}.elementor-icon{color:#69727d;display:inline-block;font-size:50px;line-height:1;text-align:center;transition:all .3s}.elementor-icon:hover{color:#69727d}.elementor-icon i,.elementor-icon svg{display:block;height:1em;position:relative;width:1em}.elementor-icon i:before,.elementor-icon svg:before{left:50%;position:absolute;transform:translateX(-50%)}.animated{animation-duration:1.25s}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.animated{animation:none!important}html *{transition-delay:0s!important;transition-duration:0s!important}}@media (max-width:767px){.elementor .elementor-hidden-mobile{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:1025px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}.elementor-kit-11{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.e-con{--container-max-width:1140px}.elementor-widget:not(:last-child){margin-block-end:20px}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px}.site-header{padding-inline-end:0px;padding-inline-start:0px}@media(max-width:1024px){.elementor-section.elementor-section-boxed>.elementor-container{max-width:1024px}.e-con{--container-max-width:1024px}}@media(max-width:767px){table table{font-size:.8em}table table th{line-height:1.3;padding:7px}table table th{font-weight:400}.elementor-section.elementor-section-boxed>.elementor-container{max-width:767px}.e-con{--container-max-width:767px}}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-item:after,.elementor-item:before{display:block;position:absolute;transition:.3s;transition-timing-function:cubic-bezier(.58,.3,.005,1)}.elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):after,.elementor-item:not(:hover):not(:focus):not(.elementor-item-active):not(.highlighted):before{opacity:0}.elementor-item.highlighted:after,.elementor-item.highlighted:before,.elementor-item:focus:after,.elementor-item:focus:before,.elementor-item:hover:after,.elementor-item:hover:before{transform:scale(1)}.e--pointer-underline .elementor-item:after,.e--pointer-underline .elementor-item:before{background-color:#3f444b;height:3px;left:0;width:100%;z-index:2}.e--pointer-underline .elementor-item:after{bottom:0;content:""}.elementor-nav-menu--main .elementor-nav-menu a{transition:.4s}.elementor-nav-menu--main .elementor-nav-menu a,.elementor-nav-menu--main .elementor-nav-menu a.highlighted,.elementor-nav-menu--main .elementor-nav-menu a:focus,.elementor-nav-menu--main .elementor-nav-menu a:hover{padding:13px 20px}.elementor-nav-menu--main .elementor-nav-menu a.current{background:#1f2124;color:#fff}.elementor-nav-menu--main .elementor-nav-menu a.disabled{background:#3f444b;color:#88909b}.elementor-nav-menu--main .elementor-nav-menu ul{border-style:solid;border-width:0;padding:0;position:absolute;width:12em}.elementor-nav-menu--main .elementor-nav-menu span.scroll-down,.elementor-nav-menu--main .elementor-nav-menu span.scroll-up{background:#fff;display:none;height:20px;overflow:hidden;position:absolute;visibility:hidden}.elementor-nav-menu--main .elementor-nav-menu span.scroll-down-arrow,.elementor-nav-menu--main .elementor-nav-menu span.scroll-up-arrow{border:8px dashed transparent;border-bottom:8px solid #33373d;height:0;inset-block-start:-2px;inset-inline-start:50%;margin-inline-start:-8px;overflow:hidden;position:absolute;width:0}.elementor-nav-menu--main .elementor-nav-menu span.scroll-down-arrow{border-color:#33373d transparent transparent;border-style:solid dashed dashed;top:6px}.elementor-nav-menu--main .elementor-nav-menu--dropdown .sub-arrow .e-font-icon-svg,.elementor-nav-menu--main .elementor-nav-menu--dropdown .sub-arrow i{transform:rotate(calc(-90deg * var(--direction-multiplier,1)))}.elementor-nav-menu--main .elementor-nav-menu--dropdown .sub-arrow .e-font-icon-svg{fill:currentColor;height:1em;width:1em}.elementor-nav-menu--layout-horizontal{display:flex}.elementor-nav-menu--layout-horizontal .elementor-nav-menu{display:flex;flex-wrap:wrap}.elementor-nav-menu--layout-horizontal .elementor-nav-menu a{flex-grow:1;white-space:nowrap}.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li{display:flex}.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li ul,.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li>.scroll-down{top:100%!important}.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:first-child)>a{margin-inline-start:var(--e-nav-menu-horizontal-menu-item-margin)}.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:first-child)>.scroll-down,.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:first-child)>.scroll-up,.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:first-child)>ul{inset-inline-start:var(--e-nav-menu-horizontal-menu-item-margin)!important}.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:last-child)>a{margin-inline-end:var(--e-nav-menu-horizontal-menu-item-margin)}.elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:last-child):after{align-self:center;border-color:var(--e-nav-menu-divider-color,#000);border-left-style:var(--e-nav-menu-divider-style,solid);border-left-width:var(--e-nav-menu-divider-width,2px);content:var(--e-nav-menu-divider-content,none);height:var(--e-nav-menu-divider-height,35%)}.elementor-nav-menu__align-right .elementor-nav-menu{justify-content:flex-end;margin-left:auto}.elementor-nav-menu__align-right .elementor-nav-menu--layout-vertical>ul>li>a{justify-content:flex-end}.elementor-nav-menu__align-left .elementor-nav-menu{justify-content:flex-start;margin-right:auto}.elementor-nav-menu__align-left .elementor-nav-menu--layout-vertical>ul>li>a{justify-content:flex-start}.elementor-nav-menu__align-start .elementor-nav-menu{justify-content:flex-start;margin-inline-end:auto}.elementor-nav-menu__align-start .elementor-nav-menu--layout-vertical>ul>li>a{justify-content:flex-start}.elementor-nav-menu__align-end .elementor-nav-menu{justify-content:flex-end;margin-inline-start:auto}.elementor-nav-menu__align-end .elementor-nav-menu--layout-vertical>ul>li>a{justify-content:flex-end}.elementor-nav-menu__align-center .elementor-nav-menu{justify-content:center;margin-inline-end:auto;margin-inline-start:auto}.elementor-nav-menu__align-center .elementor-nav-menu--layout-vertical>ul>li>a{justify-content:center}.elementor-nav-menu__align-justify .elementor-nav-menu--layout-horizontal .elementor-nav-menu{width:100%}.elementor-nav-menu__align-justify .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li{flex-grow:1}.elementor-nav-menu__align-justify .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li>a{justify-content:center}.elementor-widget-nav-menu:not(.elementor-nav-menu--toggle) .elementor-menu-toggle{display:none}.elementor-widget-nav-menu .elementor-widget-container,.elementor-widget-nav-menu:not(:has(.elementor-widget-container)):not([class*=elementor-hidden-]){display:flex;flex-direction:column}.elementor-nav-menu{position:relative;z-index:2}.elementor-nav-menu:after{clear:both;content:" ";display:block;font:0/0 serif;height:0;overflow:hidden;visibility:hidden}.elementor-nav-menu,.elementor-nav-menu li,.elementor-nav-menu ul{display:block;line-height:normal;list-style:none;margin:0;padding:0;-webkit-tap-highlight-color:transparent}.elementor-nav-menu ul{display:none}.elementor-nav-menu ul ul a,.elementor-nav-menu ul ul a:active,.elementor-nav-menu ul ul a:focus,.elementor-nav-menu ul ul a:hover{border-left:16px solid transparent}.elementor-nav-menu ul ul ul a,.elementor-nav-menu ul ul ul a:active,.elementor-nav-menu ul ul ul a:focus,.elementor-nav-menu ul ul ul a:hover{border-left:24px solid transparent}.elementor-nav-menu ul ul ul ul a,.elementor-nav-menu ul ul ul ul a:active,.elementor-nav-menu ul ul ul ul a:focus,.elementor-nav-menu ul ul ul ul a:hover{border-left:32px solid transparent}.elementor-nav-menu ul ul ul ul ul a,.elementor-nav-menu ul ul ul ul ul a:active,.elementor-nav-menu ul ul ul ul ul a:focus,.elementor-nav-menu ul ul ul ul ul a:hover{border-left:40px solid transparent}.elementor-nav-menu a,.elementor-nav-menu li{position:relative}.elementor-nav-menu li{border-width:0}.elementor-nav-menu a{align-items:center;display:flex}.elementor-nav-menu a,.elementor-nav-menu a:focus,.elementor-nav-menu a:hover{line-height:20px;padding:10px 20px}.elementor-nav-menu a.current{background:#1f2124;color:#fff}.elementor-nav-menu a.disabled{color:#88909b;cursor:not-allowed}.elementor-nav-menu .e-plus-icon:before{content:"+"}.elementor-nav-menu .sub-arrow{align-items:center;display:flex;line-height:1;margin-block-end:-10px;margin-block-start:-10px;padding:10px;padding-inline-end:0}.elementor-nav-menu .sub-arrow i{pointer-events:none}.elementor-nav-menu .sub-arrow .fa.fa-chevron-down,.elementor-nav-menu .sub-arrow .fas.fa-chevron-down{font-size:.7em}.elementor-nav-menu .sub-arrow .e-font-icon-svg{height:1em;width:1em}.elementor-nav-menu .sub-arrow .e-font-icon-svg.fa-svg-chevron-down{height:.7em;width:.7em}.elementor-nav-menu--dropdown .elementor-item.elementor-item-active,.elementor-nav-menu--dropdown .elementor-item.highlighted,.elementor-nav-menu--dropdown .elementor-item:focus,.elementor-nav-menu--dropdown .elementor-item:hover,.elementor-sub-item.highlighted,.elementor-sub-item:focus,.elementor-sub-item:hover{background-color:#3f444b;color:#fff}.elementor-menu-toggle{align-items:center;background-color:rgba(0,0,0,.05);border:0 solid;border-radius:3px;color:#33373d;cursor:pointer;display:flex;font-size:var(--nav-menu-icon-size,22px);justify-content:center;padding:.25em}.elementor-menu-toggle.elementor-active .elementor-menu-toggle__icon--open,.elementor-menu-toggle:not(.elementor-active) .elementor-menu-toggle__icon--close{display:none}.elementor-menu-toggle .e-font-icon-svg{fill:#33373d;height:1em;width:1em}.elementor-menu-toggle svg{height:auto;width:1em;fill:var(--nav-menu-icon-color,currentColor)}span.elementor-menu-toggle__icon--close,span.elementor-menu-toggle__icon--open{line-height:1}.elementor-nav-menu--dropdown{background-color:#fff;font-size:13px}.elementor-nav-menu--dropdown-none .elementor-menu-toggle,.elementor-nav-menu--dropdown-none .elementor-nav-menu--dropdown{display:none}.elementor-nav-menu--dropdown.elementor-nav-menu__container{margin-top:10px;overflow-x:hidden;overflow-y:auto;transform-origin:top;transition:max-height .3s,transform .3s}.elementor-nav-menu--dropdown.elementor-nav-menu__container .elementor-sub-item{font-size:.85em}.elementor-nav-menu--dropdown a{color:#33373d}.elementor-nav-menu--dropdown a.current{background:#1f2124;color:#fff}.elementor-nav-menu--dropdown a.disabled{color:#b3b3b3}ul.elementor-nav-menu--dropdown a,ul.elementor-nav-menu--dropdown a:focus,ul.elementor-nav-menu--dropdown a:hover{border-inline-start:8px solid transparent;text-shadow:none}.elementor-nav-menu__text-align-center .elementor-nav-menu--dropdown .elementor-nav-menu a{justify-content:center}.elementor-nav-menu--toggle{--menu-height:100vh}.elementor-nav-menu--toggle .elementor-menu-toggle:not(.elementor-active)+.elementor-nav-menu__container{max-height:0;overflow:hidden;transform:scaleY(0)}.elementor-nav-menu--toggle .elementor-menu-toggle.elementor-active+.elementor-nav-menu__container{animation:.3s backwards hide-scroll;max-height:var(--menu-height);transform:scaleY(1)}.elementor-nav-menu--stretch .elementor-nav-menu__container.elementor-nav-menu--dropdown{position:absolute;z-index:9997}@media (max-width:767px){.elementor-nav-menu--dropdown-mobile .elementor-nav-menu--main{display:none}}@media (min-width:768px){.elementor-nav-menu--dropdown-mobile .elementor-menu-toggle,.elementor-nav-menu--dropdown-mobile .elementor-nav-menu--dropdown{display:none}.elementor-nav-menu--dropdown-mobile nav.elementor-nav-menu--dropdown.elementor-nav-menu__container{overflow-y:hidden}}@media (max-width:1024px){.elementor-nav-menu--dropdown-tablet .elementor-nav-menu--main{display:none}}@media (min-width:1025px){.elementor-nav-menu--dropdown-tablet .elementor-menu-toggle,.elementor-nav-menu--dropdown-tablet .elementor-nav-menu--dropdown{display:none}.elementor-nav-menu--dropdown-tablet nav.elementor-nav-menu--dropdown.elementor-nav-menu__container{overflow-y:hidden}}@media (max-width:-1){.elementor-nav-menu--dropdown-mobile_extra .elementor-nav-menu--main{display:none}.elementor-nav-menu--dropdown-tablet_extra .elementor-nav-menu--main{display:none}}@media (min-width:-1){.elementor-nav-menu--dropdown-mobile_extra .elementor-menu-toggle,.elementor-nav-menu--dropdown-mobile_extra .elementor-nav-menu--dropdown{display:none}.elementor-nav-menu--dropdown-mobile_extra nav.elementor-nav-menu--dropdown.elementor-nav-menu__container{overflow-y:hidden}.elementor-nav-menu--dropdown-tablet_extra .elementor-menu-toggle,.elementor-nav-menu--dropdown-tablet_extra .elementor-nav-menu--dropdown{display:none}.elementor-nav-menu--dropdown-tablet_extra nav.elementor-nav-menu--dropdown.elementor-nav-menu__container{overflow-y:hidden}}@keyframes hide-scroll{0%,to{overflow:hidden}}.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{direction:ltr;display:flex;margin:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}@font-face{font-display:swap;font-family:eicons;src:url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.47.0);src:url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.47.0#iefix) format("embedded-opentype"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.47.0) format("woff2"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.47.0) format("woff"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.47.0) format("truetype"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.47.0#eicon) format("svg");font-weight:400;font-style:normal}[class*=" eicon-"],[class^=eicon]{display:inline-block;font-family:eicons;font-size:inherit;font-weight:400;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@keyframes a{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:2s linear infinite a}.eicon-menu-bar:before{content:"\e816"}.eicon-close:before{content:"\e87f"}.eicon-loading:before{content:"\e8fb"}.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image img{display:inline-block;vertical-align:middle}.elementor-widget-table-of-contents .elementor-toc__header-title{color:var(--header-color)}.elementor-widget-table-of-contents.elementor-toc--collapsed .elementor-toc__toggle-button--collapse,.elementor-widget-table-of-contents:not(.elementor-toc--collapsed) .elementor-toc__toggle-button--expand{display:none}.elementor-widget-table-of-contents .elementor-widget-container,.elementor-widget-table-of-contents:not(:has(.elementor-widget-container)){background-color:var(--box-background-color);border:var(--box-border-width,1px) solid var(--box-border-color,#9da5ae);border-radius:var(--box-border-radius,3px);min-height:var(--box-min-height);overflow:hidden;transition:min-height .4s}.elementor-toc__header{align-items:center;background-color:var(--header-background-color);border-bottom:var(--separator-width,1px) solid var(--box-border-color,#9da5ae);display:flex;justify-content:flex-end;padding:var(--box-padding,20px)}.elementor-toc__header-title{color:var(--header-color);flex-grow:1;font-size:18px;margin:0}.elementor-toc__toggle-button{cursor:pointer;display:inline-flex}.elementor-toc__toggle-button i{color:var(--toggle-button-color)}.elementor-toc__toggle-button svg{height:1em;width:1em;fill:var(--toggle-button-color)}.elementor-toc__spinner-container{text-align:center}.elementor-toc__spinner{font-size:2em}.elementor-toc__spinner.e-font-icon-svg{height:1em;width:1em}.elementor-toc__body{max-height:var(--toc-body-max-height);overflow-y:auto;padding:var(--box-padding,20px)}.elementor-toc__body::-webkit-scrollbar{width:7px}.elementor-toc__body::-webkit-scrollbar-thumb{background-color:#babfc5;border-radius:10px}.elementor-toc__list-wrapper{list-style:none;padding:0}.elementor-toc__list-item{margin-bottom:.5em}.elementor-toc__list-item.elementor-item-active{font-weight:700}.elementor-toc__list-item .elementor-toc__list-wrapper{margin-top:.5em;margin-inline-start:var(--nested-list-indent,1em)}.elementor-toc__list-item-text{transition-duration:var(--item-text-transition-duration)}.elementor-toc__list-item-text:hover{color:var(--item-text-hover-color);-webkit-text-decoration:var(--item-text-hover-decoration);text-decoration:var(--item-text-hover-decoration)}.elementor-toc__list-item-text.elementor-item-active{color:var(--item-text-active-color);-webkit-text-decoration:var(--item-text-active-decoration);text-decoration:var(--item-text-active-decoration)}.elementor-toc__list-item-text-wrapper{align-items:center;display:flex}.elementor-toc__list-item-text-wrapper i,.elementor-toc__list-item-text-wrapper:before{color:var(--marker-color);margin-inline-end:8px}.elementor-toc__list-item-text-wrapper svg{margin-inline-end:8px;fill:var(--marker-color);height:var(--marker-size,.5em);width:var(--marker-size,.5em)}.elementor-toc__list-item-text-wrapper i{font-size:var(--marker-size,.5em)}.elementor-toc__list-item-text-wrapper:before{font-size:var(--marker-size,1em)}.elementor-toc--content-ellipsis .elementor-toc__list-item-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.elementor-toc__list-items--collapsible>.elementor-toc__list-wrapper>.elementor-toc__list-item>.elementor-toc__list-wrapper{display:none}.elementor-toc__heading-anchor{position:absolute}.elementor-toc__body .elementor-toc__list-item-text{color:var(--item-text-color);-webkit-text-decoration:var(--item-text-decoration);text-decoration:var(--item-text-decoration);transition-duration:var(--item-text-transition-duration)}.elementor-toc__body .elementor-toc__list-item-text:hover{color:var(--item-text-hover-color);-webkit-text-decoration:var(--item-text-hover-decoration);text-decoration:var(--item-text-hover-decoration)}.elementor-toc__body .elementor-toc__list-item-text.elementor-item-active{color:var(--item-text-active-color);-webkit-text-decoration:var(--item-text-active-decoration);text-decoration:var(--item-text-active-decoration)}ol.elementor-toc__list-wrapper{counter-reset:item}ol.elementor-toc__list-wrapper .elementor-toc__list-item{counter-increment:item}ol.elementor-toc__list-wrapper .elementor-toc__list-item-text-wrapper:before{content:counters(item,".") ". "}.elementor-168 .elementor-element.elementor-element-7eacc7e img{width:100%}.elementor-168 .elementor-element.elementor-element-0a07634 img{width:100%}.elementor-168 .elementor-element.elementor-element-44383a4{text-align:center}.elementor-168 .elementor-element.elementor-element-44383a4 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-581fae0{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-widget-table-of-contents{--header-color:var(--e-global-color-secondary);--item-text-color:var(--e-global-color-text);--item-text-hover-color:var(--e-global-color-accent);--marker-color:var(--e-global-color-text)}.elementor-widget-table-of-contents .elementor-toc__header,.elementor-widget-table-of-contents .elementor-toc__header-title{font-family:var( --e-global-typography-primary-font-family ),Sans-serif;font-weight:var(--e-global-typography-primary-font-weight)}.elementor-widget-table-of-contents .elementor-toc__list-item{font-family:var( --e-global-typography-text-font-family ),Sans-serif;font-weight:var(--e-global-typography-text-font-weight)}.elementor-168 .elementor-element.elementor-element-269cc4e{--box-background-color:#FFFFFF;--box-border-color:#000000;--header-background-color:#FFFFFF;--header-color:#000000;--item-text-color:#000000;--item-text-hover-color:#000000;--item-text-hover-decoration:underline;--marker-color:#000000}.elementor-168 .elementor-element.elementor-element-269cc4e .elementor-toc__header-title{text-align:start}.elementor-168 .elementor-element.elementor-element-269cc4e .elementor-toc__header,.elementor-168 .elementor-element.elementor-element-269cc4e .elementor-toc__header-title{font-family:Prompt,Sans-serif;font-weight:600}.elementor-168 .elementor-element.elementor-element-269cc4e .elementor-toc__header{flex-direction:row}.elementor-168 .elementor-element.elementor-element-269cc4e .elementor-toc__list-item{font-family:Prompt,Sans-serif;font-weight:400}.elementor-168 .elementor-element.elementor-element-38a690a{text-align:center}.elementor-168 .elementor-element.elementor-element-38a690a .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-a39fdba{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-1e2d323{text-align:center}.elementor-168 .elementor-element.elementor-element-1e2d323 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-00c46ec{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-7013741{text-align:center}.elementor-168 .elementor-element.elementor-element-7013741 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-4904579{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-7b67f1f{text-align:center}.elementor-168 .elementor-element.elementor-element-7b67f1f .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-88ad316{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-f5494f6{text-align:center}.elementor-168 .elementor-element.elementor-element-f5494f6 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-f9a5b41{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-6d547ea{text-align:center}.elementor-168 .elementor-element.elementor-element-6d547ea .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-83fc65f{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-96a962f .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-9e83951{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-38aba26 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-b429422{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-6f3bf3c .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-36c68dd{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-29d4fce .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-4988b0a{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-7842163 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-8374c16{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-b0b3b43{text-align:center}.elementor-168 .elementor-element.elementor-element-b0b3b43 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-24be329{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-a1d33e3{text-align:center}.elementor-168 .elementor-element.elementor-element-a1d33e3 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-2c12e2d{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-f08f9af .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-fb90e44{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-06fdd41 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-147951d{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-8928353 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-48bc11a{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-5666952 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-79ab0cc{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-f62fffb .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-273e1d5{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-127d47b{text-align:center}.elementor-168 .elementor-element.elementor-element-127d47b .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-ccb3319{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-a7ddf2f{text-align:center}.elementor-168 .elementor-element.elementor-element-a7ddf2f .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-2b81f00{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-c2a46b2{text-align:center}.elementor-168 .elementor-element.elementor-element-c2a46b2 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-bd08f6f{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-fc965d0 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-8d3f9f9{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-7111780 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-aedb04a{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-cbbd362 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-a6d75d8{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-2ac1828 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-02df691{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-d16a035{text-align:center}.elementor-168 .elementor-element.elementor-element-d16a035 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-24a981b{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-6f4da24{text-align:center}.elementor-168 .elementor-element.elementor-element-6f4da24 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-533b02b .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-300b301{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-23c7da8 .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-4f2492b{font-family:Prompt,Sans-serif;font-weight:400;color:#000}.elementor-168 .elementor-element.elementor-element-1f4e12e .elementor-heading-title{font-family:Prompt,Sans-serif;font-weight:600;color:#900}.elementor-168 .elementor-element.elementor-element-70032c4{font-family:Prompt,Sans-serif;font-weight:400;color:#000}:root{--page-title-display:none}.elementor-81 .elementor-element.elementor-element-ca99f5a:not(.elementor-motion-effects-element-type-background),.elementor-81 .elementor-element.elementor-element-ca99f5a>.elementor-motion-effects-container>.elementor-motion-effects-layer{background-color:#93ad9f}.elementor-81 .elementor-element.elementor-element-ca99f5a{transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;margin-top:0;margin-bottom:0}.elementor-81 .elementor-element.elementor-element-ca99f5a>.elementor-background-overlay{transition:background .3s,border-radius .3s,opacity .3s}.elementor-81 .elementor-element.elementor-element-fa7e28b.elementor-column>.elementor-widget-wrap{justify-content:flex-end}.elementor-widget-icon.elementor-view-default .elementor-icon{color:var(--e-global-color-primary);border-color:var(--e-global-color-primary)}.elementor-widget-icon.elementor-view-default .elementor-icon svg{fill:var(--e-global-color-primary)}.elementor-81 .elementor-element.elementor-element-61c075c .elementor-icon-wrapper{text-align:center}.elementor-81 .elementor-element.elementor-element-61c075c.elementor-view-stacked .elementor-icon{background-color:#000}.elementor-81 .elementor-element.elementor-element-61c075c.elementor-view-default .elementor-icon,.elementor-81 .elementor-element.elementor-element-61c075c.elementor-view-framed .elementor-icon{color:#000;border-color:#000}.elementor-81 .elementor-element.elementor-element-61c075c.elementor-view-default .elementor-icon svg,.elementor-81 .elementor-element.elementor-element-61c075c.elementor-view-framed .elementor-icon{fill:#000000}.elementor-81 .elementor-element.elementor-element-61c075c.elementor-view-stacked .elementor-icon:hover{background-color:#fe7b7b}.elementor-81 .elementor-element.elementor-element-61c075c.elementor-view-default .elementor-icon:hover,.elementor-81 .elementor-element.elementor-element-61c075c.elementor-view-framed .elementor-icon:hover{color:#fe7b7b;border-color:#fe7b7b}.elementor-81 .elementor-element.elementor-element-61c075c.elementor-view-default .elementor-icon:hover svg,.elementor-81 .elementor-element.elementor-element-61c075c.elementor-view-framed .elementor-icon:hover{fill:#FE7B7B}.elementor-81 .elementor-element.elementor-element-61c075c .elementor-icon{font-size:20px}.elementor-81 .elementor-element.elementor-element-61c075c .elementor-icon svg{height:20px}.elementor-81 .elementor-element.elementor-element-61c075c{width:var(--container-widget-width,4%);max-width:4%;--container-widget-width:4%;--container-widget-flex-grow:0}.elementor-81 .elementor-element.elementor-element-3473a03 .elementor-icon-wrapper{text-align:center}.elementor-81 .elementor-element.elementor-element-3473a03.elementor-view-stacked .elementor-icon{background-color:#000}.elementor-81 .elementor-element.elementor-element-3473a03.elementor-view-default .elementor-icon,.elementor-81 .elementor-element.elementor-element-3473a03.elementor-view-framed .elementor-icon{color:#000;border-color:#000}.elementor-81 .elementor-element.elementor-element-3473a03.elementor-view-default .elementor-icon svg,.elementor-81 .elementor-element.elementor-element-3473a03.elementor-view-framed .elementor-icon{fill:#000000}.elementor-81 .elementor-element.elementor-element-3473a03.elementor-view-stacked .elementor-icon:hover{background-color:#fe7b7b}.elementor-81 .elementor-element.elementor-element-3473a03.elementor-view-default .elementor-icon:hover,.elementor-81 .elementor-element.elementor-element-3473a03.elementor-view-framed .elementor-icon:hover{color:#fe7b7b;border-color:#fe7b7b}.elementor-81 .elementor-element.elementor-element-3473a03.elementor-view-default .elementor-icon:hover svg,.elementor-81 .elementor-element.elementor-element-3473a03.elementor-view-framed .elementor-icon:hover{fill:#FE7B7B}.elementor-81 .elementor-element.elementor-element-3473a03 .elementor-icon{font-size:20px}.elementor-81 .elementor-element.elementor-element-3473a03 .elementor-icon svg{height:20px}.elementor-81 .elementor-element.elementor-element-3473a03{width:var(--container-widget-width,4%);max-width:4%;--container-widget-width:4%;--container-widget-flex-grow:0}.elementor-81 .elementor-element.elementor-element-a02731a .elementor-icon-wrapper{text-align:center}.elementor-81 .elementor-element.elementor-element-a02731a.elementor-view-stacked .elementor-icon{background-color:#000}.elementor-81 .elementor-element.elementor-element-a02731a.elementor-view-default .elementor-icon,.elementor-81 .elementor-element.elementor-element-a02731a.elementor-view-framed .elementor-icon{color:#000;border-color:#000}.elementor-81 .elementor-element.elementor-element-a02731a.elementor-view-default .elementor-icon svg,.elementor-81 .elementor-element.elementor-element-a02731a.elementor-view-framed .elementor-icon{fill:#000000}.elementor-81 .elementor-element.elementor-element-a02731a.elementor-view-stacked .elementor-icon:hover{background-color:#fe7b7b}.elementor-81 .elementor-element.elementor-element-a02731a.elementor-view-default .elementor-icon:hover,.elementor-81 .elementor-element.elementor-element-a02731a.elementor-view-framed .elementor-icon:hover{color:#fe7b7b;border-color:#fe7b7b}.elementor-81 .elementor-element.elementor-element-a02731a.elementor-view-default .elementor-icon:hover svg,.elementor-81 .elementor-element.elementor-element-a02731a.elementor-view-framed .elementor-icon:hover{fill:#FE7B7B}.elementor-81 .elementor-element.elementor-element-a02731a .elementor-icon{font-size:20px}.elementor-81 .elementor-element.elementor-element-a02731a .elementor-icon svg{height:20px}.elementor-81 .elementor-element.elementor-element-a02731a{width:var(--container-widget-width,4%);max-width:4%;--container-widget-width:4%;--container-widget-flex-grow:0}.elementor-81 .elementor-element.elementor-element-061aa73:not(.elementor-motion-effects-element-type-background),.elementor-81 .elementor-element.elementor-element-061aa73>.elementor-motion-effects-container>.elementor-motion-effects-layer{background-color:#93ad9f}.elementor-81 .elementor-element.elementor-element-061aa73{transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;margin-top:0;margin-bottom:0}.elementor-81 .elementor-element.elementor-element-061aa73>.elementor-background-overlay{transition:background .3s,border-radius .3s,opacity .3s}.elementor-81 .elementor-element.elementor-element-bf4c79c.elementor-column>.elementor-widget-wrap{justify-content:flex-end}.elementor-81 .elementor-element.elementor-element-95b432e .elementor-icon-wrapper{text-align:center}.elementor-81 .elementor-element.elementor-element-95b432e.elementor-view-stacked .elementor-icon{background-color:#000}.elementor-81 .elementor-element.elementor-element-95b432e.elementor-view-default .elementor-icon,.elementor-81 .elementor-element.elementor-element-95b432e.elementor-view-framed .elementor-icon{color:#000;border-color:#000}.elementor-81 .elementor-element.elementor-element-95b432e.elementor-view-default .elementor-icon svg,.elementor-81 .elementor-element.elementor-element-95b432e.elementor-view-framed .elementor-icon{fill:#000000}.elementor-81 .elementor-element.elementor-element-f32fadf .elementor-icon-wrapper{text-align:center}.elementor-81 .elementor-element.elementor-element-f32fadf.elementor-view-stacked .elementor-icon{background-color:#000}.elementor-81 .elementor-element.elementor-element-f32fadf.elementor-view-default .elementor-icon,.elementor-81 .elementor-element.elementor-element-f32fadf.elementor-view-framed .elementor-icon{color:#000;border-color:#000}.elementor-81 .elementor-element.elementor-element-f32fadf.elementor-view-default .elementor-icon svg,.elementor-81 .elementor-element.elementor-element-f32fadf.elementor-view-framed .elementor-icon{fill:#000000}.elementor-81 .elementor-element.elementor-element-53d4b25 .elementor-icon-wrapper{text-align:center}.elementor-81 .elementor-element.elementor-element-53d4b25.elementor-view-stacked .elementor-icon{background-color:#000}.elementor-81 .elementor-element.elementor-element-53d4b25.elementor-view-default .elementor-icon,.elementor-81 .elementor-element.elementor-element-53d4b25.elementor-view-framed .elementor-icon{color:#000;border-color:#000}.elementor-81 .elementor-element.elementor-element-53d4b25.elementor-view-default .elementor-icon svg,.elementor-81 .elementor-element.elementor-element-53d4b25.elementor-view-framed .elementor-icon{fill:#000000}.elementor-81 .elementor-element.elementor-element-f0b6072{margin-top:0;margin-bottom:0}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ),Sans-serif;font-weight:var(--e-global-typography-primary-font-weight);color:var(--e-global-color-primary)}.elementor-81 .elementor-element.elementor-element-abf2dd4{text-align:center}.elementor-81 .elementor-element.elementor-element-abf2dd4 .elementor-heading-title{font-family:"Playfair Display",Sans-serif;font-size:32px;font-weight:600;color:#000}.elementor-81 .elementor-element.elementor-element-ca53273{text-align:center;font-family:Karla,Sans-serif;font-size:16px;font-weight:400;color:#404040}.elementor-widget-nav-menu .elementor-nav-menu .elementor-item{font-family:var( --e-global-typography-primary-font-family ),Sans-serif;font-weight:var(--e-global-typography-primary-font-weight)}.elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item{color:var(--e-global-color-text);fill:var(--e-global-color-text)}.elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item.elementor-item-active,.elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item.highlighted,.elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item:focus,.elementor-widget-nav-menu .elementor-nav-menu--main .elementor-item:hover{color:var(--e-global-color-accent);fill:var(--e-global-color-accent)}.elementor-widget-nav-menu .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after,.elementor-widget-nav-menu .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:before{background-color:var(--e-global-color-accent)}.elementor-widget-nav-menu{--e-nav-menu-divider-color:var(--e-global-color-text)}.elementor-widget-nav-menu .elementor-nav-menu--dropdown .elementor-item,.elementor-widget-nav-menu .elementor-nav-menu--dropdown .elementor-sub-item{font-family:var( --e-global-typography-accent-font-family ),Sans-serif;font-weight:var(--e-global-typography-accent-font-weight)}.elementor-81 .elementor-element.elementor-element-554c978 .elementor-menu-toggle{margin:0 auto}.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu .elementor-item{font-family:Karla,Sans-serif;font-size:14px;font-weight:700}.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--main .elementor-item{color:#333;fill:#333333}.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--main .elementor-item.elementor-item-active,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--main .elementor-item.highlighted,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--main .elementor-item:focus,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--main .elementor-item:hover{color:#fe7b7b;fill:#FE7B7B}.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:after,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--main:not(.e--pointer-framed) .elementor-item:before{background-color:#fff}.elementor-81 .elementor-element.elementor-element-554c978 .e--pointer-framed .elementor-item:after,.elementor-81 .elementor-element.elementor-element-554c978 .e--pointer-framed .elementor-item:before{border-color:#fff}.elementor-81 .elementor-element.elementor-element-554c978 .elementor-menu-toggle,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--dropdown a{color:#333;fill:#333333}.elementor-81 .elementor-element.elementor-element-554c978 .elementor-menu-toggle:focus,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-menu-toggle:hover,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--dropdown a.elementor-item-active,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--dropdown a.highlighted,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--dropdown a:focus,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--dropdown a:hover{color:#fe7b7b}.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--dropdown a.elementor-item-active,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--dropdown a.highlighted,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--dropdown a:focus,.elementor-81 .elementor-element.elementor-element-554c978 .elementor-nav-menu--dropdown a:hover{background-color:#fff}@media(max-width:767px){.elementor-81 .elementor-element.elementor-element-061aa73{margin-top:0;margin-bottom:0;padding:0}.elementor-81 .elementor-element.elementor-element-bf4c79c.elementor-column>.elementor-widget-wrap{justify-content:center}.elementor-81 .elementor-element.elementor-element-95b432e .elementor-icon{font-size:20px}.elementor-81 .elementor-element.elementor-element-95b432e .elementor-icon svg{height:20px}.elementor-81 .elementor-element.elementor-element-95b432e{width:var(--container-widget-width,50px);max-width:50px;--container-widget-width:50px;--container-widget-flex-grow:0;align-self:center}.elementor-81 .elementor-element.elementor-element-f32fadf .elementor-icon{font-size:20px}.elementor-81 .elementor-element.elementor-element-f32fadf .elementor-icon svg{height:20px}.elementor-81 .elementor-element.elementor-element-f32fadf{width:var(--container-widget-width,50px);max-width:50px;--container-widget-width:50px;--container-widget-flex-grow:0;align-self:center}.elementor-81 .elementor-element.elementor-element-53d4b25 .elementor-icon{font-size:20px}.elementor-81 .elementor-element.elementor-element-53d4b25 .elementor-icon svg{height:20px}.elementor-81 .elementor-element.elementor-element-53d4b25{width:var(--container-widget-width,50px);max-width:50px;--container-widget-width:50px;--container-widget-flex-grow:0;align-self:flex-start}.elementor-81 .elementor-element.elementor-element-554c978>.elementor-widget-container{margin:-15px 0 0}}.elementor-89 .elementor-element.elementor-element-50f20d4:not(.elementor-motion-effects-element-type-background),.elementor-89 .elementor-element.elementor-element-50f20d4>.elementor-motion-effects-container>.elementor-motion-effects-layer{background-color:#93ad9f}.elementor-89 .elementor-element.elementor-element-50f20d4{transition:background .3s,border .3s,border-radius .3s,box-shadow .3s}.elementor-89 .elementor-element.elementor-element-50f20d4>.elementor-background-overlay{transition:background .3s,border-radius .3s,opacity .3s}.elementor-widget-divider{--divider-color:var(--e-global-color-secondary)}.elementor-widget-divider.elementor-view-default .elementor-icon{color:var(--e-global-color-secondary);border-color:var(--e-global-color-secondary)}.elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var(--e-global-color-secondary)}.elementor-89 .elementor-element.elementor-element-22d8240{--divider-border-style:solid;--divider-color:#969696;--divider-border-width:1px;width:var(--container-widget-width,6%);max-width:6%;--container-widget-width:6%;--container-widget-flex-grow:0}.elementor-89 .elementor-element.elementor-element-22d8240 .elementor-divider-separator{width:100%}.elementor-89 .elementor-element.elementor-element-22d8240 .elementor-divider{padding-block-start:12px;padding-block-end:12px}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ),Sans-serif;font-weight:var(--e-global-typography-text-font-weight);color:var(--e-global-color-text)}.elementor-89 .elementor-element.elementor-element-a2a72d6{font-family:Karla,Sans-serif;font-size:16px;font-weight:400;color:#fe7b7b;width:var(--container-widget-width,9%);max-width:9%;--container-widget-width:9%;--container-widget-flex-grow:0}.elementor-89 .elementor-element.elementor-element-a2a72d6>.elementor-widget-container{margin:0 0 0 8px}.elementor-89 .elementor-element.elementor-element-5c5a678{font-family:Karla,Sans-serif;font-size:16px;font-weight:400;color:#000}.elementor-89 .elementor-element.elementor-element-ed0d509{font-family:Karla,Sans-serif;font-size:16px;font-weight:400;color:#000}.elementor-89 .elementor-element.elementor-element-87616da:not(.elementor-motion-effects-element-type-background),.elementor-89 .elementor-element.elementor-element-87616da>.elementor-motion-effects-container>.elementor-motion-effects-layer{background-color:#93ad9f}.elementor-89 .elementor-element.elementor-element-87616da{transition:background .3s,border .3s,border-radius .3s,box-shadow .3s}.elementor-89 .elementor-element.elementor-element-87616da>.elementor-background-overlay{transition:background .3s,border-radius .3s,opacity .3s}.elementor-89 .elementor-element.elementor-element-8cc65ba{font-family:Karla,Sans-serif;font-weight:400;color:#000}.elementor-location-footer:before,.elementor-location-header:before{content:"";display:table;clear:both}::after,::backdrop,::before,::cue,::marker,::placeholder,:not(input):not(textarea):not(text):not([contenteditable=true]):not([contenteditable=true] *):not([contenteditable]):not([contenteditable] *):not(code):not(code *):not(codeblock_wccp):not(codeblock_wccp *){-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}::-moz-selection,::selection{background:0 0;color:inherit}[contenteditable=true]::-moz-selection,[contenteditable=true]::selection,[contenteditable]::-moz-selection,[contenteditable]::selection,input::-moz-selection,input::selection,textarea::-moz-selection,textarea::selection{background:#b3d4fc;color:#000}.unselectable{-moz-user-select:none;-webkit-user-select:none;-khtml-user-select:none;user-select:none;cursor:default}html .elementor-element[data-settings*=background_background]:not(.optml-bg-lazyloaded),html .elementor-section[data-settings*=background_background]:not(.optml-bg-lazyloaded),html .elementor-widget-container:not(.optml-bg-lazyloaded){background-image:none!important}@font-face{font-family:Roboto;font-style:normal;font-weight:100;font-stretch:100%;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:200;font-stretch:100%;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:300;font-stretch:100%;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-stretch:100%;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:500;font-stretch:100%;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:600;font-stretch:100%;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:700;font-stretch:100%;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:800;font-stretch:100%;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:900;font-stretch:100%;font-display:swap;src:url(https://fonts.gstatic.com/s/roboto/v51/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Prompt;font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/prompt/v12/-W__XJnvUD7dzB2KdNodVkI.woff2) format('woff2');unicode-range:U+02D7,U+0303,U+0331,U+0E01-0E5B,U+200C-200D,U+25CC}@font-face{font-family:Prompt;font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/prompt/v12/-W__XJnvUD7dzB2KYNod.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Prompt;font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/prompt/v12/-W_8XJnvUD7dzB2Cv_4IfWMuQ5Q.woff2) format('woff2');unicode-range:U+02D7,U+0303,U+0331,U+0E01-0E5B,U+200C-200D,U+25CC}@font-face{font-family:Prompt;font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/prompt/v12/-W_8XJnvUD7dzB2Cv_4IaWMu.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Playfair Display';font-style:normal;font-weight:900;font-display:swap;src:url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Karla;font-style:normal;font-weight:200;font-display:swap;src:url(https://fonts.gstatic.com/s/karla/v33/qkBbXvYC6trAT7RVLtw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Karla;font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/karla/v33/qkBbXvYC6trAT7RVLtw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Karla;font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/karla/v33/qkBbXvYC6trAT7RVLtw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Karla;font-style:normal;font-weight:500;font-display:swap;src:url(https://fonts.gstatic.com/s/karla/v33/qkBbXvYC6trAT7RVLtw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Karla;font-style:normal;font-weight:600;font-display:swap;src:url(https://fonts.gstatic.com/s/karla/v33/qkBbXvYC6trAT7RVLtw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Karla;font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/karla/v33/qkBbXvYC6trAT7RVLtw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Karla;font-style:normal;font-weight:800;font-display:swap;src:url(https://fonts.gstatic.com/s/karla/v33/qkBbXvYC6trAT7RVLtw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-facebook-f:before{content:"\f39e"}.fa-instagram:before{content:"\f16d"}.fa-pinterest-p:before{content:"\f231"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:swap;src:url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot);src:url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff) format("woff"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fas{font-family:"Font Awesome 5 Free";font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:swap;src:url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot);src:url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff) format("woff"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf) format("truetype"),url(https://fairlysouthern.com/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400}img[data-opt-src]:not([data-opt-lazy-loaded]){transition:.2s filter linear,.2s opacity linear,.2s border-radius linear;-webkit-transition:filter .2s linear,opacity .2s linear,border-radius .2s linear;-moz-transition:filter .2s linear,opacity .2s linear,border-radius .2s linear;-o-transition:filter .2s linear,opacity .2s linear,border-radius .2s linear}img[data-opt-src]:not([data-opt-lazy-loaded]){opacity:.75;-webkit-filter:blur(8px);-moz-filter:blur(8px);-o-filter:blur(8px);-ms-filter:blur(8px);filter:blur(8px);transform:scale(1.04);animation:.1s ease-in;-webkit-transform:translate3d(0,0,0)}</style><link rel="preload" data-rocket-preload as="image" href="https://mlohymbk5nwu.i.optimole.com/cb:gUcq.6db/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://fairlysouthern.com/wp-content/uploads/2026/02/%E0%B8%AA%E0%B8%A5%E0%B9%87%E0%B8%AD%E0%B8%95-888.jpg" imagesrcset="https://mlohymbk5nwu.i.optimole.com/cb:gUcq.6db/w:500/h:500/q:mauto/rt:fill/g:ce/f:best/https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888.jpg 500w, https://mlohymbk5nwu.i.optimole.com/cb:gUcq.6db/w:300/h:300/q:mauto/rt:fill/g:ce/f:best/https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888.jpg 300w, https://mlohymbk5nwu.i.optimole.com/cb:gUcq.6db/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888.jpg 150w" imagesizes="(max-width: 150px) 100vw, 150px" fetchpriority="high">
<meta name="description" content="สล็อต888 เว็บสล็อตใหม่ล่าสุด แตกง่าย ลิขสิทธิ์แท้ ต่างประเทศ รวมสล็อตทุกค่าย ครบจบในที่เดียว ฝากถอนออโต้ ไม่มีขั้นต่ำ สล็อตเว็บตรง มาแรง 2026"/>
<meta name="robots" content="index, follow, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/>
<link rel="canonical" href="https://fairlysouthern.com/about/" />
<meta property="og:locale" content="th_TH" />
<meta property="og:type" content="article" />
<meta property="og:title" content="สล็อต888 สล็อตเว็บตรง ไม่ผ่านเอเย่นต์ เว็บสล็อต มาแรง 2026" />
<meta property="og:description" content="สล็อต888 เว็บสล็อตใหม่ล่าสุด แตกง่าย ลิขสิทธิ์แท้ ต่างประเทศ รวมสล็อตทุกค่าย ครบจบในที่เดียว ฝากถอนออโต้ ไม่มีขั้นต่ำ สล็อตเว็บตรง มาแรง 2026" />
<meta property="og:url" content="https://fairlysouthern.com/about/" />
<meta property="og:site_name" content="fairlysouthern.com" />
<meta property="og:updated_time" content="2026-03-06T16:34:08+07:00" />
<meta property="og:image" content="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888.jpg" />
<meta property="og:image:secure_url" content="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888.jpg" />
<meta property="og:image:width" content="500" />
<meta property="og:image:height" content="500" />
<meta property="og:image:alt" content="สล็อต 888" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="article:published_time" content="2026-02-19T16:56:27+07:00" />
<meta property="article:modified_time" content="2026-03-06T16:34:08+07:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="สล็อต888 สล็อตเว็บตรง ไม่ผ่านเอเย่นต์ เว็บสล็อต มาแรง 2026" />
<meta name="twitter:description" content="สล็อต888 เว็บสล็อตใหม่ล่าสุด แตกง่าย ลิขสิทธิ์แท้ ต่างประเทศ รวมสล็อตทุกค่าย ครบจบในที่เดียว ฝากถอนออโต้ ไม่มีขั้นต่ำ สล็อตเว็บตรง มาแรง 2026" />
<meta name="twitter:image" content="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888.jpg" />
<meta name="twitter:label1" content="Time to read" />
<meta name="twitter:data1" content="16 minutes" />
<script type="application/ld+json" class="rank-math-schema">{"@context":"https://schema.org","@graph":[{"@type":["Person","Organization"],"@id":"https://fairlysouthern.com/#person","name":"fairlysouthern.com"},{"@type":"WebSite","@id":"https://fairlysouthern.com/#website","url":"https://fairlysouthern.com","name":"fairlysouthern.com","publisher":{"@id":"https://fairlysouthern.com/#person"},"inLanguage":"th"},{"@type":"ImageObject","@id":"https://fairlysouthern.com/wp-content/uploads/2026/02/\u0e2a\u0e25\u0e47\u0e2d\u0e15-888.jpg","url":"https://fairlysouthern.com/wp-content/uploads/2026/02/\u0e2a\u0e25\u0e47\u0e2d\u0e15-888.jpg","width":"500","height":"500","caption":"\u0e2a\u0e25\u0e47\u0e2d\u0e15 888","inLanguage":"th"},{"@type":"WebPage","@id":"https://fairlysouthern.com/about/#webpage","url":"https://fairlysouthern.com/about/","name":"\u0e2a\u0e25\u0e47\u0e2d\u0e15888 \u0e2a\u0e25\u0e47\u0e2d\u0e15\u0e40\u0e27\u0e47\u0e1a\u0e15\u0e23\u0e07 \u0e44\u0e21\u0e48\u0e1c\u0e48\u0e32\u0e19\u0e40\u0e2d\u0e40\u0e22\u0e48\u0e19\u0e15\u0e4c \u0e40\u0e27\u0e47\u0e1a\u0e2a\u0e25\u0e47\u0e2d\u0e15 \u0e21\u0e32\u0e41\u0e23\u0e07 2026","datePublished":"2026-02-19T16:56:27+07:00","dateModified":"2026-03-06T16:34:08+07:00","isPartOf":{"@id":"https://fairlysouthern.com/#website"},"primaryImageOfPage":{"@id":"https://fairlysouthern.com/wp-content/uploads/2026/02/\u0e2a\u0e25\u0e47\u0e2d\u0e15-888.jpg"},"inLanguage":"th"},{"@type":"Person","@id":"https://fairlysouthern.com/author/ponchai/","name":"Ponchai","url":"https://fairlysouthern.com/author/ponchai/","image":{"@type":"ImageObject","@id":"https://secure.gravatar.com/avatar/9ebf4fca9de0d9bcf7bde40bec0400ea00b15d87f1159cf2f2d3dd3461996815?s=96&amp;d=mm&amp;r=g","url":"https://secure.gravatar.com/avatar/9ebf4fca9de0d9bcf7bde40bec0400ea00b15d87f1159cf2f2d3dd3461996815?s=96&amp;d=mm&amp;r=g","caption":"Ponchai","inLanguage":"th"},"sameAs":["https://wordpress-1590715-6222430.cloudwaysapps.com"]},{"@type":"Article","headline":"\u0e2a\u0e25\u0e47\u0e2d\u0e15888 \u0e2a\u0e25\u0e47\u0e2d\u0e15\u0e40\u0e27\u0e47\u0e1a\u0e15\u0e23\u0e07 \u0e44\u0e21\u0e48\u0e1c\u0e48\u0e32\u0e19\u0e40\u0e2d\u0e40\u0e22\u0e48\u0e19\u0e15\u0e4c \u0e40\u0e27\u0e47\u0e1a\u0e2a\u0e25\u0e47\u0e2d\u0e15 \u0e21\u0e32\u0e41\u0e23\u0e07 2026","keywords":"\u0e2a\u0e25\u0e47\u0e2d\u0e15888","datePublished":"2026-02-19T16:56:27+07:00","dateModified":"2026-03-06T16:34:08+07:00","author":{"@id":"https://fairlysouthern.com/author/ponchai/","name":"Ponchai"},"publisher":{"@id":"https://fairlysouthern.com/#person"},"description":"\u0e2a\u0e25\u0e47\u0e2d\u0e15888 \u0e40\u0e27\u0e47\u0e1a\u0e2a\u0e25\u0e47\u0e2d\u0e15\u0e43\u0e2b\u0e21\u0e48\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14 \u0e41\u0e15\u0e01\u0e07\u0e48\u0e32\u0e22 \u0e25\u0e34\u0e02\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e41\u0e17\u0e49 \u0e15\u0e48\u0e32\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28 \u0e23\u0e27\u0e21\u0e2a\u0e25\u0e47\u0e2d\u0e15\u0e17\u0e38\u0e01\u0e04\u0e48\u0e32\u0e22 \u0e04\u0e23\u0e1a\u0e08\u0e1a\u0e43\u0e19\u0e17\u0e35\u0e48\u0e40\u0e14\u0e35\u0e22\u0e27 \u0e1d\u0e32\u0e01\u0e16\u0e2d\u0e19\u0e2d\u0e2d\u0e42\u0e15\u0e49 \u0e44\u0e21\u0e48\u0e21\u0e35\u0e02\u0e31\u0e49\u0e19\u0e15\u0e48\u0e33 \u0e2a\u0e25\u0e47\u0e2d\u0e15\u0e40\u0e27\u0e47\u0e1a\u0e15\u0e23\u0e07 \u0e21\u0e32\u0e41\u0e23\u0e07 2026","name":"\u0e2a\u0e25\u0e47\u0e2d\u0e15888 \u0e2a\u0e25\u0e47\u0e2d\u0e15\u0e40\u0e27\u0e47\u0e1a\u0e15\u0e23\u0e07 \u0e44\u0e21\u0e48\u0e1c\u0e48\u0e32\u0e19\u0e40\u0e2d\u0e40\u0e22\u0e48\u0e19\u0e15\u0e4c \u0e40\u0e27\u0e47\u0e1a\u0e2a\u0e25\u0e47\u0e2d\u0e15 \u0e21\u0e32\u0e41\u0e23\u0e07 2026","@id":"https://fairlysouthern.com/about/#richSnippet","isPartOf":{"@id":"https://fairlysouthern.com/about/#webpage"},"image":{"@id":"https://fairlysouthern.com/wp-content/uploads/2026/02/\u0e2a\u0e25\u0e47\u0e2d\u0e15-888.jpg"},"inLanguage":"th","mainEntityOfPage":{"@id":"https://fairlysouthern.com/about/#webpage"}}]}</script>
<!-- /Rank Math WordPress SEO plugin -->

<link rel='dns-prefetch' href='//fairlysouthern.com' />
<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' />
<link rel="alternate" type="application/rss+xml" title="FairlySouthern &raquo; ฟีด" href="https://fairlysouthern.com/feed/" />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://fairlysouthern.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ffairlysouthern.com%2Fabout%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://fairlysouthern.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ffairlysouthern.com%2Fabout%2F&#038;format=xml" />
<style id='wp-img-auto-sizes-contain-inline-css'></style>
<style id='wp-emoji-styles-inline-css'></style>
<style id='global-styles-inline-css'></style>
























<script src="https://fairlysouthern.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js" data-rocket-defer defer></script>
<script src="https://fairlysouthern.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js" data-rocket-defer defer></script>
<link rel="https://api.w.org/" href="https://fairlysouthern.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://fairlysouthern.com/wp-json/wp/v2/pages/168" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://fairlysouthern.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.9.4" />
<link rel='shortlink' href='https://fairlysouthern.com/?p=168' />
<meta name="generator" content="Elementor 3.35.5; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
			<style></style>
			<link rel="icon" href="https://fairlysouthern.com/wp-content/uploads/2026/02/cropped-cropped-FS-2-192x192-1-32x32.png" sizes="32x32" />
<link rel="icon" href="https://fairlysouthern.com/wp-content/uploads/2026/02/cropped-cropped-FS-2-192x192-1-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://fairlysouthern.com/wp-content/uploads/2026/02/cropped-cropped-FS-2-192x192-1-180x180.png" />
<meta name="msapplication-TileImage" content="https://fairlysouthern.com/wp-content/uploads/2026/02/cropped-cropped-FS-2-192x192-1-270x270.png" />
<noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript><style id="wpr-lazyload-bg-container"></style><style id="wpr-lazyload-bg-exclusion"></style>
<noscript>
<style id="wpr-lazyload-bg-nostyle">.warning-wpcp{--wpr-bg-9a8a8afa-8e06-4681-9283-76c839f7143b: url('https://mlohymbk5nwu.i.optimole.com/cb:gUcq.6db/w:auto/h:auto/q:mauto/f:best/https://fairlysouthern.com/wp-content/plugins/wccp-pro/images/warning.png');}.success-wpcp{--wpr-bg-48dfe6c2-f959-4060-b5dc-2ebb6a2801ce: url('https://mlohymbk5nwu.i.optimole.com/cb:gUcq.6db/w:auto/h:auto/q:mauto/f:best/https://fairlysouthern.com/wp-content/plugins/wccp-pro/images/success.png');}</style>
</noscript>
<script type="application/javascript">const rocket_pairs = [{"selector":".warning-wpcp","style":".warning-wpcp{--wpr-bg-9a8a8afa-8e06-4681-9283-76c839f7143b: url('https:\/\/mlohymbk5nwu.i.optimole.com\/cb:gUcq.6db\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/fairlysouthern.com\/wp-content\/plugins\/wccp-pro\/images\/warning.png');}","hash":"9a8a8afa-8e06-4681-9283-76c839f7143b","url":"https:\/\/mlohymbk5nwu.i.optimole.com\/cb:gUcq.6db\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/fairlysouthern.com\/wp-content\/plugins\/wccp-pro\/images\/warning.png"},{"selector":".success-wpcp","style":".success-wpcp{--wpr-bg-48dfe6c2-f959-4060-b5dc-2ebb6a2801ce: url('https:\/\/mlohymbk5nwu.i.optimole.com\/cb:gUcq.6db\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/fairlysouthern.com\/wp-content\/plugins\/wccp-pro\/images\/success.png');}","hash":"48dfe6c2-f959-4060-b5dc-2ebb6a2801ce","url":"https:\/\/mlohymbk5nwu.i.optimole.com\/cb:gUcq.6db\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/fairlysouthern.com\/wp-content\/plugins\/wccp-pro\/images\/success.png"}]; const rocket_excluded_pairs = [];</script><meta name="generator" content="WP Rocket 3.20.4" data-wpr-features="wpr_lazyload_css_bg_img wpr_remove_unused_css wpr_defer_js wpr_minify_js wpr_lazyload_images wpr_lazyload_iframes wpr_preconnect_external_domains wpr_oci wpr_minify_css wpr_preload_links wpr_desktop" /></head>
<body class="wp-singular page-template-default page page-id-168 wp-embed-responsive wp-theme-hello-elementor hello-elementor-default elementor-default elementor-kit-11 elementor-page elementor-page-168">


<a class="skip-link screen-reader-text" href="#content">Skip to content</a>

		<header  data-elementor-type="header" data-elementor-id="81" class="elementor elementor-81 elementor-location-header" data-elementor-post-type="elementor_library">
					<section class="elementor-section elementor-top-section elementor-element elementor-element-ca99f5a elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ca99f5a" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
						<div  class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fa7e28b" data-id="fa7e28b" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-61c075c elementor-widget__width-initial elementor-view-default elementor-widget elementor-widget-icon" data-id="61c075c" data-element_type="widget" data-e-type="widget" data-widget_type="icon.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-wrapper">
			<div class="elementor-icon">
			<i aria-hidden="true" class="fab fa-facebook-f"></i>			</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-3473a03 elementor-widget__width-initial elementor-view-default elementor-widget elementor-widget-icon" data-id="3473a03" data-element_type="widget" data-e-type="widget" data-widget_type="icon.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-wrapper">
			<div class="elementor-icon">
			<i aria-hidden="true" class="fab fa-instagram"></i>			</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-a02731a elementor-widget__width-initial elementor-view-default elementor-widget elementor-widget-icon" data-id="a02731a" data-element_type="widget" data-e-type="widget" data-widget_type="icon.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-wrapper">
			<div class="elementor-icon">
			<i aria-hidden="true" class="fab fa-pinterest-p"></i>			</div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-061aa73 elementor-hidden-desktop elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="061aa73" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
						<div  class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-bf4c79c" data-id="bf4c79c" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-95b432e elementor-widget-mobile__width-initial elementor-view-default elementor-widget elementor-widget-icon" data-id="95b432e" data-element_type="widget" data-e-type="widget" data-widget_type="icon.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-wrapper">
			<div class="elementor-icon">
			<i aria-hidden="true" class="fab fa-facebook-f"></i>			</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-f32fadf elementor-widget-mobile__width-initial elementor-view-default elementor-widget elementor-widget-icon" data-id="f32fadf" data-element_type="widget" data-e-type="widget" data-widget_type="icon.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-wrapper">
			<div class="elementor-icon">
			<i aria-hidden="true" class="fab fa-instagram"></i>			</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-53d4b25 elementor-widget-mobile__width-initial elementor-view-default elementor-widget elementor-widget-icon" data-id="53d4b25" data-element_type="widget" data-e-type="widget" data-widget_type="icon.default">
				<div class="elementor-widget-container">
							<div class="elementor-icon-wrapper">
			<div class="elementor-icon">
			<i aria-hidden="true" class="fab fa-pinterest-p"></i>			</div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section  class="elementor-section elementor-top-section elementor-element elementor-element-f0b6072 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f0b6072" data-element_type="section" data-e-type="section">
						<div  class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-43a2862" data-id="43a2862" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-abf2dd4 elementor-widget elementor-widget-heading" data-id="abf2dd4" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<p class="elementor-heading-title elementor-size-default"><a href="https://fairlysouthern.com/">Fairly Southern</a></p>				</div>
				</div>
				<div class="elementor-element elementor-element-ca53273 elementor-widget elementor-widget-text-editor" data-id="ca53273" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: center;">Welcome to my fair trade, eco-friendly, socially conscious front porch</p>								</div>
				</div>
				<div class="elementor-element elementor-element-554c978 elementor-nav-menu__align-center 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="554c978" data-element_type="widget" data-e-type="widget" data-settings="{&quot;layout&quot;:&quot;horizontal&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;i class=\&quot;fas fa-caret-down\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;\/i&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}" data-widget_type="nav-menu.default">
				<div class="elementor-widget-container">
								<nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade">
				<ul id="menu-1-554c978" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-44"><a href="https://fairlysouthern.com/" class="elementor-item">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-45"><a href="#" class="elementor-item elementor-item-anchor">About</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-65"><a href="#" class="elementor-sub-item elementor-item-anchor">About</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-46"><a href="#" class="elementor-sub-item elementor-item-anchor">Contact</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-47"><a href="#" class="elementor-sub-item elementor-item-anchor">Privacy, Terms, &#038; Disclaimers</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-48"><a href="#" class="elementor-item elementor-item-anchor">Fair Trade &#038; Ethically Made</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-66"><a href="#" class="elementor-sub-item elementor-item-anchor">Fair Trade &#038; Ethically Made</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-49"><a href="#" class="elementor-sub-item elementor-item-anchor">Ethical Fashion</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-50"><a href="#" class="elementor-sub-item elementor-item-anchor">Ehtical Product Reviews</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-51"><a href="#" class="elementor-item elementor-item-anchor">Sustainable Living</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-67"><a href="#" class="elementor-sub-item elementor-item-anchor">Sustainable Living</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-52"><a href="#" class="elementor-sub-item elementor-item-anchor">Clean Beauty</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53"><a href="#" class="elementor-sub-item elementor-item-anchor">Sustainable Fashion</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-54"><a href="#" class="elementor-sub-item elementor-item-anchor">Sustainable Product Reviews</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-55"><a href="#" class="elementor-sub-item elementor-item-anchor">Zero Waste</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-56"><a href="#" class="elementor-item elementor-item-anchor">Social Justice</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-57"><a href="#" class="elementor-item elementor-item-anchor">The South</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68"><a href="#" class="elementor-sub-item elementor-item-anchor">The South</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-58"><a href="#" class="elementor-sub-item elementor-item-anchor">Southern Life</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-59"><a href="#" class="elementor-sub-item elementor-item-anchor">Southerner Spotlight</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-60"><a href="#" class="elementor-sub-item elementor-item-anchor">Southern Traditions</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-61"><a href="#" class="elementor-item elementor-item-anchor">Small Joys</a></li>
</ul>			</nav>
					<div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false">
			<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>		</div>
					<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
				<ul id="menu-2-554c978" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-44"><a href="https://fairlysouthern.com/" class="elementor-item" tabindex="-1">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-45"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">About</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-65"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">About</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-46"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Contact</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-47"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Privacy, Terms, &#038; Disclaimers</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-48"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Fair Trade &#038; Ethically Made</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-66"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Fair Trade &#038; Ethically Made</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-49"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Ethical Fashion</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-50"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Ehtical Product Reviews</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-51"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Sustainable Living</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-67"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Sustainable Living</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-52"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Clean Beauty</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-53"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Sustainable Fashion</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-54"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Sustainable Product Reviews</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-55"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Zero Waste</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-56"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Social Justice</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-57"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">The South</a>
<ul class="sub-menu elementor-nav-menu--dropdown">
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-68"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">The South</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-58"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Southern Life</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-59"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Southerner Spotlight</a></li>
	<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-60"><a href="#" class="elementor-sub-item elementor-item-anchor" tabindex="-1">Southern Traditions</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-61"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Small Joys</a></li>
</ul>			</nav>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</header>
		
<main  id="content" class="site-main post-168 page type-page status-publish has-post-thumbnail hentry">

	
	<div  class="page-content">
				<div  data-elementor-type="wp-page" data-elementor-id="168" class="elementor elementor-168" data-elementor-post-type="page">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-6e934e8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6e934e8" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0ab7866" data-id="0ab7866" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6f728d0 elementor-widget elementor-widget-image" data-id="6f728d0" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://drg888.com/app/" target="_blank" rel="noopener">
							<img fetchpriority="high" decoding="async" width="828" height="124" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20828%20124'%3E%3C/svg%3E" class="attachment-full size-full wp-image-156" alt="สมัครสมาชิก" data-lazy-src="https://fairlysouthern.com/wp-content/uploads/2026/02/สมัครสมาชิก.gif" /><noscript><img fetchpriority="high" decoding="async" width="828" height="124" src="https://fairlysouthern.com/wp-content/uploads/2026/02/สมัครสมาชิก.gif" class="attachment-full size-full wp-image-156" alt="สมัครสมาชิก" /></noscript>								</a>
															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-8cd5166 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8cd5166" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-0569c8e" data-id="0569c8e" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7eacc7e elementor-widget elementor-widget-image" data-id="7eacc7e" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="150" height="150" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20150'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail wp-image-158" alt="สล็อต 888" data-lazy-srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-150x150.jpg 150w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-300x300.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888.jpg 500w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-lazy-src="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-150x150.jpg" /><noscript><img decoding="async" width="150" height="150" src="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-image-158" alt="สล็อต 888" srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-150x150.jpg 150w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-300x300.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888.jpg 500w" sizes="(max-width: 150px) 100vw, 150px" /></noscript>															</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-d2d98b5" data-id="d2d98b5" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-0a07634 elementor-widget elementor-widget-image" data-id="0a07634" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="150" height="150" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20150'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail wp-image-159" alt="สล็อต888" data-lazy-srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888-150x150.jpg 150w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888-300x300.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888.jpg 500w" data-lazy-sizes="(max-width: 150px) 100vw, 150px" data-lazy-src="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888-150x150.jpg" /><noscript><img decoding="async" width="150" height="150" src="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-image-159" alt="สล็อต888" srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888-150x150.jpg 150w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888-300x300.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888.jpg 500w" sizes="(max-width: 150px) 100vw, 150px" /></noscript>															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-78bc27d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="78bc27d" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1e8bcff" data-id="1e8bcff" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-44383a4 elementor-widget elementor-widget-heading" data-id="44383a4" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h1 class="elementor-heading-title elementor-size-default">สล็อต888 สล็อตเว็บตรง ไม่ผ่านเอเย่นต์ เว็บสล็อตแตกง่าย มาแรง 2026</h1>				</div>
				</div>
				<div class="elementor-element elementor-element-581fae0 elementor-widget elementor-widget-text-editor" data-id="581fae0" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><span style="color: #000000;"><a style="color: #000000;" href="https://fairlysouthern.com/about/">สล็อต888</a></span> เว็บตรง ของเราเป็นเว็บใหม่ที่ได้รับความนิยมจากนัก ปั่นสล็อต มากที่สุดในตอนนี้ เรามีการออกแบบเว็บไซต์ให้ดูทันสมัยตลอดเวลา ผู้เล่นมั่นใจได้ในระบบที่ทันสมัย ปลอดภัย มาตรฐานระดับสากล มีความน่าเชื่อถือ เล่นง่าย จ่ายจริง ผู้เล่นคนไหนกำลังมองหา เว็บสล็อตแตกหนัก เล่นกับเราไม่มีผิดหวังแน่นอน เว็บสล็อต888 ของเราเป็น เว็บสล็อตใหม่ล่าสุด สำหรับผู้เล่นคนไหนที่กำลังมองหาโอกาสทำกำไรจากการ สล็อตเว็บตรง ของเราตอบโจทย์ที่สุดแล้วเนื่องจากเรามีเกมแตกง่าย แตกหนัก แตกทุกวัน ทุกเวลา ไม่ว่าจะเวลาไหน ก็สัมผัสประสบการณ์ สล็อตแตกง่าย ได้ทุกที่ทุกเวลา สล็อต888แตกง่าย รอให้ผู้เล่นสมัครสมาชิกมาเล่นกับเราอยู่นะ ไม่ว่าจะผู้เล่นใหม่หรือผู้เล่นที่มีประสบการณ์ เว็บสล็อตเว็บตรง แตกดี ของเรายินดีต้อนรับผู้เล่นทุกคน สำหรับผู้เล่นที่ยังไม่แน่ใจว่าสล็อตแตกจริงไหม? ไม่ต้องลังเล เว็บของเราโอกาสสล็อต แตกสูงกว่าเว็บตรงอื่นๆ แน่นอน</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-2049f9b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2049f9b" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-70c1338" data-id="70c1338" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-269cc4e elementor-toc--minimized-on-tablet elementor-widget elementor-widget-table-of-contents" data-id="269cc4e" data-element_type="widget" data-e-type="widget" data-settings="{&quot;exclude_headings_by_selector&quot;:[],&quot;no_headings_message&quot;:&quot;No headings were found on this page.&quot;,&quot;headings_by_tags&quot;:[&quot;h2&quot;,&quot;h3&quot;,&quot;h4&quot;,&quot;h5&quot;,&quot;h6&quot;],&quot;marker_view&quot;:&quot;numbers&quot;,&quot;minimize_box&quot;:&quot;yes&quot;,&quot;minimized_on&quot;:&quot;tablet&quot;,&quot;hierarchical_view&quot;:&quot;yes&quot;,&quot;min_height&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;min_height_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;min_height_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}" data-widget_type="table-of-contents.default">
				<div class="elementor-widget-container">
									<div class="elementor-toc__header">
						<h4 class="elementor-toc__header-title">
				สารบัญ			</h4>
										<div class="elementor-toc__toggle-button elementor-toc__toggle-button--expand" role="button" tabindex="0" aria-controls="elementor-toc__269cc4e" aria-expanded="true" aria-label="Open table of contents"><i aria-hidden="true" class="fas fa-chevron-down"></i></div>
				<div class="elementor-toc__toggle-button elementor-toc__toggle-button--collapse" role="button" tabindex="0" aria-controls="elementor-toc__269cc4e" aria-expanded="true" aria-label="Close table of contents"><i aria-hidden="true" class="fas fa-chevron-up"></i></div>
					</div>
				<div id="elementor-toc__269cc4e" class="elementor-toc__body">
			<div class="elementor-toc__spinner-container">
				<i class="elementor-toc__spinner eicon-animation-spin eicon-loading" aria-hidden="true"></i>			</div>
		</div>
						</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-0605d7b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="0605d7b" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-d0d8031" data-id="d0d8031" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-38a690a elementor-widget elementor-widget-heading" data-id="38a690a" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">สล็อต888 คืออะไร ? ทำไมถึงนิยมเล่น</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-a39fdba elementor-widget elementor-widget-text-editor" data-id="a39fdba" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>สล็อต888 คือเว็บที่ให้บริการเกมสล็อตออนไลน์ครบวงจรมากที่สุดในตอนนี้ ซึ่งได้รวบรวมเกมสล็อตที่มีประสิทธิภาพสูงอย่างมากในเว็บเดียว ถือได้ว่าเป็น สล็อตเว็บตรง 888 ที่ผู้เล่นให้ความสนใจมากที่สุดในตอนนี้ สล็อต888เว็บตรง นอกจากจะให้บริการเกมสล็อตที่ครบวงจรแล้ว ยังให้บริการเกมอื่นๆ อีกมากมาย เช่น บาคาร่า แทงบอล รูเล็ต เป็นต้น สิ่งเหล่านี้ได้ถูกรวมไว้ในที่ที่เดียวทำให้ผู้เล่นนิยมที่จะเข้ามาเดิมพันกับ เว็บสล็อต888 และยังเดิมพันได้แบบง่ายๆ โดยที่ไม่ต้องโยกกระเป๋าเงินให้ยุ่งยาก อีกทั้งยังมีทีมงานที่คอยให้บริการตลอด 24 ชั่วโมง</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-7e58193 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7e58193" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7c637b8" data-id="7c637b8" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-1e2d323 elementor-widget elementor-widget-heading" data-id="1e2d323" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">ทำไมต้องเลือก สล็อต888 เกมสล็อตลิขสิทธิ์แท้ จ่ายจริง</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-00c46ec elementor-widget elementor-widget-text-editor" data-id="00c46ec" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>สล็อต888 ได้รับความสนใจจากนักพนันมากขึ้นเรื่อยๆ มี เกมสล็อตลิขสิทธิ์แท้ ที่ให้บริหารจากค่ายผู้พัฒนาโดยตรง ปลอดภัย เชื่อถือได้จริง เราไม่มีการแก้ไขหรือปรับอัตราการแพ้ชนะในเกม สล็อต 888 เว็บตรง ของเราไม่ผ่านเอเย่นต์ การดำเนินงานบนเว็บไซต์ทุกอย่างปลอดภัย โปร่งใส ไม่มีการแทรกแซงจากบุคคลอื่น สล็อตออนไลน์ ลิขสิทธิ์แท้ จากค่ายเกมชั้นนำ มั่นใจได้ว่าเราไม่มีการปรับหรือดัดแปลงอัตราชนะของ เกมสล็อตเว็บตรง 888 จากค่ายต่างๆ แน่นอน เว็บไซต์ของเรา สล็อต888 pg เว็บตรง แตกหนัก ใหม่ล่าสุด จ่ายจริง หากมาเล่นกับเรา มั่นใจได้ว่าผู้เล่นจะได้รับประสบการณ์ที่ราบรื่น ปลอดภัยอย่างแน่นอน</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-c542369 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="c542369" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-08b1ca9" data-id="08b1ca9" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5b28d52 elementor-widget elementor-widget-image" data-id="5b28d52" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="1080" height="450" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%20450'%3E%3C/svg%3E" class="attachment-full size-full wp-image-160" alt="สล็อต888เว็บตรง" data-lazy-srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888เว็บตรง.jpg 1080w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888เว็บตรง-300x125.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888เว็บตรง-1024x427.jpg 1024w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888เว็บตรง-768x320.jpg 768w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888เว็บตรง.jpg" /><noscript><img loading="lazy" decoding="async" width="1080" height="450" src="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888เว็บตรง.jpg" class="attachment-full size-full wp-image-160" alt="สล็อต888เว็บตรง" srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888เว็บตรง.jpg 1080w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888เว็บตรง-300x125.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888เว็บตรง-1024x427.jpg 1024w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต888เว็บตรง-768x320.jpg 768w" sizes="(max-width: 1080px) 100vw, 1080px" /></noscript>															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-8fca0a6 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8fca0a6" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f7816b3" data-id="f7816b3" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7013741 elementor-widget elementor-widget-heading" data-id="7013741" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">สล็อต888 เว็บตรง ฝาก-ถอน Auto รวดเร็ว ภายใน 5 นาที</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-4904579 elementor-widget elementor-widget-text-editor" data-id="4904579" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>หากผู้เล่นกำลังมองหา สล็อต888 เว็บตรง ไม่ผ่านเอเย่นต์ ไม่มี ขั้นต่ำ ที่ให้บริการแบบครบวงจร สล็อต888เว็บตรง เป็นตัวเลือกที่ดีที่สุดแล้ว เรามีระบบฝาก-ถอน Auto รวดเร็ว ภายใน 5 นาที ไม่ต้องกังวลเรื่องการโดนโกง เราเป็นเว็บตรงที่มีมาตรฐานระดับสากล ฝากเงินได้ รวดเร็ว ปลอดภัย ไม่ต้องแจ้งสลิป ทำรายการกับเว็บไซต์ สล็อต888 ได้โดยตรง ไม่ต้องรอการอนุมัติ โอนเข้าบัญชีที่เรากำหนด รอเงินเข้ายูสไม่นาน ภายใน 5 นาที ปั่นสล็อตได้เลย ไม่ต้องรอนาน การถอนเองก็ทำได้ง่าย กรอกจำนวนที่ต้องการถอน เว็บไซต์จะโอนเงินเข้าบัญชีผู้เล่นในทันที สะดวกรวดเร็ว ไม่ล่าช้า จ่ายจริงทุกยอด ถอนได้ตั้งแต่หลัก 100 บาท ถึงหลัก 1,000,000 บาท กันเลย เล่นกับเรามีแต่ได้กับได้ หากมองหาเว็บตรงที่มีขั้นตอนการฝาก-ถอนที่ไม่ยุ่งยาก slot888 เว็บตรง ของเรายินดีให้บริการ</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-f2b9f03 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f2b9f03" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-26325ee" data-id="26325ee" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7b67f1f elementor-widget elementor-widget-heading" data-id="7b67f1f" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">สล็อต888เว็บตรง เล่นสล็อตผ่านมือถือ รองรับทุกการใช้งาน</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-88ad316 elementor-widget elementor-widget-text-editor" data-id="88ad316" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>สล็อต888 เราให้บริการผู้เล่นอย่างจริงใจและทั่วถึง สามารถเข้าร่วมสนุกกับเราได้ง่ายๆ ผ่านโทรศัพท์มือถือทั้งระบบ iOS และ Android ไม่ว่าจะเป็นรุ่นไหนก็สามารถเข้าเล่นได้ เพลิดเพลินไปกับ สล็อต888เว็บตรง ที่คุณภาพสูง เกมไม่ลดประสิทธิภาพ ภาพชัด เสียงเร้าใจ ไม่ต้องโหลดแอพให้ยุ่งยาก สามารถเข้าใช้งาน สล็อต 888 ได้ง่ายๆ ผ่านลิ้งหน้าเว็บไซต์ นอกจากนี้เรายังรองรับการใช้งานทั้ง แท็ปเล็ตและคอมพิวเตอร์อีกด้วย ผู้เล่นสามารถเข้าร่วมสนุกกับ สล็อตเว็บตรง888 ได้ตลอด 24 ชั่วโมง ไม่มีปิด</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-47163aa elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="47163aa" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-00babe3" data-id="00babe3" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-f5494f6 elementor-widget elementor-widget-heading" data-id="f5494f6" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">สล็อต888 เว็บตรงไม่ผ่านเอเย่นต์ 100% ทุนน้อยก็ปั่นสล็อตได้ เริ่มต้น เบท 1 บาท</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-f9a5b41 elementor-widget elementor-widget-text-editor" data-id="f9a5b41" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>เว็บสล็อต 888 เว็บตรง ทุนน้อย ทุนจำกัดเล่นกับเราได้ ระบบทันสมัย ปลอดภัย มีเกมจากค่ายชั้นนำต่างๆ ลิขสิทธิ์แท้ เลือกเล่น เกมสล็อต ได้อย่างไร้กังวล หากเล่นกับเว็บไซต์ของเรา เหมาะกับผู้เล่นทุกระดับ ทั้งมือใหม่และผู้เล่นที่มีประสบการณ์ สำหรับคนที่มีทุนน้อยไม่ต้องกังวลว่าจะ ปั่นสล็อต แล้วไม่แตก หากเล่น เว็บ888สล็อต แตกได้กำไร เว็บไซต์ของเราจะจ่ายเงินให้กับผู้เล่นทุกบาทอย่างแน่นอน มั่นใจได้ ปลอดภัย ไร้การโกง 100% สล็อตเว็บตรง 888 ให้บริการโดยตรงผ่านเว็บไซต์ ไม่ผ่านเอเย่นต์ สนุกกับ slot888 ได้อย่างไร้กังวล เดิมพันเริ่มต้นเบท 1 บาท ทุนน้อยไม่ต้องกังวล 888สล็อต ได้กำไรคืนทุนแน่นอน มั่นใจได้ สำหรับใครที่มองหาโอกาสทำกำไร ด้วยทุนที่น้อยแต่ยังมีโอกาสลุ้นแตกรางวัลใหญ่ ด้วย เบท เริ่มต้น เพียง 1 บาทเท่านั้น</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-ad344bf elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ad344bf" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-53261ea" data-id="53261ea" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-5272bb5 elementor-widget elementor-widget-image" data-id="5272bb5" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="1080" height="450" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%20450'%3E%3C/svg%3E" class="attachment-full size-full wp-image-161" alt="สล็อตเว็บตรง 888" data-lazy-srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อตเว็บตรง-888.jpg 1080w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อตเว็บตรง-888-300x125.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อตเว็บตรง-888-1024x427.jpg 1024w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อตเว็บตรง-888-768x320.jpg 768w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อตเว็บตรง-888.jpg" /><noscript><img loading="lazy" decoding="async" width="1080" height="450" src="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อตเว็บตรง-888.jpg" class="attachment-full size-full wp-image-161" alt="สล็อตเว็บตรง 888" srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อตเว็บตรง-888.jpg 1080w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อตเว็บตรง-888-300x125.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อตเว็บตรง-888-1024x427.jpg 1024w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อตเว็บตรง-888-768x320.jpg 768w" sizes="(max-width: 1080px) 100vw, 1080px" /></noscript>															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-2a844de elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2a844de" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1470bf6" data-id="1470bf6" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6d547ea elementor-widget elementor-widget-heading" data-id="6d547ea" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">สล็อตเว็บตรง 888 ไม่ผ่านเอเย่นต์ ดีกว่าเว็บสล็อตทั่วไปยังไง? ไปดูกัน</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-83fc65f elementor-widget elementor-widget-text-editor" data-id="83fc65f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>ผู้เล่นหลายๆ คนอาจจะสงสัยว่า สล็อตเว็บตรง 888 ดีกว่า เว็บสล็อตทั่วไปยังไง ทำไมถึงต้องเลือกเล่นกับเรา จะพาผู้เล่นไปเจาะลึกข้อดี ความแตกต่าง ระหว่างเว็บของเรา กับเว็บที่ผ่านเอเย่นต์ มีความแตกต่างอะไรบ้าง เว็บสล็อต 888 ของเรา ให้บริการเกมออนไลน์จากผู้พัฒนาค่ายเกมโดยตรง ลิขสิทธิ์แท้ ไม่ผ่านเอเย่นต์ เข้าถึง เกมสล็อต ได้ผ่านเว็บไซต์ของเรา มั่นใจไดว่าผู้เล่นจะได้รับประสบการณ์เล่นเกมที่มีคุณภาพสูงสุด เว็บตรงไม่ผ่านเอเย่นต์ ไม่มีขั้นต่ำ ดีที่สุดแล้วในตอนนี้ เริ่มต้นเล่นเกมด้วยเบทเพียง 1 บาทเท่านั้น หากกำลังมองหาโอกาสการทำกำไรจากเกมใหม่ๆ สล็อต888แตกง่าย เว็บตรงแท้ 100% มีข้อดีต่างๆที่จะแนะนำ ว่าเราดียังไง มาดูกัน</p>								</div>
				</div>
				<div class="elementor-element elementor-element-96a962f elementor-widget elementor-widget-heading" data-id="96a962f" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">ฝาก-ถอน ออโต้ ทรูวอเลท ไม่มีขั้นต่ำ</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-9e83951 elementor-widget elementor-widget-text-editor" data-id="9e83951" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>ทรูวอเลทเป็นช่องทาง ฝาก-ถอน สะดวกปลอดภัย ผู้เล่นสามารถฝาก-ถอนเงินได้โดยไม่ต้องใช้บัญชีธนาคารเลย เหมาะสำหรับผู้เล่นที่ไม่ต้องการใช้บัญชีธนาคาร ฝากเริ่มต้นได้ตั้งแต่ 1 บาทขึ้นไป เป็นช่องทางที่ดีสำหรับผู้เล่นที่มีทุนน้อยแต่อยาก สล็อตแตกหนัก ไม่ต้องห่วงว่าเราจะไม่จ่าย เราจ่ายทุกยอดที่ผู้เล่นถอน ไม่โกง ผ่านระบบฝาก-ถอน Auto รวดเร็ว ทันใจ ภายในไม่กี่นาที ปลอดภัย 100%</p>								</div>
				</div>
				<div class="elementor-element elementor-element-38aba26 elementor-widget elementor-widget-heading" data-id="38aba26" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">รวมเกมสล็อต จากค่ายระดับโลก ลิขสิทธิ์แท้</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-b429422 elementor-widget elementor-widget-text-editor" data-id="b429422" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>สล็อตเว็บตรง 888 ทางเข้า ให้บริการเกมสล็อตออนไลน์ จากผู้พัฒนาชั้นนำระดับโลก ลิขสิทธิ์แท้ เกมมีมาตรฐานสูง มั่นใจได้ ไม่มีการปรับแต่งอัตราการแพ้ชนะ ด้วยเกมที่หลากหลายจากค่ายต่างๆ ไม่ต้องกังวลว่าเกมสล็อตจะไม่แตก ไม่อยากพลาดโอกาสแจ็คพอตแตก เล่นกับเราเป็นทางเลือกที่ ดีที่สุดแล้วในตอนนี้</p>								</div>
				</div>
				<div class="elementor-element elementor-element-6f3bf3c elementor-widget elementor-widget-heading" data-id="6f3bf3c" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">เพลิดเพลินไปกับเกมสล็อตใหม่ๆ ได้เสมอ</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-36c68dd elementor-widget elementor-widget-text-editor" data-id="36c68dd" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>หากไม่อยากพลาดเกมสล็อตใหม่ๆ สล็อต888 อัปเดตเกมที่ไม่ซ้ำใครทุกสัปดาห์ เกมลิขสิทธิ์แท้สนุกได้ไม่ซ้ำใคร สล็อตแตกง่าย ทุกครั้งที่เล่นกับเรา มีโอกาสแตกโบนัสแจ็คพอตอยู่เสมอ เว็บของเราไม่มีการปรับอัตราการแพ้ชนะ ยุติธรรมสำหรับผู้เล่นทุกคน มีโอกาสทำกำไรได้มหาศาลทุกวัน ทุกเวลา</p>								</div>
				</div>
				<div class="elementor-element elementor-element-29d4fce elementor-widget elementor-widget-heading" data-id="29d4fce" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">API แท้ จากต่างประเทศ</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-4988b0a elementor-widget elementor-widget-text-editor" data-id="4988b0a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>เว็บสล็อต888 อัปเดต API ใหม่อยู่เสมอ เพื่อให้ผู้เล่นได้รับประสบการณ์ที่ราบรื่น ไม่สะดุด ระบบ API ใหม่มีความปลอดภัย เล่นเกมได้อย่างไม่ต้องกังวล ช่วยเพิ่มความมั่นใจให้กับผู้เล่นทุกครั้งเมื่อเข้ามาเล่นเว็บไซต์ของเรา API ของแท้ ไม่มีปัญหาในด้าน ความปลอดภัยแน่นอน 100% มั่นใจได้ เราไม่มีการดัดแปลงอัตราการแพ้ชนะของเกมใดๆทั้งสิ้น ยุติธรรม ไม่โกงอย่างแน่นอน</p>								</div>
				</div>
				<div class="elementor-element elementor-element-7842163 elementor-widget elementor-widget-heading" data-id="7842163" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">มียูสเดียวเล่นได้ครบทุกเกมสล็อต</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-8374c16 elementor-widget elementor-widget-text-editor" data-id="8374c16" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>มีแค่ยูสเดียวเล่นเกมบนเว็บไซต์ สล็อตเว็บตรง888 แตกง่าย ได้ครบทุกค่ายเกม ไม่ต้องมานั่งโยกเงินให้วุ่นวาย เราได้รวมเกมสล็อตไว้ในเว็บในเว็บไซต์ ให้ผู้เล่นได้เลือกเล่นได้หลากหลาย ครบจบ ในที่เดียว ไม่ต้องกังวลว่าจะไม่มีเกมสล็อตที่ผู้เล่นชื่นชอบทุกสไตล์การเล่น เหมาะกับผู้เล่นทุกประเภท ชอบความเสี่ยงน้อย ชอบความเสี่ยงสูง เรามีหมด เลือกปั่น สล็อตแตกหนักแตกง่าย ไว้ใจ เว็บสล็อต888 ได้เลย</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-7721882 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7721882" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-dcfe5a9" data-id="dcfe5a9" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-b0b3b43 elementor-widget elementor-widget-heading" data-id="b0b3b43" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">สมัครสมาชิกกับ สล็อต888 เว็บตรง100% ทำยังไง</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-24be329 elementor-widget elementor-widget-text-editor" data-id="24be329" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<ul><li>คลิกสมัครสมาชิก</li><li>กรอกข้อมูลที่จำเป็น เช่น ชื่อ นามสกุล เบอร์โทรศัพท์ ข้อมูลธนาคาร</li><li>ทำการตั้งค่ารหัสผ่าน เว็บไซต์จะส่ง OTP ให้ แล้วกดยืนยัน</li><li>ฝากเงินเข้าหน้าเว็บไซต์ แล้วเริ่มใช้บริการได้ทันที</li></ul>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-ba4b05b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ba4b05b" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-af7c6ea" data-id="af7c6ea" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6ec1d6f elementor-widget elementor-widget-image" data-id="6ec1d6f" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://drg888.com/app/" target="_blank" rel="noopener">
							<img fetchpriority="high" decoding="async" width="828" height="124" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20828%20124'%3E%3C/svg%3E" class="attachment-full size-full wp-image-156" alt="สมัครสมาชิก" data-lazy-src="https://fairlysouthern.com/wp-content/uploads/2026/02/สมัครสมาชิก.gif" /><noscript><img fetchpriority="high" decoding="async" width="828" height="124" src="https://fairlysouthern.com/wp-content/uploads/2026/02/สมัครสมาชิก.gif" class="attachment-full size-full wp-image-156" alt="สมัครสมาชิก" /></noscript>								</a>
															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-4387634 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4387634" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1a9c49a" data-id="1a9c49a" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-603c1e7 elementor-widget elementor-widget-image" data-id="603c1e7" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="1080" height="450" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%20450'%3E%3C/svg%3E" class="attachment-full size-full wp-image-155" alt="เว็บสล็อต 888" data-lazy-srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/เว็บสล็อต-888.jpg 1080w, https://fairlysouthern.com/wp-content/uploads/2026/02/เว็บสล็อต-888-300x125.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/เว็บสล็อต-888-1024x427.jpg 1024w, https://fairlysouthern.com/wp-content/uploads/2026/02/เว็บสล็อต-888-768x320.jpg 768w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://fairlysouthern.com/wp-content/uploads/2026/02/เว็บสล็อต-888.jpg" /><noscript><img loading="lazy" decoding="async" width="1080" height="450" src="https://fairlysouthern.com/wp-content/uploads/2026/02/เว็บสล็อต-888.jpg" class="attachment-full size-full wp-image-155" alt="เว็บสล็อต 888" srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/เว็บสล็อต-888.jpg 1080w, https://fairlysouthern.com/wp-content/uploads/2026/02/เว็บสล็อต-888-300x125.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/เว็บสล็อต-888-1024x427.jpg 1024w, https://fairlysouthern.com/wp-content/uploads/2026/02/เว็บสล็อต-888-768x320.jpg 768w" sizes="(max-width: 1080px) 100vw, 1080px" /></noscript>															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-5a8ec27 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5a8ec27" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e0c7297" data-id="e0c7297" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a1d33e3 elementor-widget elementor-widget-heading" data-id="a1d33e3" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">แนะนำ 5 ค่ายเกมสล็อต มีอะไรบ้าง? รวมทุกค่ายใน สล็อต888 เว็บตรง</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-2c12e2d elementor-widget elementor-widget-text-editor" data-id="2c12e2d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>เว็บสล็อต888เว็บตรง ให้บริการเกมโดยตรงจากค่ายผู้พัฒนา ไม่ผ่านเอเย่นต์ รวมเกมสล็อตจากค่ายชั้นนำไว้ที่เดียว มีค่ายเกมสล็อตมากมาย ส่งตรงจากค่ายต่างประเทศ แต่ละค่าย มีจุดเด่นที่แตกต่างกันไป ฟีเจอร์ที่ช่วยให้มีโอกาสชนะสูง ผู้เล่นคนไหนกำลังมองหาโอกาสสล็อตแตกโบนัสใหญ่ เว็บของเราได้รับการยอมรับจากผู้เล่น สล็อตแตกง่าย แตกหนัก ไม่หลอกลวง ไม่มีการปรับอัตราการแพ้ชนะในยุติธรรม โปร่งใส 100% กับผู้เล่นทุกคน หากไม่อยากพลาดโอกาสดีๆในการทำกำไรจากการ ปั่นสล็อตเว็บตรง เว็บของเรามีค่ายเกมอะไรบ้างที่แตกง่าย แตกหนัก ไปดูกันเลย</p>								</div>
				</div>
				<div class="elementor-element elementor-element-f08f9af elementor-widget elementor-widget-heading" data-id="f08f9af" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">1. PG SLOT</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-fb90e44 elementor-widget elementor-widget-text-editor" data-id="fb90e44" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>สล็อต888 pg อันดับ 1 นำเสนอเกม 3D เน้นพัฒนาให้มีกราฟิกที่สวยงาม มีฟีเจอร์แปลกใหม่ เกมสล็อตมีความเสถียรสูง มาทำความรู้จักกับค่าย PG SLOT 888 ให้มากขึ้นกัน ว่ามีจุดเด่น วิธีการเล่น และเทคนิคต่างๆ ที่ใช้ได้จริงค่ายนี้ สล็อต 888 pg เป็นค่ายที่ก่อตั้งในปี 2015 เน้นพัฒนาให้มีคุณภาพสูง ด้วยทีมงานมืออาชีพ มีความเชี่ยวชาญ สามารถพัฒนาเกมให้ได้รับความนิยมอย่างต่อเนื่อง เกมของ เว็บสล็อตแท้ pg มีกราฟิกคมชัดระดับ HD ออกแบบตัวละครที่มีเอกลักษณ์เฉพาะตัว ระบบเกมลื่นไหล มอบประสบการณ์เล่นที่สมจริง เล่นได้ทั้งบน คอม และ มือถือ ไม่มีการลดสเปค ลื่นไหลทุกอุปกรณ์มาพร้อม ฟีเจอร์ที่น่าสนใจเช่น ตัวคูณ, รีสปิน, ฟรีสปิน, และมีเกมที่แจ็คพอตแตกง่ายอีกด้วย มีเกมให้เลือกเล่นหลายประเภท เช่น ผจญภัย, วัฒนธรรม, ประวัติศาสตร์, นิทาน, และภาพยนต์ต่างๆ เว็บสล็อต pg เกมสล็อตมีค่า RTP ที่สูง ระบบเกมมีความยุติธรรม</p>								</div>
				</div>
				<div class="elementor-element elementor-element-06fdd41 elementor-widget elementor-widget-heading" data-id="06fdd41" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">2. JOKER GAMING</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-147951d elementor-widget elementor-widget-text-editor" data-id="147951d" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>เกมสล็อตจากค่าย โจ๊กเกอร์888 ได้รับความนิยมอย่างล้นหลาม มีคุณภาพสูง ระบบเกมเสถียร จะพาไปรู้จักกับ โจ๊กเกอร์888 อย่างละเอียดกัน ว่าเกมค่ายนี้ดียังไง เป็นค่ายที่ออกแบบเกม มีกราฟิกที่สวย ระบบการเล่นสุดเร้าใจ ลื่นไหลไปตามนิ้วกด มีเกมสล็อตหลากหลายประเภท ตั้งแต่ แบบคลาสสิก ไปจนถึง สล็อตโปรเกรสซีฟ ที่มีแจ็คพอต มูลค่าหลายล้านบาท เล่นได้ทั้งบน คอม และ มือถือ สล็อตโจ๊กเกอร์888 ออกแบบเกมสล็อตให้มีความสมจริง น่าเล่น และมาพร้อมฟีเจอร์ที่น่าสนใจ เช่น ฟรีสปิน, ตัวคูณ, และ แจ็คพอตเกม เกมมีค่า RTP ที่สูง ทำให้มีโอกาสแตกง่ายขึ้น มีระบบการเล่นที่ยุติธรรม โปร่งใส สำหรับผู้เล่นทุกคน</p>								</div>
				</div>
				<div class="elementor-element elementor-element-8928353 elementor-widget elementor-widget-heading" data-id="8928353" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">3. PRAGMATIC PLAY</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-48bc11a elementor-widget elementor-widget-text-editor" data-id="48bc11a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>เป็นค่ายเกมสล็อตออนไลน์ ที่ได้รับความนิยม เป็นอันดับ 3 เน้นพัฒนาเกมให้มีความทันสมัย มีคุณภาพสูง มีฟีเจอร์เกมที่น่าสนใจ ทำไม Pragmatic Play ถึงน่าสนใจมีเกมสล็อตที่ได้รับความนิยม มีธีมที่หลากหลาย มีระบบการเล่นที่ง่าย ไม่ซับซ้อน เล่นเกมสล็อตได้ทั้งบน คอมและมือถือ ไม่ดรอบกราฟิกลง เล่นได้ทุกบนอุปกรณ์อย่างราบรื่น ไม่กระตุก ไม่ค้าง ไม่พลาดโอกาสลุ้นแจ็คพอตใหญ่ ทุกเกมออกแบบมาให้ทุกการหมุนสปิน เป็นการสุ่ม 100% คาดเดาไม่ได้ มั่นใจได้ยุติธรรม เกมสล็อตแตกง่าย แตกหนัก ได้เงินจริง</p>								</div>
				</div>
				<div class="elementor-element elementor-element-5666952 elementor-widget elementor-widget-heading" data-id="5666952" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">4. JILI</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-79ab0cc elementor-widget elementor-widget-text-editor" data-id="79ab0cc" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>เกมสล็อตออนไลน์จากค่าย JILI ได้รับความนิยมอย่างมากในหมู่นักพนัน เว็บ888สล็อต มี เกมให้เลือกเล่นหลากหลาย กราฟิกสวยงาม ออกแบบระบบเกมให้มีความลื่นไหล มั่นใจได้ว่าผู้เล่นจะได้รับประสบการณ์การเล่นที่ดี JILI มีต้นกำเนิดจากประเทศจีน ค่อยๆขยายไปยังหลายประเทศทั่วโลก มีทีมงานพัฒนาระดับมืออาชีพ เน้นพัฒนาเกมออนไลน์ให้มีลักษณะเฉพาะตัว มาพร้อมฟีเจอร์ใหม่ๆ เพื่อให้ผู้เล่นได้รับประสบการณ์เล่นที่แตกต่างจากค่ายอื่นๆ เช่น โบนัสเกม, ฟรีสปิน, และแจ็คพอตที่มีมูลค่าหลายล้านบาท นำเสนอเกมสล็อตออนไลน์ที่หลากหลาย เช่น ผจญภัย, คลาสสิก, แฟนตาซี, และวัฒนธรรมจีน เลือกเล่นได้ตามสนใจ เล่นได้ไม่มีเบื่อ</p>								</div>
				</div>
				<div class="elementor-element elementor-element-f62fffb elementor-widget elementor-widget-heading" data-id="f62fffb" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">5. MICROGAMING</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-273e1d5 elementor-widget elementor-widget-text-editor" data-id="273e1d5" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>เกมสล็อตออนไลน์จาก Microgaming ได้รับความนิยมเป็นอย่างมาก เป็นค่ายเกมสล็อตที่มีชื่อเสียงที่สุดในโลก ก่อตั้งในปี 1994 ถือเป็นบริษัทแรกที่สร้างซอฟต์แวร์คาสิโนออนไลน์ มีให้เลือกเล่นหลากหลาย มีครบทุกประเภท เป็นค่ายเกมที่มีแจ็คพอตโปรเกรสซีฟที่ใหญ่ที่สุดในโลก ผู้เล่นสามารถเข้าถึง จากค่าย Microgaming ได้ง่าย มี API ที่ยืดหยุ่น สามารถเข้าเล่นเกมสล็อตออนไลน์บนแพลตฟอร์มอื่นๆ ได้อย่างราบรื่น มีมาตรฐาน คุณภาพสูง มีระบบการจ่ายรางวัลที่ยุติธรรม โปร่งใส สำหรับผู้เล่นทุกคน 100%</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-db57010 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="db57010" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a0a6380" data-id="a0a6380" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-127d47b elementor-widget elementor-widget-heading" data-id="127d47b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">สล็อต888 มีใบรับรอง มั่นใจได้ ปลอดภัย จ่ายจริง</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-ccb3319 elementor-widget elementor-widget-text-editor" data-id="ccb3319" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>สิ่งที่ทำให้ สล็อตเว็บตรง888 แตกต่างจากเว็บอื่นๆ ไม่ผ่านเอเย่นต์ ทำธุรกรรมต่างๆ ได้ผ่านเว็บไซต์ของเราโดยตรง จัดการด้านการเงินที่ดี สำหรับผู้เล่นที่ถอนเงิน เราจ่ายจริง จ่ายตรงเวลา เต็มจำนวนทุกบาท เว็บไซต์ของเรามี ใบอนุญาตจากองค์กรระดับโลก เช่น Malta Gaming Authority UK Gambling Commission และ eCOGRA รับรองได้ว่า เกมสล็อตมีความโปร่งใส ยุติธรรม ไม่มีการปรับอัตราการแพ้ชนะของเกม เว็บของเรามีการรักษาความปลอดภัยข้อมูลของผู้เล่นอย่างดี ใช้เทคโนโลยีการเข้ารหัส SSL ที่ได้มาตรฐาน เพื่อปกป้องข้อมูลส่วนตัวและข้อมูลการทำธุรกรรมต่างๆ ของผู้เล่นให้ปลอดภัย สล็อตเว็บตรง888 ตรวจสอบการเล่นเกมสล็อตบนเว็บไซต์ตลอดเวลา ผู้เล่นจะได้รับประสบการณ์เล่นเกมสล็อตที่ยุติธรรม ไม่มีการแก้ไขผลการชนะ เราจ่ายจริงทุกยอดถอน ไม่ว่าจะ 100 บาท หรือ 1,000,000 บาทเราก็ถอนให้ผู้เล่น จ่ายจริง จ่ายตรง ไว้ใจเรา</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-d4891c5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d4891c5" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ff76f23" data-id="ff76f23" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-eec2438 elementor-widget elementor-widget-image" data-id="eec2438" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
															<img decoding="async" width="1080" height="450" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201080%20450'%3E%3C/svg%3E" class="attachment-full size-full wp-image-157" alt="สล็อต 888 เว็บตรง" data-lazy-srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-เว็บตรง.jpg 1080w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-เว็บตรง-300x125.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-เว็บตรง-1024x427.jpg 1024w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-เว็บตรง-768x320.jpg 768w" data-lazy-sizes="(max-width: 1080px) 100vw, 1080px" data-lazy-src="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-เว็บตรง.jpg" /><noscript><img loading="lazy" decoding="async" width="1080" height="450" src="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-เว็บตรง.jpg" class="attachment-full size-full wp-image-157" alt="สล็อต 888 เว็บตรง" srcset="https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-เว็บตรง.jpg 1080w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-เว็บตรง-300x125.jpg 300w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-เว็บตรง-1024x427.jpg 1024w, https://fairlysouthern.com/wp-content/uploads/2026/02/สล็อต-888-เว็บตรง-768x320.jpg 768w" sizes="(max-width: 1080px) 100vw, 1080px" /></noscript>															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-54f1268 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="54f1268" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8c90984" data-id="8c90984" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a7ddf2f elementor-widget elementor-widget-heading" data-id="a7ddf2f" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">สล็อต 888 เว็บตรง แจกเครดิต 100% ทดลองเล่นสล็อตฟรี</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-2b81f00 elementor-widget elementor-widget-text-editor" data-id="2b81f00" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>สล็อต 888 เว็บตรง แจกเครดิตฟรี 100% สำหรับผู้เล่นใหม่อยาก ทดลองเล่นสล็อต เพื่อปูทางให้ผู้เล่นได้สัมผัสประสบการณ์การเล่นเกมที่สมจริง เครดิตฟรีจะแจกให้ผู้เล่น ที่สมัครสมาชิกกับเราครั้งแรกเท่านั้น เพื่อลองเล่น เกมสล็อตออนไลน์ ที่ชื่นชอบ ก่อนเริ่มเล่นสล็อตด้วยเงินทุนของตัวเอง หากผู้เล่นสล็อตด้วยเครดิตฟรี แล้วทำกำไรได้ ถอนเงินจากเครดิตฟรีได้ สัมผัสประสบการณ์ ทางเข้าสล็อต888 มีเกมสล็อตออนไลน์ให้เลือกเล่นหลากหลาย ลิขสิทธิ์แท้ พร้อมทำกำไรไว้ใจเราได้แน่นอน</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-578756a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="578756a" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-00f51ef" data-id="00f51ef" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-c2a46b2 elementor-widget elementor-widget-heading" data-id="c2a46b2" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">แนะนำ 4 เกม สล็อต888เว็บตรง ทำกำไรได้มหาศาล ปี 2026 </h2>				</div>
				</div>
				<div class="elementor-element elementor-element-bd08f6f elementor-widget elementor-widget-text-editor" data-id="bd08f6f" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>ในปี 2026 ทางเข้าสล็อต888 มีเกมสล็อตแตกหนัก จากค่ายเกมสล็อตชั้นนำที่สามารถทำกำไรได้มหาศาล ทุกคนล้วนให้ความสนใจ เว็บของเราได้รับความนิยมสูงจากผู้เล่นที่กำลังมองหากำไรจากการสล็อต เว็บของเรามีความน่าเชื่อถือ ปลอดภัย ไร้การโกง ไว้ใจได้ 100 % หากเป็นผู้เล่นที่ชื่นชอบในการปั่นสล็อต เพื่อสร้างกำไร เล่นกับเราไม่มีผิดหวังแน่นอน วันนี้จะมาแนะนำ 4 เกมสล็อตได้รับความนิยม แตกง่าย แตกหนัก โบนัสแจ็คพอตมหาศาล ที่รอให้ผู้เล่นได้รับอยู่นะ ไม่ต้องกังวลว่าจะทำกำไรไม่ได้ เล่น 4 เกมสล็อตนี้ โอกาสแตกมีสูงแน่นอน</p>								</div>
				</div>
				<div class="elementor-element elementor-element-fc965d0 elementor-widget elementor-widget-heading" data-id="fc965d0" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">1. Sushi Oishi</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-8d3f9f9 elementor-widget elementor-widget-text-editor" data-id="8d3f9f9" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>เป็นเกมสล็อตจากค่าย pg slot มีธีมเกี่ยวกับอาหารญี่ปุ่น มีกราฟิกที่น่ารักเต็มไปด้วยสีสัน มาพร้อมฟีเจอร์พิเศษที่ช่วยให้ชนะรางวัลใหญ่ได้ เช่น Free Spins, Scatter Symbols, Wild Symbols, และ Multipliers มีการออกแบบเกมให้เข้าใจง่าย ไม่ซับซ้อน เล่นง่าย มีฟีเจอร์ที่น่าสนใน ช่วยให้ผู้เล่นมีโอกาสทำกำไรได้จริง ด้วยการออกแบบ ที่เหมาะสำหรับผู้เล่นมือใหม่ และผู้เล่นที่มีประสบการณ์ หากผู้เล่นเป็นคนที่โชคดี รางวัลแจ็คพอตของเกมนี้อาจเป็นของคุณก็ได้ กำลังมองหากำไรเกมสล็อต Sushi Oishi เป็นตัวเลือกที่น่าลอง</p>								</div>
				</div>
				<div class="elementor-element elementor-element-7111780 elementor-widget elementor-widget-heading" data-id="7111780" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">2. Dragon's Luck</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-aedb04a elementor-widget elementor-widget-text-editor" data-id="aedb04a" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Dragon’s Luck มาพร้อม ค่า RTP 95.07% มีรูปแบบการเล่น 5 รีล 3 แถว พร้อม 10 เพย์ไลน์ มีความผันผวนปานกลาง มีฟรีเจอร์พิเษที่ช่วยเพิ่มโอกาสชนะ เช่น Mega Coin สัญลักษณ์ 138 และ Dragon Coin สัมผัสประสบการณ์ สล็อตแตกหนัก ได้ทุกที่ทุกเวลา ไม่มีข้อจำกัด ระบบเกมเข้าใจง่าย ไม่ซับซ้อน</p>								</div>
				</div>
				<div class="elementor-element elementor-element-cbbd362 elementor-widget elementor-widget-heading" data-id="cbbd362" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">3. Fortune Gods</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-a6d75d8 elementor-widget elementor-widget-text-editor" data-id="a6d75d8" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Fortune Gods มาพร้อม ค่า RTP 95.04% รูปแบบการเล่น 5รีล 3 แถว 15 เพย์ไลน์ มีความผันผวนปานกลาง เดิมพันเริ่มต้น เบท 1.5-1,500 บาท ทุนน้อยได้สบาย มีฟีเจอร์พิเศษ น่าสนใจ เช่น Fortune God Feature, Luck God Feature, และ Respin Feature ที่ช่วยเพิ่มโอกาสชนะรางวัลใหญ่ให้กับผู้เล่น สัมผัสความสนุก การเดิมพันสุดน่าตื่นเต้น พร้อมโอกาสชนะที่สูง</p>								</div>
				</div>
				<div class="elementor-element elementor-element-2ac1828 elementor-widget elementor-widget-heading" data-id="2ac1828" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">4. Wild West Gold</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-02df691 elementor-widget elementor-widget-text-editor" data-id="02df691" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>เป็นเกมสล็อตออนไลน์จาก Pragmatic Play พร้อมธีมคาวบอยตะวันตก รูปแบบการเล่น 5 รีล 4 แถว 40 เพย์ไลน์ มีค่า RTP สูงถึง 96.51% มี ความผันผวนสูง ชนะสูงสุด x5,000 เท่าของเงินเดิมพัน มีฟีเจอร์พิเศษที่ช่วยเพิ่มโอกาสชนะรางวัลแจ็คพอตใหญ่ ความเสี่ยงอาจจะสูง รางวัลใหญ่สุดคุ้มค่า เดิมพันได้ไร้ขีดจำกัด เดิมพันได้ตั้งแต่ เบท 6 &#8211; 3000 บาท เหมาะสำหรับผู้เล่นที่มีทุนที่สูง</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-547ac4a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="547ac4a" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2f4852f" data-id="2f4852f" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-d16a035 elementor-widget elementor-widget-heading" data-id="d16a035" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">สล็อต888 สล็อตเว็บตรง แตกง่าย แตกหนัก แตกจริง 100%</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-24a981b elementor-widget elementor-widget-text-editor" data-id="24a981b" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>สล็อต888 ได้รับการยอมรับจากผู้เล่นทุกคน เกมสล็อตลิขสิทธิ์แท้ แตกง่าย ให้บริการเกมสล็อตจากค่ายผู้พัฒนาระดับโลกโดยตรง เว็บของเราเป็น เว็บตรงแท้ 100% ไม่ผ่านเอเย่นต์ มั่นใจได้ ให้บริการเกมสล็อตออนไลน์อย่างโปร่งใส เรารวมค่ายเกมสล็อตไว้ครบจบในที่เดียว ยูสเดียวครบจบเล่นได้ทุกเกมสล็อต ไม่ต้องมานั่งโยกเงินให้เสียเวลา มีเกมสล็อตออนไลน์ที่มีแจ็คพอตใหญ่ที่แตกง่ายแตกหนัก สำหรับผู้เล่นคนไหนที่ต้องการทำกำไร หรือหาประสบการณ์เล่นใหม่ๆ เว็บสล็อตตรง 100% เรายินดีให้บริการ ไม่ว่าจะเป็นผู้เล่นสไตล์ไหน ผู้เล่นใหม่ ผู้เล่นที่มีประสบการณ์ เริ่มเล่นกับเราได้ไม่มีปัญหา เล่นกับเราไม่มีผิดหวังแน่นอน เกมสล็อตแตกง่าย แตกทุกที่ ทุกเวลา ได้กำไรติดมือแน่นอน</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-d2db0bc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d2db0bc" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-99fc9cb" data-id="99fc9cb" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-0236b49 elementor-widget elementor-widget-image" data-id="0236b49" data-element_type="widget" data-e-type="widget" data-widget_type="image.default">
				<div class="elementor-widget-container">
																<a href="https://drg888.com/app/" target="_blank" rel="noopener">
							<img fetchpriority="high" decoding="async" width="828" height="124" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20828%20124'%3E%3C/svg%3E" class="attachment-full size-full wp-image-156" alt="สมัครสมาชิก" data-lazy-src="https://fairlysouthern.com/wp-content/uploads/2026/02/สมัครสมาชิก.gif" /><noscript><img fetchpriority="high" decoding="async" width="828" height="124" src="https://fairlysouthern.com/wp-content/uploads/2026/02/สมัครสมาชิก.gif" class="attachment-full size-full wp-image-156" alt="สมัครสมาชิก" /></noscript>								</a>
															</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-2e3339f elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2e3339f" data-element_type="section" data-e-type="section">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-61e09b3" data-id="61e09b3" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-6f4da24 elementor-widget elementor-widget-heading" data-id="6f4da24" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h2 class="elementor-heading-title elementor-size-default">คำถามที่พบบ่อย เกี่ยวกับ สล็อต888</h2>				</div>
				</div>
				<div class="elementor-element elementor-element-533b02b elementor-widget elementor-widget-heading" data-id="533b02b" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">สล็อต888 ฝาก-ถอน ไม่มีขั้นต่ำจริงหรือไม่? เสียค่าธรรมเนียมหรือเปล่า?</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-300b301 elementor-widget elementor-widget-text-editor" data-id="300b301" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>ตอบ: สล็อต888 ฝาก ถอน ไม่มีขั้นต่ำ ผู้เล่นสามารถทำรายการฝากถอนเองผ่านเว็บไซต์ได้โดยตรง ไม่ผ่านเอเย่นต์ ไม่ต้องรอการยืนยันจากเจ้าหน้าที่ ทำรายการเสร็จสิ้นภายในไม่กี่นาที ไม่ต้องแจ้งสลิป</p>								</div>
				</div>
				<div class="elementor-element elementor-element-23c7da8 elementor-widget elementor-widget-heading" data-id="23c7da8" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">สล็อต888 สมัครสมาชิกยากไหม เว็บแท้หรือเปล่า? </h3>				</div>
				</div>
				<div class="elementor-element elementor-element-4f2492b elementor-widget elementor-widget-text-editor" data-id="4f2492b" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>ตอบ: เว็บสล็อต888 ของเราสมัครสมาชิกไม่ยุ่งยาก ไม่กี่ขั้นตอน เพียงแค่กรอกชื่อ นามสกุล เบอร์โทรศัพท์ และหมายเลขบัญชีธนาคารเพื่อทำธุรกรรม เพียงแค่นี้ก็สามารถทำการสมัครได้</p>								</div>
				</div>
				<div class="elementor-element elementor-element-1f4e12e elementor-widget elementor-widget-heading" data-id="1f4e12e" data-element_type="widget" data-e-type="widget" data-widget_type="heading.default">
				<div class="elementor-widget-container">
					<h3 class="elementor-heading-title elementor-size-default">สล็อต888เว็บตรง เล่นผ่านมือถือได้หรือเปล่า? เกมกระตุกไหม?</h3>				</div>
				</div>
				<div class="elementor-element elementor-element-70032c4 elementor-widget elementor-widget-text-editor" data-id="70032c4" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>ตอบ: เว็บของเราสามารถเล่นได้บนหลายอุปกรณ์ ไม่ว่าจะเป็น มือถือ คอมพิวเตอร์ แท็ปเล็ต นอกจากนี้เกมสล็อตไม่ลดกราฟิก ไม่กระตุก ทุกอย่างมาครบ ไม่ว่าจะเป็นเสียง ภาพ และความลื่นไหล มั่นใจหายห่วงได้เลยว่าราบรื่นแน่นอน</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		
		
			</div>

	
</main>

			<footer data-elementor-type="footer" data-elementor-id="89" class="elementor elementor-89 elementor-location-footer" data-elementor-post-type="elementor_library">
					<section class="elementor-section elementor-top-section elementor-element elementor-element-50f20d4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="50f20d4" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-07f03b3" data-id="07f03b3" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap">
							</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-ba3ea43" data-id="ba3ea43" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-22d8240 elementor-widget__width-initial elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="22d8240" data-element_type="widget" data-e-type="widget" data-widget_type="divider.default">
				<div class="elementor-widget-container">
							<div class="elementor-divider">
			<span class="elementor-divider-separator">
						</span>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-a2a72d6 elementor-widget__width-initial elementor-widget elementor-widget-text-editor" data-id="a2a72d6" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>ABOUT</p>								</div>
				</div>
				<div class="elementor-element elementor-element-5c5a678 elementor-widget elementor-widget-text-editor" data-id="5c5a678" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>About Fairly Southern</p>								</div>
				</div>
				<div class="elementor-element elementor-element-ed0d509 elementor-widget elementor-widget-text-editor" data-id="ed0d509" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Privacy, Terms, &amp; Disclaimers</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-87616da elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="87616da" data-element_type="section" data-e-type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-122a769" data-id="122a769" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-8cc65ba elementor-widget elementor-widget-text-editor" data-id="8cc65ba" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>Proudly powered by WordPress | Theme: Elfie by elfWP.</p>								</div>
				</div>
					</div>
		</div>
				<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-7ef855d" data-id="7ef855d" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap">
							</div>
		</div>
					</div>
		</section>
				</footer>
		
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/hello-elementor/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
			<script>
				const lazyloadRunObserver = () => {
					const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
					const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
						entries.forEach( ( entry ) => {
							if ( entry.isIntersecting ) {
								let lazyloadBackground = entry.target;
								if( lazyloadBackground ) {
									lazyloadBackground.classList.add( 'e-lazyloaded' );
								}
								lazyloadBackgroundObserver.unobserve( entry.target );
							}
						});
					}, { rootMargin: '200px 0px 200px 0px' } );
					lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
						lazyloadBackgroundObserver.observe( lazyloadBackground );
					} );
				};
				const events = [
					'DOMContentLoaded',
					'elementor/lazyload/observe',
				];
				events.forEach( ( event ) => {
					document.addEventListener( event, lazyloadRunObserver );
				} );
			</script>
			<script id="rocket-browser-checker-js-after">
"use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}();
//# sourceURL=rocket-browser-checker-js-after
</script>
<script id="rocket-preload-links-js-extra">
var RocketPreloadLinksConfig = {"excludeUris":"/(?:.+/)?feed(?:/(?:.+/?)?)?$|/(?:.+/)?embed/|/(index.php/)?(.*)wp-json(/.*|$)|/refer/|/go/|/recommend/|/recommends/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https://fairlysouthern.com","onHoverDelay":"100","rateThrottle":"3"};
//# sourceURL=rocket-preload-links-js-extra
</script>
<script id="rocket-preload-links-js-after">
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());

//# sourceURL=rocket-preload-links-js-after
</script>
<script id="rocket_lazyload_css-js-extra">
var rocket_lazyload_css_data = {"threshold":"300"};
//# sourceURL=rocket_lazyload_css-js-extra
</script>
<script id="rocket_lazyload_css-js-after">
!function o(n,c,a){function u(t,e){if(!c[t]){if(!n[t]){var r="function"==typeof require&&require;if(!e&&r)return r(t,!0);if(s)return s(t,!0);throw(e=new Error("Cannot find module '"+t+"'")).code="MODULE_NOT_FOUND",e}r=c[t]={exports:{}},n[t][0].call(r.exports,function(e){return u(n[t][1][e]||e)},r,r.exports,o,n,c,a)}return c[t].exports}for(var s="function"==typeof require&&require,e=0;e<a.length;e++)u(a[e]);return u}({1:[function(e,t,r){"use strict";{const c="undefined"==typeof rocket_pairs?[]:rocket_pairs,a=(("undefined"==typeof rocket_excluded_pairs?[]:rocket_excluded_pairs).map(t=>{var e=t.selector;document.querySelectorAll(e).forEach(e=>{e.setAttribute("data-rocket-lazy-bg-"+t.hash,"excluded")})}),document.querySelector("#wpr-lazyload-bg-container"));var o=rocket_lazyload_css_data.threshold||300;const u=new IntersectionObserver(e=>{e.forEach(t=>{t.isIntersecting&&c.filter(e=>t.target.matches(e.selector)).map(t=>{var e;t&&((e=document.createElement("style")).textContent=t.style,a.insertAdjacentElement("afterend",e),t.elements.forEach(e=>{u.unobserve(e),e.setAttribute("data-rocket-lazy-bg-"+t.hash,"loaded")}))})})},{rootMargin:o+"px"});function n(){0<(0<arguments.length&&void 0!==arguments[0]?arguments[0]:[]).length&&c.forEach(t=>{try{document.querySelectorAll(t.selector).forEach(e=>{"loaded"!==e.getAttribute("data-rocket-lazy-bg-"+t.hash)&&"excluded"!==e.getAttribute("data-rocket-lazy-bg-"+t.hash)&&(u.observe(e),(t.elements||=[]).push(e))})}catch(e){console.error(e)}})}n(),function(){const r=window.MutationObserver;return function(e,t){if(e&&1===e.nodeType)return(t=new r(t)).observe(e,{attributes:!0,childList:!0,subtree:!0}),t}}()(document.querySelector("body"),n)}},{}]},{},[1]);
//# sourceURL=rocket_lazyload_css-js-after
</script>
<script data-minify="1" src="https://fairlysouthern.com/wp-content/cache/min/1/wp-content/themes/hello-elementor/assets/js/hello-frontend.js?ver=1772789685" id="hello-theme-frontend-js" data-rocket-defer defer></script>
<script src="https://fairlysouthern.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.35.5" id="elementor-webpack-runtime-js" data-rocket-defer defer></script>
<script src="https://fairlysouthern.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.35.5" id="elementor-frontend-modules-js" data-rocket-defer defer></script>
<script src="https://fairlysouthern.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js" data-rocket-defer defer></script>
<script id="elementor-frontend-js-before">
var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.35.5","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"theme_builder_v2":true,"hello-theme-header-footer":true,"home_screen":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"cloud-library":true,"e_opt_in_v4_page":true,"e_components":true,"e_interactions":true,"e_editor_one":true,"import-export-customization":true,"e_pro_variables":true},"urls":{"assets":"https:\/\/fairlysouthern.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/fairlysouthern.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/fairlysouthern.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"bda69f9d23"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description","hello_header_logo_type":"title","hello_header_menu_layout":"horizontal","hello_footer_logo_type":"logo"},"post":{"id":168,"title":"%E0%B8%AA%E0%B8%A5%E0%B9%87%E0%B8%AD%E0%B8%95888%20%E0%B8%AA%E0%B8%A5%E0%B9%87%E0%B8%AD%E0%B8%95%E0%B9%80%E0%B8%A7%E0%B9%87%E0%B8%9A%E0%B8%95%E0%B8%A3%E0%B8%87%20%E0%B9%84%E0%B8%A1%E0%B9%88%E0%B8%9C%E0%B9%88%E0%B8%B2%E0%B8%99%E0%B9%80%E0%B8%AD%E0%B9%80%E0%B8%A2%E0%B9%88%E0%B8%99%E0%B8%95%E0%B9%8C%20%E0%B9%80%E0%B8%A7%E0%B9%87%E0%B8%9A%E0%B8%AA%E0%B8%A5%E0%B9%87%E0%B8%AD%E0%B8%95%20%E0%B8%A1%E0%B8%B2%E0%B9%81%E0%B8%A3%E0%B8%87%202026","excerpt":"","featuredImage":"https:\/\/fairlysouthern.com\/wp-content\/uploads\/2026\/02\/\u0e2a\u0e25\u0e47\u0e2d\u0e15-888.jpg"}};
//# sourceURL=elementor-frontend-js-before
</script>
<script src="https://fairlysouthern.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.35.5" id="elementor-frontend-js" data-rocket-defer defer></script>
<script src="https://fairlysouthern.com/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js?ver=1.2.1" id="smartmenus-js" data-rocket-defer defer></script>
<script id="wccp_pro_admin_bar_ajax-js-extra">
var ajax_object = {"ajaxurl":"https://fairlysouthern.com/wp-admin/admin-ajax.php","link":"https://fairlysouthern.com/about/"};
//# sourceURL=wccp_pro_admin_bar_ajax-js-extra
</script>
<script data-minify="1" src="https://fairlysouthern.com/wp-content/cache/min/1/wp-content/plugins/wccp-pro/js/admin_bar_ajax.js?ver=1772789685" id="wccp_pro_admin_bar_ajax-js" data-rocket-defer defer></script>
<script src="https://fairlysouthern.com/wp-content/plugins/wp-rocket/assets/js/heartbeat.js?ver=3.20.4" id="heartbeat-js" data-rocket-defer defer></script>
<script src="https://fairlysouthern.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.35.1" id="elementor-pro-webpack-runtime-js" data-rocket-defer defer></script>
<script src="https://fairlysouthern.com/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1" id="wp-hooks-js"></script>
<script src="https://fairlysouthern.com/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375" id="wp-i18n-js"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
//# sourceURL=wp-i18n-js-after
</script>
<script id="elementor-pro-frontend-js-before">
var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/fairlysouthern.com\/wp-admin\/admin-ajax.php","nonce":"b8b1d097ab","urls":{"assets":"https:\/\/fairlysouthern.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/fairlysouthern.com\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":false},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"th","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/fairlysouthern.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}};
//# sourceURL=elementor-pro-frontend-js-before
</script>
<script src="https://fairlysouthern.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.35.1" id="elementor-pro-frontend-js" data-rocket-defer defer></script>
<script src="https://fairlysouthern.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=3.35.1" id="pro-elements-handlers-js" data-rocket-defer defer></script>
<script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://fairlysouthern.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script>
</body>
</html>

<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1773281128 -->